/* ═══════════════════════════════════════════════════════════════
   ANA SAYFA — hero, sigorta türleri, teklif formu ve bölümler
   Yalnızca index.php üzerinde yüklenir.
   ═══════════════════════════════════════════════════════════════ */

/* Kaydırma çubuğu gizli — hero'nun sabitlenen animasyonu için */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }

/* NOT: Üst barın ölçüsü artık yalnızca menu.css'te tanımlıdır.
   Eskiden burada bulunan .hdr/.logo-* override'ları kaldırıldı —
   header ölçüsünün iki dosyada iki farklı değere sahip olması
   hero sabitlemesinde hataya yol açıyordu. */

/* ───────────────────────────────────────────
   HERO — AÇILIŞ ANİMASYONU
   ─────────────────────────────────────────── */
#hero-intro {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: rgba(0, 0, 0, .5);
    transition: opacity 1s ease;
}
.hero-intro-ic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
}
.hero-intro-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.hero-intro-logo-img {
    opacity: 0;
    transform: scale(.72) translateY(16px);
    animation: heroLogoSpring .8s cubic-bezier(.34, 1.56, .64, 1) .1s forwards;
}
.hero-intro-logo-img img { display: block; }
.hero-intro-lbl {
    color: rgba(255, 255, 255, .72);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .06em;
    opacity: 0;
    animation: heroFadeSlideUp .45s ease .55s forwards;
}
.hero-intro-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    animation: heroLineGrow .7s ease .75s forwards;
}
.hero-intro-tagline {
    opacity: 0;
    color: rgba(255, 255, 255, .5);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    animation: heroFadeSlideUp .55s ease .9s forwards;
    white-space: nowrap;
}

@keyframes heroLogoSpring {
    0%   { opacity: 0; transform: scale(.72) translateY(16px); }
    60%  { opacity: 1; transform: scale(1.05) translateY(-3px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes heroFadeSlideUp {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroLineGrow {
    from { width: 0; }
    to   { width: 260px; }
}

/* ───────────────────────────────────────────
   HERO
   Sayfanın normal akışında duran bir bölüm — kaydırmayı yakalamaz,
   sabitlenmez. Slaytlar zamanlayıcıyla döner (bkz. anasayfa.js).
   ─────────────────────────────────────────── */
.hero {
    background: #000;
    padding: var(--ust-bar-kucuk, 76px) 1.5rem 0;
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* ───────────────────────────────────────────
   HERO ARKA PLANI — Sakaryaspor videosu + kulüp renkleriyle
   kurulan kompozisyon.
   ─────────────────────────────────────────── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(155deg, #061a0f 0%, #070b13 48%, #0a0f1c 100%);
    pointer-events: none;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .55;
}

/* Yumuşak ışık lekeleri — projektör hissi */
.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}
.hero-bg-glow-1 {
    width: 560px;
    height: 560px;
    top: -160px;
    right: -100px;
    background: radial-gradient(circle, rgba(8, 115, 53, .5), transparent 72%);
    animation: glowKayma1 15s ease-in-out infinite alternate;
}
.hero-bg-glow-2 {
    width: 460px;
    height: 460px;
    bottom: -180px;
    left: 8%;
    background: radial-gradient(circle, rgba(44, 62, 134, .45), transparent 72%);
    animation: glowKayma2 19s ease-in-out infinite alternate;
}
@keyframes glowKayma1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-46px, 34px) scale(1.15); }
}
@keyframes glowKayma2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(36px, -24px) scale(1.1); }
}

@media (max-width: 640px) {
    .hero-bg-glow-1, .hero-bg-glow-2 { filter: blur(60px); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right,
        rgba(4, 10, 6, .78) 0%,
        rgba(6, 12, 10, .62) 35%,
        rgba(8, 14, 20, .3) 60%,
        rgba(8, 14, 20, .04) 100%);
}
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, transparent 42%);
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 80px 72px 0;
}
.hero-inner > * { max-width: 640px; }

@media (max-width: 900px) {
    .hero-inner { padding: 52px 32px 52px 0; }
    .hero-inner > * { max-width: 500px; }
}
@media (max-width: 640px) {
    .hero-inner { padding: 32px 20px 0; }
    .hero-inner > * { max-width: 100%; }
}

