/* ============================================================
   Kuryemi Bul — styles.css
   Premium DARK tasarım sistemi — landing page ile ORTAK kimlik.
   (landing.css ile aynı palet/font/glow; eski sayfalar buradan beslenir)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    /* Palet (premium dark — landing ortak) */
    --bg: #050505;          /* sayfa zemini */
    --bg-2: #0a0c14;        /* alternatif bölüm zemini */
    --white: #0c1119;       /* kart yüzeyi (legacy ad: --white) */
    --surface-2: #141b29;   /* girdi / yükseltilmiş yüzey */
    --navy: #f4f6fb;        /* birincil metin (legacy ad: --navy) */
    --navy-soft: #aebbd0;   /* ikincil metin */
    --muted: #74819a;       /* sönük metin */
    --line: rgba(255,255,255,0.09); /* kenarlık */

    /* Aksanlar */
    --accent: #22D3EE;      /* cyan (legacy ad: --orange) */
    --orange: #22D3EE;
    --orange-dark: #0EA5C4;
    --accent-2: #4f8bff;    /* elektrik mavi */
    --yellow: #4f8bff;      /* legacy ad: ikincil aksan */
    --blue: #4f8bff;
    --gold: #FBBF24;
    --green: #34D399;
    --danger: #F87171;
    --on-accent: #04060e;   /* aksan üstü koyu metin */
    --accent-grad: linear-gradient(120deg, #22D3EE 0%, #4f8bff 55%, #a855f7 110%);

    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.82);
    --shadow-lg: 0 30px 70px -20px rgba(79, 139, 255, 0.32);
    --max: 1180px;
    --transition: 0.25s ease;

    /* font */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --display: 'Space Grotesk', var(--font);

    /* Hero ışıltı */
    --glowA: 34, 211, 238;
    --glowB: 79, 139, 255;
    --heroTop: #080b14;
}

/* ===== AYDINLIK (BEYAZ) TEMA ===== */
[data-theme="light"] {
    --bg: #F4F7FB;
    --bg-2: #FFFFFF;
    --white: #FFFFFF;
    --surface-2: #EEF2F8;
    --navy: #0F1B2D;
    --navy-soft: #46566F;
    --muted: #6B7890;
    --line: #E2E8F2;
    --accent: #0EA5C4;
    --orange: #0EA5C4;
    --orange-dark: #0B8FAA;
    --accent-2: #2563EB;
    --yellow: #2563EB;
    --blue: #2563EB;
    --on-accent: #FFFFFF;
    --accent-grad: linear-gradient(135deg, #06B6D4 0%, #2563EB 100%);
    --shadow: 0 12px 34px rgba(15, 27, 45, 0.08);
    --shadow-lg: 0 24px 60px rgba(37, 99, 235, 0.16);
    --glowA: 6, 182, 212;
    --glowB: 37, 99, 235;
    --heroTop: #EAF2FF;
}
[data-theme="light"] .header { background: rgba(255, 255, 255, 0.85); }
[data-theme="light"] .leaflet-container { background: #E8EEF6; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--navy);
    line-height: 1.6;
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    position: relative;
}
/* ambient premium arka plan (markup gerektirmez) */
body::before {
    content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 0%, #000 30%, transparent 78%);
            mask-image: radial-gradient(ellipse 75% 55% at 50% 0%, #000 30%, transparent 78%);
}
body::after {
    content: ""; position: fixed; inset: 0; z-index: -3; pointer-events: none;
    background:
        radial-gradient(600px 600px at 12% -5%, rgba(47,107,255,0.18), transparent 70%),
        radial-gradient(560px 560px at 92% 8%, rgba(34,211,238,0.12), transparent 70%),
        radial-gradient(680px 680px at 70% 100%, rgba(139,92,246,0.12), transparent 70%);
}
[data-theme="light"] body::before { opacity: 0.5; }
[data-theme="light"] body::after { opacity: 0.35; }
h1, h2, h3, .hero__title, .section__title, .page-head h1 { font-family: var(--display); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(79, 139, 255, 0.30); color: #fff; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: 760px; }

/* ===================== BETA BANNER ===================== */
/* landing page tutarlılığı: gizli — landing sayfasında da yok */
.demo-banner { display: none; }

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 1rem; font-weight: 700; border: 1.5px solid transparent;
    border-radius: 999px; padding: 12px 26px; cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    font-family: inherit; line-height: 1;
}
.btn--primary { background: var(--accent-grad); color: var(--on-accent); box-shadow: 0 14px 40px -14px rgba(79, 139, 255, 0.8); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 55px -14px rgba(79, 139, 255, 0.95); filter: brightness(1.05); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { background: rgba(34,211,238,0.08); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--light { background: var(--surface-2); color: var(--navy); border-color: var(--line); }
.btn--light:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 15px 34px; font-size: 1.05rem; }
.btn--sm { padding: 9px 18px; font-size: 0.9rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===================== HEADER ===================== */
/* şeffaf başlar, scroll'da (is-stuck) cam olur — landing nav ile aynı davranış */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .4s, border-color .4s, backdrop-filter .4s;
}
.header.is-stuck {
    background: rgba(7, 8, 13, 0.75);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom-color: var(--line);
}
[data-theme="light"] .header.is-stuck { background: rgba(255, 255, 255, 0.85); }
.header .container { max-width: 1340px; }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }

/* demo-banner varsa header pozisyonu düzeltmesi */
.demo-banner + #app-header .header,
body > .demo-banner ~ * .header { top: 0; }

/* page-head header yüksekliğini telafi eder */
.page-head { padding-top: calc(72px + 36px); }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.12rem; color: var(--navy); white-space: nowrap; }
.logo__icon { font-size: 1.5rem; }
.logo__img { height: 38px; width: 38px; border-radius: 9px; object-fit: cover; display: block; }
.footer .logo__img { height: 34px; width: 34px; }
.logo--light { color: #FFFFFF; }

.nav { display: flex; align-items: center; gap: 10px; }
.nav a { font-weight: 600; font-size: 0.9rem; color: var(--navy-soft); transition: color var(--transition); white-space: nowrap; }
.nav a:hover, .nav a.is-active { color: var(--accent); }
.nav__cta { color: var(--on-accent) !important; padding: 10px 20px; }
.nav__cta:hover { color: var(--on-accent) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: var(--transition); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
    position: relative; overflow: hidden; text-align: center;
    background:
        radial-gradient(circle at 85% 18%, rgba(var(--glowA), 0.18), transparent 48%),
        radial-gradient(circle at 10% 92%, rgba(var(--glowB), 0.16), transparent 46%),
        linear-gradient(180deg, var(--heroTop) 0%, var(--bg) 100%);
    padding: 90px 0 96px;
    border-bottom: 1px solid var(--line);
}
.hero__inner { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.badge {
    display: inline-block; background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.30);
    color: var(--accent); font-weight: 600; font-size: 0.9rem; padding: 8px 18px;
    border-radius: 999px; margin-bottom: 24px; backdrop-filter: blur(6px);
}
.hero__title { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; }
.hero__title .accent { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__subtitle { font-size: 1.16rem; color: var(--navy-soft); max-width: 680px; margin: 22px auto 34px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Hero değer rozetleri (uydurma sayı yerine) */
.trust-row {
    display: flex; align-items: stretch; gap: 14px; margin-top: 54px; flex-wrap: wrap; justify-content: center;
}
.trust {
    display: flex; align-items: center; gap: 12px;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 16px 22px; min-width: 210px;
}
.trust__ic { font-size: 1.5rem; width: 44px; height: 44px; display: grid; place-items: center; background: rgba(34,211,238,0.10); border-radius: 12px; }
.trust__t { font-weight: 800; font-size: 0.98rem; }
.trust__d { color: var(--muted); font-size: 0.82rem; }

/* Eski stats (iç sayfalarda kullanılırsa) */
.stats { display: flex; align-items: center; gap: 28px; margin-top: 52px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 36px; box-shadow: var(--shadow); }
.stat { display: flex; flex-direction: column; }
.stat__num { font-size: 1.8rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat__label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.stat__sep { width: 1px; height: 36px; background: var(--line); }

/* ===================== SECTIONS ===================== */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-2); }
.section--sm { padding: 48px 0; }
.section__head { text-align: center; max-width: 660px; margin: 0 auto 50px; }
.eyebrow { display: inline-block; color: var(--accent); font-weight: 700; font-size: 0.82rem; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 10px; }
.section__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.5px; }
.section__lead { color: var(--navy-soft); font-size: 1.08rem; margin-top: 12px; }

/* Sayfa başlığı — landing hero ile aynı transparan, arka plan devamlılığı */
.page-head {
    position: relative; overflow: hidden;
    background: transparent;
    /* header 72px + 48px boşluk */
    padding: 120px 0 52px;
}
/* hafif radyal glow — landing hero atmosferi */
.page-head::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 80% 100% at 10% 0%, rgba(34,211,238,0.07), transparent 60%),
        radial-gradient(ellipse 70% 100% at 90% 100%, rgba(79,139,255,0.07), transparent 60%);
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.08; }
.page-head p { color: var(--navy-soft); margin-top: 12px; font-size: 1.05rem; max-width: 660px; }

