/* ============================================================
   LeakProtection by Deleak.co — Shared Stylesheet
   ============================================================ */

:root {
    --bg: #07070A;
    --bg-2: #0C0C11;
    --bg-card: #111118;
    --bg-card-hover: #16161F;
    --text: #EEEEF2;
    --text-2: #BBBBCA;
    --text-3: #6B6B8B;
    --green: #00E57A;
    --green-dim: rgba(0, 229, 122, 0.10);
    --green-border: rgba(0, 229, 122, 0.25);
    --red: #FF4455;
    --red-dim: rgba(255, 68, 85, 0.10);
    --blue: #4D8BFF;
    --blue-dim: rgba(77, 139, 255, 0.09);
    --gold: #F5A623;
    --gold-dim: rgba(245, 166, 35, 0.10);
    --border: rgba(255,255,255,0.06);
    --border-2: rgba(255,255,255,0.12);
    --radius: 14px;
    --max: 1100px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --mono: 'IBM Plex Mono', monospace;
    --syne: 'Syne', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.eyebrow {
    font-family: var(--mono); font-size: 10px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 2px; color: var(--green);
    display: block; margin-bottom: 16px;
}
.h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; line-height: 1.1; letter-spacing: -0.6px; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; font-family: var(--font); font-size: 14px; font-weight: 700;
    padding: 14px 26px; border-radius: 8px;
    transition: all 220ms var(--ease); cursor: pointer; white-space: nowrap;
    text-decoration: none;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn--primary { background: var(--green); color: #000; }
.btn--primary:hover { background: #1AEBA0; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,229,122,0.22); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--green); border: 1.5px solid var(--green-border); }
.btn--ghost:hover { background: var(--green-dim); border-color: var(--green); }
.btn--lg { padding: 16px 34px; font-size: 15px; }
.btn--full { width: 100%; }

/* ── Navigation ────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 4px 0; transition: background 250ms, border-color 250ms; }
.nav.scrolled { background: rgba(7,7,10,0.94); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }

/* ── Back to Top ────────────────────────────────────────── */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 998;
    width: 44px; height: 44px;
    background: #1AEBA0; color: #000;
    border: none; border-radius: 12px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transform: translateY(12px);
    transition: opacity 260ms var(--ease), transform 260ms var(--ease), box-shadow 200ms;
    box-shadow: 0 4px 20px rgba(26,235,160,0.28);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { box-shadow: 0 8px 30px rgba(26,235,160,0.45); transform: translateY(-3px); }
.back-to-top:active { transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav__logo {
    font-family: var(--syne);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}
.nav__logo .logo-svg { width: 26px; height: 26px; flex-shrink: 0; }
.nav__logo span { color: var(--green); }

/* ── Footer ────────────────────────────────────────────── */
.footer { padding: 32px 0; border-top: 1px solid var(--border); }
.footer__inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer__brand { font-family: var(--syne); font-size: 14px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; display: inline-flex; align-items: center; gap: 7px; }
.footer__brand .logo-svg { width: 20px; height: 20px; }
.footer__brand span { color: var(--green); }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 13px; color: var(--text-3); transition: color 200ms; }
.footer__links a:hover { color: var(--text-2); }
@media (max-width: 480px) { .footer__inner { flex-direction: column; gap: 16px; } }

/* ── Reveal Animation ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── Hero (index) ──────────────────────────────────────── */
.hero { position: relative; padding: 148px 0 108px; overflow: hidden; }
.hero::before {
    content: ''; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse at center top, rgba(0,229,122,0.055) 0%, transparent 62%);
    pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 740px; margin: 0 auto; text-align: center; }
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 11px; color: var(--text-2);
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 7px 16px; border-radius: 100px; margin-bottom: 32px;
}
.badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; animation: blink 2.4s ease-in-out infinite; }
@keyframes blink {
    0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(0,229,122,0); }
    50% { opacity:.55; box-shadow: 0 0 0 4px rgba(0,229,122,0.14); }
}
.hero__title { font-size: clamp(36px, 5.8vw, 64px); font-weight: 800; line-height: 1.04; letter-spacing: -1.8px; margin-bottom: 24px; }
.hero__title em { font-style: normal; color: var(--red); }
.hero__sub { font-size: 18px; font-weight: 400; color: var(--text-2); line-height: 1.65; max-width: 560px; margin: 0 auto 16px; }
.hero__line {
    font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--text-2);
    display: inline-block; padding: 8px 16px; border-radius: 6px;
    border: 1px solid var(--border); background: var(--bg-card); margin-bottom: 36px;
}
.hero__cta-group { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__note { font-size: 13px; color: var(--text-3); }
.hero__note strong { color: var(--text-2); font-weight: 500; }

/* ── Proof Strip ───────────────────────────────────────── */
.proof-strip { padding: 72px 0 80px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-strip__top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 8px; }
.proof-strip__top .eyebrow { margin-bottom: 0; }
.proof-strip__sub { font-family: var(--mono); font-size: 12px; color: var(--text-3); }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width: 700px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color 200ms, background 200ms; }
.proof-card:hover { border-color: var(--border-2); background: var(--bg-card-hover); }
.proof-card__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 22px; }
.proof-card__name { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.35; }
.proof-badge { font-family: var(--mono); font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; padding: 4px 9px; border-radius: 5px; flex-shrink: 0; margin-top: 2px; }
.proof-badge--live { background: var(--red-dim); color: var(--red); border: 1px solid rgba(255,68,85,0.2); }
.proof-badge--done { background: var(--green-dim); color: var(--green); border: 1px solid rgba(0,229,122,0.2); }
.proof-card__stats { display: flex; }
.proof-stat { flex: 1; padding-right: 16px; border-right: 1px solid var(--border); }
.proof-stat:last-child { border-right: none; padding-right: 0; padding-left: 16px; }
.stat-num { font-family: var(--mono); font-size: 26px; font-weight: 500; color: var(--text); display: block; line-height: 1; margin-bottom: 5px; }
.stat-lbl { font-size: 12px; color: var(--text-3); line-height: 1.35; }

