/*
 * Reply Flows — Marketing (www.) design system.
 * Kaynak tasarım: resources/views/welcome.blade.php (inline referans, dokunulmaz).
 * Burada paylaşılan layout + tüm sayfalar için dışa alındı (çok-sayfa cache avantajı).
 * Font: Plus Jakarta Sans (layout head'inde Google Fonts ile yüklenir).
 */

:root {
    --bg: #ffffff;
    --bg-soft: #f6f6f7;
    --ink: #1c1c1f;
    --ink-2: #3f3f46;
    --muted: #71717a;
    --border: #e4e4e4;
    --border-2: #dbdbdb;
    --accent: #3478f6;
    --accent-2: #5b9bff;
    --accent-strong: #2563eb;
    --accent-soft: #eef3ff;
    --green: #18935a;
    --green-soft: #e9f8ef;
    --hero-dot: rgba(52, 120, 246, .18);
    --surface: #ffffff;
    --surface-2: #f0f0f1;
    --header-bg: rgba(255, 255, 255, .72);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .05);
    --shadow-md: 0 10px 30px -12px rgba(0, 0, 0, .14), 0 4px 10px -6px rgba(0, 0, 0, .07);
    --shadow-lg: 0 30px 70px -24px rgba(0, 0, 0, .22);
    --radius: 16px;
    --radius-sm: 11px;
    --radius-lg: 24px;
    --maxw: 1140px;
    color-scheme: light;
}

[data-theme="dark"] {
    --bg: #141414;
    --bg-soft: #1a1a1a;
    --ink: #f5f5f7;
    --ink-2: #b8b8c0;
    --muted: #8a8a92;
    --border: #2b2b30;
    --border-2: #3a3a40;
    --accent: #3478f6;
    --accent-2: #5b9bff;
    --accent-strong: #5b8cff;
    --accent-soft: #1a2540;
    --green: #42c98a;
    --green-soft: #122a20;
    --hero-dot: rgba(140, 175, 255, .16);
    --surface: #1e1e1e;
    --surface-2: #252525;
    --header-bg: rgba(20, 20, 20, .72);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4), 0 1px 3px rgba(0, 0, 0, .3);
    --shadow-md: 0 12px 30px -12px rgba(0, 0, 0, .6), 0 4px 10px -6px rgba(0, 0, 0, .45);
    --shadow-lg: 0 30px 70px -24px rgba(0, 0, 0, .7);
    color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.011em;
    transition: background-color .3s ease, color .3s ease;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .02em;
    color: var(--accent); background: var(--accent-soft);
    padding: 6px 12px; border-radius: 999px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 4px rgba(52, 120, 246, .16); }
h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.08; font-weight: 800; }
.section { padding: 104px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--muted); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
    height: 38px; padding: 0 16px; border-radius: 10px; border: 1px solid transparent;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease, color .15s ease;
    white-space: nowrap;
}
.btn-primary { color: #fff; background: var(--accent); box-shadow: 0 1px 2px rgba(0, 0, 0, .12); }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px); box-shadow: 0 6px 16px -6px rgba(52, 120, 246, .5); }
.btn-ghost { color: var(--ink); background: var(--surface); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { height: 46px; padding: 0 22px; font-size: 15px; border-radius: 12px; }

/* Header */
header {
    position: sticky; top: 0; z-index: 50;
    background: transparent; backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .2s ease, background .3s ease, border-color .3s ease;
}
header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 32px; height: 68px; }
/* text-based wordmark (ikon yok) */
.brand { display: inline-flex; align-items: baseline; gap: .22em; font-weight: 800; font-size: 19px; letter-spacing: -.03em; }
.brand .ac { color: rgb(159, 159, 159); }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: 8px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.login-link {
    display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 15px;
    font-size: 13.5px; font-weight: 600; line-height: 1; border-radius: 999px;
    color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--border);
    transition: color .15s, border-color .15s, background .15s, transform .15s;
}
.login-link:hover { color: var(--ink); border-color: var(--border-2); transform: translateY(-1px); }
.login-link svg { width: 16px; height: 16px; }

