/* ============================================================
   Hepsimania — Ana Sayfa Özel Stilleri (Google Dili)
   ============================================================ */

:root {
  /* Brand Core — taslak renk sisteminden */
  --brand-navy:         #213145;   /* inverse-surface — header, koyu arkaplan */
  --brand-orange:       #F97316;   /* primary-container — CTA, vurgu */
  --brand-orange-hover: #EA580C;

  /* Backgrounds & Surfaces */
  --bg-primary:    #FFFFFF;        /* surface-container-lowest */
  --bg-card:       #FFFFFF;
  --bg-main:       #F8F9FF;        /* background / surface */
  --bg-panel:      #EFF4FF;        /* surface-container-low */
  --bg-dark-card:  #213145;        /* inverse-surface */

  /* Typography */
  --text-primary:   #0B1C30;       /* on-surface / on-background */
  --text-secondary: #515F78;       /* secondary */
  --text-muted:     #8C7164;       /* outline */

  /* Borders */
  --border:         #D3E4FE;       /* surface-container-highest */
  --border-light:   #D3E4FE;

  /* Accent / Badges */
  --accent-orange:   #F97316;      /* eski alias korundu */
  --badge-ai-bg:     #EFF4FF;      /* surface-container-low */
  --badge-ai-text:   #006398;      /* tertiary */
  --success-green:   #16A34A;
}

/* Mobile-first: varsayılan = telefon */
body {
    min-height: 100dvh;
    background-color: var(--bg-primary);
    font-family: 'Inter', Arial, sans-serif;
}

/* ============================================================
   İçerik Konumlandırma — Tablet / Masaüstü
   ============================================================ */
@media (min-width: 768px) {
    #mainContent {
        padding-top: 64px !important;
        min-height: 100dvh !important;
        box-sizing: border-box !important;
    }
}

/* ============================================================
   Mobil Layout (< 768px)
   ============================================================ */
@media (max-width: 767px) {

    body {
        height: auto !important;
        overflow-y: auto !important;
    }

    /* — Üst menü — en üstte sabit, z:21 — */
    #mobileHeader {
        top: 0 !important;
        z-index: 21 !important;
    }

    /* — Footer — sabit — */
    #pageFooter {
        position: fixed !important;
    }
    /* Footer nav — tek satır, taşmaz */
    .home-footer-nav {
        display: flex !important;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0 10px;
        overflow: hidden;
    }
    .home-footer-sep { display: none !important; }
    .home-footer-link {
        font-size: .72rem !important;
        padding: 0 !important;
        white-space: nowrap;
    }
    .home-footer-brand {
        display: block !important;
        text-align: center;
        font-size: .68rem !important;
        color: #70757a;
        margin-top: 4px;
    }

    /* — İçerik alanı — flex, tam ekran, ortalı — */
    #mainContent {
        padding-top: 56px !important;
        padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)) !important;
        overflow: visible !important;
        min-height: 100dvh !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* ── Bölüm aralıkları ── */
    #mainContent section:not(.lp-hero-section) {
        font-family: 'Inter', Arial, sans-serif !important;
        padding: 32px 0 0 !important;
        max-width: 100% !important;
    }
    .lp-hero-section {
        padding: 0 !important;
    }
    #mainContent section h1 {
        font-family: 'Inter', Arial, sans-serif !important;
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
        letter-spacing: -0.4px !important;
    }
    #mainContent section > p {
        font-family: 'Inter', Arial, sans-serif !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 28px !important;
    }
    #mainContent section h2 {
        font-family: 'Inter', Arial, sans-serif !important;
        font-size: 16px !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
        letter-spacing: -0.2px !important;
    }
    #mainContent section ul {
        font-family: 'Inter', Arial, sans-serif !important;
        font-size: 14px !important;
        line-height: 2 !important;
        margin-bottom: 28px !important;
    }
    #mainContent section ul li { font-size: 14px !important; }
    /* Buton */
    #mainContent section a[href="/register"] {
        font-size: 0.85rem !important;
        padding: 8px 20px !important;
    }
}