/* ── Where ─────────────────────────────────────────────── */
.where { padding: 48px 0; }
.where__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 820px) { .where__grid { grid-template-columns: 1fr; gap: 44px; } }
.where__intro { font-size: 16px; color: var(--text-2); margin: 20px 0 18px; line-height: 1.65; }
.where__list { list-style: none; margin-bottom: 28px; }
.where__list li { font-size: 15px; color: var(--text-2); padding: 13px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.where__list li:last-child { border-bottom: none; }
.where__list strong { color: var(--text); font-weight: 600; }
.where__list li::before { content: ''; width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.where__callout { font-size: 14px; color: var(--blue); padding: 14px 18px; background: var(--blue-dim); border-radius: 8px; border-left: 3px solid var(--blue); line-height: 1.55; }
.where__visual { display: flex; flex-direction: column; gap: 10px; }
.vis-row { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 15px 18px; display: flex; align-items: center; gap: 14px; transition: border-color 200ms; }
.vis-row:hover { border-color: var(--border-2); }
.vis-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vis-icon svg { width: 15px; height: 15px; }
.vis-icon--bad { background: var(--red-dim); color: var(--red); }
.vis-icon--good { background: var(--green-dim); color: var(--green); }
.vis-text { flex: 1; }
.vis-platform { font-size: 13px; font-weight: 600; color: var(--text); }
.vis-status { font-family: var(--mono); font-size: 11px; color: var(--text-3); margin-top: 2px; }
.vis-tag { font-family: var(--mono); font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.6px; padding: 3px 8px; border-radius: 4px; flex-shrink: 0; }
.vis-tag--bad { background: var(--red-dim); color: var(--red); border: 1px solid rgba(255,68,85,0.2); }
.vis-tag--good { background: var(--green-dim); color: var(--green); border: 1px solid rgba(0,229,122,0.2); }

/* ── Reality ────────────────────────────────────────────── */
.reality { padding: 40px 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reality__box { max-width: 660px; margin: 0 auto; text-align: center; }
.reality__text { font-size: 18px; font-weight: 400; color: var(--text-2); line-height: 1.7; margin-top: 20px; }
.reality__text strong { color: var(--text); font-weight: 600; }

/* ── Coverage ───────────────────────────────────────────── */
.coverage { padding: 48px 0; }
.coverage__header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.coverage__sub { font-size: 16px; color: var(--text-2); margin-top: 16px; line-height: 1.65; }
.coverage__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width: 900px) { .coverage__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .coverage__grid { grid-template-columns: 1fr; } }
.cov-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 220ms var(--ease); }
.cov-block:hover { border-color: var(--border-2); background: var(--bg-card-hover); transform: translateY(-2px); }
.cov-icon { width: 40px; height: 40px; background: var(--blue-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--blue); }
.cov-icon svg { width: 18px; height: 18px; }
.cov-block h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.cov-block p { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ── System / Steps ─────────────────────────────────────── */
.system { padding: 48px 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.system__header { max-width: 600px; margin: 0 auto 60px; text-align: center; }
.system__header p { font-size: 16px; color: var(--text-2); margin-top: 16px; line-height: 1.65; }
.steps { max-width: 680px; margin: 0 auto; }
.step { display: flex; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step__num { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--green); flex-shrink: 0; padding-top: 3px; letter-spacing: 1px; }
.step__body h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step__body p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ── Pricing ────────────────────────────────────────────── */
.pricing { padding: 48px 0; }
.pricing__header { text-align: center; max-width: 620px; margin: 0 auto 16px; }
.pricing__header p { font-size: 16px; color: var(--text-2); margin-top: 16px; line-height: 1.65; }
.pricing__sub-note { text-align: center; font-family: var(--mono); font-size: 12px; color: var(--text-3); margin-bottom: 52px; }
.pricing__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
@media (max-width: 820px) { .pricing__grid { grid-template-columns: 1fr; max-width: 440px; } }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; display: flex; flex-direction: column; transition: all 220ms var(--ease); position: relative; overflow: hidden; }
.price-card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.price-card--featured { border-color: var(--green-border); background: linear-gradient(160deg, rgba(0,229,122,0.04) 0%, var(--bg-card) 60%); }
.price-card--featured:hover { border-color: rgba(0,229,122,0.5); }
.price-card--best { border-color: rgba(245,166,35,0.3); background: linear-gradient(160deg, rgba(245,166,35,0.04) 0%, var(--bg-card) 60%); }
.price-card--best:hover { border-color: rgba(245,166,35,0.6); }
.price-pill { position: absolute; top: 20px; right: 20px; font-family: var(--mono); font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; }
.price-pill--green { background: var(--green-dim); color: var(--green); border: 1px solid var(--green-border); }
.price-pill--gold { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,166,35,0.3); }
.price-card__plan { font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: var(--text-3); margin-bottom: 20px; }
.price-card__amount { margin-bottom: 6px; line-height: 1; display: flex; align-items: flex-start; }
.amount-currency { font-size: 22px; font-weight: 700; color: var(--text-2); padding-top: 8px; }
.amount-big { font-size: 52px; font-weight: 800; color: var(--text); letter-spacing: -2px; line-height: 1; }
.price-card__period { font-size: 13px; color: var(--text-3); margin-bottom: 6px; font-family: var(--mono); }
.price-card__effective { font-family: var(--mono); font-size: 12px; color: var(--green); margin-bottom: 8px; min-height: 20px; }
.price-card__saving { font-size: 13px; color: var(--text-3); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.price-card__saving strong { color: var(--text-2); font-weight: 600; }
.price-bonus { border-radius: 8px; padding: 12px 14px; margin-bottom: 24px; font-size: 13px; line-height: 1.5; font-weight: 600; }
.price-bonus--green { background: var(--green-dim); color: var(--green); border: 1px solid var(--green-border); }
.price-bonus--gold { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,166,35,0.3); }
.price-bonus span { font-size: 12px; font-weight: 400; opacity: 0.8; display: block; margin-top: 3px; }
.price-features { list-style: none; margin-bottom: 32px; flex: 1; }
.price-features li { font-size: 13px; color: var(--text-2); padding: 9px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '→'; font-family: var(--mono); font-size: 11px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.price-features li strong { color: var(--text); font-weight: 600; }

/* ── Math ───────────────────────────────────────────────── */
.math { padding: 48px 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.math__box { max-width: 640px; margin: 0 auto; text-align: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 60px 44px; position: relative; overflow: hidden; }
.math__box::before { content: ''; position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); width: 480px; height: 240px; background: radial-gradient(ellipse, rgba(0,229,122,0.06) 0%, transparent 70%); pointer-events: none; }
.math__box > * { position: relative; }
.math__title { font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.math__body { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 36px; }
.math__body strong { color: var(--text); font-weight: 600; }
@media (max-width: 640px) { .math__box { padding: 40px 24px; } }

/* ── Accordion ──────────────────────────────────────────── */
.objections { padding: 48px 0; }
.objections__header { max-width: 600px; margin: 0 auto 52px; text-align: center; }
.accordion { max-width: 680px; margin: 0 auto; }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__item:first-child { border-top: 1px solid var(--border); }
.accordion__trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 15px; font-weight: 700; color: var(--text); text-align: left; cursor: pointer; transition: color 200ms; gap: 16px; }
.accordion__trigger:hover { color: var(--green); }
.accordion__chevron { width: 18px; height: 18px; color: var(--text-3); transition: transform 250ms var(--ease); flex-shrink: 0; }
.accordion__item.open .accordion__chevron { transform: rotate(180deg); }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height 380ms var(--ease); }
.accordion__item.open .accordion__body { max-height: 260px; }
.accordion__body p { padding-bottom: 22px; font-size: 14px; color: var(--text-2); line-height: 1.72; }

/* ── CTA Final ──────────────────────────────────────────── */
.cta-final { padding: 48px 0 128px; }
.cta-final__box { max-width: 640px; margin: 0 auto; text-align: center; position: relative; }
.cta-final__box::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 680px; height: 440px; background: radial-gradient(ellipse, rgba(0,229,122,0.045) 0%, transparent 65%); pointer-events: none; }
.cta-final__box > * { position: relative; }
.cta-final__title { font-size: clamp(28px, 4vw, 46px); font-weight: 800; line-height: 1.08; letter-spacing: -1px; margin-bottom: 20px; }
.cta-final__sub { font-size: 17px; color: var(--text-2); line-height: 1.65; margin-bottom: 40px; }
.cta-final__note { font-family: var(--mono); font-size: 12px; color: var(--text-3); margin-top: 16px; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { padding: 48px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.faq__header { text-align: center; max-width: 500px; margin: 0 auto 52px; }

/* ── Page Hero (internal pages) ─────────────────────────── */
.page-hero { padding: 140px 0 72px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
    content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse at center top, rgba(0,229,122,0.045) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1.08; letter-spacing: -1px; margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: var(--text-2); line-height: 1.65; max-width: 500px; margin: 0 auto; }

/* ── Legal Pages ────────────────────────────────────────── */
.legal-body { padding: 64px 0 120px; }
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-meta { font-family: var(--mono); font-size: 12px; color: var(--text-3); margin-bottom: 52px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.legal-content h2 { font-size: 20px; font-weight: 700; color: var(--text); margin: 48px 0 14px; padding-top: 48px; border-top: 1px solid var(--border); }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.legal-content p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { list-style: none; margin: 10px 0 18px; }
.legal-content ul li { font-size: 15px; color: var(--text-2); line-height: 1.75; padding: 5px 0 5px 22px; position: relative; }
.legal-content ul li::before { content: '→'; font-family: var(--mono); font-size: 11px; color: var(--green); position: absolute; left: 0; top: 7px; }
.legal-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { opacity: 0.8; }
.legal-content strong { color: var(--text); font-weight: 600; }

/* ── Scan / Contact Form Page ───────────────────────────── */
.scan-section { padding: 72px 0 120px; }
.scan-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}
@media (max-width: 920px) { .scan-layout { grid-template-columns: 1fr; gap: 44px; } }

.scan-info h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 14px; }
.scan-info > p { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; }
.scan-checklist { list-style: none; margin-bottom: 32px; }
.scan-checklist li { font-size: 14px; color: var(--text-2); padding: 11px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.scan-checklist li:last-child { border-bottom: none; }
.check-icon { width: 20px; height: 20px; background: var(--green-dim); border: 1px solid var(--green-border); border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-icon svg { width: 10px; height: 10px; color: var(--green); }
.scan-checklist strong { color: var(--text); font-weight: 600; }
.scan-timer { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; color: var(--text-3); background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; }
.scan-timer .timer-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

/* Form Card */
.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 36px; position: sticky; top: 100px; }
@media (max-width: 920px) { .form-card { position: static; } }
.form-card__title { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 6px; letter-spacing: -0.3px; }
.form-card__sub { font-size: 12px; color: var(--text-3); font-family: var(--mono); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }

/* Form Elements */
.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 420px) { .form-row { grid-template-columns: 1fr; } }
.form-label { display: block; font-size: 11px; font-weight: 700; color: var(--text-2); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.6px; }
.form-label .opt { font-weight: 400; color: var(--text-3); text-transform: none; letter-spacing: 0; font-size: 11px; margin-left: 4px; }
.form-input, .form-textarea {
    width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
    padding: 11px 13px; font-family: var(--font); font-size: 14px; color: var(--text);
    outline: none; transition: border-color 200ms, box-shadow 200ms; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-input:focus, .form-textarea:focus { border-color: rgba(0,229,122,0.4); box-shadow: 0 0 0 3px rgba(0,229,122,0.08); }
.form-input.is-error, .form-textarea.is-error { border-color: rgba(255,68,85,0.5); }
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.field-err { font-size: 11px; color: var(--red); margin-top: 4px; font-family: var(--mono); display: none; }
.field-err.show { display: block; }

/* Checkbox */
.form-check-wrap { margin: 18px 0 22px; }
.check-label { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; user-select: none; }
.check-label input[type="checkbox"] { display: none; }
.check-box {
    width: 18px; height: 18px; min-width: 18px; border: 1.5px solid var(--border-2);
    border-radius: 4px; background: var(--bg); transition: all 180ms;
    display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check-label input:checked ~ .check-box { background: var(--green); border-color: var(--green); }
.check-mark { display: none; }
.check-label input:checked ~ .check-box .check-mark { display: block; }
.check-text { font-size: 12px; color: var(--text-3); line-height: 1.6; }
.check-text a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.check-text a:hover { color: var(--green); }

/* Alerts */
.form-alert { display: none; border-radius: 8px; padding: 12px 14px; font-size: 13px; line-height: 1.5; margin-bottom: 14px; }
.form-alert.show { display: block; }
.form-alert--error { background: var(--red-dim); border: 1px solid rgba(255,68,85,0.2); color: var(--red); }

/* Confirmation */
.confirm-state { display: none; text-align: center; padding: 4px 0; }
.confirm-state.show { display: block; }
.confirm-icon-wrap { width: 60px; height: 60px; background: var(--green-dim); border: 1px solid var(--green-border); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.confirm-icon-wrap svg { width: 26px; height: 26px; color: var(--green); }
.confirm-state h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.confirm-state > p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.confirm-summary { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 16px; text-align: left; margin-bottom: 20px; }
.confirm-row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.confirm-row:last-child { border-bottom: none; }
.confirm-row .lbl { font-family: var(--mono); font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0; padding-top: 2px; }
.confirm-row .val { color: var(--text); font-weight: 500; text-align: right; word-break: break-all; }
.confirm-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--green); background: var(--green-dim); border: 1px solid var(--green-border); border-radius: 6px; padding: 8px 14px; }

/* ── Cookie Consent Banner ──────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 860px;
    background: rgba(13, 13, 20, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,229,122,0.06);
    animation: cookieSlideUp 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes cookieSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(28px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner.hiding {
    animation: cookieSlideDown 280ms cubic-bezier(0.4, 0, 1, 1) forwards;
}
@keyframes cookieSlideDown {
    from { opacity: 1; transform: translateX(-50%) translateY(0); }
    to   { opacity: 0; transform: translateX(-50%) translateY(20px); }
}
.cookie-banner__icon {
    width: 40px; height: 40px;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--green);
}
.cookie-banner__icon svg { width: 18px; height: 18px; }
.cookie-banner__text { flex: 1; min-width: 220px; }
.cookie-banner__content { flex: 1; min-width: 220px; }
.cookie-banner__title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.cookie-banner__body { font-size: 12px; color: var(--text-2); line-height: 1.55; }
.cookie-banner__body a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__body a:hover { opacity: 0.8; }
.cookie-banner__actions { display: flex; gap: 9px; align-items: center; flex-shrink: 0; }
.cookie-banner__buttons { display: flex; gap: 9px; align-items: center; flex-shrink: 0; }

@media (max-width: 640px) {
    .cookie-banner {
        flex-direction: column !important;
        padding: 20px 16px !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        border-radius: 0 !important;
        gap: 16px !important;
    }
    .cookie-banner.hiding {
        animation: cookieSlideDownMobile 280ms cubic-bezier(0.4,0,1,1) forwards;
    }
    @keyframes cookieSlideDownMobile {
        from { opacity: 1; transform: translateY(0); }
        to   { opacity: 0; transform: translateY(100%); }
    }
    .cookie-banner__text {
        font-size: 13px !important;
        line-height: 1.5 !important;
        min-width: unset !important;
    }
    .cookie-banner__content {
        font-size: 13px !important;
        line-height: 1.5 !important;
        min-width: unset !important;
    }
    .cookie-banner__actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .cookie-banner__buttons {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .cookie-banner__actions button {
        width: 100% !important;
        padding: 12px !important;
        font-size: 14px !important;
    }
    .cookie-banner__buttons button {
        width: 100% !important;
        padding: 12px !important;
        font-size: 14px !important;
    }
}


/* ── Scale Section (new) ────────────────────────────────── */
.scale { padding: 48px 0; background: var(--bg); border-top: 1px solid var(--border); }
.scale__header { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.scale__intro { font-size: 16px; color: var(--text-2); margin-top: 16px; line-height: 1.65; }

.scale__stats-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px; 
    margin-bottom: 48px; 
}
@media (max-width: 820px) { .scale__stats-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 48px; } }

.scale__stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all 220ms var(--ease);
}
.scale__stat-card:hover {
    border-color: var(--border-2);
    transform: translateY(-2px);
}

