/* ==========================================================================
   Solimpeks Sizing Calculator — Wizard CSS (kurumsal)
   Sandbox: /hesaplama/  ·  Vanilla, mobile-first, no framework.
   ========================================================================== */

:root {
    /* Renk paleti — Solimpeks kurumsal (ana site ile uyumlu) */
    --c-primary:        #c8102e;
    --c-primary-d:      #960a23;
    --c-primary-l:      #fff1f3;
    --c-accent:         #0a2a66;      /* Solimpeks kurumsal lacivert (style.css'den) */
    --c-accent-d:       #081b43;
    --c-accent-l:       #eaeef6;
    --c-success:        #1e8e3e;
    --c-warn:           #b54708;
    --c-error:          #c0392b;

    /* Yüzey & arka plan */
    --c-bg:             #f5f7fb;
    --c-bg-grad:        linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
    --c-surface:        #ffffff;
    --c-surface-2:      #fafbfd;
    --c-text:           #0f172a;
    --c-text-2:         #334155;
    --c-muted:          #64748b;
    --c-border:         #e2e8f0;
    --c-border-strong:  #cbd5e1;

    /* Boyutlar */
    --r-sm: 8px;
    --r:    14px;
    --r-lg: 20px;
    --r-xl: 28px;

    --sh-sm: 0 1px 2px rgba(15, 23, 42, .05);
    --sh:    0 4px 14px rgba(15, 23, 42, .07);
    --sh-lg: 0 10px 40px rgba(15, 23, 42, .10);
    --sh-pri:0 8px 24px rgba(200, 16, 46, .22);

    --t-fast: .15s ease;
    --t-base: .25s cubic-bezier(.2, .8, .2, 1);

    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.hesap-page {
    margin: 0;
    background: var(--c-bg-grad);
    color: var(--c-text);
    font-family: var(--font-stack);
    font-size: 16px;
    line-height: 1.55;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ============================================================
   Topbar
   ============================================================ */
.hesap-topbar {
    border-bottom: 1px solid var(--c-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(10px);
    background: rgba(255, 255, 255, .96);
}
.hesap-topbar__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hesap-topbar__brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
}
.hesap-topbar__logo {
    height: 40px;
    width: auto;
    display: block;
}
.hesap-topbar__divider {
    width: 1px;
    height: 26px;
    background: var(--c-border);
}
.hesap-topbar__tagline {
    color: var(--c-accent);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.02em;
    white-space: nowrap;
}
.hesap-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hesap-topbar__link {
    color: var(--c-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color var(--t-fast);
    white-space: nowrap;
}
.hesap-topbar__link:hover { color: var(--c-primary); }
@media (max-width: 600px) {
    /* Logo solda, diller sağda — tek satır, kompakt, taşma yok */
    .hesap-topbar__inner { padding: 10px 14px; gap: 8px; flex-wrap: nowrap; }
    .hesap-topbar__logo { height: 30px; }
    .hesap-topbar__divider, .hesap-topbar__tagline { display: none; }
    /* "Energy calculators" linkini gizle; "siteye dön" (solimpeks.com) linkini
       mobilde kompakt pill-buton olarak göster ki ana siteye dönülebilsin. */
    .hesap-topbar__link { display: none; }
    .hesap-topbar__link[href*="solimpeks.com"] {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px 11px;
        border: 1px solid var(--c-border-strong);
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        color: var(--c-accent);
        background: #fff;
        flex-shrink: 0;
    }
    .hesap-topbar__link[href*="solimpeks.com"]:hover { background: var(--c-accent-l); color: var(--c-accent); }
    .hesap-topbar__brand { min-width: 0; flex-shrink: 1; }
    .hesap-topbar__right { gap: 6px; flex-shrink: 0; }
}
/* Dil seçici — her boyutta açılır/kapanır dropdown (checkbox toggle, JS'siz) */
.hesap-topbar__lang { position: relative; }
.hesap-topbar__lang-toggle { display: none; }   /* gizli checkbox */
/* Tetik buton — mevcut dil + ok */
.hesap-topbar__lang-cur {
    display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
    padding: 8px 14px; border-radius: 999px;
    background: var(--c-surface-2); border: 1px solid var(--c-border);
    color: var(--c-text); font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .04em; user-select: none;
    white-space: nowrap; transition: var(--t-fast);
}
.hesap-topbar__lang-cur:hover { border-color: var(--c-border-strong); background: #fff; }
.hesap-topbar__lang-caret { font-size: 9px; transition: transform var(--t-fast); }
.hesap-topbar__lang-toggle:checked ~ .hesap-topbar__lang-cur .hesap-topbar__lang-caret { transform: rotate(180deg); }
/* Açılır panel — varsayılan gizli, :checked ile açılır */
.hesap-topbar__lang-menu {
    display: none;
    position: absolute; top: calc(100% + 8px); right: 0;
    flex-direction: column; gap: 2px; padding: 6px;
    border-radius: 14px; background: var(--c-surface);
    border: 1px solid var(--c-border); box-shadow: var(--sh-lg);
    min-width: 140px; z-index: 60;
}
.hesap-topbar__lang-toggle:checked ~ .hesap-topbar__lang-menu { display: flex; }
.hesap-topbar__lang-menu a {
    padding: 9px 12px; border-radius: 9px; color: var(--c-muted);
    text-decoration: none; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em; transition: var(--t-fast);
    text-align: center;
}
.hesap-topbar__lang-menu a.is-active { background: var(--c-primary); color: #fff; box-shadow: var(--sh-pri); }
.hesap-topbar__lang-menu a:hover:not(.is-active) { background: var(--c-border); color: var(--c-text); }

/* ============================================================
   Hero
   ============================================================ */
.hesap-hero {
    background: #0a2a66;
    color: #fff;
    padding: 40px 24px 48px;
    position: relative;
    overflow: hidden;
}
@media (min-width: 980px) { .hesap-hero { padding: 56px 32px 64px; } }

/* 1) Üst — başlık + tanıtım metni (ortalı ama geniş — yanları açık, sıkışık değil) */
.hesap-hero__head {
    max-width: 1140px;
    margin: 0 auto 32px;
    text-align: center;
}
.hesap-hero h1 {
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -.02em;
    margin: 0 0 14px;
    font-weight: 800;
}
.hesap-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, .82);
    margin: 0 auto 20px;
    line-height: 1.55;
    max-width: 920px;
}
.hesap-hero__trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    flex-wrap: wrap;
}

/* 2) Body — SOL dar kart panel · SAĞ büyük harita */
.hesap-hero__body {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);   /* auto-min yerine 0 — harita SVG'si grid'i şişirmesin */
    gap: 18px;
}
@media (min-width: 1024px) {
    .hesap-hero__body { grid-template-columns: 320px minmax(0, 1fr); gap: 24px; }
}
@media (min-width: 1280px) {
    .hesap-hero__body { grid-template-columns: 340px minmax(0, 1fr); }
}

/* SOL: arama + bölge chip + ülke kart grid (haritanın yüksekliğine eşitlenir) */
.hesap-hero__filter {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    min-width: 0;     /* grid hücresi içerik min-content'i kadar şişmesin */
    height: 100%;     /* grid hücresinin tam yüksekliği — sağ harita ile eşit */
}

.hesap-hero__filter .hesap-country-search {
    width: 100%;
    padding: 12px 14px 12px 40px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E")
        no-repeat 14px center rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 14px;
    border-radius: 12px;
    font-family: inherit;
}
.hesap-hero__filter .hesap-country-search::placeholder { color: rgba(255, 255, 255, .55); }
.hesap-hero__filter .hesap-country-search:focus {
    background-color: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .4);
    box-shadow: none;
    outline: none;
}