/* ===================== KATEGORİ KARTLARI (ana sayfa) ===================== */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card {
    position: relative; overflow: hidden;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 28px; display: flex; flex-direction: column; gap: 10px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cat-card::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
    background: var(--accent-grad); opacity: 0; transition: opacity var(--transition);
}
.cat-card:hover { transform: translateY(-6px); border-color: rgba(34,211,238,0.45); box-shadow: var(--shadow-lg); }
.cat-card:hover::before { opacity: 1; }
.cat-card__ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; font-size: 1.9rem; background: rgba(34,211,238,0.10); border: 1px solid rgba(34,211,238,0.22); margin-bottom: 6px; }
.cat-card h3 { font-size: 1.3rem; }
.cat-card p { color: var(--navy-soft); flex: 1; }
.cat-card__link { color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; transition: gap var(--transition); }
.cat-card:hover .cat-card__link { gap: 12px; }

/* ===================== FELSEFE / KONSEPT BÖLÜMÜ ===================== */
.concept { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.concept__title { font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 18px; }
.concept__title .accent { color: var(--accent); }
.concept__text p { color: var(--navy-soft); font-size: 1.06rem; margin-bottom: 16px; }
.concept__list { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.concept__list li { position: relative; padding-left: 32px; color: var(--navy); font-weight: 600; }
.concept__list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; background: var(--accent-grad); color: var(--on-accent); border-radius: 50%; display: grid; place-items: center; font-size: 0.78rem; font-weight: 800; }
.concept__visual {
    background: linear-gradient(160deg, var(--surface-2), var(--white));
    border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
    box-shadow: var(--shadow);
}
.concept__quote { font-size: 1.15rem; font-style: italic; color: var(--navy); line-height: 1.7; }
.concept__quote::before { content: "“"; font-size: 3rem; color: var(--accent); line-height: 0; vertical-align: -0.4em; margin-right: 6px; }
.concept__by { margin-top: 18px; color: var(--muted); font-weight: 700; font-size: 0.9rem; }
.concept__card-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 18px; }
.concept__roles { list-style: none; display: grid; gap: 16px; }
.concept__roles li { display: flex; align-items: flex-start; gap: 14px; }
.concept__role-ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem; background: rgba(34,211,238,0.10); border: 1px solid rgba(34,211,238,0.20); }
.concept__role-tx { display: flex; flex-direction: column; }
.concept__role-tx b { font-size: 1rem; }
.concept__role-d { color: var(--navy-soft); font-size: 0.9rem; }