.stat-blur {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text-3);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    user-select: none;
}

.stat-label {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 20px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-sublabel {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.stat-meta {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-3);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.scale__context {
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
}
.scale__context p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 12px;
}
.scale__context strong {
    color: var(--text);
    font-weight: 600;
}
.scale__attribution {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.scale__attribution strong {
    color: var(--green);
}

.scale__impact {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 48px 40px;
    max-width: 740px;
    margin: 0 auto;
}
.scale__impact h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
    text-align: center;
}

.impact-calc {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.impact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    gap: 20px;
}
.impact-row:last-child {
    border-bottom: none;
}

.impact-label {
    font-size: 13px;
    color: var(--text-2);
    flex: 1;
}

.impact-value {
    font-family: var(--mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
}
.impact-value--red {
    color: var(--red);
    font-size: 18px;
}

.scale__callout {
    font-size: 16px;
    color: var(--text-2);
    font-style: italic;
    margin-bottom: 12px;
    text-align: center;
}

.scale__answer {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    text-align: center;
}
.scale__answer strong {
    color: var(--text);
    font-weight: 700;
}

@media (max-width: 640px) {
    .scale__impact { padding: 32px 24px; }
    .impact-calc { padding: 18px; }
    .impact-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 14px 0; }
    .impact-value { font-size: 14px; }
    .impact-value--red { font-size: 16px; }
}

/* ── Footer aaadvantage link hover ──────────────────────── */
.footer__brand + a:hover { color: var(--text-2); }

/* ── Urgency Section (replaces math) ────────────────────── */
.urgency { padding: 64px 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.urgency__header { max-width: 740px; margin: 0 auto 48px; text-align: center; }
.urgency__intro { font-size: 17px; color: var(--text-2); margin-top: 16px; line-height: 1.65; }
.urgency__intro strong { color: var(--red); font-weight: 700; }

.urgency__timeline { max-width: 560px; margin: 0 auto 52px; }
.timeline-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; }
.timeline-day { font-family: var(--mono); font-size: 11px; color: var(--green); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; font-weight: 600; }
.timeline-event { font-size: 15px; color: var(--text); line-height: 1.5; }
.timeline-event--critical { color: var(--red); font-weight: 600; }
.timeline-arrow { text-align: center; font-size: 24px; color: var(--text-3); margin: 12px 0; }

.urgency__calculation { max-width: 640px; margin: 0 auto 44px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 32px 28px; }
.urgency__scenario { font-size: 16px; color: var(--text-2); margin-bottom: 24px; text-align: center; }
.calc-line { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.calc-line:last-of-type { border-bottom: none; }
.calc-line--final { padding-top: 20px; margin-top: 8px; border-top: 2px solid var(--border-2); }
.calc-label { font-size: 14px; color: var(--text-2); }
.calc-value { font-family: var(--mono); font-size: 16px; font-weight: 700; color: var(--text); white-space: nowrap; }
.calc-value--loss { color: var(--red); font-size: 20px; }
.urgency__punch { font-size: 16px; color: var(--text-3); text-align: center; margin-top: 24px; font-style: italic; }

.urgency__cta { text-align: center; }
.urgency__note { font-family: var(--mono); font-size: 12px; color: var(--text-3); margin-top: 14px; }

@media (max-width: 640px) {
    .calc-line { flex-direction: column; align-items: flex-start; gap: 6px; }
    .calc-value { font-size: 14px; }
    .calc-value--loss { font-size: 17px; }
}

/* ── Interactive calculator input ───────────────────────── */
.calc-line--interactive { border-bottom: none; padding-bottom: 0; }
#coursePrice:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-dim); }
#coursePrice:hover { border-color: var(--green); }

/* ── Mobile fixes for urgency section ───────────────────── */
@media (max-width: 640px) {
    .urgency__calculation { padding: 24px 18px; }
    .urgency__scenario { font-size: 14px; text-align: left; }
    .urgency__punch { font-size: 14px; text-align: left; }
    .calc-line { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 0; }
    .calc-label { font-size: 13px; }
    .calc-value { font-size: 15px; }
    .calc-value--loss { font-size: 18px; }
    #coursePrice { width: 100%; max-width: 200px; font-size: 16px; }
}

/* ── Mobile fixes for pricing cards text wrapping ──────── */
@media (max-width: 640px) {
    .price-features li { font-size: 12px; line-height: 1.5; padding: 8px 0; text-align: left; }
    .price-card { padding: 28px 20px; }
}

/* ── Prevent awkward wrapping in pricing features ───────── */
.price-features li strong { white-space: nowrap; }
.price-features li { word-spacing: -0.05em; }

/* ── Popup Modal ────────────────────────────────────────── */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 7, 10, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-modal {
    position: relative;
    max-width: 640px;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-2);
    border-radius: 18px;
    padding: 60px 44px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease;
    color: #fff;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-close svg {
    width: 18px;
    height: 18px;
}

.popup-content {
    text-align: center;
}

.popup-content .eyebrow {
    margin-bottom: 16px;
}

.popup-content .cta-final__title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.popup-content .cta-final__sub {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 40px;
}

.popup-content .cta-final__note {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-3);
    margin-top: 16px;
}

