/* ─── GEOSATINAL - Sales-focused landing ─── */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter+Tight:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
 --bg: #0a0a0b;
 --bg-2: #111114;
 --bg-3: #17171b;
 --line: #232329;
 --line-2: #2d2d35;
 --text: #f5f5f7;
 --text-2: #b5b5bd;
 --text-3: #6e6e78;
 --text-4: #44444c;
 --primary: #e01425;
 --primary-light: #ff4253;
 --primary-dark: #ad0000;
 --primary-glow: rgba(224,20,37,0.45);
 --wa: #25D366;
 --wa-dark: #128C7E;
 --font-display: 'Bricolage Grotesque', 'Inter Tight', 'Inter', system-ui, sans-serif;
 --font-body: 'Inter', 'Inter Tight', system-ui, sans-serif;
 --font-mono: 'JetBrains Mono', ui-monospace, monospace;

 --max: 1280px;
 --gutter: clamp(20px, 4vw, 48px);
 --radius: 18px;
 --radius-sm: 12px;
 --radius-lg: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); }
html { scroll-behavior: smooth; }
body {
 font-family: var(--font-body);
 font-size: 16px;
 line-height: 1.55;
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
 overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--primary); color: white; }

/* ─── Layout ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
section { position: relative; padding: clamp(80px, 12vw, 140px) 0; }
.eyebrow {
 display: inline-flex; align-items: center; gap: 8px;
 font-family: var(--font-mono); font-size: 12px; font-weight: 500;
 text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-2);
 padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px;
 background: rgba(255,255,255,0.02);
}
.eyebrow::before {
 content: ""; width: 6px; height: 6px; border-radius: 50%;
 background: var(--primary); box-shadow: 0 0 12px var(--primary-glow);
 animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; color: var(--text); }
h1 { font-size: clamp(44px, 7.2vw, 96px); letter-spacing: -0.035em; }
h2 { font-size: clamp(36px, 5.4vw, 64px); letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--text-2); line-height: 1.55; max-width: 56ch; }
.muted { color: var(--text-2); }

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; transition: transform .15s ease, box-shadow .25s ease, background .2s ease; will-change: transform; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-wa, a.btn-wa, button.btn-wa { background: var(--wa) !important; color: #ffffff !important; box-shadow: 0 8px 24px -8px rgba(37,211,102,0.5), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn-wa *, a.btn-wa *, button.btn-wa * { color: #ffffff !important; }
.btn-wa:hover, a.btn-wa:hover { background: #1fb255 !important; color: #ffffff !important; box-shadow: 0 12px 32px -8px rgba(37,211,102,0.7); }
.btn-wa svg, a.btn-wa svg { color: #ffffff !important; fill: #ffffff !important; }
.fab-wa, a.fab-wa { color: #ffffff !important; }
.fab-wa *, a.fab-wa * { color: #ffffff !important; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 10px 28px -8px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.18); }
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 14px 36px -8px var(--primary-glow); }
.btn-ghost { background: rgba(255,255,255,0.03); color: var(--text); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: #3a3a45; }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Navbar ─── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 16px 0; transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(10,10,11,0.78); backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.nav-logo-mark { width: 30px; height: 30px; border-radius: 8px; background: radial-gradient(circle at 30% 30%, var(--primary-light), var(--primary) 50%, var(--primary-dark)); box-shadow: 0 6px 18px -4px var(--primary-glow); position: relative; overflow: hidden; }
.nav-logo-mark::after { content: ""; position: absolute; inset: 5px; border-radius: 5px; border: 1.5px solid rgba(255,255,255,0.85); border-right-color: transparent; border-bottom-color: transparent; transform: rotate(-25deg); }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--text-2); }
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 860px) { .nav-links { display: none; } }
@media (max-width: 520px) { .nav-cta .btn-ghost { display: none; } }

/* ─── Hero ─── */
.hero { padding-top: clamp(140px, 18vw, 200px); padding-bottom: clamp(80px, 10vw, 120px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg::before {
 content: ""; position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
 width: 1100px; height: 1100px; max-width: 130vw;
 background: radial-gradient(closest-side, rgba(224,20,37,0.18), rgba(224,20,37,0.06) 40%, transparent 70%);
 filter: blur(20px);
}
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 56px; } }
.hero h1 .accent { background: linear-gradient(180deg, #ff5263, var(--primary) 60%, var(--primary-dark)); -webkit-background-clip: text; background-clip: text; color: transparent; position: relative; }
.hero h1 .accent::after {
 content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 10px;
 background: linear-gradient(90deg, transparent, var(--primary) 20%, var(--primary) 80%, transparent);
 filter: blur(14px); opacity: 0.55;
}
.hero-sub { margin-top: 22px; max-width: 52ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-strip { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 8px 28px; font-size: 13px; color: var(--text-3); align-items: center; }
.hero-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-4); }
.hero-strip b { color: var(--text-2); font-weight: 600; }

/* AI chat mockup */
.chatcard { position: relative; padding: 0; border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02) inset; transform-style: preserve-3d; }
.chatcard::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(224,20,37,0.5), transparent 40%, rgba(0,212,255,0.18) 80%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.chat-head { display: flex; align-items: center; gap: 10px; padding: 16px 20px; border-bottom: 1px solid var(--line); background: rgba(0,0,0,0.25); }
.chat-dots { display: flex; gap: 6px; }
.chat-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.chat-dots span:nth-child(1) { background: #ff5f57; }
.chat-dots span:nth-child(2) { background: #febc2e; }
.chat-dots span:nth-child(3) { background: #28c840; }
.chat-title { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); margin-left: 6px; }
.chat-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 14px; min-height: 380px; }
.bubble { padding: 14px 16px; border-radius: 14px; font-size: 15px; line-height: 1.55; max-width: 92%; }
.bubble.user { align-self: flex-end; background: var(--bg-3); border: 1px solid var(--line); color: var(--text); }
.bubble.ai { align-self: flex-start; background: transparent; padding-left: 44px; position: relative; color: var(--text); }
.bubble.ai::before { content: ""; position: absolute; left: 0; top: 12px; width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, #2a2a35, #17171b); border: 1px solid var(--line); }
.bubble.ai::after { content: "AI"; position: absolute; left: 0; top: 12px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--text-2); }
.bubble.ai .citation { display: inline-flex; align-items: center; gap: 5px; padding: 2px 8px; border-radius: 6px; background: rgba(224,20,37,0.15); color: var(--primary-light); font-family: var(--font-mono); font-size: 12px; font-weight: 600; margin: 0 2px; vertical-align: 1px; border: 1px solid rgba(224,20,37,0.3); }
.bubble.ai .citation::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--primary-light); box-shadow: 0 0 6px var(--primary-light); }
.typing { display: inline-flex; gap: 4px; align-items: center; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-3); animation: typing 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }
.cursor { display: inline-block; width: 7px; height: 18px; background: var(--text); vertical-align: -3px; margin-left: 2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.chat-platforms { display: flex; gap: 6px; padding: 14px 20px; border-top: 1px solid var(--line); background: rgba(0,0,0,0.25); flex-wrap: wrap; }
.platform-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); font-size: 11px; font-family: var(--font-mono); color: var(--text-2); transition: opacity .3s ease; }
.platform-pill.active { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.3); color: #4ade80; }
.platform-pill .dotg { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* ─── Stats ─── */
.stats { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 860px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 36px 30px; background: var(--bg-2); position: relative; transition: background .2s ease; }
.stat:hover { background: var(--bg-3); }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(52px, 6vw, 80px); line-height: 1; letter-spacing: -0.04em; color: var(--text); }
.stat-num .unit { font-size: 0.55em; color: var(--primary); margin-left: 2px; }
.stat-num.red { color: var(--primary); }
.stat-label { margin-top: 14px; font-size: 14px; color: var(--text-2); line-height: 1.45; max-width: 22ch; }
.stats-foot { margin-top: 40px; text-align: center; color: var(--text-3); font-size: 13px; }