/* Mobile nav (hamburger + açılır menü) — masaüstünde gizli */
.nav-toggle { display: none; width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface-2); color: var(--ink-2); cursor: pointer; place-items: center; padding: 0; transition: color .15s, border-color .15s; }
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle:hover { color: var(--ink); border-color: var(--border-2); }
.mobile-menu { display: none; }
.mm-inner { display: flex; flex-direction: column; padding: 6px 24px 22px; }
.mm-link { padding: 14px 2px; font-size: 16px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--border); }
.mm-langs { display: flex; gap: 8px; margin: 18px 0 10px; }
.mm-langs a { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--ink-2); }
.mm-langs a.active { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.mobile-menu .btn { width: 100%; margin-top: 8px; }

/* Dropdown (theme + language, shared) */
.dd { position: relative; }
.dd-trigger {
    display: inline-flex; align-items: center; gap: 6px; height: 38px;
    font-family: inherit; font-size: 13px; font-weight: 600; line-height: 1; cursor: pointer;
    color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--border);
    border-radius: 999px; padding: 0 12px;
    transition: color .15s, border-color .15s, background .15s;
}
.dd-trigger:hover { color: var(--ink); border-color: var(--border-2); }
.dd-trigger .chev { width: 13px; height: 13px; opacity: .55; transition: transform .18s; }
.dd[data-open] .dd-trigger .chev { transform: rotate(180deg); }
.dd-menu {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
    box-shadow: var(--shadow-md); padding: 6px; z-index: 60;
    opacity: 0; transform: translateY(-6px); pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
}
.dd[data-open] .dd-menu { opacity: 1; transform: none; pointer-events: auto; }
.dd-menu a, .dd-menu button {
    display: flex; align-items: center; gap: 9px; width: 100%;
    font-family: inherit; font-size: 13.5px; font-weight: 500; text-align: left; line-height: 1.2;
    cursor: pointer; color: var(--ink-2); background: transparent; border: 0;
    padding: 8px 10px; border-radius: 8px; transition: background .12s, color .12s;
}
.dd-menu a:hover, .dd-menu button:hover { background: var(--surface-2); color: var(--ink); }
.dd-menu a.active, .dd-menu button.active { color: var(--ink); }
.dd-menu a .check, .dd-menu button .check { width: 15px; height: 15px; margin-left: auto; opacity: 0; color: var(--accent); }
.dd-menu a.active .check, .dd-menu button.active .check { opacity: 1; }

/* Theme toggle (segmented, icon) */
.theme-toggle {
    display: inline-flex; align-items: center; gap: 2px; height: 38px;
    background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 3px;
}
.theme-toggle button {
    display: grid; place-items: center; width: 30px; height: 30px;
    border: 0; background: transparent; color: var(--muted); cursor: pointer;
    border-radius: 999px; transition: color .15s, background .15s, box-shadow .15s;
}
.theme-toggle button svg { width: 16px; height: 16px; }
.theme-toggle button:hover { color: var(--ink-2); }
.theme-toggle button.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }

/* Hero */
/* hero header'ın altına uzanır: nokta-grid buzlu bar'ın arkasından görünür */
.hero { position: relative; overflow: hidden; margin-top: -68px; padding: 160px 0 96px; }
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 60%);
}
[data-theme="dark"] .hero::before {
    background: linear-gradient(180deg, #181818 0%, var(--bg) 60%);
}
/* AI dokusu: nokta-grid (üstte yoğun, aşağı solar) */
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background-image: radial-gradient(circle, var(--hero-dot) 1px, transparent 1.6px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(78% 68% at 50% 0%, #000 0%, transparent 72%);
    mask-image: radial-gradient(78% 68% at 50% 0%, #000 0%, transparent 72%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .8fr; gap: 48px; align-items: center; position: relative; }
/* kendi katmanına al: yanındaki 3D mockup animasyonu metni titretmesin */
.hero-copy { transform: translateZ(0); }
.hero h1 { font-size: clamp(38px, 5vw, 60px); margin: 22px 0 0; }
.hero h1 .grad { background: linear-gradient(120deg, rgb(52, 120, 246), rgb(92, 255, 208)) padding-box text; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.sub { margin-top: 22px; font-size: 19px; color: var(--ink-2); max-width: 520px; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-feats { margin: 24px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.hero-feats li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.hero-feats svg { flex-shrink: 0; color: var(--accent); }

/* Chat mockup destesi — üst üste dizili kartlar; öndeki arkaya geçerek deste döner (Cloudflare Pages tarzı).
   Her kart arkasındakinin biraz altında + yanında. Renk pencere başına --brand/--brand-2 (inline);
   şekil preset class'ından (mp-*); istif konumu --d (derinlik: 0=en önde) üzerinden. */
.mock-stage { max-width: 430px; margin: 0 auto; position: relative; padding-top: 34px; }

/* Deste: kartlar tek grid hücresinde üst üste; her biri --d derinliğine göre kayar. */
.mock-deck {
    --dx: 40px;   /* her derinlik için sağa kayma */
    --dy: 36px;   /* her derinlik için yukarı kayma (arkadaki üstte) */
    --ds: .05;    /* derinlik başına küçülme */
    --do: .22;    /* derinlik başına saydamlaşma */
    display: grid; justify-items: start;
}

/* Kart: preset radius + marka rengi. Konum = derinlik (--d) formülü.
   Sadece en öndeki kart gerçek chat; arkadakiler nötr siluet (.is-ghost). */
.mock-chat {
    grid-area: 1 / 1;
    --d: 0;
    width: 300px;
    transform-origin: bottom left;
    transform:
        translate(calc(var(--d) * var(--dx)), calc(var(--d) * -1 * var(--dy)))
        scale(calc(1 - var(--d) * var(--ds)));
    opacity: calc(1 - var(--d) * var(--do));
    transition: transform .7s cubic-bezier(.4, .9, .3, 1), opacity .55s ease, border-radius .45s ease;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-panel, 20px);
    overflow: hidden;
    backface-visibility: hidden;
    position: relative;
    /* arka (siluet) kartlar: hafif, yakın gölge */
    box-shadow: 0 4px 10px -4px rgba(15, 23, 42, .12);
}
/* Öndeki gerçek kart: yere basan, nötr, yumuşak-yayılan gerçek gölge */
.mock-chat:not(.is-ghost) {
    box-shadow:
        0 2px 6px rgba(15, 23, 42, .06),
        0 18px 30px -14px rgba(15, 23, 42, .22),
        0 40px 60px -30px rgba(15, 23, 42, .28);
}
[data-theme="dark"] .mock-chat { box-shadow: 0 4px 12px -4px rgba(0, 0, 0, .5); }
[data-theme="dark"] .mock-chat:not(.is-ghost) {
    box-shadow:
        0 2px 6px rgba(0, 0, 0, .5),
        0 18px 34px -14px rgba(0, 0, 0, .6),
        0 44px 70px -30px rgba(0, 0, 0, .75);
}
/* Siluet: tüm arka kartlar tek tip (nötr renk + tek radius). */
.mock-chat.is-ghost { --r-panel: 20px; }
/* Öndeki kart yok olurken: ileri (izleyiciye) doğru büyüyüp aşağı kayar + solar. */
.mock-chat.leaving {
    transition: transform .55s cubic-bezier(.4, 0, .9, .5), opacity .5s ease;
    opacity: 0;
    transform: translate(0, 60px) scale(1.08);
    z-index: 20 !important;
}
/* Arkaya ışınlarken geçişi kapat (uçarak dönmesin + siluet dönüşü anında olsun, renkli flaş yok). */
.mock-chat.snap, .mock-chat.snap .mock-real, .mock-chat.snap .mock-ghost { transition: none; }

/* Gerçek chat ↔ siluet çapraz geçişi */
.mock-real { transition: opacity .4s ease; }
.mock-ghost {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    background: var(--surface); opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.mock-chat.is-ghost .mock-real { opacity: 0; }
.mock-chat.is-ghost .mock-ghost { opacity: 1; }

/* Siluet iç iskeleti (hepsi aynı, nötr gri) */
.g-head { display: flex; align-items: center; gap: 11px; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.g-av { width: 38px; height: 38px; border-radius: 11px; background: var(--surface-2); }
.g-lines { display: flex; flex-direction: column; gap: 6px; }
.g-lines i { display: block; height: 8px; border-radius: 5px; background: var(--surface-2); }
.g-lines i:first-child { width: 86px; }
.g-lines i:last-child { width: 58px; }
.g-pill { margin-left: auto; width: 54px; height: 20px; border-radius: 999px; background: var(--surface-2); }
.g-body { flex: 1; padding: 20px 18px; display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; background: var(--bg-soft); }
.g-bub { height: 44px; border-radius: 14px; }
.g-bub.l { align-self: flex-start; width: 70%; background: var(--surface); border: 1px solid var(--border); }
.g-bub.r { align-self: flex-end; width: 60%; background: var(--surface-2); }
.g-foot { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-top: 1px solid var(--border); background: var(--surface); }
.g-field { flex: 1; height: 36px; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--border); }
.g-send { width: 36px; height: 36px; border-radius: 10px; background: var(--surface-2); }

/* Preset şekil setleri (panel: minimal/modern/soft/sharp/bubbly) */
.mp-modern  { --r-panel: 20px; --r-bubble: 16px; --r-launch: 9999px; }
.mp-soft    { --r-panel: 28px; --r-bubble: 22px; --r-launch: 9999px; }
.mp-sharp   { --r-panel: 6px;  --r-bubble: 4px;  --r-launch: 12px; }
.mp-bubbly  { --r-panel: 26px; --r-bubble: 22px; --r-launch: 9999px; }
.mp-minimal { --r-panel: 12px; --r-bubble: 10px; --r-launch: 14px; }

.mock-chat .head { display: flex; align-items: center; gap: 11px; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.mock-chat .av { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .02em; }
.mock-chat .who { font-weight: 700; font-size: 14.5px; }
.mock-chat .sub { font-size: 12px; color: var(--muted); }
.mock-chat .pill { margin-left: auto; font-size: 11px; font-weight: 600; color: var(--green); background: var(--green-soft); padding: 4px 10px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.mock-chat .pill .live { width: 6px; height: 6px; border-radius: 999px; background: var(--green); animation: pulse 2s infinite; }

/* Brand-header preset'leri (modern/sharp/bubbly): başlık marka renginde, içerik ters kontrast. */
.mp-modern .head, .mp-sharp .head, .mp-bubbly .head {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-bottom-color: transparent; color: #fff;
}
.mp-modern .head .av, .mp-sharp .head .av, .mp-bubbly .head .av { background: rgba(255, 255, 255, .92); color: var(--brand); }
.mp-modern .head .sub, .mp-sharp .head .sub, .mp-bubbly .head .sub { color: rgba(255, 255, 255, .82); }
.mp-modern .head .pill, .mp-sharp .head .pill, .mp-bubbly .head .pill { background: rgba(255, 255, 255, .22); color: #fff; }
.mp-modern .head .pill .live, .mp-sharp .head .pill .live, .mp-bubbly .head .pill .live { background: #fff; }

.mock-chat .body { padding: 20px 18px; display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; background: var(--bg-soft); height: 288px; overflow: hidden; }
/* Compact yoğunluk (panel: minimal/sharp) */
.mp-minimal .body, .mp-sharp .body { padding: 16px 16px; gap: 9px; }
.mp-minimal .bubble, .mp-sharp .bubble { padding: 9px 12px; font-size: 13px; }

@keyframes bubbleInLeft  { from { opacity: 0; transform: translateX(-42px); } to { opacity: 1; transform: none; } }
@keyframes bubbleInRight { from { opacity: 0; transform: translateX(42px);  } to { opacity: 1; transform: none; } }
.bubble.in.enter, .handoff.enter      { animation: bubbleInLeft  .5s cubic-bezier(.22, 1, .36, 1) both; }
.bubble.ai.enter, .bubble.agent.enter { animation: bubbleInRight .5s cubic-bezier(.22, 1, .36, 1) both; }
@media (prefers-reduced-motion: reduce) {
    .mock-chat { transition: none; }
    .bubble.enter, .handoff.enter { animation: none; }
}
.bubble { max-width: 78%; padding: 11px 14px; border-radius: var(--r-bubble, 14px); font-size: 13.5px; line-height: 1.45; box-shadow: var(--shadow-sm); }
.bubble.in { background: var(--surface); border: 1px solid var(--border); border-bottom-left-radius: 5px; align-self: flex-start; }
.bubble.ai { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
.bubble .tag { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; opacity: .85; margin-bottom: 3px; }
.handoff { align-self: center; font-size: 11.5px; font-weight: 600; color: var(--muted); background: var(--surface); border: 1px dashed var(--border-2); padding: 5px 12px; border-radius: 999px; }
.bubble.agent { background: var(--surface); border: 1px solid var(--border); border-bottom-right-radius: 5px; align-self: flex-end; }
.bubble.agent .tag { color: var(--brand); opacity: 1; }
.mock-chat .compose { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-top: 1px solid var(--border); background: var(--surface); }
.mock-chat .compose .field { flex: 1; height: 36px; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--border); }
.mock-chat .compose .send { width: 36px; height: 36px; border-radius: var(--r-launch, 10px); background: var(--brand); color: #fff; display: grid; place-items: center; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px; box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
.card h3 { font-size: 17px; font-weight: 700; }
.card p { margin-top: 8px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* Timeline (features — Cloudflare benzeri: alternating browser-app kartları + scroll çizgisi + nefes animasyonu) */
.timeline { position: relative; max-width: 1000px; margin: 0 auto; }
/* merkez ray (sönük) + dolum çizgisi (accent, JS ile scroll'a göre büyür) */
.timeline::before { content: ""; position: absolute; left: 50%; transform: translateX(-1px); top: 36px; bottom: 36px; width: 2px; background: var(--border); border-radius: 2px; }
.tl-fill { position: absolute; left: 50%; transform: translateX(-1px); top: 36px; width: 2px; height: 0; background: linear-gradient(180deg, var(--accent), var(--accent-2)); border-radius: 2px; box-shadow: 0 0 12px var(--accent); will-change: height; }

.tl-item { position: relative; display: grid; grid-template-columns: 1fr 72px 1fr; align-items: center; padding: 30px 0; }
/* Üçü de açıkça row 1 — yoksa grid auto-placement swap satırında metni alt satıra iter. */
/* mavi nokta (ikon yok); aktifleşince accent + halka */
.tl-node { grid-column: 2; grid-row: 1; justify-self: center; width: 14px; height: 14px; border-radius: 50%; background: var(--border-2); border: 3px solid var(--bg); box-shadow: 0 0 0 1px var(--border); position: relative; z-index: 1; transition: background .35s ease, box-shadow .35s ease, transform .35s ease; }
.tl-item.active .tl-node { background: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 0 0 6px var(--accent-soft); transform: scale(1.12); }

/* kart (browser-app mockup) + metin — varsayılan: kart sol, metin sağ. tl-swap: yer değişir. */
.tl-card { grid-column: 1; grid-row: 1; padding-right: 48px; opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.tl-text { grid-column: 3; grid-row: 1; padding-left: 48px; opacity: 0; transform: translateY(20px); transition: opacity .6s ease .08s, transform .6s ease .08s; }
.tl-item.tl-swap .tl-card { grid-column: 3; padding-right: 0; padding-left: 48px; }
.tl-item.tl-swap .tl-text { grid-column: 1; padding-left: 0; padding-right: 48px; text-align: right; }
.tl-item.active .tl-card, .tl-item.active .tl-text { opacity: 1; transform: none; }
.tl-text h3 { font-size: 22px; font-weight: 800; }
.tl-text p { margin-top: 12px; font-size: 15.5px; color: var(--muted); line-height: 1.6; }

/* nefes alma: dikey kaymadan hafif ölçek → kart merkezi sabit, metinle hizalı kalır */
.tl-card .window { animation: tlBreathe 6.5s ease-in-out infinite; transform-origin: center; will-change: transform; }
@keyframes tlBreathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
.tl-card .window .canvas { min-height: 196px; }

@media (max-width: 920px) {
    .timeline::before, .tl-fill { left: 23px; }
    .tl-item, .tl-item.tl-swap { grid-template-columns: 46px 1fr; align-items: start; padding: 22px 0; gap: 18px 0; }
    /* node nokta boyutunu korur (masaüstüyle aynı 14px); sadece konumlanır */
    .tl-node { grid-column: 1; grid-row: 1; justify-self: center; margin-top: 10px; }
    .tl-card, .tl-item.tl-swap .tl-card { grid-column: 2; grid-row: 1; padding: 0 0 16px; }
    .tl-text, .tl-item.tl-swap .tl-text { grid-column: 2; grid-row: 2; padding: 0; text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
    .tl-card, .tl-text { opacity: 1; transform: none; transition: none; }
    .tl-card .window { animation: none; }
}

/* Workflow */
.flow { background: var(--bg-soft); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 48px 32px; }
.flow-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 16px; }
.flow-node { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.flow-node .ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin: 0 auto 14px; }
.flow-node.visitor .ico { background: var(--surface-2); color: var(--ink-2); }
.flow-node.ai .ico { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.flow-node.human .ico { background: var(--green-soft); color: var(--green); }
.flow-node h3 { font-size: 16px; }
.flow-node p { margin-top: 6px; font-size: 13px; color: var(--muted); }
.flow-arrow { color: var(--border-2); }
.flow-arrow svg { width: 34px; height: 34px; }

/* Screenshots */
.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.window { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.window .bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.window .bar i { width: 10px; height: 10px; border-radius: 999px; display: inline-block; }
.window .bar i:nth-child(1) { background: #ff5f57; } .window .bar i:nth-child(2) { background: #febc2e; } .window .bar i:nth-child(3) { background: #28c840; }
.window .bar .label { margin-left: 10px; font-size: 12px; font-weight: 600; color: var(--muted); }
.window .canvas { padding: 18px; min-height: 188px; }
.skel { border-radius: 7px; background: var(--surface-2); }
.row { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.mini-bubble { font-size: 12px; padding: 8px 11px; border-radius: 11px; max-width: 70%; }
.mini-bubble.in { background: var(--surface-2); }
.mini-bubble.ai { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; margin-left: auto; }
.toggle { width: 38px; height: 22px; border-radius: 999px; background: var(--accent); position: relative; }
.toggle::after { content: ""; position: absolute; top: 3px; right: 3px; width: 16px; height: 16px; border-radius: 999px; background: #fff; }
.toggle.off { background: var(--border-2); } .toggle.off::after { right: auto; left: 3px; }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 96px; padding-top: 8px; }
.bars span { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--accent), #93b4ff); }
.stat-row { display: flex; gap: 12px; margin-bottom: 16px; }
.stat { flex: 1; border: 1px solid var(--border); border-radius: 11px; padding: 12px; }
.stat b { font-size: 20px; } .stat small { color: var(--muted); font-size: 11.5px; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 1080px) { .price-grid { grid-template-columns: repeat(2, 1fr); } .plan.featured { transform: none; } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.plan.featured {
    border-color: transparent; position: relative;
    background: linear-gradient(180deg, #1c1c1f 0%, #2a2a2e 100%); color: #fff;
    box-shadow: var(--shadow-lg); transform: translateY(-8px);
}
.plan .badge { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 700; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; padding: 5px 11px; border-radius: 999px; }
.plan .pname { font-size: 14px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--muted); }
.plan.featured .pname { color: #a1a1aa; }
.plan .pprice { margin: 14px 0 4px; font-size: 44px; font-weight: 800; letter-spacing: -.04em; }
.plan .pprice span { font-size: 15px; font-weight: 500; color: var(--muted); }
.plan.featured .pprice span { color: #a1a1aa; }
.plan .pdesc { font-size: 14px; color: var(--muted); min-height: 40px; }
.plan.featured .pdesc { color: #d4d4d8; }
.plan ul { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: flex; gap: 10px; align-items: center; font-size: 14px; }
.plan li svg { flex-shrink: 0; color: var(--green); }
.plan.featured li svg { color: #6ee7a8; }
.plan .btn { width: 100%; margin-top: auto; }
.plan.featured .btn-ghost { background: rgba(255, 255, 255, .10); border-color: rgba(255, 255, 255, .2); color: #fff; }

/* Pricing builder — açık editoryal düzen: kutu yok; solda soru+slider, sağda 3D VIP üyelik
   kartı (tek "obje"). Kart koyu nötr — closing-card'ın renk dili; her iki temada aynı durur. */
.pricer { max-width: 1020px; margin: 0 auto; }
/* Kontrol satırı: faturalama dönemi segmenti */
.pricer-controls { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.seg { display: inline-flex; gap: 3px; padding: 4px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; }
.seg-btn { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: color .15s, background .15s; }
.seg-btn.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.seg-save { font-size: 11px; font-weight: 700; color: var(--green); background: color-mix(in srgb, var(--green) 14%, transparent); padding: 2px 7px; border-radius: 999px; }

/* Soru + slider: ortalanmış üst blok */
.pc-top { max-width: 680px; margin: 0 auto 40px; text-align: center; }

/* Soru = başlık; sayı cümlenin dolgu boşluğu gibi */
.pc-question { font-size: clamp(25px, 3.2vw, 39px); font-weight: 800; letter-spacing: -.03em; line-height: 1.35; color: var(--ink); }
.pc-num { display: inline-block; min-width: 3.2ch; padding: 0 14px 2px; margin: 0 2px; border-radius: 14px;
    background: var(--accent-soft); color: var(--accent-strong); font-variant-numeric: tabular-nums; }
.pc-num.pop { animation: pc-pop .28s ease; }

/* Alt başlık: sayı seçili paketi izler */
.pc-sub { margin: 14px 0 0; font-size: 17px; color: var(--muted); }
.pc-sub .pc-num { padding: 0 10px 1px; border-radius: 10px; font-weight: 700; }
@keyframes pc-pop { 45% { transform: scale(1.1); } }

/* Güvence maddeleri */
.pc-points { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 28px 0 0; padding: 0; }
.pc-points li { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.pc-points svg { flex-shrink: 0; color: var(--green); }
.pc-points-center { justify-content: center; margin-top: 24px; }

/* Kart altındaki tek CTA + notlar */
.pc-actions { max-width: 360px; margin: 34px auto 0; }
.pc-cta { display: flex; width: 100%; }
.pc-note { margin-top: 10px; font-size: 12.5px; color: var(--muted); text-align: center; }
/* Kart altı meta: mikro başlık → top-up chip'leri → vergi fine-print (hairline ayraç) */
.pc-meta { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; gap: 10px; }
/* Vergi notu: kartların hemen altında, sola dayalı, info ikonlu */
.pc-tax { display: flex; align-items: flex-start; gap: 6px; margin: 12px 0 0;
    font-size: 11.5px; line-height: 1.5; color: var(--muted); text-align: left; }
.pc-tax svg { flex-shrink: 0; margin-top: 1.5px; }

.pc-topup-note { margin: 0; font-size: 13.5px; color: var(--ink-2); text-align: center; }
.pc-topup-link { border: 0; background: transparent; padding: 0; font: inherit; font-weight: 600; color: var(--accent); cursor: pointer; }
.pc-topup-link:hover { text-decoration: underline; }
.pc-fine { margin: 2px 0 0; font-size: 11.5px; line-height: 1.5; color: var(--muted); text-align: center; }

/* Ek konuşma paketleri modalı (native <dialog>) */
.topup-modal { margin: auto; width: min(92vw, 420px); padding: 24px; border: 1px solid var(--border);
    border-radius: var(--radius); background: var(--surface); color: var(--ink); box-shadow: var(--shadow-lg); }
.topup-modal::backdrop { background: rgba(0, 0, 0, .45); }
.topup-head { display: flex; justify-content: space-between; align-items: center; }
.topup-head h3 { margin: 0; font-size: 16px; font-weight: 800; letter-spacing: -.01em; }
.topup-close { border: 0; background: transparent; padding: 2px 6px; font-size: 22px; line-height: 1;
    color: var(--muted); cursor: pointer; border-radius: 8px; }
.topup-close:hover { color: var(--ink); background: var(--surface-2); }
.topup-list { list-style: none; margin: 16px 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.topup-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
    padding: 12px 15px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface-2);
    font-size: 13.5px; font-weight: 600; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.topup-list em { font-style: normal; font-weight: 500; color: var(--muted); }
.topup-list b { font-weight: 700; color: var(--ink); }

/* Paket kartları: hepsi görünür, seçili vurgulu — kalanlar silik; karta tıklamak seçer */
.plan-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 980px) { .plan-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .plan-cards { grid-template-columns: 1fr; } }
.plan-card { display: flex; flex-direction: column; padding: 24px 22px; border-radius: var(--radius);
    border: 1px solid var(--border); background: var(--surface); text-align: left; cursor: pointer;
    opacity: .55; transform: scale(.985);
    transition: opacity .2s, transform .2s, border-color .2s, box-shadow .2s; outline: none; }
.plan-card:hover { opacity: .85; }
.plan-card:focus-visible { border-color: var(--accent); opacity: .85; }
.plan-card.active { opacity: 1; transform: scale(1); border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent), var(--shadow-sm); }
.plan-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.plan-name { font-size: 15px; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.plan-pop { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; white-space: nowrap;
    color: var(--accent-strong); background: color-mix(in srgb, var(--accent) 12%, transparent); padding: 3px 9px; border-radius: 999px; }
.plan-price { margin-top: 14px; font-size: 32px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.plan-cur { font-size: 19px; font-weight: 700; color: var(--muted); margin-right: 1px; }
.plan-price small { font-size: 13px; font-weight: 500; color: var(--muted); margin-left: 2px; }
.plan-billed { margin: 7px 0 0; font-size: 12px; color: var(--muted); }
.plan-unit { margin: 7px 0 0; font-size: 11.5px; color: var(--muted); min-height: 14px; }
.plan-feats { list-style: none; margin: 16px 0 0; padding: 16px 0 0; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 10px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--ink-2); }
.plan-feats li b { font-weight: 700; color: var(--ink); }
.plan-feats svg { flex-shrink: 0; margin-top: 1px; color: var(--green); }

/* Her seçenekte dahil grid */
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; max-width: 780px; margin: 0 auto; }
@media (max-width: 560px) { .included-grid { grid-template-columns: 1fr; } }
.included-item { display: flex; gap: 11px; align-items: center; font-size: 15px; color: var(--ink-2); }
.included-item svg { flex-shrink: 0; color: var(--green); }

/* Closing CTA */
.closing { text-align: center; }
.closing-card {
    position: relative; overflow: hidden;
    /* koyu nötr zemin + üstte hafif accent parıltısı (mavi baskın değil) */
    background:
        radial-gradient(90% 80% at 50% -20%, rgba(52, 120, 246, .30), transparent 60%),
        linear-gradient(180deg, #202024 0%, #161618 100%);
    border-radius: var(--radius-lg); padding: 72px 32px; color: #fff;
    box-shadow: var(--shadow-lg);
}
/* AI dokusu: ince nokta-grid, merkeze doğru solar */
.closing-card::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .55) 1px, transparent 1.6px);
    background-size: 26px 26px; opacity: .3; z-index: 1;
    -webkit-mask-image: radial-gradient(85% 75% at 50% 35%, #000 0%, transparent 78%);
    mask-image: radial-gradient(85% 75% at 50% 35%, #000 0%, transparent 78%);
}
.closing-card > * { position: relative; z-index: 2; }
.closing-card h2 { font-size: clamp(28px, 4vw, 42px); max-width: 700px; margin: 0 auto; }
.closing-card .cc-cta { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.closing-card .btn-light { background: #fff; color: #1c1c1f; }
.closing-card .btn-light:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .35); }
.closing-card .btn-line { background: transparent; border-color: rgba(255, 255, 255, .3); color: #fff; }
.closing-card .btn-line:hover { background: rgba(255, 255, 255, .1); }

/* Generic prose (legal / faq / content pages) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(30px, 4vw, 44px); }
.prose h2 { font-size: 24px; margin-top: 40px; }
.prose h3 { font-size: 18px; margin-top: 28px; }
.prose p, .prose li { font-size: 15.5px; color: var(--ink-2); line-height: 1.7; }
.prose p, .prose ul, .prose ol { margin-top: 16px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose a { color: var(--accent); }
.prose a:hover { text-decoration: underline; }
.lead { font-size: 18px; color: var(--muted); margin-top: 16px; }

/* Legal pages */
.legal-updated { margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.legal-table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.legal-table th, .legal-table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal-table thead th { background: var(--bg-soft); font-weight: 700; color: var(--ink); font-size: 13px; }
.legal-table tbody tr:last-child td { border-bottom: 0; }
.legal-table td { color: var(--ink-2); }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 0; }
.foot { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot .copy { color: var(--muted); font-size: 13.5px; }
.foot-links { display: flex; gap: 24px; margin-left: auto; flex-wrap: wrap; }
.foot-links a { font-size: 13.5px; color: var(--ink-2); }
.foot-links a:hover { color: var(--ink); }

/* Page hero (alt sayfa başlığı — ana hero'dan sade) */
.page-hero { padding: 78px 0 8px; text-align: center; }
.page-hero h1 { font-size: clamp(28px, 3.8vw, 40px); }
.page-hero .lead { max-width: 600px; margin: 12px auto 0; font-size: 16px; }

/* Feature detail cards (özellikler sayfası) */
.feat-detail .card { padding: 30px; }
.feat-detail .card ul { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.feat-detail .card li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.feat-detail .card li svg { flex-shrink: 0; color: var(--green); margin-top: 2px; }

/* Comparison table (fiyat sayfası) */
.compare { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare th, .compare td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.compare thead th { font-size: 13px; font-weight: 700; color: var(--ink); background: var(--bg-soft); }
.compare thead th:not(:first-child), .compare td:not(:first-child) { text-align: center; }
.compare tbody th { font-weight: 500; color: var(--ink-2); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--green); display: inline-flex; }
.compare .no { color: var(--muted); }
.compare col.featured-col, .compare th.featured-col { background: var(--accent-soft); }
.compare td.featured-col { background: color-mix(in srgb, var(--accent-soft) 60%, transparent); font-weight: 600; }

/* Accordion (FAQ) */
.acc { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.acc-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color .15s; }
.acc-item[data-open] { border-color: var(--border-2); }
.acc-q { display: flex; align-items: center; gap: 14px; width: 100%; padding: 18px 20px; font-family: inherit; font-size: 15.5px; font-weight: 600; text-align: left; color: var(--ink); background: transparent; border: 0; cursor: pointer; }
.acc-q .ico { margin-left: auto; flex-shrink: 0; width: 18px; height: 18px; color: var(--muted); transition: transform .2s; }
.acc-item[data-open] .acc-q .ico { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.acc-a-inner { padding: 0 20px 20px; font-size: 14.5px; color: var(--ink-2); line-height: 1.65; }

/* Form (contact) */
.field-group { display: flex; flex-direction: column; gap: 18px; }
.field-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field-label .opt { font-weight: 400; color: var(--muted); }
.input, .textarea { width: 100%; font-family: inherit; font-size: 14.5px; color: var(--ink); background: var(--surface); border: 1px solid var(--border-2); border-radius: 10px; padding: 11px 14px; transition: border-color .15s, box-shadow .15s; }
.input:focus, .textarea:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.select { width: 100%; font-family: inherit; font-size: 14.5px; color: var(--ink); background-color: var(--surface); border: 1px solid var(--border-2); border-radius: 10px; padding: 11px 38px 11px 14px; cursor: pointer; appearance: none; -webkit-appearance: none; background-image: 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='%2371717a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; transition: border-color .15s, box-shadow .15s; }
.select:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.textarea { resize: vertical; min-height: 132px; }
.field-error { margin-top: 6px; font-size: 12.5px; color: #dc2626; }
[data-theme="dark"] .field-error { color: #f87171; }
.form-note { margin-top: 24px; padding: 14px 16px; background: var(--green-soft); border-radius: 10px; font-size: 14px; color: var(--green); }

/* Cookie consent banner */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; padding: 16px; }
.consent-card { max-width: 1140px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px 22px; display: flex; align-items: center; gap: 22px; }
.consent-main { flex: 1; min-width: 0; }
.consent-text { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.consent-text a { color: var(--accent); font-weight: 600; }
.consent-prefs { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.consent-cat { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; cursor: pointer; }
.consent-cat span { display: flex; flex-direction: column; gap: 2px; }
.consent-cat strong { font-size: 13.5px; }
.consent-cat small { font-size: 12px; color: var(--muted); }
.consent-cat input { width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; cursor: pointer; }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.consent-actions .btn { height: 40px; }
.foot-prefs { font-family: inherit; font-size: 13.5px; color: var(--ink-2); background: none; border: 0; padding: 0; cursor: pointer; }
.foot-prefs:hover { color: var(--ink); }
@media (max-width: 720px) {
    .consent-card { flex-direction: column; align-items: stretch; gap: 14px; }
    .consent-actions .btn { flex: 1; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 920px) {
    .hero-grid, .feature-grid, .shots { grid-template-columns: 1fr; }
    .flow-row { grid-template-columns: 1fr; }
    .flow-arrow { transform: rotate(90deg); justify-self: center; }
    .nav-links { display: none; }
    .plan.featured { transform: none; }
    .section { padding: 72px 0; }
    .compare-wrap { overflow-x: auto; }

    /* Header: linkler + dil + login gizlenir, hamburger açılır menüye taşınır */
    .nav-toggle { display: grid; }
    .nav-right .dd, .nav-right .login-link { display: none; }
    .mobile-menu { display: block; max-height: 0; overflow: hidden; transition: max-height .3s ease; border-bottom: 1px solid transparent; }
    .mobile-menu.open { max-height: 480px; border-bottom-color: var(--border); }
}