/* ===================== CANLI İSTATİSTİK BANDI ===================== */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 20px; text-align: center; position: relative; overflow: hidden; }
.stat-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--accent-grad); }
.stat-card__num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat-card__label { color: var(--navy-soft); font-size: 0.9rem; margin-top: 8px; font-weight: 600; }

/* ===================== NUMARALI TIMELINE ===================== */
.timeline { max-width: 760px; margin: 0 auto; display: grid; gap: 0; position: relative; }
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding-bottom: 36px; position: relative; }
.tl-step:not(:last-child)::before { content: ""; position: absolute; left: 27px; top: 52px; bottom: 0; width: 2px; background: linear-gradient(var(--accent), transparent); }
.tl-num { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; font-size: 1.3rem; font-weight: 900; color: var(--on-accent); background: var(--accent-grad); box-shadow: 0 8px 20px rgba(34,211,238,0.25); }
.tl-body { padding-top: 6px; }
.tl-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tl-body p { color: var(--navy-soft); }

/* ===================== DÖNÜŞÜMLÜ 2-SÜTUN ===================== */
.alt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.alt-row:last-child { margin-bottom: 0; }
.alt-row--rev .alt-row__text { order: 2; }
.alt-row__eyebrow { color: var(--accent); font-weight: 700; font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; }
.alt-row__title { font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 800; letter-spacing: -0.5px; margin: 10px 0 14px; }
.alt-row__text p { color: var(--navy-soft); font-size: 1.05rem; margin-bottom: 18px; }
.alt-row__list { list-style: none; display: grid; gap: 10px; }
.alt-row__list li { position: relative; padding-left: 30px; color: var(--navy); font-weight: 600; }
.alt-row__list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; background: rgba(34,211,238,0.14); color: var(--accent); border-radius: 50%; display: grid; place-items: center; font-size: 0.78rem; font-weight: 800; }
.alt-row__visual { background: linear-gradient(150deg, var(--surface-2), var(--white)); border: 1px solid var(--line); border-radius: var(--radius); min-height: 260px; display: grid; place-items: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.alt-row__visual::before { content: ""; position: absolute; width: 260px; height: 260px; background: radial-gradient(circle, rgba(34,211,238,0.18), transparent 70%); top: -60px; right: -60px; }
.alt-row__ic { font-size: 5rem; filter: drop-shadow(0 10px 24px rgba(0,0,0,.4)); position: relative; }

/* ===================== BÖLGE GRID ===================== */
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.region-card { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; transition: border-color var(--transition), transform var(--transition); }
.region-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.region-card__pin { font-size: 1.2rem; }
.region-card__name { font-weight: 700; }

/* ===================== YORUM CAROUSEL ===================== */
.tcarousel { position: relative; overflow: hidden; }
.tcarousel__track { display: flex; transition: transform 0.5s ease; }
.tcarousel__slide { min-width: 100%; padding: 4px; }
.tquote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; max-width: 760px; margin: 0 auto; box-shadow: var(--shadow); }
.tquote__stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.tquote__text { font-size: 1.15rem; line-height: 1.7; color: var(--navy); font-style: italic; }
.tquote__by { margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.tquote__av { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; color: var(--on-accent); background: var(--accent-grad); }
.tquote__name { font-weight: 800; }
.tquote__role { color: var(--muted); font-size: 0.85rem; }
.tcarousel__dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.tcarousel__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; transition: var(--transition); padding: 0; }
.tcarousel__dots button.is-active { background: var(--accent); width: 24px; border-radius: 999px; }

/* ===================== STEPS ===================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 28px 30px; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 34px; height: 34px; background: var(--accent-grad); color: var(--on-accent); border-radius: 50%; display: grid; place-items: center; font-weight: 800; box-shadow: 0 6px 14px rgba(34, 211, 238, 0.35); }
.step__icon { font-size: 2.6rem; margin: 8px 0 14px; }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--navy-soft); }

/* ===================== AUDIENCE ===================== */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.aud-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition); }
.aud-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.aud-card--featured { border-color: rgba(34,211,238,0.45); box-shadow: var(--shadow-lg); }
.aud-card__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent-grad); color: var(--on-accent); font-size: 0.78rem; font-weight: 800; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.aud-card__icon { font-size: 2.8rem; margin-bottom: 12px; }
.aud-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.aud-card > p { color: var(--navy-soft); margin-bottom: 18px; }
.ticks { list-style: none; margin-bottom: 26px; display: grid; gap: 10px; flex: 1; }
.ticks li { position: relative; padding-left: 28px; color: var(--navy-soft); }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; background: rgba(34, 211, 238, 0.14); color: var(--accent); border-radius: 50%; display: grid; place-items: center; font-size: 0.75rem; font-weight: 800; }

/* ===================== FEATURES ===================== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform var(--transition), box-shadow var(--transition); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(34,211,238,0.30); }
.feature__icon { width: 54px; height: 54px; background: var(--accent-grad); border-radius: 14px; display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 16px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature p { color: var(--navy-soft); }

/* ===================== TOOLBAR / FILTERS ===================== */
.toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 28px; }
.toolbar .search { flex: 1; min-width: 220px; }
.toolbar input[type="search"], .toolbar select {
    width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    padding: 11px 14px; font-size: 0.95rem; font-family: inherit; background: var(--surface-2); color: var(--navy);
}
.toolbar select { width: auto; min-width: 150px; cursor: pointer; }
.toolbar input:focus, .toolbar select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,211,238,0.14); }
.result-count { color: var(--navy-soft); font-size: 0.92rem; font-weight: 600; margin-bottom: 18px; }
.result-count::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-right: 8px; vertical-align: middle; }