/* ─── Pricing ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; align-items: stretch; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.price-card { position: relative; padding: 36px 30px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); display: flex; flex-direction: column; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.price-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--bg-3); }
.price-card.featured { background: linear-gradient(180deg, #16060b, var(--bg-3)); border-color: rgba(224,20,37,0.4); transform: translateY(-12px); box-shadow: 0 40px 80px -40px var(--primary-glow); }
.price-card.featured:hover { transform: translateY(-16px); }
.price-badge { position: absolute; top: -1px; right: 24px; transform: translateY(-50%); background: var(--primary); color: white; font-size: 11px; font-family: var(--font-mono); font-weight: 700; letter-spacing: 0.1em; padding: 6px 12px; border-radius: 999px; text-transform: uppercase; box-shadow: 0 8px 24px -8px var(--primary-glow); }
.price-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.price-name.red { color: var(--primary-light); }
.price-aud { color: var(--text-3); font-size: 14px; margin-top: 6px; min-height: 42px; }
.price-amt { margin-top: 22px; display: flex; align-items: baseline; gap: 4px; }
.price-amt .num { font-family: var(--font-display); font-size: 48px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.price-amt .per { color: var(--text-2); font-size: 14px; }
.price-setup { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); margin-top: 8px; }
.price-term { margin-top: 8px; font-size: 12px; color: var(--text-3); display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); width: fit-content; }
.price-feats { list-style: none; margin: 24px 0; padding: 24px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.price-feats li { display: flex; gap: 10px; font-size: 14px; color: var(--text-2); line-height: 1.5; }
.price-feats li::before { content: ""; flex: none; width: 16px; height: 16px; margin-top: 3px; border-radius: 50%; background: var(--primary); position: relative; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat; }
.price-feats li.bold { color: var(--text); font-weight: 500; }
.price-cta { margin-top: 8px; }
.price-cta .btn { width: 100%; justify-content: center; }
.price-note { font-size: 13px; color: var(--text-3); text-align: center; margin-top: 28px; }

/* ─── 3-step process ─── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 32px 28px 36px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); position: relative; transition: border-color .25s ease, background .25s ease; }
.step:hover { border-color: rgba(224,20,37,0.35); background: var(--bg-3); }
.step-num { position: absolute; top: 28px; right: 28px; font-family: var(--font-mono); font-size: 12px; color: var(--text-3); }
.step-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(224,20,37,0.2), rgba(224,20,37,0.05)); border: 1px solid rgba(224,20,37,0.3); display: flex; align-items: center; justify-content: center; color: var(--primary-light); margin-bottom: 24px; }
.step h3 { margin-bottom: 12px; }
.step p { color: var(--text-2); font-size: 15px; }

/* ─── Platforms ─── */
.platforms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 56px; }
@media (max-width: 860px) { .platforms-grid { grid-template-columns: repeat(2, 1fr); } }
.plat { padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-2); display: flex; flex-direction: column; gap: 14px; transition: all .2s ease; position: relative; overflow: hidden; }
.plat:hover { background: var(--bg-3); border-color: var(--line-2); transform: translateY(-2px); }
.plat-logo { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--bg); border: 1px solid var(--line); font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text); }
.plat-name { font-weight: 600; font-size: 15px; }
.plat-share { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); margin-top: -8px; }
.plat-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #4ade80; font-family: var(--font-mono); }
.plat-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; }