@media (max-width: 640px) {
    .popup-modal {
        padding: 40px 24px;
    }
    
    .popup-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }
}

/* ── About Page ─────────────────────────────────────────── */
.about-content { padding: 72px 0 120px; }
.about-body { max-width: 720px; margin: 0 auto; }
.about-lead { font-size: 18px; color: var(--text); line-height: 1.7; margin-bottom: 28px; font-weight: 500; }
.about-body p { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }
.about-body p strong { color: var(--text); font-weight: 600; }
.about-body h2 { font-size: 24px; font-weight: 700; color: var(--text); margin: 48px 0 20px; padding-top: 48px; border-top: 1px solid var(--border); }
.about-body h2:first-of-type { margin-top: 40px; }
.about-body h3 { font-size: 18px; font-weight: 700; color: var(--text); margin: 32px 0 14px; }

.about-contact { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 36px; margin: 52px 0 48px; }
.about-contact p { margin-bottom: 24px; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; font-size: 15px; color: var(--text); transition: all 200ms var(--ease); text-decoration: none; }
.contact-link:hover { border-color: var(--green-border); background: var(--green-dim); transform: translateX(4px); }
.contact-link svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--green); }

.about-cta { text-align: center; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border); }

@media (max-width: 640px) {
    .about-contact { padding: 24px 18px; }
}