.hero h1 {
    font-size: clamp(2.1rem, 5.2vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.04em;
    text-wrap: balance;
    margin: 0 0 26px;
    max-width: 700px;
}
.hero h1 span {
    color: var(--ss-green);
    text-shadow: 0 0 44px rgba(8, 115, 53, .55);
}

.hero p {
    font-size: .92rem;
    color: rgba(255, 255, 255, .7);
    margin: 0 0 24px;
    max-width: 440px;
    line-height: 1.7;
}

.hero-perks {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-perk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .85);
    font-size: .8rem;
    font-weight: 500;
    padding: 5px 13px 5px 10px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
}
.hero-perk-ic {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--ss-green);
}

/* ── Slider sloganı: rozet boyutunda, kutusuyla birlikte nabız gibi atıyor ── */
.hero-slogan-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .85);
    font-size: .8rem;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    white-space: normal;
    max-width: 560px;
    line-height: 1.4;
    transform-origin: center;
    animation:
        heroFadeSlideUp .45s ease .1s both,
        kalpAtisi 1.6s ease-in-out .6s infinite;
}
@keyframes kalpAtisi {
    0%, 100%  { transform: scale(1); }
    15%       { transform: scale(1.045); }
    30%       { transform: scale(1); }
    45%       { transform: scale(1.03); }
    60%       { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-slogan-pill { animation: none; }
}

/* Hero CTA satırı */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 14px 0 32px;
}
.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ss-green);
    color: #fff;
    font-size: .94rem;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(8, 115, 53, .4);
    transition: transform .2s, box-shadow .2s, background .2s;
}
.hero-cta-primary svg { width: 17px; height: 17px; transition: transform .2s; }
.hero-cta-primary:hover {
    background: var(--ss-green-d);
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(8, 115, 53, .5);
}
.hero-cta-primary:hover svg { transform: translateX(3px); }
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
    font-weight: 600;
    padding: 13px 6px;
    border-bottom: 1.5px solid rgba(255, 255, 255, .3);
    transition: color .2s, border-color .2s;
}
.hero-cta-secondary:hover {
    color: #fff;
    border-color: #fff;
}

/* Slayt geçişleri */
.hero-slides {
    position: relative;
    min-height: 260px;
}
.hero-slide { display: none; }
.hero-slide.active {
    display: block;
    animation: slideEnter .45s cubic-bezier(.4, 0, .2, 1) forwards;
}
@keyframes slideEnter {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
    .hero {
        height: 100vh;
        height: 100dvh;
        padding: calc(var(--ust-bar-kucuk, 76px) + 24px) 1.25rem 36px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-sizing: border-box;
        background: #0a0f1c;
        overflow: hidden;
    }
    #hero-intro { display: none; }
    .hero-slides { min-height: 0; margin-top: 12px; }
    .hero h1 { margin-bottom: 20px; }
    .hero p { margin-bottom: 28px; }
    .hero-perks { margin-bottom: 0; }
    .hero-cta-row { margin: 20px 0 24px; }
    .hero-cta-primary { padding: 12px 18px; font-size: .9rem; }
}

/* ───────────────────────────────────────────
   SİGORTA TÜRÜ SEÇİMİ
   ─────────────────────────────────────────── */
/* Sigorta türü seçimi + teklif formu tek blokta, yan yana */
.teklif-blok {
    background: var(--surface);
    padding: 48px 1.5rem;
}
.teklif-blok-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 900px) {
    .teklif-blok-grid { grid-template-columns: 1fr; gap: 32px; }
}
.ins-section-inner { min-width: 0; }
/* Güven şeridi — hero'nun hemen altında, tür seçiminden önce */
/* Slider'ın üstünde, sabit üst barın hemen altında ince bir şerit */
/* Hero içinde, CTA satırının hemen altında — arka plansız, saydam */
.guven-seridi {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 38px;
}

/* Mobilde hero'nun dışına taşınan kopya — masaüstünde gizli,
   hero'nun rengiyle devam eden koyu bir şerit olarak görünür. */