/* ─── Timeline ─── */
.timeline { margin-top: 60px; position: relative; padding-left: 24px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--line) 80%); }
.tl-row { position: relative; padding: 0 0 36px 28px; }
.tl-row::before { content: ""; position: absolute; left: -22px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--bg); border: 2px solid var(--primary); box-shadow: 0 0 0 4px var(--bg), 0 0 18px var(--primary-glow); }
.tl-day { font-family: var(--font-mono); font-size: 12px; color: var(--primary-light); text-transform: uppercase; letter-spacing: 0.06em; }
.tl-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin: 6px 0 8px; }
.tl-desc { color: var(--text-2); font-size: 15px; max-width: 60ch; }

/* ─── Proof ─── */
.proof { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 80px 0; overflow: hidden; }
.proof-eyebrow { text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--text-3); text-transform: uppercase; margin-bottom: 36px; }
.marquee { display: flex; gap: 64px; animation: marquee 36s linear infinite; width: max-content; }
.marquee-wrap { mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); overflow: hidden; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marq-item { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.4vw, 30px); color: var(--text-3); letter-spacing: -0.02em; white-space: nowrap; display: inline-flex; align-items: center; gap: 12px; }
.marq-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); flex: none; }

/* ─── FAQ ─── */
.faq { max-width: 880px; margin: 60px auto 0; }
.faq-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; justify-content: center; }
.faq-tab { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--bg-2); font-size: 13px; color: var(--text-2); transition: all .15s ease; }
.faq-tab:hover { border-color: var(--line-2); color: var(--text); }
.faq-tab.active { background: var(--primary); border-color: var(--primary); color: white; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; padding: 22px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--text); }
.faq-q .icon { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; transition: transform .25s ease, background .2s ease; color: var(--text-2); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--primary); border-color: var(--primary); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 4px 24px; color: var(--text-2); font-size: 15px; line-height: 1.65; max-width: 68ch; }
.faq-item.open .faq-a { max-height: 600px; }