/* ===================== POOL CARDS ===================== */
.pool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pcard {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px; display: flex; flex-direction: column; gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(34,211,238,0.30); }
.pool-star { position: absolute; top: 14px; right: 14px; z-index: 3; width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface-2); color: var(--muted); font-size: 1.05rem; line-height: 1; cursor: pointer; transition: var(--transition); display: grid; place-items: center; }
.pool-star:hover { border-color: var(--accent); color: var(--accent); }
.pool-star.is-on { color: var(--gold); border-color: var(--gold); background: rgba(251,191,36,0.10); }
.pool-toggle.is-on { color: var(--gold); border-color: var(--gold); }

/* ===================== PREMIUM KART CİLASI (ortak) ===================== */
.pcard, .panel-box, .profile__card, .cat-card, .trust, .stats, .toolbar {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)) ,
        var(--white);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.pcard:hover, .cat-card:hover { box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06); }
.panel-box { transition: border-color var(--transition), box-shadow var(--transition); }
.panel-box:hover { border-color: rgba(255,255,255,0.16); }
[data-theme="light"] .pcard, [data-theme="light"] .panel-box, [data-theme="light"] .profile__card,
[data-theme="light"] .cat-card, [data-theme="light"] .trust, [data-theme="light"] .stats, [data-theme="light"] .toolbar { background: var(--white); box-shadow: var(--shadow); }