.guven-seridi-mobil { display: none; }

@media (max-width: 640px) {
    .guven-seridi {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 14px;
        margin-top: 30px;
    }
    .guven-item span { white-space: normal; }
    .guven-item { font-size: .7rem; }

    .guven-seridi-mobil {
        display: grid;
        margin-top: 0;
        background: var(--bg);
        padding: 20px 1.25rem 24px;
    }
    .guven-seridi-mobil .guven-item { color: var(--text); }
}
.guven-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .01em;
}
.guven-item svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: var(--ss-green);
}

/* ───────────────────────────────────────────
   HERO TELEFON — güven rozetleri yerine öne çıkan numara
   ─────────────────────────────────────────── */
.hero-telefon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .01em;
    transition: opacity .2s;
}
.hero-telefon:hover { color: var(--ss-green); }
.hero-telefon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--ss-green);
}
.hero-telefon-mobil {
    display: flex;
    background: var(--bg);
    color: var(--text);
    justify-content: center;
    padding: 18px 1.25rem;
    margin-top: 0;
    font-size: 1.15rem;
}

@media (max-width: 640px) {
    .hero-telefon-mobil { display: flex; }
}

.ins-label {
    font-size: .72rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.ins-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
}
.ins-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 9px 18px 9px 10px;
    cursor: pointer;
    transition: all .22s;
    color: var(--text);
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-family: inherit;
}
.ins-card:hover {
    background: rgba(8, 115, 53, .06);
    border-color: rgba(8, 115, 53, .35);
    transform: translateY(-1px);
}
.ins-card:focus-visible {
    outline: 2px solid var(--ss-green);
    outline-offset: 2px;
}
.ins-card.active {
    background: var(--ss-green);
    border-color: var(--ss-green);
    color: #fff;
    box-shadow: 0 4px 20px rgba(8, 115, 53, .3);
}
.ins-card.active:hover { transform: none; }

.ins-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(8, 115, 53, .08);
    border: 1px solid rgba(8, 115, 53, .16);
    transition: all .2s;
}
.ins-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--ss-green);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s;
}
.ins-card:hover .ins-icon {
    background: rgba(8, 115, 53, .15);
    border-color: rgba(8, 115, 53, .3);
}
.ins-card.active .ins-icon {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .35);
}
.ins-card.active .ins-icon svg { stroke: #fff; }

.ins-card h3 {
    font-size: .87rem;
    font-weight: 600;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .teklif-blok { padding: 32px 1.25rem; }
}
@media (max-width: 480px) {
    .ins-grid { gap: 7px; }
}

/* ── Mobilde sigorta türü çipleri: tek sütun, alt alta — başlıklar
   uzun olduğu için 2 sütunda sıkışıyordu. ── */
@media (max-width: 480px) {
    .ins-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .ins-card {
        padding: 8px 12px;
        gap: 8px;
        white-space: normal;
    }
    .ins-icon {
        width: 24px;
        height: 24px;
    }
    .ins-icon svg {
        width: 12px;
        height: 12px;
    }
    .ins-card h3 {
        font-size: .82rem;
        white-space: normal;
        line-height: 1.2;
    }
}

/* ───────────────────────────────────────────
   TEKLİF FORMU
   ─────────────────────────────────────────── */
.form-inner {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.form-box {
    width: 100%;
    max-width: 540px;
    background: var(--bg);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
    padding: 32px;
    border: 1px solid var(--border);
}

.form-box .source-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 115, 53, .08);
    border: 1px solid rgba(8, 115, 53, .2);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
    font-size: .82rem;
    color: var(--ss-green);
    font-weight: 600;
}
.form-box .source-note svg { flex-shrink: 0; }

.prog-lbl {
    font-size: .75rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 9px;
}
.prog-bar {
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 24px;
}
.prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy), var(--ss-green));
    border-radius: 2px;
    transition: width .4s;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin: 0 0 4px;
    color: var(--text);
}
.step-sub {
    font-size: .88rem;
    color: var(--muted);
    margin: 0 0 22px;
}

.fgroup {
    display: grid;
    gap: 13px;
    margin-bottom: 20px;
}
.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}
@media (max-width: 400px) {
    .frow { grid-template-columns: 1fr; }
}