/* ─── Final CTA ─── */
.final-cta { background: var(--bg); padding: clamp(100px, 14vw, 160px) 0; text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.final-cta::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 900px; height: 900px; max-width: 130vw; background: radial-gradient(closest-side, rgba(224,20,37,0.25), transparent 70%); filter: blur(20px); pointer-events: none; }
.final-cta-inner { position: relative; max-width: 760px; margin: 0 auto; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta-row { display: flex; justify-content: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.final-cta-meta { margin-top: 28px; font-size: 13px; color: var(--text-3); font-family: var(--font-mono); }

/* ─── Footer ─── */
.foot { background: var(--bg-2); border-top: 1px solid var(--line); padding: 64px 0 32px; color: var(--text-2); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot h4 { font-family: var(--font-body); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 18px; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot ul a:hover { color: var(--text); }
.foot-corp { font-size: 13px; line-height: 1.6; color: var(--text-3); }
.foot-corp b { color: var(--text-2); }
.foot-social { display: flex; gap: 10px; padding: 24px 0; border-top: 1px solid var(--line); }
.foot-social a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-3); color: var(--text-2); transition: color .15s ease, border-color .15s ease, background .15s ease, transform .15s ease; }
.foot-social a:hover { color: var(--primary-light); border-color: rgba(224,20,37,0.4); background: rgba(224,20,37,0.08); transform: translateY(-2px); }
.foot-bot { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; color: var(--text-3); flex-wrap: wrap; }
.foot-bot a { transition: color .15s ease; }
.foot-bot a:hover { color: var(--text); }
.foot-legal { display: flex; gap: 18px; }

/* ─── Floating WhatsApp (LEFT) ─── */
.fab-wa { position: fixed; bottom: 22px; left: 22px; z-index: 60; display: flex; align-items: center; gap: 12px; background: var(--wa); color: #fff; padding: 13px 18px 13px 14px; border-radius: 999px; box-shadow: 0 12px 40px -10px rgba(37,211,102,0.55), inset 0 1px 0 rgba(255,255,255,0.25); font-weight: 600; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease; }
.fab-wa:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 48px -10px rgba(37,211,102,0.7); }
.fab-wa-icon { width: 28px; height: 28px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; position: relative; }
.fab-wa-icon::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--wa); animation: ripple 2s ease-out infinite; opacity: 0; }
@keyframes ripple { 0% { transform: scale(0.9); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }
@media (max-width: 520px) { .fab-wa span.lbl { display: none; } .fab-wa { padding: 12px; } }

/* ─── Back-to-top button (RIGHT) — ALWAYS VISIBLE ─── */
.fab-top {
  position: fixed; bottom: 22px; right: 22px; z-index: 65;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary) !important; border: 2px solid #fff !important; color: #fff !important;
  display: flex !important; align-items: center; justify-content: center;
  cursor: pointer; opacity: 1; visibility: visible;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 32px -8px var(--primary-glow), 0 0 0 4px rgba(224,20,37,0.15);
  padding: 0;
}
.fab-top:hover { background: var(--primary-light) !important; transform: translateY(-3px); box-shadow: 0 18px 40px -8px var(--primary-glow), 0 0 0 6px rgba(224,20,37,0.2); }
.fab-top:active { transform: translateY(-1px); }
.fab-top svg { width: 22px; height: 22px; stroke-width: 2.8; color: #fff !important; }
@media (max-width: 520px) {
  .fab-top { bottom: 16px; right: 14px; width: 48px; height: 48px; }
  .fab-wa { bottom: 16px; left: 14px; padding: 11px 16px 11px 12px; }
  .fab-top svg { width: 20px; height: 20px; }
}

/* ─── Mobile Hamburger Menu ─── */
.nav-burger { display: none; position: relative; z-index: 101; width: 40px; height: 40px; border-radius: 8px; align-items: center; justify-content: center; cursor: pointer; background: transparent; border: 1px solid var(--line); transition: background .15s ease, border-color .15s ease; flex-direction: column; gap: 5px; padding: 0; }
.nav-burger:hover { background: var(--bg-3); border-color: var(--line-2); }
.nav-burger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 1px; transition: transform .25s ease, opacity .25s ease; }
.nav-burger.open { background: var(--bg-3); border-color: var(--line-2); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-burger { display: flex; }

  /* Nav'ı menü açıkken üstte tut, scrolled blur'unu sıfırla */
  body.menu-open .nav { z-index: 100; background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: var(--line); }
  body.menu-open .nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }

  .nav-links {
    display: flex !important; flex-direction: column; gap: 0; position: fixed;
    top: 0; right: -100%; width: min(320px, 85vw); height: 100vh; height: 100dvh;
    background: var(--bg); border-left: 1px solid var(--line);
    padding: 96px 24px 32px; z-index: 90; transition: right .3s ease;
    box-shadow: -24px 0 60px -10px rgba(0,0,0,0.7);
    isolation: isolate; backdrop-filter: none; -webkit-backdrop-filter: none;
    overflow-y: auto;
  }
  .has-top-banner .nav-links { padding-top: 110px; }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 17px; color: var(--text); display: block; }
  .nav-links a:hover, .nav-links a:active { color: var(--primary-light); background: var(--bg-2); padding-left: 12px; }
  .nav-links a:last-child { border-bottom: 0; }
  body.menu-open { overflow: hidden; }
  body.menu-open::before { content: ""; position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 85; }
}
@media (max-width: 520px) {
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-wa { display: none; }
}