/* Bölge chip'leri — 4 sütunlu grid (2x4 düzeni, hizalı) */
.hesap-region-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.hesap-region-chips button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .8);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--t-fast);
    letter-spacing: .01em;
    white-space: nowrap;        /* etiket + sayı tek satırda kalsın, kırpma yok */
}
.hesap-region-chips button:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.hesap-region-chips button.is-active {
    background: #fff;
    color: var(--c-accent);
    border-color: #fff;
}
.hesap-region-chips button span {
    background: rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .8);
    padding: 1px 7px;
    border-radius: 999px;
    font-size: 10px;
    min-width: 22px;
    text-align: center;
}
.hesap-region-chips button.is-active span {
    background: rgba(10, 42, 102, .12);
    color: var(--c-accent);
}

/* Ülke kart grid (sol dar panelde scroll'lu, tek kolon, kalan alanı doldurur) */
.hesap-country-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    overflow-y: auto;
    flex: 1;            /* arama + chip'lerden artan tüm yüksekliği doldur */
    min-height: 0;      /* flex container içinde scroll için kritik */
    padding: 4px 6px 4px 2px;
    margin-top: 4px;
}
@media (max-width: 720px) {
    .hesap-country-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        max-height: 320px;
        flex: 0 0 auto;
    }
}
.hesap-country-list::-webkit-scrollbar { width: 6px; }
.hesap-country-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .18); border-radius: 999px; }
.hesap-country-list::-webkit-scrollbar-track { background: transparent; }