/* ============================================================
   Hero — Checklist & CTA
   ============================================================ */

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 auto 36px;
    max-width: 420px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
}
.hero-checklist li {
    margin-bottom: 4px;
}
.hero-check {
    display: inline;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1rem;
}
.hero-cta {
    background: #F97316;
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    font-size: .9rem;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 24px;
    border: none;
    transition: background .15s, box-shadow .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    letter-spacing: -0.01em;
    box-shadow: 0 2px 8px rgba(249,115,22,.25);
    cursor: pointer;
}
.hero-cta:hover {
    background: #ea6c0a;
    box-shadow: 0 4px 16px rgba(249,115,22,.35);
}
.hero-cta i { color: #fff; }

@media (max-width: 767px) {
    .hero-checklist {
        max-width: 100%;
        font-size: 14px;
    }
}

/* ============================================================
   Drawer (Slayt-açılan menü)
   ============================================================ */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .45);
    z-index: 490;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}
.drawer-overlay.show { opacity: 1; visibility: visible; }

.nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #0F172A;
    z-index: 500;
    display: flex;
    flex-direction: column;
    transition: right .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, .2);
}
.nav-drawer.open { right: 0; }

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 0 20px;
    height: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    flex-shrink: 0;
}
.drawer-brand {
    font-weight: 700;
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-family: Arial, sans-serif;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    overflow-y: auto;
    flex: 1;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    font-family: Arial, sans-serif;
    transition: background .18s, color .18s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.drawer-link:hover { background: rgba(255, 255, 255, .10); color: #fff; }

.drawer-cta {
    color: var(--accent-orange);
    font-weight: 600;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding-top: 16px;
}
.drawer-cta:hover { color: var(--accent-orange); background: rgba(249, 115, 22, .10); }

.drawer-login-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 16px 20px 8px;
    padding: 0 18px 0 14px;
    height: 38px;
    border-radius: 100px;
    border: 1.5px solid rgba(249, 115, 22, .5);
    background: rgba(249, 115, 22, .08);
    color: rgba(255, 255, 255, .9);
    font-family: 'Inter', Arial, sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    white-space: nowrap;
    width: calc(100% - 40px);
}
.drawer-login-pill i { font-size: .9rem; color: #F97316; }
.drawer-login-pill:hover {
    border-color: #F97316;
    background: rgba(249, 115, 22, .18);
    color: #fff;
}

.drawer-icon-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .9);
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}
.drawer-icon-btn:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ============================================================
   Login / Yasal Modal (Bootstrap bağımsız)
   ============================================================ */
.home-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
}
.home-modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}
.home-modal-box {
    background: #fff;
    border-radius: 8px;                /* Google: 8px kart köşesi */
    box-shadow: 0 1px 3px rgba(0,0,0,.2), 0 4px 16px rgba(0,0,0,.12);
    width: 100%;
    max-width: 420px;
    padding: 0;
    transform: translateY(8px);
    transition: transform .2s;
}
.home-modal-backdrop.show .home-modal-box {
    transform: translateY(0);
}
.home-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #dadce0;
}
.home-modal-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #202124;
    font-family: Arial, sans-serif;
}
.home-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368;
    transition: background .15s;
}
.home-modal-close:hover { background: #f1f3f4; }

.home-modal-body { padding: 24px; }
.home-modal-field { margin-bottom: 16px; }
.home-modal-label {
    display: block;
    font-size: .875rem;
    font-weight: 500;
    color: #5f6368;
    margin-bottom: 6px;
    font-family: Arial, sans-serif;
}
.home-modal-input {
    width: 100%;
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: .95rem;
    color: #202124;
    outline: none;
    font-family: Arial, sans-serif;
    transition: border-color .15s, box-shadow .15s;
}
.home-modal-input:focus {
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 2px rgba(11, 37, 69, .18);
}
.home-modal-submit {
    width: 100%;
    background: #F97316;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 11px;
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background .15s, box-shadow .15s;
    margin-top: 8px;
}
.home-modal-submit:hover {
    background: #EA6C0A;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.home-modal-footer-links {
    text-align: center;
    margin-top: 16px;
    font-family: Arial, sans-serif;
    font-size: .875rem;
    color: #5f6368;
}
.home-modal-footer-links a {
    color: var(--brand-navy);
    text-decoration: none;
}
.home-modal-footer-links a:hover { text-decoration: underline; }
.home-modal-error {
    background: #fce8e6;
    color: #c5221f;
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-size: .875rem;
    font-family: Arial, sans-serif;
}

/* Giriş uyarısı */
.login-warning {
    display: none;
    margin-top: 16px;
    max-width: 400px;
    background: #fef7e0;
    border: 1px solid #f9ab00;
    border-radius: 4px;
    padding: 10px 18px;
    font-size: .85rem;
    color: #202124;
    text-align: center;
    font-family: Arial, sans-serif;
}
.login-warning-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--brand-navy);
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: Arial, sans-serif;
}