/* ─── Reveal on scroll ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

/* ─── Accessibility: focus-visible ─── */
:focus-visible { outline: 2px solid var(--primary-light); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible, .nav-logo:focus-visible, .fab-wa:focus-visible { outline-offset: 4px; }
.faq-q:focus-visible { outline-offset: -2px; }

/* ─── Accessibility: reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
 *, *::before, *::after {
 animation-duration: 0.01ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.01ms !important;
 scroll-behavior: auto !important;
 }
 .reveal { opacity: 1; transform: none; }
 .marquee { animation: none; }
 .cursor, .typing span, .eyebrow::before, .fab-wa-icon::after { animation: none; }
 html { scroll-behavior: auto; }
}

/* ─── Skip link for screen readers ─── */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--primary); color: white; padding: 8px 16px; text-decoration: none; border-radius: 0 0 8px 0; z-index: 100; font-weight: 600; }
.skip-link:focus { top: 0; }

/* ─── Top announcement banner ─── */
.top-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 60; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 9px 14px; background: linear-gradient(90deg, var(--primary-dark), var(--primary) 50%, var(--primary-dark)); color: #fff; font-size: 13px; font-weight: 500; text-align: center; transition: background .15s ease; letter-spacing: 0.01em; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; height: 38px; box-sizing: border-box; }
.top-banner:hover { background: linear-gradient(90deg, var(--primary), var(--primary-light) 50%, var(--primary)); }
.top-banner strong { font-weight: 700; }
.top-banner .tb-arrow { transition: transform .2s ease; flex: none; }
.top-banner:hover .tb-arrow { transform: translateX(3px); }
.top-banner .tb-full { display: inline; }
.top-banner .tb-short { display: none; }
.has-top-banner .nav { top: 38px; }
.has-top-banner { padding-top: 38px; }