.hesap-country {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .92);
    border: 1.5px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    color: var(--c-text);
    text-align: left;
    transition: var(--t-fast);
    width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.hesap-country:hover {
    background: #fff;
    border-color: var(--c-primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
}
.hesap-country.is-active {
    background: var(--c-primary-l);
    border-color: var(--c-primary);
    box-shadow: 0 4px 12px rgba(200, 16, 46, .25);
}
.hesap-country__iso {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 6px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    font-family: ui-monospace, "SF Mono", Consolas, monospace;
    flex-shrink: 0;
}
.hesap-country.is-active .hesap-country__iso { background: var(--c-primary); }
.hesap-country__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.hesap-country__name {
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hesap-country__meta {
    font-size: 10px;
    color: var(--c-muted);
    font-weight: 600;
    letter-spacing: .02em;
}
.hesap-country.is-active .hesap-country__name { color: var(--c-primary); }
.hesap-country.is-active .hesap-country__meta { color: var(--c-primary-d); }

/* SAĞ: büyük harita — sol panel ile aynı yükseklikte */
.hesap-hero__map-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;     /* sol filter ile eşit alt hizalama */
    min-height: 0;
    min-width: 0;     /* harita SVG'si grid kolonunu viewport'tan geniş yapmasın */
}
.hesap-hero__map {
    background: linear-gradient(180deg, #eef4fa 0%, #dde7f1 100%);
    border-radius: 16px;
    flex: 1;                  /* kolonun kalan tüm alanını doldur */
    min-height: 380px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 8px 28px rgba(0,0,0,.22);
    width: 100%;
}
.hesap-hero__map svg { width: 100%; height: 100%; display: block; }
@media (max-width: 720px) {
    .hesap-hero__map { aspect-ratio: 16 / 10; min-height: 220px; flex: 0 0 auto; }
}
.hesap-hero__map-hint {
    text-align: center;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    margin: 0;
    font-weight: 500;
    letter-spacing: .01em;
}

/* Seçili ülke chip + (varsa) city dropdown + Start CTA — 3'ü yan yana */
.hesap-hero__cta {
    max-width: 1400px;
    margin: 24px auto 0;
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;            /* şehir dropdown'ı, altta beliren region-tip kutusunun üstünde kalsın */
}
.hesap-hero__selected-block {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: row;        /* chip + city dropdown yan yana */
    align-items: stretch;
    gap: 12px;
    flex-wrap: wrap;
}
.hesap-hero__cta .hesap-btn--lg {
    flex-shrink: 0;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Selected country chip — flex 1 içindeki ilk eleman, fixed-min */
.hesap-hero__selected { flex: 0 1 auto; min-width: 220px; }

/* City dropdown — flex 1, chip'in yanına oturur */
.hesap-hero__city-wrap {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 240px;
    min-width: 240px;
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;            /* şehir kutusu (ve dropdown'ı) ülke kartı kardeşinin üstünde kalsın */
}
.hesap-hero__city-wrap label {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
    flex-shrink: 0;
}
.hesap-hero__city-select {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, .95);
    color: var(--c-text);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 7px 10px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
}
@media (max-width: 720px) {
    .hesap-hero__selected-block { flex-direction: column; }
    .hesap-hero__cta .hesap-btn--lg { width: 100%; }
    /* Bölge kartı: dar ekranda çipler metnin altına, sola hizalı */
    .hesap-hero__region-tip-products { justify-content: flex-start; }
}
.hesap-hero__city-select:focus {
    outline: none;
    background: #fff;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, .15);
}

/* Canlı şehir araması (TR dışı ülkeler) */
.hesap-hero__city-search {
    position: relative;
    flex: 1;
    min-width: 0;
}
.hesap-hero__city-input {
    width: 100%;
    background: rgba(255, 255, 255, .95);
    color: var(--c-text);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 7px 10px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    box-sizing: border-box;
}
.hesap-hero__city-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, .15);
}
.hesap-hero__city-search .hesap-field__hint {
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
    margin: 4px 0 0;
}
.hesap-city-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 60;
    margin: 0;
    padding: 4px;
    list-style: none;
    background: #fff;
    color: var(--c-text);
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .22);
    max-height: 260px;
    overflow-y: auto;
}
.hesap-city-results__item {
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}
.hesap-city-results__item:hover,
.hesap-city-results__item:focus {
    background: rgba(200, 16, 46, .08);
}
.hesap-city-results__empty {
    padding: 8px 10px;
    font-size: 12px;
    color: #64748b;
}

.hesap-hero__selected {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 16px;
    flex: 1;
    min-width: 260px;
}
.hesap-hero__selected-iso {
    width: 44px; height: 44px;
    background: #fff;
    color: var(--c-accent);
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: ui-monospace, "SF Mono", Consolas, monospace;
    letter-spacing: .03em;
}
.hesap-hero__selected-body { flex: 1; min-width: 0; }
.hesap-hero__selected-name { font-weight: 700; font-size: 15px; color: #fff; }
.hesap-hero__selected-meta { font-size: 12px; color: rgba(255, 255, 255, .65); margin-top: 2px; }

/* Bölge öneri kutusu — ülke seçilince hero altında görünür */
.hesap-hero__region-tip {
    max-width: 1400px;
    margin: 14px auto 0;        /* CTA ile aynı genişlik/hiza — tam satır, sıkışmaz */
    background: linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .15);
    border-left: 3px solid var(--c-primary);
    border-radius: 12px;
    padding: 16px 18px;
    backdrop-filter: blur(8px);
    /* Metin solda · ürün çipleri sağda */
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.hesap-hero__region-tip-main {
    flex: 1 1 260px;
    min-width: 0;
}
.hesap-hero__region-tip-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.hesap-hero__region-tip-badge {
    font-size: 16px;
    line-height: 1;
}
.hesap-hero__region-tip-title {
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -.005em;
}
.hesap-hero__region-tip-line {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 500;
}
.hesap-hero__region-tip-products {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 0;
    justify-content: flex-end;   /* çipler sağa hizalı */
    flex: 0 1 auto;
}
.hesap-rt-product-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .005em;
    transition: background var(--t-fast);
}
.hesap-rt-product-chip:hover { background: rgba(255, 255, 255, .18); }