/* ── İsteğe bağlı alan grupları (Eş / Çocuk) — "+ Ekle" ile açılır ── */
.fgroup-katlanir { margin-bottom: 13px; }
.fgroup-ekle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 10px;
    color: var(--ss-green);
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.fgroup-ekle-btn:hover {
    border-color: var(--ss-green);
    background: rgba(8, 115, 53, .05);
}
.fgroup-icerik {
    border-left: 2px solid var(--border);
    padding-left: 14px;
    margin-top: 4px;
}
.fgroup-kaldir-btn {
    background: none;
    border: none;
    padding: 4px 0 0;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}
.fgroup-kaldir-btn:hover { color: #dc3545; }

.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.field label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .02em;
}
.field input,
.field select {
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    font-size: .94rem;
    font-family: inherit;
    outline: none;
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
}
.field input:focus,
.field select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(44, 62, 134, .13);
}
.field input::placeholder {
    color: var(--muted);
    opacity: .6;
}

/* Açılır liste oku */
.field select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 34px !important;
}

/* Plaka alanı */
.plate-inp {
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 1.05rem !important;
    text-align: center;
}

/* Butonlar */
.form-box .btn-primary {
    width: 100%;
    padding: 13px 22px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: .97rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.form-box .btn-primary:hover:not(:disabled) {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(44, 62, 134, .4);
}
.form-box .btn-primary:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.btn-back {
    background: none;
    border: none;
    color: var(--muted);
    font-size: .87rem;
    font-family: inherit;
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
    margin-bottom: 14px;
}
.btn-back:hover { color: var(--text); }

.btn-wa {
    width: 100%;
    padding: 14px 22px;
    background: var(--wa);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}
.btn-wa:hover {
    background: var(--wa-h);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
}

.privacy-note {
    text-align: center;
    font-size: .76rem;
    color: var(--muted);
    margin-top: 11px;
}
.privacy-note a {
    color: var(--navy-light);
    text-decoration: underline;
}

.success-ring {
    width: 60px;
    height: 60px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

/* Yöntem seçimi */
.method-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 4px;
}
.method-tab {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 16px 12px;
    cursor: pointer;
    transition: all .2s;
    background: var(--bg);
    text-align: center;
    user-select: none;
    font-family: inherit;
}
.method-tab:hover {
    border-color: var(--navy);
    background: rgba(44, 62, 134, .05);
}
.method-tab.active {
    border-color: var(--navy);
    background: rgba(44, 62, 134, .08);
    box-shadow: 0 0 0 2px rgba(44, 62, 134, .15);
}
.method-tab-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(44, 62, 134, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: background .2s;
}
.method-tab-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.method-tab.active .method-tab-icon { background: rgba(44, 62, 134, .2); }
.method-tab-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}
.method-tab-sub {
    font-size: .74rem;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.4;
}

/* Dosya yükleme */
.file-drop {
    border: 2px dashed var(--border);
    border-radius: 10px;
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}
.file-drop:hover,
.file-drop.drag-over {
    border-color: var(--navy);
    background: rgba(44, 62, 134, .04);
}
.file-drop-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(44, 62, 134, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.file-drop-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.file-drop-title {
    font-size: .87rem;
    font-weight: 600;
    color: var(--text);
}
.file-drop-sub {
    font-size: .75rem;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.5;
}
.file-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(8, 115, 53, .07);
    border: 1px solid rgba(8, 115, 53, .22);
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 10px;
}
.file-preview-img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.file-preview-name {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    word-break: break-all;
    flex: 1;
    min-width: 0;
}
.file-clear {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: .9rem;
    padding: 2px 6px;
    transition: color .2s;
    line-height: 1;
    flex-shrink: 0;
}
.file-clear:hover { color: var(--text); }
.file-pdf-icon {
    width: 42px;
    height: 42px;
    background: rgba(44, 62, 134, .1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .form-inner { padding: 32px 1rem; }
    .form-box { padding: 22px 18px; }
}

/* ───────────────────────────────────────────
   NASIL ÇALIŞIR
   ─────────────────────────────────────────── */
.how {
    background: var(--surface);
    padding: 84px 1.5rem;
}
.how-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.sec-eyebrow {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ss-green);
    margin-bottom: 10px;
}
.sec-title {
    font-size: clamp(1.4rem, 3.5vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--text);
    margin: 0 0 52px;
    text-wrap: balance;
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    position: relative;
}
.how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(50% + 38px);
    right: calc(-50% + 38px);
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}
.how-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(8, 115, 53, .08);
    border: 1.5px solid rgba(8, 115, 53, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ss-green);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.how-step-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -.01em;
}
.how-step-desc {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    max-width: 200px;
}