@media (max-width: 720px) {
  .top-banner { font-size: 12px; padding: 8px 12px; gap: 6px; height: 34px; }
  .top-banner .tb-full { display: none; }
  .top-banner .tb-short { display: inline; }
  .has-top-banner .nav { top: 34px; }
  .has-top-banner { padding-top: 34px; }
}
@media (max-width: 380px) {
  .top-banner { font-size: 11px; padding: 8px 10px; }
  .top-banner .tb-short strong { display: inline-block; max-width: 180px; overflow: hidden; text-overflow: ellipsis; vertical-align: bottom; }
}

/* ─── Author section ─── */
.author-section { background: var(--bg-2); border-top: 1px solid var(--line); padding: 60px 0; }
.author-card { max-width: 760px; margin: 0 auto; padding: 36px 36px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg); display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.author-card-avatar { width: 64px; height: 64px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--primary-light), var(--primary) 50%, var(--primary-dark)); flex: none; display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; box-shadow: 0 6px 18px -4px var(--primary-glow); }
.author-card-info { flex: 1; min-width: 220px; }
.author-card-info h3 { font-size: 20px; margin: 0 0 6px; color: var(--text); }
.author-card-info p { color: var(--text-2); font-size: 14px; line-height: 1.55; margin-bottom: 10px; font-style: italic; }
.author-card-info a { color: var(--primary-light); font-size: 14px; font-weight: 600; transition: color .15s ease; }
.author-card-info a:hover { color: var(--text); }

/* ─── Legal pages ─── */
.legal-page { padding: 140px 0 80px; }
.legal-page h1 { font-size: clamp(40px, 5vw, 60px); margin: 22px 0 8px; }
.legal-page h2 { font-size: clamp(22px, 2.4vw, 28px); margin: 40px 0 14px; color: var(--text); }
.legal-page h3 { font-size: clamp(17px, 1.8vw, 20px); margin: 24px 0 10px; color: var(--text); }
.legal-page p, .legal-page li { color: var(--text-2); font-size: 16px; line-height: 1.75; margin-bottom: 14px; max-width: 78ch; }
.legal-page ul { padding-left: 24px; margin-bottom: 18px; }
.legal-page ul li { margin-bottom: 8px; }
.legal-page a { color: var(--primary-light); border-bottom: 1px solid rgba(255,66,83,0.3); transition: color .15s ease, border-color .15s ease; }
.legal-page a:hover { color: var(--text); border-bottom-color: var(--text); }
.legal-page .lead { color: var(--text-3); font-size: 14px; font-family: var(--font-mono); margin-bottom: 40px; }
.legal-page b { color: var(--text); }
.legal-meta { margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px; }
.legal-table { width: 100%; max-width: 600px; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
.legal-table th, .legal-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); text-align: left; }
.legal-table th { color: var(--text); font-weight: 600; background: var(--bg-2); }
.legal-table td { color: var(--text-2); }