/* ============================================================
   Footer
   ============================================================ */
.home-footer {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    padding: 10px 16px 8px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.home-footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.home-footer-link {
    color: #70757a;
    text-decoration: none;
    font-size: .75rem;
    padding: 4px 8px;
    white-space: nowrap;
    font-family: Arial, sans-serif;
    transition: color .15s;
}
.home-footer-link:hover { color: var(--brand-navy); text-decoration: underline; }
.home-footer-sep {
    color: #b0b0b0;
    font-size: .7rem;
    margin: 0 2px;
}
.home-footer-brand {
    font-size: .68rem;
    color: #70757a;
    margin-top: 3px;
    white-space: nowrap;
    font-family: Arial, sans-serif;
}


/* ============================================================
   Kategori Grid
   ============================================================ */
.kategori-grid-section {
    background: var(--bg-panel);
    padding: 48px 16px;
    border-top: 1px solid var(--border);
}
.kategori-grid-section h3 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-navy);
    text-align: center;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}
.kategori-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 840px;
    margin: 0 auto;
}
.kategori-kart {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 12px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    cursor: pointer;
    font-family: 'Inter', Arial, sans-serif;
}
.kategori-kart:hover {
    box-shadow: 0 4px 20px rgba(11, 37, 69, .12);
    transform: translateY(-2px);
    border-color: var(--accent-orange);
    text-decoration: none;
    color: var(--text-primary);
}
.kategori-kart-ikon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #FFF7ED;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.kategori-kart-etiket {
    font-size: .82rem;
    font-weight: 600;
    color: var(--brand-navy);
    letter-spacing: -.01em;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .kategori-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 100%;
    }
    .kategori-grid .kategori-kart:last-child {
        grid-column: 2;
    }
    .kategori-kart {
        padding: 18px 10px 14px;
    }
    .kategori-kart-ikon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .kategori-kart-etiket {
        font-size: .78rem;
    }
    .kategori-grid-section {
        padding: 36px 16px;
    }
}


/* ============================================================
   Landing Page — Yeni Bölümler (Faz 1)
   ============================================================ */

/* Hero sarıcı */
.lp-hero-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 24px 48px;
    margin-top: 0;
}

.lp-hero-wrap--title-only {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
}

.lp-hero-wrap--title-only .lp-h1 {
    margin-bottom: 0;
}

/* Hero section */
.lp-hero-section {
    max-width: 680px;
    width: 100%;
    text-align: center;
    padding-top: 0;
}

/* H1 — Açılış sorusu */
.lp-h1 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(24px, 5vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--brand-navy);
    margin-top: 0;
    margin-bottom: 20px;
}

/* Mobil satır kırma yardımcısı — desktop'ta gizle */
.lp-h1-br { display: none; }

/* Alt soru / açıklama */
.lp-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* H2 — Hepsimania çözümü */
.lp-h2 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(18px, 3.5vw, 30px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--brand-navy);
    margin-bottom: 14px;
}

/* Hepsimania açıklama paragrafı */
.lp-desc {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 44px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* H3 — Neler yapılabilir */
.lp-h3 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(15px, 3vw, 20px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--brand-navy);
    margin-bottom: 16px;
}

/* Alt CTA sarıcı */
.lp-alt-cta-wrap {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    padding: 56px 24px;
    text-align: center;
}

/* Alt CTA içerik */
.lp-alt-cta-inner {
    max-width: 480px;
    margin: 0 auto;
}

/* Alt CTA başlık */
.lp-alt-cta-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brand-navy);
    margin-bottom: 10px;
}

/* Alt CTA açıklama */
.lp-alt-cta-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ── Mobil overrides ── */
@media (max-width: 767px) {
    .lp-hero-wrap {
        padding: 12px 16px 12px;
    }
    .lp-h1-br { display: inline; }   /* satır kırma aktif */
    .lp-subtitle {
        font-size: 14px;
        margin-bottom: 36px;
    }
    .lp-desc {
        font-size: 14px;
        margin-bottom: 32px;
    }
    .lp-alt-cta-wrap {
        padding: 40px 16px;
    }
    .lp-alt-cta-title {
        font-size: 22px;
    }
    .lp-alt-cta-text {
        font-size: 14px;
    }
}