/* ── About signature ────────────────────────────────────── */
.about-signature { 
    margin: 52px 0 48px; 
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.about-signature p { 
    font-size: 18px; 
    color: var(--text); 
    font-weight: 600;
    margin-bottom: 6px;
    font-style: italic;
}
.signature-title { 
    font-size: 14px !important; 
    color: var(--text-3) !important;
    font-weight: 400 !important;
    font-style: normal !important;
    margin-bottom: 0 !important;
}
/* ── Updated Header with "by DeLeak" ────────────────────── */
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 72px;
    position: relative;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.5px;
}

.nav__logo span {
    color: var(--green);
}

.by-deleak {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-3);
    margin-left: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0;
}
.by-deleak span {
    margin-left: 2px;
}

.nav-cta {
    padding: 9px 18px;
    font-size: 13px;
}

/* ── Burger Button (mobile only) ────────────────────────── */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0px;
    z-index: 1001;
}

.burger-btn span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 300ms ease;
}

.burger-btn:hover span {
    background: var(--green);
}

/* ── Responsive Behavior ────────────────────────────────── */
@media (max-width: 768px) {
    .nav__inner {
        padding: 0 20px;
        height: 72px;
        justify-content: center;
        align-items: center;
    }
    
    /* Nascondi tutti i bottoni e link del nav desktop */
    .nav__inner .btn { 
        display: none !important; 
    }
    
    .nav__links {
        display: none;
    }

    /* Burger button visible */
    .burger-btn {
        display: flex;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        align-items: center;
    }

    /* Logo centrato */
    .nav__logo {
        position: relative;
        left: 0;
        transform: none;
        font-size: 16px;
        display: flex;
        align-items: center;
    }
    
    /* Nascondi "by DeLeak" su mobile */
    .by-deleak {
        display: none;
    }
    
    /* Nascondi CTA desktop su mobile */
    .nav-cta {
        display: none;
    }
}

@media (min-width: 769px) {
    /* Nascondi menu mobile su desktop */
    .mobile-menu {
        display: none !important;
    }
}

/* ── Desktop Navigation Links ───────────────────────────── */
.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 32px;
}

.nav__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    text-decoration: none;
    transition: color 200ms ease;
    position: relative;
}

.nav__link:hover {
    color: var(--text);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 250ms ease;
}

.nav__link:hover::after {
    transform: scaleX(1);
}

/* Update CTA button style */
.nav-cta {
    padding: 10px 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

/* ── Responsive: hide desktop nav on mobile ────────────── */
@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
}
/* ── NEW Mobile Menu CSS ─────────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg);
    border-right: 1px solid var(--border);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 24px;
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.mobile-menu__close {
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    display: flex;
    padding: 0;
}
.mobile-menu__close svg {
    width: 28px;
    height: 28px;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-menu__nav a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color 200ms ease;
}
.mobile-menu__nav a:hover {
    color: var(--green);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.mobile-menu-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 769px) {
    .mobile-menu, .mobile-menu-overlay { display: none !important; }
}