/* Canlı ışınım + solar potansiyel barı */
.hesap-rt-metric { margin-top: 10px; }
.hesap-rt-metric__row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.hesap-rt-metric__val {
    color: #fff;
    font-weight: 800;
    font-size: 13px;
}
.hesap-rt-metric__label {
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.hesap-rt-bar {
    height: 6px;
    width: 100%;
    max-width: 260px;
    background: rgba(255, 255, 255, .14);
    border-radius: 999px;
    overflow: hidden;
}
.hesap-rt-bar__fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    transition: width .5s ease;
}

/* Ülkeye ön-dolu hesaplayıcı kısayolları (kartın altında tam satır) */
.hesap-rt-actions {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.hesap-rt-actions__intro {
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    font-weight: 600;
    margin-right: 2px;
}
.hesap-rt-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--t-fast), border-color var(--t-fast);
}
.hesap-rt-action:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
}
/* Tüm hesaplayıcılar — sağa yaslı, belirgin buton (biraz daha büyük) */
.hesap-rt-action--all {
    margin-left: auto;
    padding: 9px 18px;
    font-size: 13px;
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(200, 16, 46, .35);
}
.hesap-rt-action--all:hover {
    background: #960a23;
    border-color: #960a23;
    color: #fff;
}
@media (max-width: 720px) {
    .hesap-rt-action--all { margin-left: 0; width: 100%; justify-content: center; }
}

.hesap-btn--lg { padding: 16px 32px; font-size: 16px; }
@media (max-width: 720px) {
    .hesap-hero__cta { flex-direction: column; align-items: stretch; }
    .hesap-hero__cta .hesap-btn { width: 100%; }
}
/* Marker'lar (hero map içinde — selector daha specific) */
.hesap-hero__map .marker { cursor: pointer; transform-box: fill-box; transform-origin: center; }
.hesap-hero__map .marker .marker__halo {
    fill: var(--c-primary);
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    transition: opacity var(--t-base);
}
.hesap-hero__map .marker .marker__dot {
    fill: var(--c-primary);
    stroke: #fff;
    stroke-width: 2.5;
    transition: r var(--t-base), fill var(--t-base);
    filter: drop-shadow(0 1.5px 3px rgba(0,0,0,.5));
}
.hesap-hero__map .marker .marker__label {
    fill: var(--c-text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .01em;
    opacity: 0;
    paint-order: stroke;
    stroke: #fff;
    stroke-width: 3.5;
    stroke-linejoin: round;
    pointer-events: none;
    transition: opacity var(--t-fast), transform var(--t-fast);
}
.hesap-hero__map .marker:hover .marker__halo  { opacity: .45; }
.hesap-hero__map .marker:hover .marker__dot   { fill: var(--c-primary); }
.hesap-hero__map .marker:hover .marker__label { opacity: 1; }

/* Aktif marker — pulse animasyonlu canlı işaret */
.hesap-hero__map .marker.is-active .marker__dot {
    fill: var(--c-primary);
    stroke: #fff;
    stroke-width: 2.5;
}
.hesap-hero__map .marker.is-active .marker__label { opacity: 1; }
.hesap-hero__map .marker.is-active .marker__halo {
    opacity: .55;
    animation: hesapMarkerPulse 1.8s ease-in-out infinite;
}
@keyframes hesapMarkerPulse {
    0%, 100% { transform: scale(1);   opacity: .55; }
    50%      { transform: scale(2.2); opacity: .05; }
}
/* Bölge overlay - tıklanır ama görsel olarak şeffaf */
.hesap-hero__map path.region {
    fill: rgba(10, 42, 102, .04);
    stroke: transparent;
    cursor: pointer;
    transition: fill var(--t-fast);
}
.hesap-hero__map path.region:hover    { fill: rgba(10, 42, 102, .12); }
.hesap-hero__map path.region.is-active { fill: rgba(200, 16, 46, .14); }

/* (Eski .hesap-hero__col--map override'ları kaldırıldı — yeni sol-panel layoutu .hesap-hero__filter altında.) */

/* ============================================================
   Wizard shell
   ============================================================ */
.hesap-wizard {
    max-width: 1080px;
    margin: 32px auto 0;
    padding: 0 24px 56px;
    flex: 1;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Progress bar */
.hesap-progress {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 999px;
    padding: 6px;
    margin-bottom: 8px;
    display: flex;
    gap: 4px;
    box-shadow: var(--sh-sm);
}
.hesap-progress__step {
    flex: 1;
    height: 6px;
    background: var(--c-border);
    border-radius: 999px;
    transition: background var(--t-base);
}
.hesap-progress__step.is-done   { background: var(--c-primary); }
.hesap-progress__step.is-active { background: linear-gradient(90deg, var(--c-primary) 0%, rgba(200, 16, 46, .35) 100%); }

.hesap-progress__label {
    font-size: 12px;
    color: var(--c-muted);
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ============================================================
   Step panels
   ============================================================ */
.hesap-step {
    display: none;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: var(--sh);
    animation: hesapFadeIn .35s var(--t-base);
}
.hesap-step.is-active { display: block; }
@keyframes hesapFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hesap-step__title {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.015em;
    color: var(--c-text);
}
.hesap-step__desc {
    color: var(--c-muted);
    margin: 0 0 28px;
    font-size: 15px;
}

/* ============================================================
   Choice cards (radio/checkbox grid)
   ============================================================ */
.hesap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 540px) {
    .hesap-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
    .hesap-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
    .hesap-grid--4 { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }
}
/* Kategori seçim kartı (Step 1) */
.hesap-choice--cat .hesap-choice__inner { padding: 20px 18px; gap: 8px; }
.hesap-choice__sub {
    font-size: 11px;
    color: var(--c-muted);
    line-height: 1.4;
    margin-top: 2px;
}
@media (min-width: 1024px) {
    .hesap-grid--4 { gap: 18px; }
}

.hesap-choice {
    position: relative;
    display: block;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r);
    background: var(--c-surface);
    cursor: pointer;
    transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
    overflow: hidden;
}
.hesap-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.hesap-choice__inner {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}
.hesap-choice__icon {
    font-size: 28px;
    line-height: 1;
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-accent-l);
    color: var(--c-accent);
    border-radius: 10px;
    margin-bottom: 4px;
}
.hesap-choice__title {
    font-weight: 700;
    color: var(--c-text);
    font-size: 15px;
    letter-spacing: -.01em;
}
.hesap-choice__desc {
    color: var(--c-muted);
    font-size: 13px;
}
.hesap-choice:hover {
    border-color: var(--c-primary);
    transform: translateY(-1px);
    box-shadow: var(--sh-sm);
}
.hesap-choice:has(input:checked) {
    border-color: var(--c-primary);
    background: var(--c-primary-l);
    box-shadow: 0 0 0 4px rgba(200, 16, 46, .12);
}
.hesap-choice:has(input:checked) .hesap-choice__icon {
    background: var(--c-primary);
    color: #fff;
}
.hesap-choice:has(input:checked)::after {
    content: '✓';
    position: absolute;
    top: 12px; right: 14px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-pri);
}

