/* ============================================================
   CAR TEKLİF — ANASAYFA "NEDEN BİZ?" BÖLÜMÜ (statik)
   ============================================================ */

:root {
    --wct-blue: #0EA5F0;
    --wct-blue-600: #0B8FD8;
    --wct-navy: #0B2440;
    --wct-light: #EAF6FE;
    --wct-ink: #0B2440;
    --wct-muted: #5b6b7d;
    --wct-line: #e6ecf3;
    --wct-grad: linear-gradient(120deg, #0EA5F0 0%, #0B2440 100%);
}

.wct-why {
    background: #f6f9fc;
    padding: 84px 0 64px;
}

.wct-why__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 50px;
}
.wct-tag {
    display: inline-block;
    background: var(--wct-light);
    color: var(--wct-blue-600);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.wct-title {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: var(--wct-ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 14px;
}
.wct-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--wct-muted);
    margin: 0;
}

/* ---- Grid: görsel + özellikler ---- */
.wct-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 44px;
    align-items: stretch;
}

.wct-visual {
    position: relative;
    min-height: 100%;
}
.wct-visual__frame {
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(11, 36, 64, 0.16);
    border: 6px solid #fff;
    line-height: 0;
}
.wct-visual__frame img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}
.wct-visual__badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--wct-ink);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(11, 36, 64, 0.18);
}
.wct-visual__badge i { color: var(--wct-blue); font-size: 16px; }

/* ---- Özellik kartları (2 kolon) ---- */
.wct-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.wct-feat {
    background: #fff;
    border: 1px solid var(--wct-line);
    border-radius: 16px;
    padding: 22px 20px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.wct-feat:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11, 36, 64, 0.10);
    border-color: transparent;
}
.wct-feat__ico {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--wct-light);
    color: var(--wct-blue-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    transition: background .25s, color .25s;
}
.wct-feat:hover .wct-feat__ico { background: var(--wct-grad); color: #fff; }
.wct-feat__body h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--wct-ink);
    margin: 0 0 7px;
    line-height: 1.3;
}
.wct-feat__body p {
    font-size: 13.8px;
    line-height: 1.6;
    color: var(--wct-muted);
    margin: 0;
}

/* ---- Güven şeridi + CTA ---- */
.wct-trust {
    margin-top: 36px;
    background: #fff;
    border: 1px solid var(--wct-line);
    border-radius: 18px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px 28px;
    box-shadow: 0 8px 24px rgba(11, 36, 64, 0.05);
}
.wct-trust__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
}
.wct-trust__list li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 600;
    color: var(--wct-ink);
}
.wct-trust__list i { color: var(--wct-blue); font-size: 17px; }

.wct-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wct-blue-600);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(14, 165, 240, 0.28);
    transition: background .2s, transform .2s, box-shadow .2s;
}
.wct-cta i { transition: transform .2s; }
.wct-cta:hover {
    background: var(--wct-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(11, 36, 64, 0.26);
}
.wct-cta:hover i { transform: translateX(4px); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .wct-grid { grid-template-columns: 1fr; gap: 32px; }
    .wct-visual__frame img { min-height: 320px; }
    .wct-trust { flex-direction: column; align-items: stretch; text-align: center; }
    .wct-trust__list { justify-content: center; }
    .wct-cta { justify-content: center; }
}
@media (max-width: 767px) {
    .wct-why { padding: 64px 0; }
    .wct-feats { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .wct-trust__list { flex-direction: column; align-items: flex-start; gap: 12px; }
}