@media (max-width: 640px) {
    .how { padding: 52px 1.25rem; }
    .how-steps { grid-template-columns: 1fr; gap: 36px; }
    .how-step:not(:last-child)::after { display: none; }
    .sec-title { margin-bottom: 32px; }
}

/* ───────────────────────────────────────────
   NEDEN BİZ
   ─────────────────────────────────────────── */
.why {
    background: var(--bg);
    padding: 84px 1.5rem 24px;
}
.why-inner {
    max-width: 880px;
    margin: 0 auto;
}
.why-head {
    text-align: center;
    margin-bottom: 44px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .25s, box-shadow .25s;
}
.why-card:hover {
    border-color: rgba(8, 115, 53, .3);
    box-shadow: 0 4px 24px rgba(8, 115, 53, .08);
}
.why-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(8, 115, 53, .08);
    border: 1px solid rgba(8, 115, 53, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s;
}
.why-card:hover .why-card-icon {
    transform: scale(1.12) rotate(-4deg);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.why-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--ss-green);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.why-card-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.01em;
    margin: 0;
}
.why-card-desc {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 640px) { .why { padding: 52px 1.25rem 20px; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* ───────────────────────────────────────────
   TANITIM KARTLARI
   ─────────────────────────────────────────── */
.promo {
    padding: 24px 1.5rem 56px;
    background: var(--bg);
}
.promo-inner {
    max-width: 900px;
    margin: 0 auto;
}
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.promo-card {
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
}
.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .15);
}
.promo-card.green {
    background: linear-gradient(135deg, var(--ss-green-d), var(--ss-green));
    color: #fff;
}
.promo-card.navy {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
}
.promo-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -.02em;
}
.promo-card p {
    font-size: .88rem;
    opacity: .8;
    margin: 0 0 18px;
    line-height: 1.55;
}
.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
    font-family: inherit;
}
.promo-btn:hover {
    background: rgba(255, 255, 255, .28);
    color: #fff;
}
.promo-card .big-num {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 4rem;
    font-weight: 900;
    opacity: .08;
    letter-spacing: -.05em;
    line-height: 1;
}