/* ============================================================
   Form fields
   ============================================================ */
.hesap-field {
    display: block;
    margin-bottom: 18px;
}
.hesap-field__label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--c-text-2);
    letter-spacing: -.005em;
}
.hesap-field__hint {
    font-size: 12px;
    color: var(--c-muted);
    margin-top: 6px;
}
.hesap-input,
.hesap-select,
.hesap-textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid var(--c-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--c-text);
    background: #fff;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.hesap-input:focus,
.hesap-select:focus,
.hesap-textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(200, 16, 46, .12);
}
.hesap-textarea { resize: vertical; min-height: 88px; }
.hesap-field--invalid .hesap-input,
.hesap-field--invalid .hesap-select { border-color: var(--c-error); }
.hesap-field__error {
    color: var(--c-error);
    font-size: 13px;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}
.hesap-field--invalid .hesap-field__error { display: block; }

.hesap-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 540px) {
    .hesap-row--2 { grid-template-columns: 1fr 1fr; }
    .hesap-row--3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* Honeypot */
.hesap-honey {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    opacity: 0;
}

/* KVKK consent */
.hesap-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
}
.hesap-consent input { margin-top: 4px; transform: scale(1.15); accent-color: var(--c-primary); }
.hesap-consent label { font-size: 14px; line-height: 1.5; color: var(--c-text-2); }
.hesap-consent a { color: var(--c-primary); text-decoration: underline; }

/* ============================================================
   Step navigation buttons
   ============================================================ */
.hesap-nav {
    display: flex;
    justify-content: flex-end;   /* Back + Continue ikisi de sağda gruplanır */
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.hesap-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border: 1.5px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: var(--t-fast);
    letter-spacing: -.005em;
}
.hesap-btn:active { transform: translateY(1px); }
.hesap-btn--primary {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-d) 100%);
    color: #fff;
    box-shadow: var(--sh-pri);
}
.hesap-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(200, 16, 46, .32); }
.hesap-btn--primary:disabled,
.hesap-btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }
.hesap-btn--ghost {
    background: transparent;
    border-color: var(--c-border-strong);
    color: var(--c-text);
}
.hesap-btn--ghost:hover { background: var(--c-surface-2); border-color: var(--c-primary); }
.hesap-btn--link {
    background: transparent;
    color: var(--c-primary);
    padding: 10px 14px;
}
.hesap-btn--link:hover { text-decoration: underline; }

/* ============================================================
   Country picker (Step 3)
   ============================================================ */
.hesap-location {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 920px) {
    .hesap-location { grid-template-columns: 1fr 1.2fr; }
}