/* Değerlendirme */
.rev-form { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 18px; }
.rev-picker { display: inline-flex; gap: 4px; margin: 8px 0 12px; }
.rev-star { background: none; border: none; cursor: pointer; font-size: 1.5rem; line-height: 1; color: var(--line); transition: color var(--transition); padding: 0; }
.rev-star:hover, .rev-star.on { color: var(--gold); }
.rev-text { width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 10px 12px; font-family: inherit; font-size: 0.95rem; color: var(--navy); background: var(--white); resize: vertical; margin-bottom: 12px; }
.rev-text:focus { outline: none; border-color: var(--accent); }
.rev-msg { margin-top: 10px; }
.rev-list { list-style: none; display: grid; gap: 14px; }
.rev-list li { padding: 14px 16px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.rev-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.rev-date { color: var(--muted); font-size: 0.82rem; margin-left: auto; }
.rev-list p { color: var(--navy-soft); font-size: 0.92rem; }

/* Doğrulanmış rozeti */
.ver-badge { display: inline-flex; align-items: center; gap: 3px; font-size: 0.7rem; font-weight: 800; padding: 2px 8px; border-radius: 999px; background: rgba(52,211,153,0.16); color: #34D399; border: 1px solid rgba(52,211,153,0.35); vertical-align: middle; white-space: nowrap; }
.pcard__top { display: flex; align-items: center; gap: 14px; }
.avatar { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; font-weight: 800; color: var(--on-accent); background: var(--accent-grad); flex-shrink: 0; overflow: hidden; }
.avatar__img { width: 100%; height: 100%; object-fit: cover; }

/* Toast bildirimi */
.kb-toasts { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; max-width: 340px; pointer-events: none; }
.kb-toast { background: #1a2030; color: #fff; padding: 13px 16px; border-radius: 12px; font-size: .9rem; line-height: 1.4; box-shadow: 0 14px 34px -10px rgba(0,0,0,.55); border-left: 3px solid #4f8bff; opacity: 0; transform: translateX(24px); transition: opacity .3s, transform .3s; pointer-events: auto; }
.kb-toast.in { opacity: 1; transform: none; }
.kb-toast--err { border-left-color: #ef4444; }
.kb-toast--ok { border-left-color: #22c55e; }
@media (max-width: 480px) { .kb-toasts { left: 16px; right: 16px; bottom: 16px; max-width: none; } }

/* Çerez onay banner'ı */
.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9998; margin: 0 auto; max-width: 720px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between; background: #1a2030; color: #e6ebf5; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 16px 20px; box-shadow: 0 18px 44px -12px rgba(0,0,0,.6); opacity: 0; transform: translateY(16px); transition: opacity .35s, transform .35s; }
.cookie-bar.is-in { opacity: 1; transform: none; }
.cookie-bar.is-hidden { opacity: 0; transform: translateY(16px); }
.cookie-bar__txt { margin: 0; font-size: .9rem; line-height: 1.5; flex: 1; min-width: 220px; }
.cookie-bar__txt a { color: #6ea8ff; text-decoration: underline; }
.cookie-bar__act { display: flex; gap: 8px; flex-shrink: 0; }

/* Yasal metin sayfaları */
.legal { max-width: 820px; margin: 0 auto; padding: 48px 20px 64px; }
.legal h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0 0 6px; letter-spacing: -.02em; }
.legal__upd { color: var(--muted, #6b7689); font-size: .85rem; margin-bottom: 24px; }
.legal h2 { font-size: 1.15rem; margin: 30px 0 10px; }
.legal p, .legal li { line-height: 1.75; }
.legal ul { margin: 8px 0 8px 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--primary, #4f8bff); }
.legal__note { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.32); border-radius: 12px; padding: 14px 16px; font-size: .88rem; line-height: 1.6; margin-bottom: 28px; }
.legal__toc { background: var(--surface-2, rgba(127,127,127,.06)); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; margin-bottom: 28px; }
.legal__toc a { display: inline-block; margin: 3px 14px 3px 0; font-size: .9rem; }

/* İskelet (skeleton) yükleme */
.skel-card { border: 1px solid var(--line); border-radius: 18px; padding: 18px; display: flex; flex-direction: column; }
.skel-card__top { display: flex; gap: 12px; align-items: flex-start; }
.skel { display: block; background: linear-gradient(90deg, rgba(127,127,127,.10) 25%, rgba(127,127,127,.20) 37%, rgba(127,127,127,.10) 63%); background-size: 400% 100%; animation: skelShimmer 1.4s ease infinite; border-radius: 8px; }
.skel--ava { width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0; }
.skel--line { height: 13px; }
.skel--chips { height: 26px; width: 70%; border-radius: 999px; }
@keyframes skelShimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
@media (prefers-reduced-motion: reduce) { .skel { animation: none; } }

/* Teklif modalı KVKK rıza notu */
.modal__consent { font-size: .8rem; line-height: 1.5; color: var(--muted, #6b7689); background: var(--surface-2, rgba(127,127,127,.06)); border-radius: 10px; padding: 10px 12px; margin: 0 0 14px; }
.modal__consent a { color: var(--primary, #4f8bff); }
.avatar--blue { background: linear-gradient(135deg, #3B82F6, #6366F1); color: #fff; }
.avatar--navy { background: linear-gradient(135deg, #1E3A5F, #0F2A4A); color: #fff; }
.pcard__name { font-size: 1.1rem; font-weight: 800; }
.pcard__sub { color: var(--muted); font-size: 0.88rem; }
.pcard__meta { display: flex; flex-wrap: wrap; gap: 6px; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }

/* chips */
.chip { display: inline-block; background: var(--surface-2); border: 1px solid var(--line); color: var(--navy-soft); font-size: 0.78rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; }

/* level badges */
.level { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 800; padding: 5px 11px; border-radius: 999px; }
.level--standart { background: rgba(148,163,184,0.16); color: #CBD5E1; }
.level--profesyonel { background: rgba(59,130,246,0.18); color: #93C5FD; }
.level--premium { background: rgba(251,191,36,0.16); color: var(--gold); }

/* stars */
.stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; }
.stars .num { color: var(--muted); font-size: 0.82rem; margin-left: 4px; }

/* ===================== PROFILE ===================== */
.profile { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: start; }
.profile__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; box-shadow: var(--shadow); position: sticky; top: 90px; }
.profile__card .avatar { width: 92px; height: 92px; border-radius: 24px; font-size: 2.4rem; margin: 0 auto 16px; }
.profile__name { font-size: 1.5rem; font-weight: 800; }
.profile__sub { color: var(--muted); margin-bottom: 14px; }
.profile__badges { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.profile__body { display: grid; gap: 20px; }
.panel-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.panel-box h3 { font-size: 1.15rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.kv { display: grid; grid-template-columns: 160px 1fr; gap: 10px 16px; }
.kv dt { color: var(--muted); font-weight: 600; }
.kv dd { font-weight: 600; }
.taglist { display: flex; flex-wrap: wrap; gap: 8px; }
.reflist { list-style: none; display: grid; gap: 12px; }
.reflist li { padding: 14px 16px; background: var(--surface-2); border-radius: var(--radius-sm); border: 1px solid var(--line); }
.reflist .ref__name { font-weight: 700; }
.reflist .ref__role { color: var(--muted); font-size: 0.85rem; }

/* ===================== PANEL / DASHBOARD ===================== */
.dash { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.dash__nav { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; position: sticky; top: 90px; display: grid; gap: 4px; }
.dash__nav button { text-align: left; background: none; border: none; font-family: inherit; font-size: 0.95rem; font-weight: 700; color: var(--navy-soft); padding: 12px 14px; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 10px; }
.dash__nav button:hover { background: var(--surface-2); color: var(--accent); }
.dash__nav button.is-active { background: var(--accent-grad); color: var(--on-accent); }
.dash__panel { display: none; }
.dash__panel.is-active { display: block; animation: fade 0.25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.metric { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.metric__num { font-size: 1.7rem; font-weight: 900; color: var(--accent); }
.metric__label { color: var(--muted); font-size: 0.85rem; }

.list-row { display: flex; align-items: center; gap: 14px; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; }
.list-row__main { flex: 1; }
.list-row__title { font-weight: 700; }
.list-row__sub { color: var(--muted); font-size: 0.85rem; }
.offer-act { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.chip--dir { background: var(--surface-2); opacity: .9; }
.empty { text-align: center; color: var(--muted); padding: 40px; background: var(--bg-2); border: 1px dashed var(--line); border-radius: var(--radius); }

/* soon / placeholder */
.soon { text-align: center; padding: 56px 28px; background: linear-gradient(135deg, rgba(34,211,238,0.06), var(--white)); border: 1px dashed rgba(34,211,238,0.4); border-radius: var(--radius); }
.soon .soon__icon { font-size: 3rem; }
.soon h3 { margin: 12px 0 6px; font-size: 1.4rem; }
.soon p { color: var(--navy-soft); max-width: 440px; margin: 0 auto; }

/* ===================== FORM ===================== */
.form-card { max-width: 720px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.role-tabs { display: flex; gap: 8px; background: var(--surface-2); padding: 6px; border-radius: 999px; margin-bottom: 24px; }
.role-tab { flex: 1; border: none; background: transparent; padding: 11px 8px; border-radius: 999px; font-weight: 700; font-size: 0.95rem; color: var(--navy-soft); cursor: pointer; font-family: inherit; transition: var(--transition); }
.role-tab:hover { color: var(--accent); }
.role-tab.is-active { background: var(--accent-grad); color: var(--on-accent); }
.form-card__intro { color: var(--navy-soft); margin-bottom: 22px; font-weight: 600; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field input, .field textarea, .field select { border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 0.98rem; font-family: inherit; color: var(--navy); background: var(--surface-2); transition: border-color var(--transition), box-shadow var(--transition); resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15); }
.form-success { margin-top: 18px; text-align: center; background: rgba(52, 211, 153, 0.12); color: var(--green); font-weight: 700; padding: 14px; border-radius: var(--radius-sm); border: 1px solid rgba(52, 211, 153, 0.28); }

/* ===================== MODAL ===================== */
.modal-overlay { position: fixed; inset: 0; background: rgba(4, 9, 18, 0.70); backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 100; }
.modal-overlay.is-open { display: flex; animation: fade 0.2s ease; }
.modal { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; width: 100%; max-width: 460px; box-shadow: var(--shadow-lg); }
.modal__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.modal__head h3 { font-size: 1.25rem; }
.modal__close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--muted); line-height: 1; }
.modal p.modal__sub { color: var(--navy-soft); margin-bottom: 18px; font-size: 0.92rem; }
.modal .field { margin-bottom: 14px; }

/* ===================== MAP ===================== */
.map-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: start; }
.map-side { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: sticky; top: 90px; }
.map-side h3 { font-size: 1rem; margin-bottom: 14px; }
.layer-toggle { display: flex; align-items: center; gap: 10px; padding: 10px 0; cursor: pointer; font-weight: 600; }
.layer-toggle input { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
.layer-dot { width: 12px; height: 12px; border-radius: 50%; }
#map { height: 600px; width: 100%; border-radius: var(--radius); border: 1px solid var(--line); z-index: 1; }
.map-popup b { display: block; font-size: 1rem; margin-bottom: 2px; }
.map-popup a { color: var(--accent-2); font-weight: 700; }

/* Ana sayfa: seçmeli tek harita */
.mapseg { display: inline-flex; gap: 6px; background: var(--surface-2); border: 1px solid var(--line); padding: 6px; border-radius: 999px; margin-bottom: 22px; flex-wrap: wrap; }
.mapseg button { border: none; background: transparent; color: var(--navy-soft); font-family: inherit; font-weight: 700; font-size: 0.92rem; padding: 10px 20px; border-radius: 999px; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.mapseg button:hover { color: var(--accent); }
.mapseg button.is-active { background: var(--accent-grad); color: var(--on-accent); }
.home-map__wrap { position: relative; }
.home-map__hint { color: var(--muted); font-size: 0.85rem; margin-top: 12px; text-align: center; }

/* ===================== FAQ ===================== */
.faq { display: grid; gap: 14px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 20px; transition: box-shadow var(--transition); }
.faq__item[open] { box-shadow: var(--shadow); border-color: rgba(34,211,238,0.3); }
.faq__item summary { cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); font-weight: 700; transition: transform var(--transition); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--navy-soft); padding: 0 0 18px; }

/* ===================== FOOTER ===================== */
.footer { background: #070D18; color: #AEBBD0; padding-top: 56px; margin-top: 40px; border-top: 1px solid #1B2740; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand p { margin-top: 14px; max-width: 300px; }
.footer h4 { color: #FFFFFF; margin-bottom: 16px; font-size: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a:hover, .footer__contact a:hover { color: var(--accent); }
.footer__contact p { margin-bottom: 8px; }
.socials { display: flex; gap: 12px; margin-top: 14px; font-size: 1.3rem; }
.socials a { transition: transform var(--transition); }
.socials a:hover { transform: translateY(-3px); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 22px 0; text-align: center; font-size: 0.88rem; color: #7E8CA3; }

/* ===================== UTIL ===================== */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.hidden { display: none !important; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
    .profile, .dash, .map-wrap, .concept { grid-template-columns: 1fr; }
    .profile__card, .dash__nav, .map-side { position: static; }
    .dash__nav { display: flex; flex-wrap: wrap; }
    .dash__nav button { flex: 1; min-width: 120px; justify-content: center; }
    .metric-row { grid-template-columns: repeat(2, 1fr); }
    .pool-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1180px) {
    .nav-toggle { display: flex; }
    .nav {
        position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 4px;
        background: rgba(10, 12, 20, 0.96); backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--line); padding: 16px 24px 24px;
        transform: translateY(-150%); transition: transform var(--transition); box-shadow: var(--shadow);
        align-items: stretch;
    }
    .nav.is-open { transform: translateY(0); }
    .nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
    .nav__cta { text-align: center; border-bottom: none !important; margin-top: 8px; }
    .auth-area { flex-wrap: wrap; }
}
@media (max-width: 860px) {
    .steps, .audience, .features, .cat-grid { grid-template-columns: 1fr; }
    .aud-card--featured { order: -1; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .section { padding: 60px 0; }
    .hero { padding: 60px 0 68px; }
    .stats { flex-wrap: wrap; justify-content: center; gap: 18px 20px; padding: 20px 24px; }
    .stat__sep { display: none; }
    .form-grid, .pool-grid, .metric-row { grid-template-columns: 1fr; }
    .role-tabs { flex-direction: column; border-radius: var(--radius-sm); }
    .role-tab { border-radius: var(--radius-sm); }
    .footer__inner { grid-template-columns: 1fr; }
    .kv { grid-template-columns: 1fr; gap: 2px 0; }
    .kv dt { margin-top: 8px; }
    #map { height: 440px; }
    .trust { width: 100%; }
}

/* yeni ana sayfa bileşenleri responsive */
@media (max-width: 980px) {
    .stat-band { grid-template-columns: repeat(2, 1fr); }
    .region-grid { grid-template-columns: repeat(3, 1fr); }
    .alt-row { grid-template-columns: 1fr; gap: 28px; }
    .alt-row--rev .alt-row__text { order: 0; }
    .alt-row__visual { min-height: 200px; }
}
@media (max-width: 560px) {
    .stat-band { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .region-grid { grid-template-columns: repeat(2, 1fr); }
    .tquote { padding: 24px; }
}

/* ===================== DİL ANAHTARI ===================== */
.lang-toggle {
    background: var(--surface-2); border: 1.5px solid var(--line); border-radius: 999px;
    padding: 7px 12px; font-family: inherit; font-weight: 800; font-size: 0.8rem;
    color: var(--navy); cursor: pointer; transition: var(--transition); letter-spacing: 0.5px;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle {
    background: var(--surface-2); border: 1.5px solid var(--line); border-radius: 999px;
    width: 38px; height: 34px; display: inline-grid; place-items: center;
    font-size: 1rem; cursor: pointer; transition: var(--transition); color: var(--navy);
}
.theme-toggle:hover { border-color: var(--accent); }

/* ===================== HERO ANİMASYONLU ARKA PLAN ===================== */
.hero::before {
    content: ""; position: absolute; inset: -35%;
    background:
        radial-gradient(closest-side, rgba(var(--glowA), 0.22), transparent),
        radial-gradient(closest-side, rgba(var(--glowB), 0.18), transparent);
    background-position: 18% 28%, 82% 72%;
    background-size: 62% 62%, 56% 56%;
    background-repeat: no-repeat;
    animation: heroGlow 14s ease-in-out infinite alternate;
    z-index: 0; pointer-events: none;
}
.hero::after {
    content: ""; position: absolute; inset: -30%;
    background:
        radial-gradient(closest-side, rgba(var(--glowB), 0.16), transparent),
        radial-gradient(closest-side, rgba(var(--glowA), 0.14), transparent);
    background-position: 70% 20%, 25% 80%;
    background-size: 50% 50%, 48% 48%;
    background-repeat: no-repeat;
    animation: heroGlow2 18s ease-in-out infinite alternate;
    z-index: 0; pointer-events: none;
}
@keyframes heroGlow {
    0%   { transform: translate(0, 0) rotate(0deg)   scale(1); }
    50%  { transform: translate(6%, -4%) rotate(14deg) scale(1.08); }
    100% { transform: translate(-6%, 4%) rotate(-14deg) scale(1); }
}
@keyframes heroGlow2 {
    0%   { transform: translate(0, 0) rotate(0deg); }
    50%  { transform: translate(-5%, 5%) rotate(-12deg); }
    100% { transform: translate(5%, -5%) rotate(12deg); }
}

/* Hero: yüzen teslimat ikonları */
.hero__deco { position: absolute; inset: 0; overflow: hidden; z-index: 1; pointer-events: none; }
.hero__deco span {
    position: absolute; bottom: -50px; font-size: 2.3rem; opacity: 0.12;
    animation: floatUp linear infinite; will-change: transform, opacity;
}
.hero__deco span:nth-child(1) { left: 7%;  animation-duration: 16s; animation-delay: 0s;   font-size: 2.8rem; }
.hero__deco span:nth-child(2) { left: 23%; animation-duration: 20s; animation-delay: 2.5s; }
.hero__deco span:nth-child(3) { left: 40%; animation-duration: 14s; animation-delay: 5s;   font-size: 2rem; }
.hero__deco span:nth-child(4) { left: 58%; animation-duration: 18s; animation-delay: 1s; }
.hero__deco span:nth-child(5) { left: 75%; animation-duration: 22s; animation-delay: 3.5s; font-size: 3rem; }
.hero__deco span:nth-child(6) { left: 90%; animation-duration: 17s; animation-delay: 6s; }
@keyframes floatUp {
    0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
    12%  { opacity: 0.14; }
    88%  { opacity: 0.14; }
    100% { transform: translateY(-118vh) rotate(45deg); opacity: 0; }
}

/* Oturum (auth) alanı */
.auth-area { display: inline-flex; align-items: center; gap: 8px; }
.auth-link { font-weight: 700; font-size: 0.88rem; color: var(--navy-soft); white-space: nowrap; transition: color var(--transition); }
.auth-link:hover { color: var(--accent); }
.badge-count { display: inline-grid; place-items: center; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: #EF4444; color: #fff; font-size: 0.72rem; font-weight: 800; line-height: 1; }
.user-chip { font-weight: 700; font-size: 0.85rem; color: var(--navy); white-space: nowrap; max-width: 160px; overflow: hidden; text-overflow: ellipsis; }

/* Hesabım açılır menüsü */
.acct { position: relative; }
.acct__btn { display: inline-flex; align-items: center; gap: 6px; max-width: 190px; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--navy); font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: border-color var(--transition), background var(--transition); }
.acct__btn:hover { border-color: var(--accent); }
.acct__ava { font-size: 0.95rem; line-height: 1; }
.acct__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acct__caret { font-size: 0.7rem; opacity: 0.7; transition: transform var(--transition); }
.acct--open .acct__caret { transform: rotate(180deg); }
.acct__menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 200px; padding: 6px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); display: none; flex-direction: column; gap: 2px; z-index: 60; }
.acct__cmd { background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(168,85,247,0.10)) !important; color: var(--navy) !important; border: 1px solid var(--line); margin-bottom: 4px; }
.acct__cmd:hover { border-color: rgba(34,211,238,0.4); color: var(--accent) !important; }
.acct--open .acct__menu { display: flex; }
.acct__menu a, .acct__menu button { display: block; width: 100%; text-align: left; padding: 9px 12px; border: none; border-radius: 8px; background: transparent; color: var(--navy); font-size: 0.86rem; font-weight: 600; cursor: pointer; transition: background var(--transition), color var(--transition); }
.acct__menu a:hover, .acct__menu button:hover { background: var(--surface-2); color: var(--accent); }
.acct__signout { margin-top: 4px; border-top: 1px solid var(--line) !important; border-radius: 0 0 8px 8px; color: var(--navy-soft); }

/* ===================== İLETİŞİM KARTLARI ===================== */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.contact-card {
    display: flex; align-items: center; gap: 12px;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 18px 20px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); }
.contact-card__ic { font-size: 1.6rem; }
.contact-card b { font-size: 0.95rem; }
.contact-card__v { color: var(--muted); font-size: 0.88rem; word-break: break-all; }
@media (max-width: 700px) { .contact-cards { grid-template-columns: 1fr; } }

/* ===================== YUKARI ÇIK BUTONU ===================== */
.to-top {
    position: fixed; left: 22px; bottom: 80px; z-index: 89;
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); cursor: pointer;
    background: var(--surface-2); color: var(--navy); font-size: 1.2rem; line-height: 1;
    box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--accent); color: var(--on-accent); }
@media (max-width: 560px) { .to-top { left: 16px; bottom: 80px; width: 42px; height: 42px; } }

/* ===================== YÜZEN WHATSAPP BUTONU ===================== */
.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 90;
    display: inline-flex; align-items: center; gap: 0;
    background: #25D366; color: #fff;
    height: 58px; padding: 0 14px; border-radius: 999px;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
    overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float svg { flex-shrink: 0; }
.wa-float__txt { max-width: 0; opacity: 0; white-space: nowrap; font-weight: 700; transition: max-width 0.35s ease, opacity 0.3s ease, margin 0.35s ease; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55); }
.wa-float:hover .wa-float__txt { max-width: 180px; opacity: 1; margin-left: 10px; }
.wa-float::after {
    content: ""; position: absolute; inset: 0; border-radius: 999px;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 560px) {
    .wa-float { right: 16px; bottom: 16px; height: 54px; }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    .hero::before, .hero::after, .hero__deco span, .wa-float::after { animation: none !important; }
    .hero__deco { display: none; }
}

/* ===================== ERİŞİLEBİLİRLİK PANELİ ===================== */
.a11y { position: fixed; left: 22px; bottom: 22px; z-index: 91; }
.a11y-fab { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); cursor: pointer;
    background: var(--surface-2); color: var(--navy); font-size: 1.25rem; line-height: 1; display: grid; place-items: center;
    box-shadow: 0 8px 22px -8px rgba(0,0,0,.5); transition: transform .2s, background .2s, color .2s; }
.a11y-fab:hover { transform: translateY(-2px); background: var(--accent); color: var(--on-accent); }
.a11y-panel { position: absolute; left: 0; bottom: 58px; width: 250px; background: var(--white); border: 1px solid var(--line);
    border-radius: 16px; padding: 16px; box-shadow: 0 22px 55px -18px rgba(0,0,0,.6); display: none; }
.a11y-panel.is-open { display: block; }
.a11y-panel__h { font-weight: 700; font-size: .95rem; margin-bottom: 12px; }
.a11y-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.a11y-row:last-child { margin-bottom: 0; }
.a11y-row > span { font-size: .85rem; color: var(--muted, #6b7689); }
.a11y-seg { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.a11y-seg button { border: none; background: none; font-family: inherit; font-weight: 700; font-size: .82rem; padding: 7px 13px; cursor: pointer; color: var(--navy-soft); transition: background .2s, color .2s; }
.a11y-seg button + button { border-left: 1px solid var(--line); }
.a11y-seg button.is-on { background: var(--accent-grad); color: var(--on-accent); }

/* Yazı boyutu ölçeği (root font-size; rem/clamp tabanlı bileşenler ölçeklenir) */
html[data-fontscale="sm"] { font-size: 14px; }
html[data-fontscale="lg"] { font-size: 18px; }

/* Yüksek kontrast */
html.high-contrast { --muted: #c9d3e6; --navy-soft: #e9eefa; --line: rgba(255,255,255,.34); }
html.high-contrast[data-theme="light"] { --muted: #1b2230; --navy-soft: #0d1320; --line: rgba(0,0,0,.44); }
html.high-contrast :focus-visible { outline: 3px solid #ffcc00 !important; outline-offset: 2px; }

/* ===================== MOBİL ALT NAVİGASYON ===================== */
.bottom-nav { display: none; }
@media (max-width: 680px) {
    .bottom-nav { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
        background: var(--white); border-top: 1px solid var(--line); padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
        box-shadow: 0 -10px 30px -16px rgba(0,0,0,.5); }
    .bottom-nav__item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
        padding: 6px 0; min-height: 48px; color: var(--navy-soft); font-size: .64rem; font-weight: 600; text-decoration: none; }
    .bottom-nav__item.is-active { color: var(--accent); }
    .bottom-nav__ic { font-size: 1.2rem; line-height: 1; position: relative; }
    .bottom-nav__badge { position: absolute; top: -5px; right: -9px; min-width: 15px; height: 15px; padding: 0 4px; border-radius: 999px;
        background: #ef4444; color: #fff; font-size: .6rem; font-weight: 700; display: grid; place-items: center; }
    body.has-bottom-nav { padding-bottom: 66px; }
    body.has-bottom-nav .wa-float { bottom: 80px; }
    body.has-bottom-nav .a11y { bottom: 80px; }
    body.has-bottom-nav .to-top { bottom: 138px; }
    body.has-bottom-nav .cookie-bar { bottom: 78px; }
    body.has-bottom-nav .kb-toasts { bottom: 78px; }
}
/* Panel sekmeleri mobilde yatay kaydırma (taşma yerine) */
@media (max-width: 560px) {
    .dash__nav { flex-wrap: nowrap; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
    .dash__nav::-webkit-scrollbar { display: none; }
    .dash__nav button { flex: 0 0 auto; min-width: auto; }
}

/* ===================== 404 ===================== */
.nf { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.nf__code { font-size: clamp(4rem, 18vw, 9rem); font-weight: 900; line-height: 1; color: var(--accent); letter-spacing: -2px; }
.nf h1 { font-size: 1.6rem; margin: 8px 0 10px; }
.nf p { color: var(--navy-soft); max-width: 420px; margin: 0 auto 24px; }

/* Leaflet koyu uyum */
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: var(--white); color: var(--navy); }
.leaflet-container { background: #0E1626; }