/* ============================================================
   Vitrin Kategorileri — 4 Kart
   ============================================================ */
.vitrin-kategori-section {
    padding: 52px 24px 56px;
    border-top: 1px solid var(--border);
    background: #fff;
}
.vitrin-kategori-section-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(17px, 3vw, 22px);
    font-weight: 700;
    color: var(--brand-navy);
    text-align: center;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}
.vitrin-kategori-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 840px;
    margin: 0 auto;
}
.vitrin-kategori-kart {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 16px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    font-family: 'Inter', Arial, sans-serif;
}
.vitrin-kategori-kart:hover {
    box-shadow: 0 4px 20px rgba(11, 37, 69, .12);
    transform: translateY(-2px);
    border-color: var(--accent-orange);
}
.vitrin-kategori-ikon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #FFF7ED;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.4rem;
    flex-shrink: 0;
}
.vitrin-kategori-baslik {
    font-size: .9rem;
    font-weight: 700;
    color: var(--brand-navy);
    letter-spacing: -.01em;
    line-height: 1.3;
}
.vitrin-kategori-desc {
    font-size: .8rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 767px) {
    .vitrin-kategori-section {
        padding: 36px 16px 40px;
    }
    .vitrin-kategori-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }
    .vitrin-kategori-kart {
        padding: 20px 12px 16px;
    }
    .vitrin-kategori-ikon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    .vitrin-kategori-baslik {
        font-size: .85rem;
    }
    .vitrin-kategori-desc {
        font-size: .78rem;
    }
}

/* ============================================================
   Nasıl Çalışır — 3 Adım
   ============================================================ */
.nasil-calisir-section {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    padding: 52px 24px 56px;
}
.nasil-calisir-inner {
    max-width: 560px;
    margin: 0 auto;
}
.nasil-calisir-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    color: var(--brand-navy);
    text-align: center;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
}
.nasil-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.nasil-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', Arial, sans-serif;
}
.nasil-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-navy);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nasil-step-body {
    flex: 1;
    padding-top: 6px;
}
.nasil-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-navy);
    letter-spacing: -.01em;
    margin-bottom: 4px;
}
.nasil-step-desc {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 767px) {
    .nasil-calisir-section {
        padding: 36px 16px 40px;
    }
    .nasil-step {
        gap: 14px;
    }
    .nasil-step-num {
        width: 34px;
        height: 34px;
        font-size: .85rem;
    }
    .nasil-step-title {
        font-size: .9rem;
    }
    .nasil-step-desc {
        font-size: .83rem;
    }
}

/* ============================================================
   Hero Simplex — Modern ana sayfa
   ============================================================ */
.lp-hero-wrap--simplex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 24px;
    background: #ffffff;
    width: 100%;
}

/* Üst rozet */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249, 115, 22, .1);
    color: var(--accent-orange);
    font-family: 'Inter', Arial, sans-serif;
    font-size: .72rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* Ana başlık */
.hero-headline {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(36px, 6.5vw, 62px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--brand-navy);
    margin: 0 0 40px;
}

.hero-headline-br { display: none; }

/* Açıklama */
.hero-tagline {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 440px;
    margin: 24px auto 32px;
}

/* Geniş / zarif CTA varyantı */
.hero-cta--wide {
    padding: 11px 28px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    min-width: 0;
    border-radius: 100px;
    cursor: pointer;
    border: none;
}

/* Görsel alanı */
#hero-gorsel-alani {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    margin: 0 auto 32px;
    background: transparent;
    border: none;
    padding: 0;
}

@media (max-width: 767px) {
    /* Mobile: hero alanı viewport'u dolduracak kadar büyür, footer hemen altında */
    .lp-hero-wrap--simplex {
        min-height: calc(100dvh - 56px - 108px);
        padding: 32px 20px;
    }
    .hero-headline-br { display: inline; }
    .hero-badge { font-size: .68rem; }
    .hero-headline { margin-bottom: 16px; }
    .hero-tagline { margin-bottom: 24px; }
    #hero-gorsel-alani { margin-bottom: 24px; }
    .hero-cta--wide {
        padding: 9px 20px;
        min-width: 0;
        font-size: .88rem;
    }
}