.hesap-location__picker { display: flex; flex-direction: column; gap: 14px; }

.hesap-location__map-wrap {
    background: linear-gradient(180deg, #f0f6fa 0%, #e6eef4 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 12px;
    min-height: 240px;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--sh-sm);
}
@media (max-width: 919px) {
    .hesap-location__map-wrap { aspect-ratio: 16 / 9; min-height: 180px; }
}
.hesap-location__map-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
}
.hesap-location__map-wrap path.region {
    fill: #94a3b8;            /* daha belirgin gri (slate-400) */
    stroke: #fff;
    stroke-width: 0.8;
    transition: fill var(--t-fast), transform var(--t-fast);
    cursor: pointer;
}
.hesap-location__map-wrap path.region:hover { fill: #64748b; }
.hesap-location__map-wrap path.region.is-active {
    fill: var(--c-accent);    /* Solimpeks lacivert — seçili bölge */
}
.hesap-location__map-wrap .map-label {
    fill: rgba(255, 255, 255, .9);
    font-size: 11px;
    font-weight: 700;
    pointer-events: none;
    text-anchor: middle;
    letter-spacing: .05em;
}

/* Country markers */
.hesap-location__map-wrap .marker { cursor: pointer; }
.hesap-location__map-wrap .marker .marker__halo {
    fill: var(--c-primary);
    opacity: 0;
    transition: opacity var(--t-fast), r var(--t-fast);
}
.hesap-location__map-wrap .marker .marker__dot {
    fill: #fff;
    stroke: var(--c-accent);
    stroke-width: 1.5;
    transition: fill var(--t-fast), stroke var(--t-fast), r var(--t-fast);
}
.hesap-location__map-wrap .marker .marker__label {
    fill: var(--c-text);
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    paint-order: stroke;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linejoin: round;
    pointer-events: none;
    transition: opacity var(--t-fast);
}
.hesap-location__map-wrap .marker:hover .marker__halo { opacity: .35; }
.hesap-location__map-wrap .marker:hover .marker__dot  { fill: var(--c-primary); stroke: #fff; }
.hesap-location__map-wrap .marker:hover .marker__label { opacity: 1; }
.hesap-location__map-wrap .marker.is-active .marker__halo { opacity: .55; }
.hesap-location__map-wrap .marker.is-active .marker__dot  { fill: var(--c-primary); stroke: #fff; }
.hesap-location__map-wrap .marker.is-active .marker__label { opacity: 1; }

.hesap-region-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    border-bottom: 1.5px solid var(--c-border);
    padding-bottom: 0;
    margin-bottom: 4px;
}
.hesap-region-tabs button {
    padding: 9px 14px;
    background: transparent;
    border: none;
    border-bottom: 2.5px solid transparent;
    color: var(--c-muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--t-fast);
    margin-bottom: -1.5px;
    letter-spacing: -.005em;
}
.hesap-region-tabs button:hover { color: var(--c-text); }
.hesap-region-tabs button.is-active {
    color: var(--c-primary);
    border-bottom-color: var(--c-primary);
}

.hesap-country-search {
    width: 100%;
    padding: 11px 14px 11px 38px;
    border: 1.5px solid var(--c-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E")
        no-repeat 12px center #fff;
}
.hesap-country-search:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(200, 16, 46, .12);
}

.hesap-country-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
    padding: 4px;
    border: 1px solid var(--c-border);
    border-radius: 10px;
    background: var(--c-surface-2);
}
.hesap-country-list::-webkit-scrollbar { width: 6px; }
.hesap-country-list::-webkit-scrollbar-thumb { background: var(--c-border-strong); border-radius: 999px; }

.hesap-country {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    background: #fff;
    border: 1.5px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    color: var(--c-text);
    text-align: left;
    transition: var(--t-fast);
    font-weight: 500;
    width: 100%;
}
.hesap-country:hover { border-color: var(--c-primary); }
.hesap-country.is-active {
    background: var(--c-primary-l);
    border-color: var(--c-primary);
    font-weight: 700;
}
.hesap-country__iso {
    display: inline-block;
    min-width: 28px;
    padding: 2px 6px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-align: center;
    font-family: ui-monospace, "SF Mono", Consolas, monospace;
}
.hesap-country.is-active .hesap-country__iso { background: var(--c-primary); }
.hesap-country__name { flex: 1; line-height: 1.2; }

.hesap-country-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--c-primary-l) 0%, #fff 100%);
    border: 1.5px solid var(--c-primary);
    border-radius: var(--r);
    margin-bottom: 4px;
}
.hesap-country-selected__info { display: flex; align-items: center; gap: 12px; }
.hesap-country-selected__iso {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-primary);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    box-shadow: var(--sh-pri);
}
.hesap-country-selected__name { font-weight: 700; font-size: 16px; color: var(--c-text); }
.hesap-country-selected__meta { font-size: 12px; color: var(--c-muted); }
.hesap-country-selected__irr {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--c-accent);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

/* ============================================================
   Loading overlay
   ============================================================ */