@media (max-width: 640px) {
    .promo { padding: 20px 1.25rem 40px; }
    .promo-grid { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────
   RAKAMLAR
   ─────────────────────────────────────────── */
.trust {
    padding: 84px 1.5rem;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}
.trust-watermark {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    opacity: .04;
    pointer-events: none;
}
.trust-watermark img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 900px) { .trust-watermark { display: none; } }
.trust-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.eyebrow {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ss-green);
    margin-bottom: 8px;
}
.section-h {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -.025em;
    margin: 0 0 52px;
    text-wrap: balance;
    color: var(--text);
}
.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg);
}
.trust-item {
    padding: 36px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-num {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.trust-item:nth-child(1) .trust-num { color: var(--navy); }
.trust-item:nth-child(2) .trust-num { color: var(--amber); }
.trust-item:nth-child(3) .trust-num { color: var(--ss-green); }
.trust-lbl {
    font-size: .82rem;
    color: var(--muted);
    margin-top: 8px;
}

@keyframes countPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.trust-num.pop { animation: countPop .4s cubic-bezier(.34, 1.56, .64, 1); }

@media (max-width: 640px) {
    .trust { padding: 52px 1.25rem; }
    .section-h { margin-bottom: 32px; }
}
@media (max-width: 540px) {
    .trust-row { grid-template-columns: 1fr; }
    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .trust-item:last-child { border-bottom: none; }
}

/* ───────────────────────────────────────────
   TARAFTAR YORUMLARI
   ─────────────────────────────────────────── */
.testi {
    background: var(--surface);
    padding: 84px 1.5rem;
}
.testi-inner {
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
    text-align: left;
}
.testi-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.testi-card:hover {
    transform: translateY(-3px);
    border-color: rgba(8, 115, 53, .3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}
.testi-stars {
    display: flex;
    gap: 3px;
}
.testi-stars svg {
    width: 15px;
    height: 15px;
    color: var(--border);
}
.testi-stars svg.dolu { color: var(--amber); }
.testi-text {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}
.testi-kisi {
    display: flex;
    align-items: center;
    gap: 11px;
}
.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ss-green), var(--navy));
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-isim {
    font-size: .87rem;
    font-weight: 700;
    color: var(--text);
}
.testi-rol {
    font-size: .78rem;
    color: var(--muted);
}

@media (max-width: 640px) { .testi { padding: 52px 1.25rem; } }
@media (max-width: 800px) { .testi-grid { grid-template-columns: 1fr; } }

/* ───────────────────────────────────────────
   SAKARYASPOR'A DESTEK OLANLAR — kayan isim şeridi
   ─────────────────────────────────────────── */
/* hero-inner'ın DIŞINDA, .hero'nun doğrudan çocuğu — sabit rem
   değerleriyle (100vw DEĞİL) hero'nun kendi kenar boşluğunu iptal edip
   tam genişliğe yayılır. 100vw + kaydırma çubuğu genişliği farkı
   metnin kırpılmasına/kaymasına yol açtığı için kullanılmıyor. */
.destek-seridi {
    position: relative;
    z-index: 3;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.destek-seridi-ust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    /* hero-inner ile aynı hizada başlasın diye onunla aynı max-width'i
       (1200px) + kendi 1.5rem'lik dolgusunu telafi eden bir dış genişlik
       kullanır — böylece geniş ekranlarda hero-inner ortalanırken bu da
       aynı noktada hizalanır. */
    max-width: calc(1200px + 3rem);
    margin: 0 auto;
    padding: 0 1.5rem 8px;
}
.destek-seridi-baslik {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text);
    white-space: nowrap;
}
.destek-seridi-baslik strong { color: var(--ss-green); font-size: .85rem; }
.destek-seridi-link {
    flex-shrink: 0;
    color: var(--navy);
    font-weight: 700;
    font-size: .78rem;
    white-space: nowrap;
    opacity: .85;
    transition: opacity .2s;
}
.destek-seridi-link:hover { opacity: 1; }

.destek-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.destek-marquee-track {
    display: flex;
    width: max-content;
    animation: destekKaydir 30s linear infinite;
}
@keyframes destekKaydir {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.destek-marquee-isim {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    color: var(--text);
    font-weight: 700;
    font-size: .85rem;
    white-space: nowrap;
    border-right: 1px solid var(--border);
}
.destek-marquee-no {
    color: var(--ss-green);
    font-weight: 800;
}

@media (max-width: 640px) {
    .destek-seridi {
        margin: 0;
        padding: 8px 0;
    }
    .destek-seridi-ust { padding: 0 1.25rem 6px; }
    .destek-seridi-baslik { font-size: .68rem; }
    .destek-seridi-link { font-size: .72rem; }
}

/* ───────────────────────────────────────────
   SIKÇA SORULAN SORULAR
   ─────────────────────────────────────────── */
.faq {
    background: var(--bg);
    padding: 84px 1.5rem;
}
.faq-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}
.faq-list {
    text-align: left;
    margin-top: 40px;
    column-count: 2;
    column-gap: 24px;
}
.faq-list .faq-item {
    break-inside: avoid;
    margin-bottom: 10px;
}

@media (max-width: 860px) {
    .faq-list { column-count: 1; }
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px 20px;
    transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(8, 115, 53, .35); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    cursor: pointer;
    font-size: .93rem;
    font-weight: 700;
    color: var(--text);
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ok {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--muted);
    transition: transform .25s;
}
.faq-item[open] .faq-ok {
    transform: rotate(180deg);
    color: var(--ss-green);
}
.faq-item p {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 18px;
}