/* ─── Blog Post ─── */
.blog-post { padding-top: 100px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-3); font-family: var(--font-mono); margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-2); transition: color .15s ease; }
.breadcrumb a:hover { color: var(--primary-light); }
.blog-head { padding: 40px 0 30px; max-width: 880px; margin: 0 auto; }
.blog-head h1 { font-size: clamp(36px, 5vw, 60px); margin: 14px 0 22px; letter-spacing: -0.025em; }
.blog-excerpt { font-size: clamp(17px, 1.4vw, 19px); color: var(--text-2); line-height: 1.6; max-width: 65ch; }
.blog-meta { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--text-3); font-family: var(--font-mono); margin-top: 32px; flex-wrap: wrap; }
.blog-meta strong { color: var(--text); font-weight: 600; }
.blog-cover { max-width: 1200px; margin: 30px auto 0; padding: 0 var(--gutter); }
.blog-cover img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 16/9; object-fit: cover; }
.blog-body { max-width: 760px; margin: 0 auto; padding-top: 60px; padding-bottom: 80px; }
.blog-body h2 { font-size: clamp(26px, 3.2vw, 36px); margin: 56px 0 18px; letter-spacing: -0.02em; scroll-margin-top: 80px; }
.blog-body h3 { font-size: clamp(20px, 2.2vw, 24px); margin: 36px 0 14px; color: var(--text); letter-spacing: -0.015em; scroll-margin-top: 80px; }
.blog-body p { font-size: 17px; line-height: 1.7; color: var(--text-2); margin-bottom: 18px; }
.blog-body ul, .blog-body ol { padding-left: 24px; margin: 14px 0 22px; }
.blog-body li { font-size: 17px; line-height: 1.7; color: var(--text-2); margin-bottom: 8px; }
.blog-body strong { color: var(--text); font-weight: 600; }
.blog-body em { color: var(--text-2); font-style: italic; }
.blog-body code { font-family: var(--font-mono); background: var(--bg-3); color: var(--primary-light); padding: 2px 6px; border-radius: 4px; font-size: 0.92em; border: 1px solid var(--line); }
.blog-body a { color: var(--primary-light); border-bottom: 1px solid rgba(255,66,83,0.3); transition: color .15s ease, border-color .15s ease; }
.blog-body a:hover { color: var(--text); border-bottom-color: var(--text); }

.blog-tldr { background: linear-gradient(180deg, rgba(224,20,37,0.08), rgba(224,20,37,0.02)); border: 1px solid rgba(224,20,37,0.25); border-radius: var(--radius); padding: 28px 30px; margin: 0 0 56px; }
.blog-tldr h2 { font-size: 18px; margin: 0 0 12px; color: var(--primary-light); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.blog-tldr p { margin: 0; color: var(--text); font-size: 16px; }

.blog-cta-box { background: linear-gradient(135deg, rgba(224,20,37,0.12), rgba(224,20,37,0.04)); border: 1px solid rgba(224,20,37,0.3); border-radius: var(--radius); padding: 36px 32px; margin: 60px 0; text-align: center; }
.blog-cta-box h3 { font-size: 24px; margin-bottom: 12px; }
.blog-cta-box p { color: var(--text-2); margin-bottom: 22px; }

.blog-related { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; margin: 60px 0 30px; }
.blog-related h3 { font-size: 17px; margin: 0 0 16px; color: var(--text); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); font-weight: 600; }
.blog-related ul { padding-left: 0; list-style: none; margin: 0; }
.blog-related li { margin-bottom: 10px; padding-left: 16px; position: relative; }
.blog-related li::before { content: "→"; position: absolute; left: 0; color: var(--primary-light); }
.blog-related li a { font-size: 16px; }

.blog-author-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; margin-top: 30px; }
.blog-author-card h3 { font-size: 18px; margin: 0 0 8px; color: var(--text); }
.blog-author-card p { margin: 0; font-size: 15px; color: var(--text-3); line-height: 1.6; }

/* ─── Blog Index ─── */
.blog-index { padding: 140px 0 80px; }
.blog-index-head { max-width: 880px; margin: 0 auto 60px; text-align: center; }
.blog-index-head h1 { font-size: clamp(40px, 5.4vw, 64px); margin: 18px 0 14px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin: 0 auto; max-width: 1200px; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; max-width: 560px; } }
.blog-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, border-color .25s ease, background .25s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(224,20,37,0.35); background: var(--bg-3); }
.blog-card-cover { aspect-ratio: 16/9; overflow: hidden; border-bottom: 1px solid var(--line); }
.blog-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-cover img { transform: scale(1.04); }
.blog-card-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary-light); margin-bottom: 12px; }
.blog-card-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.018em; line-height: 1.25; margin-bottom: 14px; color: var(--text); }
.blog-card-excerpt { font-size: 15px; line-height: 1.6; color: var(--text-2); margin-bottom: 20px; flex-grow: 1; }
.blog-card-meta { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); display: flex; gap: 10px; align-items: center; }
.blog-card a { color: inherit; display: contents; }

/* ─── Section header ─── */
.sec-head { max-width: 760px; margin: 0 auto 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.sec-head.left { margin: 0; text-align: left; align-items: flex-start; }
.sec-head h2 + .lead { margin-top: 8px; }