.hesap-loading {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}
.hesap-loading.is-active { display: flex; }
.hesap-loading__box {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 32px 40px;
    text-align: center;
    box-shadow: var(--sh-lg);
    max-width: 340px;
    animation: hesapZoom .25s var(--t-base);
}
@keyframes hesapZoom {
    from { opacity: 0; transform: scale(.94); }
    to   { opacity: 1; transform: scale(1); }
}
.hesap-loading__spinner {
    width: 52px; height: 52px;
    border: 4px solid var(--c-border);
    border-top-color: var(--c-primary);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: hesapSpin .9s linear infinite;
}
@keyframes hesapSpin { to { transform: rotate(360deg); } }
.hesap-loading__msg { color: var(--c-text); font-weight: 700; font-size: 15px; }
.hesap-loading__sub  { color: var(--c-muted); font-size: 13px; margin-top: 4px; }

/* ============================================================
   Result page (thank-you)
   ============================================================ */
.hesap-result-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 36px 16px 56px;
}
.hesap-result__intro {
    text-align: center;
    margin-bottom: 32px;
}
.hesap-result__intro .hesap-eyebrow {
    display: inline-block;
    background: var(--c-success);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.hesap-result__intro h1 {
    font-size: clamp(26px, 4vw, 36px);
    margin: 0 0 10px;
    letter-spacing: -.02em;
    font-weight: 800;
}
.hesap-result__intro p {
    color: var(--c-muted);
    margin: 0 auto;
    max-width: 540px;
}

/* KPI grid */
.hesap-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}
@media (min-width: 720px) { .hesap-kpis { grid-template-columns: repeat(4, 1fr); } }
.hesap-kpi {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 18px 16px;
    text-align: center;
    box-shadow: var(--sh-sm);
    transition: transform var(--t-fast), box-shadow var(--t-fast);
    position: relative;
    overflow: hidden;
}
.hesap-kpi::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 100%);
    opacity: 0;
    transition: opacity var(--t-fast);
}
.hesap-kpi:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.hesap-kpi:hover::before { opacity: 1; }
.hesap-kpi__label {
    font-size: 11px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    margin-bottom: 6px;
}
.hesap-kpi__value {
    font-size: 28px;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1.05;
    letter-spacing: -.02em;
}
.hesap-kpi__unit { font-size: 13px; color: var(--c-muted); font-weight: 700; }

.hesap-section-title {
    font-size: 22px;
    margin: 36px 0 16px;
    letter-spacing: -.015em;
    font-weight: 800;
    color: var(--c-text);
}
.hesap-section-title small {
    color: var(--c-muted);
    font-weight: 500;
    font-size: 14px;
    margin-left: 8px;
    letter-spacing: 0;
}

/* Product cards */
.hesap-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 720px) {
    .hesap-cards { grid-template-columns: 1.4fr 1fr 1fr; }
}
.hesap-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: var(--sh-sm);
    overflow: hidden;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
    position: relative;
}
.hesap-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.hesap-card--primary {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 1.5px var(--c-primary), var(--sh);
}
.hesap-card__tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--c-primary);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
    box-shadow: var(--sh-pri);
}
.hesap-card__tag--alt {
    background: var(--c-accent);
    box-shadow: 0 4px 12px rgba(11, 79, 108, .25);
}
.hesap-card__img-wrap {
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), transparent 60%),
        linear-gradient(135deg, #f0f6fa 0%, #e0e8ee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
}
.hesap-card__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .4s var(--t-base);
}
.hesap-card:hover .hesap-card__img { transform: scale(1.05); }
.hesap-card__img--placeholder {
    width: 56px; height: 56px;
    background: var(--c-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-muted);
    font-size: 22px;
}
.hesap-card__body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.hesap-card__name {
    font-size: 17px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -.015em;
    color: var(--c-text);
}
.hesap-card__meta {
    color: var(--c-muted);
    font-size: 12px;
    text-transform: capitalize;
}
.hesap-card__capacity {
    font-size: 22px;
    color: var(--c-accent);
    font-weight: 800;
    letter-spacing: -.015em;
    margin-top: 4px;
}
.hesap-card__links {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hesap-card__links a {
    color: var(--c-accent);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.hesap-card__links a:hover { color: var(--c-primary); text-decoration: underline; }

.hesap-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
    justify-content: center;
}

/* Regional fit (sonuç sayfası) */
.hesap-region-fit {
    background: linear-gradient(135deg, var(--c-accent-l) 0%, #fff 100%);
    border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-accent);
    border-radius: var(--r);
    padding: 18px 20px;
    margin-bottom: 18px;
}
.hesap-region-fit__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.hesap-region-fit__badge { font-size: 26px; line-height: 1; }
.hesap-region-fit__title { font-weight: 800; font-size: 16px; color: var(--c-text); letter-spacing: -.01em; }
.hesap-region-fit__line { font-size: 13px; color: var(--c-muted); margin-top: 2px; }
.hesap-region-fit__products { display: flex; flex-wrap: wrap; gap: 6px; }
.hesap-region-fit__chip {
    display: inline-flex; align-items: center;
    background: #fff; border: 1px solid var(--c-border);
    color: var(--c-accent); padding: 5px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 700;
}

/* Alert */
.hesap-alert {
    border: 1px solid #f5d49c;
    background: #fef9ec;
    border-left: 4px solid var(--c-warn);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--c-warn);
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.5;
}