@media (max-width: 640px) { .faq { padding: 52px 1.25rem; } }

/* ───────────────────────────────────────────
   KAYDIRMA İLE BELİRME
   ─────────────────────────────────────────── */
.sr {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.4, 0, .2, 1),
                transform .65s cubic-bezier(.4, 0, .2, 1);
}
.sr.sr-left  { transform: translateX(-28px); }
.sr.sr-right { transform: translateX(28px); }
.sr.sr-scale { transform: scale(.94); }
.sr.in {
    opacity: 1;
    transform: none;
}
.sr-d1 { transition-delay: .08s; }
.sr-d2 { transition-delay: .16s; }
.sr-d3 { transition-delay: .24s; }
.sr-d4 { transition-delay: .32s; }
.sr-d5 { transition-delay: .40s; }
.sr-d6 { transition-delay: .48s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .35s ease forwards; }

/* Hero rozetleri JS ile canlandırılır */
.hero-perk {
    opacity: 0;
    transform: translateY(8px);
}

/* Hareket azaltma tercihi: her şey anında görünsün */
@media (prefers-reduced-motion: reduce) {
    .sr, .hero-perk {
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-intro-logo-img,
    .hero-intro-lbl,
    .hero-intro-tagline { opacity: 1 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   SAKARYASPOR VURGULU KART/BÖLÜM İNCELİKLERİ
   Bu blok dosyanın en sonunda — aynı seçicilerin yukarıdaki genel
   tanımlarının üzerine güvenle yazabilmesi için.
   ═══════════════════════════════════════════════════════════════ */

/* Nasıl Çalışır — adım rozetleri dolu/kontrastlı */
.how-num {
    background: var(--ss-green);
    border-color: var(--ss-green);
    color: #fff;
    box-shadow: 0 6px 18px rgba(8, 115, 53, .3);
}

/* Kartlar — sol kenarda ince yeşil vurgu şeridi */
.why-card,
.testi-card {
    border-left: 3px solid var(--ss-green);
}
.faq-item {
    border-left: 3px solid var(--border);
    transition: border-color .2s;
}
.faq-item[open] {
    border-left-color: var(--ss-green);
}

/* Rakamlar — açık zemin, üstte ince yeşil çizgi */
.trust-row {
    border-top: 3px solid var(--ss-green);
}
.trust-item .trust-num {
    font-family: var(--font-baslik);
}

/* Yuvarlak (pill) ana eylem butonları — Sakaryaspor resmi sitesindeki
   buton diline hizalı. Dosyanın en sonunda: yukarıdaki border-radius
   tanımlarının üzerine güvenle yazar. */
.hero-cta-primary,
.promo-btn {
    border-radius: 100px;
}

/* Nasıl Çalışır — yeşil zemin, üzerinde düşük görünürlükte
   Sakaryaspor taraftar fotoğrafı, beyaz yazılar. */
.how {
    background:
        linear-gradient(rgba(5, 58, 27, .95), rgba(3, 31, 15, .97)),
        url('../img/cekmece-foto.jpg') center/cover no-repeat;
}
.how .sec-eyebrow { color: #fff; }
.how .sec-eyebrow::before { background: #fff; }
.how .sec-title { color: #fff; }
.how-step-title { color: #fff; }
.how-step-desc { color: rgba(255, 255, 255, .75); }
.how-step:not(:last-child)::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .35), transparent);
}
.how-num {
    background: #fff;
    border-color: #fff;
    color: var(--ss-green);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

/* AFİŞ BAŞLIKLARI — "FİKSTÜR" görselindeki gibi kalın/dar/hafif eğik.
   Slider (hero) başlığı da dahil. */
.hero h1,
.sec-title,
.section-h {
    font-family: var(--font-afis);
    font-style: italic;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: -.01em;
}

/* Afiş fontu diğer büyük vurgu başlıklarına da yayıldı
   (tanıtım kartları, CTA başlığı) — küçük kart başlıkları hariç. */
.promo-card h3 {
    font-family: var(--font-afis);
    font-style: italic;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: -.01em;
}