/* Footer */
.hesap-foot {
    background: #0f172a;
    color: #94a3b8;
    padding: 32px 24px;
    text-align: center;
    font-size: 13px;
    margin-top: auto;
}
.hesap-foot a { color: #cbd5e1; text-decoration: none; }
.hesap-foot a:hover { color: #fff; }
.hesap-foot strong { color: #fff; }

/* ---- Tablet & small ---- */
@media (max-width: 720px) {
    /* Mobilde yatay taşmayı tamamen kes (head/topbar sağdan kırpılmasın) */
    html, body { overflow-x: hidden; }
    /* CTA + seçili ülke + şehir kutuları içerik min-width'i kadar şişmesin */
    .hesap-hero__cta,
    .hesap-hero__selected-block,
    .hesap-hero__selected,
    .hesap-hero__city-wrap,
    .hesap-hero__region-tip { min-width: 0; }
    /* KRİTİK: masaüstündeki flex-basis (240px/260px) dikey kolonda YÜKSEKLİK oluyordu
       → kutular boyuna uzayıp dev boşluk bırakıyordu. Mobilde içerik-yüksekliğine sabitle. */
    .hesap-hero__selected-block,
    .hesap-hero__selected,
    .hesap-hero__city-wrap,
    .hesap-hero__region-tip-main { flex: 0 0 auto; }
    /* Şehir kutusu: uzun etiket + select alt alta; select normal yükseklikte (uzamasın) */
    .hesap-hero__city-wrap { flex-direction: column; align-items: stretch; }
    .hesap-hero__city-wrap label { flex-shrink: 1; white-space: normal; }
    .hesap-hero__city-select, .hesap-hero__city-search { flex: 0 0 auto; width: 100%; }
    .hesap-hero__city-select { height: 46px; }
    /* Bölge öneri kutusu: dikey + ürün çipleri sarsın (üstte bar, hemen altında çipler) */
    .hesap-hero__region-tip { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hesap-hero__region-tip-products { flex-wrap: wrap; justify-content: flex-start; width: 100%; }
    /* Bina tipi + ihtiyaç kartları: telefonda 2 sütun (1 yerine) */
    .hesap-grid--4, .hesap-grid--3 { grid-template-columns: 1fr 1fr; }
    /* KPI'lar: 2 sütun (zaten base) */
    .hesap-kpis { grid-template-columns: 1fr 1fr; }
    /* Ürün kartları tek sütun */
    .hesap-cards { grid-template-columns: 1fr; }
    /* Sonuç sayfası: geniş aylık tablo (8 sütun) sayfayı yana şişirip ÜST içeriği
       (başlık/uyarı/KPI) sağdan kırpıyordu. Tabloyu kendi içinde yatay-kaydırılabilir
       kutu yap → sayfa viewport'ta kalır, tablo kart içinde kayar. */
    .hesap-result-wrap { max-width: 100%; overflow-x: hidden; }
    .hesap-result-wrap .a-card { min-width: 0; }
    .hesap-result-wrap table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ---- Phone ---- */
@media (max-width: 539px) {
    .hesap-step { padding: 20px 16px; border-radius: var(--r); }
    .hesap-step__title { font-size: 22px; }
    .hesap-hero { padding: 32px 16px 36px; }
    .hesap-hero h1 { font-size: 24px; }
    .hesap-hero p { font-size: 15px; }
    .hesap-wizard { margin-top: 20px; padding: 0 14px 48px; }
    .hesap-nav { flex-direction: column-reverse; }
    .hesap-btn { width: 100%; }
    /* Choice kartları: telefonda yatay kompakt değil, dikey kalsın ama padding az */
    .hesap-choice__inner { padding: 14px; }
    .hesap-choice__icon { width: 38px; height: 38px; font-size: 22px; }
    .hesap-topbar { padding: 12px 16px; }
    /* Sonuç KPI değerleri biraz küçült */
    .hesap-kpi__value { font-size: 22px; }
    /* Section başlık */
    .hesap-section-title { font-size: 18px; }
    /* Aylık tablo: yatay scroll zaten var; font küçült */
    .hesap-country-list { max-height: 280px; }
}

/* ---- Çok dar (≤380px) ---- */
@media (max-width: 380px) {
    .hesap-grid--4, .hesap-grid--3, .hesap-grid { grid-template-columns: 1fr; }
    .hesap-kpis { grid-template-columns: 1fr; }
    .hesap-region-chips { grid-template-columns: 1fr; }
}

/* Flex-column body'nin çocukları içerik min-content'i kadar şişmesin
   (mobilde yatay taşmayı önler — head/topbar artık viewport'ta kalır). */
body.hesap-page > * { min-width: 0; }
