/* ════════════════════════════════
   NovaLensAI — Front Page Styles
════════════════════════════════ */

:root {
    --gold: #d4af37;
    --gold-light: #e8c84a;
    --gold-dim: rgba(212,175,55,0.15);
    --gold-border: rgba(212,175,55,0.35);
    --bg: #080808;
    --bg2: #111;
    --bg3: #181818;
    --text: #f0ece4;
    --muted: #9a9080;
    --red: #ff5a5a;
    --green: #4ade80;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3 { font-family: 'Playfair Display', serif; }
.gold { color: var(--gold); }
.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 64px 24px; }

/* ── HEADER ── */
header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(8,8,8,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-border);
}
header .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 60px;
}
.logo { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); letter-spacing: 1px; }
nav a { color: var(--muted); text-decoration: none; margin-left: 28px; font-size: 13px; transition: color .2s; }
nav a:hover { color: var(--gold); }
.nav-cta {
    background: var(--gold); color: #000 !important; padding: 8px 18px;
    border-radius: 6px; font-weight: 600; font-size: 13px !important; margin-left: 28px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: #000 !important; }

/* ── CTA BUTTON ── */
.cta-btn {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    letter-spacing: .3px;
}
.cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212,175,55,0.35);
}
.cta-btn.large { font-size: 17px; padding: 20px 48px; }
.cta-btn.full { width: 100%; text-align: center; }
.trustline {
    font-size: 12px; color: var(--muted); margin-top: 10px;
    display: block; text-align: center;
}

/* ── HERO ── */
.hero {
    background: var(--bg);
    padding: 24px 24px 24px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex; align-items: center;
}
.hero::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
    align-items: center; position: relative; z-index: 2;
    max-width: 1140px; margin: 0 auto; width: 100%;
}
.hero-text h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}
.hero-text p.subheadline {
    font-size: 16px; color: #c0b8aa; line-height: 1.75; margin-bottom: 24px;
}
.hero-bullets { margin-bottom: 32px; }
.hero-bullets li {
    list-style: none; padding: 6px 0 6px 28px; position: relative;
    color: var(--text); font-size: 15px; font-weight: 500;
}
.hero-bullets li::before {
    content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 12px; top: 9px;
}

/* HERO VISUAL */
.hero-visual {
    position: relative; border-radius: 16px; overflow: hidden;
    border: 1.5px solid var(--gold-border);
    background: linear-gradient(135deg, #1c1a14, #0f0e0a);
    height: 520px;
}
.feed-demo {
    width: 100%; height: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.feed-col {
    display: grid; grid-template-rows: repeat(3, 1fr);
    gap: 2px;
}
.feed-cell { position: relative; overflow: hidden; }
.feed-cell-before {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex; align-items: center; justify-content: center;
}
.feed-cell-before::after {
    content: attr(data-label);
    color: #555; font-size: 9px; text-align: center; padding: 4px;
}
.feed-cell-after { background: linear-gradient(135deg, #2a1f06, #1a1500); }
.feed-cell-after::after {
    content: '';
    display: block; width: 100%; height: 100%;
    background: linear-gradient(160deg, rgba(212,175,55,0.12) 0%, transparent 60%);
}
.feed-cell-after.has-model::before {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 90%;
    background: linear-gradient(to top, rgba(212,175,55,0.25), transparent);
    border-radius: 40% 40% 0 0;
}
.feed-divider {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 36px; height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #000; font-size: 14px; font-weight: 700;
    z-index: 10;
    box-shadow: 0 0 24px rgba(212,175,55,0.5);
}
.feed-label-top {
    position: absolute; top: 12px; z-index: 10;
    font-size: 10px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; background: rgba(0,0,0,0.7);
    padding: 4px 10px; border-radius: 20px;
}
.feed-label-top.left { left: 8px; color: #888; }
.feed-label-top.right { right: 8px; color: var(--gold); }
.corner-badge {
    position: absolute; bottom: 14px; right: 14px; z-index: 20;
    background: var(--gold); color: #000;
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 5px 10px; border-radius: 4px;
}

/* ── SOCIAL PROOF STRIP ── */
.proof-strip {
    background: var(--gold-dim);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 20px 24px;
}
.proof-strip-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 48px;
    flex-wrap: wrap;
}
.proof-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 500; color: var(--text);
}
.proof-item span { font-size: 18px; }

/* ── PROBLEM → SOLUTION ── */
.problem-section { background: var(--bg2); }
.problem-section h2 { font-size: clamp(26px, 3.5vw, 40px); text-align: center; margin-bottom: 8px; }
.problem-section .sub { text-align: center; color: var(--muted); margin-bottom: 48px; font-size: 15px; }
.problem-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; max-width: 1000px; margin: 0 auto 40px;
}
.problem-card {
    background: var(--bg3);
    border: 1px solid #2a2a2a;
    border-radius: 12px; padding: 32px 28px;
    position: relative; overflow: hidden;
    transition: border-color .25s, transform .25s;
}
.problem-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.problem-card .problem-label {
    font-size: 13px; color: var(--red); font-weight: 600; margin-bottom: 8px;
    display: flex; align-items: center; gap: 6px;
}
.problem-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 12px; }
.problem-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.problem-card .solution {
    margin-top: 14px; padding-top: 14px;
    border-top: 1px solid #2a2a2a;
    color: var(--gold); font-size: 13px; font-weight: 500;
    display: flex; gap: 7px; align-items: flex-start;
}
.text-center { text-align: center; }

/* ── BEFORE/AFTER ── */
.before-after { background: var(--bg); }
.before-after h2 { font-size: clamp(26px, 3.5vw, 40px); text-align: center; margin-bottom: 8px; }
.before-after .sub { text-align: center; color: var(--muted); margin-bottom: 48px; font-size: 15px; }
.ba-grid {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px;
    align-items: center; max-width: 900px; margin: 0 auto 24px;
}
.ba-phone {
    border-radius: 28px; overflow: hidden;
    border: 8px solid #1e1e1e;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    position: relative; cursor: zoom-in;
}
.ba-screen {
    height: 440px; display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 2px;
}
.ba-cell-before { background: #2a2a2a; position: relative; overflow: hidden; }
.ba-cell-before::after {
    content: '📦';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px; opacity: 0.35;
}
.ba-cell-after { background: linear-gradient(135deg, #1e1800, #100f0a); position: relative; overflow: hidden; }
.ba-cell-after.reel { grid-column: span 2; }
.ba-cell-after::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(212,175,55,0.2) 0%, transparent 50%);
}
.ba-cell-after::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 55%; height: 80%;
    background: linear-gradient(to top, rgba(212,175,55,0.18), transparent);
    border-radius: 40% 40% 0 0;
}
.ba-label { text-align: center; padding: 12px 0 0; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.ba-label.before { color: #666; }
.ba-label.after { color: var(--gold); }
.ba-arrow { font-size: 28px; color: var(--gold); text-align: center; }
.ba-caption { text-align: center; color: var(--muted); font-size: 14px; font-style: italic; margin-top: 16px; }

/* ── DELIVERABLES ── */
.deliverables { background: var(--bg2); }
.deliverables h2 { font-size: clamp(28px, 3.5vw, 42px); text-align: center; margin-bottom: 8px; }
.deliverables .sub { text-align: center; color: var(--muted); margin-bottom: 48px; font-size: 15px; }
.deliverables-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; max-width: 1000px; margin: 0 auto 40px;
}
.deliverable-card {
    background: var(--bg3); border: 1px solid #222;
    border-radius: 12px; padding: 26px;
    display: flex; gap: 18px; align-items: flex-start;
    transition: border-color .25s, transform .25s;
}
.deliverable-card:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.del-icon {
    width: 46px; height: 46px; background: var(--gold-dim);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.deliverable-card h3 { font-size: 15px; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 4px; }
.deliverable-card p { font-size: 13px; color: var(--muted); }

/* ── COURSE MODULES ── */
.modules { background: var(--bg); }
.modules h2 { font-size: clamp(28px, 3.5vw, 42px); text-align: center; margin-bottom: 8px; }
.modules .sub { text-align: center; color: var(--muted); margin-bottom: 48px; font-size: 15px; }
.modules-list { max-width: 720px; margin: 0 auto 20px; }
.module-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid #1e1e1e;
}
.module-num {
    width: 36px; height: 36px; background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px; color: var(--gold);
}
.module-info h3 { font-size: 16px; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 4px; }
.module-info .module-meta { font-size: 12px; color: var(--muted); }
.module-info .module-del { font-size: 13px; color: var(--gold); margin-top: 4px; }
.total-time { text-align: center; padding: 20px 0; font-size: 14px; color: var(--muted); border-top: 1px solid #1e1e1e; }
.total-time strong { color: var(--text); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg2); }
.testimonials h2 { font-size: clamp(28px, 3.5vw, 42px); text-align: center; margin-bottom: 8px; }
.testimonials .sub { text-align: center; color: var(--muted); margin-bottom: 48px; font-size: 15px; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; max-width: 1100px; margin: 0 auto;
}
.testimonial-card {
    background: var(--bg3); border: 1px solid #222;
    border-radius: 12px; padding: 28px;
    transition: border-color .25s;
}
.testimonial-card:hover { border-color: var(--gold-border); }
.t-stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.t-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
.t-footer { display: flex; gap: 14px; align-items: center; }
.t-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #7a5a00);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.t-name { font-size: 13px; font-weight: 600; }
.t-handle { font-size: 12px; color: var(--muted); }
.t-result {
    margin-top: 14px; padding: 10px 12px;
    background: var(--gold-dim); border-radius: 6px;
    font-size: 12px; color: var(--gold); text-align: center;
}

/* ── FOR YOU / NOT FOR YOU ── */
.for-you { background: var(--bg); }
.for-you h2 { font-size: clamp(28px, 3.5vw, 42px); text-align: center; margin-bottom: 48px; }
.for-you-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 840px; margin: 0 auto; }
.for-card { border-radius: 12px; padding: 32px; }
.for-card.yes { background: rgba(74,222,128,0.05); border: 1px solid rgba(74,222,128,0.25); }
.for-card.no { background: rgba(255,90,90,0.05); border: 1px solid rgba(255,90,90,0.2); }
.for-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 20px; letter-spacing: .3px; }
.for-card.yes h3 { color: var(--green); }
.for-card.no h3 { color: var(--red); }
.for-list li {
    list-style: none; padding: 8px 0 8px 28px;
    font-size: 14px; color: var(--text); position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.for-list li:last-child { border-bottom: none; }
.for-card.yes .for-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.for-card.no .for-list li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ── DEMO + LEAD CAPTURE ── */
.demo-section { background: var(--bg2); }
.demo-section h2 { font-size: clamp(26px, 3.5vw, 38px); text-align: center; margin-bottom: 8px; }
.demo-section .sub { text-align: center; color: var(--muted); margin-bottom: 40px; font-size: 15px; }
.demo-inner { max-width: 700px; margin: 0 auto; }
.demo-video {
    background: #111; border-radius: 12px; overflow: hidden;
    border: 1px solid var(--gold-border);
    aspect-ratio: 16/9;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 40px; position: relative;
}
.demo-video-play {
    width: 64px; height: 64px; background: var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; cursor: pointer;
    box-shadow: 0 0 40px rgba(212,175,55,0.4);
    transition: transform .2s;
}
.demo-video-play:hover { transform: scale(1.08); }
.demo-video-label {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase;
}
.lead-box {
    background: var(--bg3); border: 1px solid var(--gold-border);
    border-radius: 12px; padding: 36px; text-align: center;
}
.lead-box h3 { font-size: 22px; margin-bottom: 8px; }
.lead-box p { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.lead-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.lead-form input {
    flex: 1; padding: 14px 18px; border: 1px solid #333;
    background: var(--bg2); color: var(--text);
    border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px;
    outline: none; transition: border-color .2s;
}
.lead-form input:focus { border-color: var(--gold); }
.lead-form button {
    background: var(--gold); color: #000; border: none;
    padding: 14px 24px; border-radius: 8px; font-weight: 700;
    font-family: 'DM Sans', sans-serif; font-size: 14px; cursor: pointer;
    transition: background .2s; white-space: nowrap;
}
.lead-form button:hover { background: var(--gold-light); }

/* ── PRICING ── */
.pricing { background: var(--bg); text-align: center; }
.pricing h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 8px; }
.pricing .sub { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.pricing-anchor { color: var(--muted); font-size: 13px; margin-bottom: 40px; }
.pricing-card-wrap { max-width: 520px; margin: 0 auto; }
.pricing-card {
    background: linear-gradient(145deg, #191509, #0f0e0a);
    border: 2px solid var(--gold);
    border-radius: 16px; padding: 44px;
    position: relative; overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.pricing-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--gold); color: #000;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 5px 10px; border-radius: 4px;
}
.pricing-card h3 { font-size: 20px; margin-bottom: 8px; }
.pricing-shoot { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.price-block { margin: 28px 0; }
.price-old { font-size: 16px; color: #555; text-decoration: line-through; margin-bottom: 4px; }
.price-main { font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 900; color: var(--gold); line-height: 1; }
.price-note { font-size: 14px; color: var(--muted); margin-top: 6px; }
.value-list { text-align: left; margin: 28px 0; }
.value-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid rgba(212,175,55,0.12); font-size: 14px;
}
.value-item:last-child { border-bottom: none; }
.value-item .name { color: var(--text); }
.value-item .val { color: var(--muted); font-size: 12px; }
.value-total { padding: 14px 0 28px; font-size: 14px; }
.value-total strong { color: var(--gold); }

/* ── COUNTDOWN ── */
.countdown-wrap {
    background: rgba(212,175,55,0.07);
    border: 1px solid var(--gold-border);
    border-radius: 10px; padding: 16px 20px;
    text-align: center; margin-bottom: 24px;
}
#countdown-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
#countdown-timer { font-family: 'Courier New', monospace; font-size: 32px; font-weight: 700; color: var(--gold); letter-spacing: 3px; }

/* ── FAQ ── */
.faq { background: var(--bg2); }
.faq h2 { font-size: clamp(28px, 3.5vw, 42px); text-align: center; margin-bottom: 8px; }
.faq .sub { text-align: center; color: var(--muted); margin-bottom: 48px; font-size: 15px; }
.faq-list { max-width: 720px; margin: 0 auto 40px; }
.faq-item { border-bottom: 1px solid #1e1e1e; }
.faq-q {
    width: 100%; background: none; border: none; text-align: left;
    color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
    padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; gap: 16px; transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform .3s; }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s;
    color: var(--muted); font-size: 14px; line-height: 1.75;
}
.faq-a.open { max-height: 300px; padding-bottom: 18px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ── FOOTER ── */
footer { background: #000; border-top: 1px solid #1a1a1a; padding: 40px 24px; text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); margin-bottom: 16px; }
.footer-links { margin-bottom: 16px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; margin: 0 12px; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-text { color: #444; font-size: 12px; line-height: 1.8; }

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
    padding: 12px 20px;
    background: rgba(8,8,8,0.97);
    border-top: 1px solid var(--gold-border);
}
.sticky-cta a {
    display: block; background: var(--gold); color: #000;
    text-align: center; padding: 14px; border-radius: 8px;
    font-weight: 700; font-size: 15px; text-decoration: none; transition: background .2s;
}
.sticky-cta a:hover { background: var(--gold-light); }

/* ── SECTION DIVIDER ── */
.divider { height: 1px; background: linear-gradient(to right, transparent, var(--gold-border), transparent); }

/* ── HAMBURGER MENU ── */
.hamburger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 40px; height: 40px;
    background: none; border: none; cursor: pointer;
    padding: 4px; z-index: 400; flex-shrink: 0;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer { display: none; position: fixed; inset: 0; z-index: 300; pointer-events: none; }
.nav-drawer.open { pointer-events: all; }
.nav-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); opacity: 0; transition: opacity .3s ease; }
.nav-drawer.open .nav-backdrop { opacity: 1; }
.nav-panel {
    position: absolute; top: 0; right: 0;
    width: min(300px, 80vw); height: 100%;
    background: #0e0e0e; border-left: 1px solid var(--gold-border);
    display: flex; flex-direction: column; padding: 80px 28px 40px; gap: 4px;
    transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.nav-drawer.open .nav-panel { transform: translateX(0); }
.nav-panel a {
    display: block; color: var(--text); text-decoration: none;
    font-size: 17px; font-weight: 500; padding: 14px 0;
    border-bottom: 1px solid #1e1e1e; transition: color .2s;
}
.nav-panel a:hover { color: var(--gold); }
.nav-panel a:last-of-type { border-bottom: none; }
.nav-panel .panel-cta {
    margin-top: 28px; background: var(--gold); color: #000 !important;
    text-align: center; padding: 15px; border-radius: 8px;
    font-weight: 700; font-size: 15px !important;
    border-bottom: none !important; transition: background .2s !important;
}
.nav-panel .panel-cta:hover { background: var(--gold-light) !important; }
.nav-panel .panel-guarantee {
    margin-top: 12px; text-align: center; font-size: 12px; color: var(--muted);
    border-bottom: none !important; padding: 0 !important; pointer-events: none;
}

/* ── EXTRAS ── */
.nav-mini { margin-left:12px; font-size:12px; color:var(--muted); white-space:nowrap; }
section[id] { scroll-margin-top: 90px; }
.cta-link { display:inline-block; margin-top:12px; color:var(--gold); text-decoration:none; font-weight:600; }
.cta-link:hover { text-decoration:underline; }
.mini-muted { margin-top:10px; color:var(--muted); font-size:13px; }
.lead-micro { margin-top:10px; color:var(--muted); font-size:12px; }
.guarantee-box { margin:14px 0 18px; padding:14px 16px; border-radius:10px; border:1px solid rgba(74,222,128,0.25); background:rgba(74,222,128,0.06); }
.guarantee-box strong { color:var(--green); }
.g-sub { margin-top:6px; color:var(--muted); font-size:13px; }
.sticky-sub { margin-top:8px; text-align:center; color:var(--muted); font-size:12px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    section { padding: 48px 20px; }
    .hero { padding: 48px 20px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-visual { height: 360px; }
    .ba-grid { grid-template-columns: 1fr; }
    .ba-arrow { transform: rotate(90deg); }
    .for-you-grid { grid-template-columns: 1fr; gap: 20px; }
    nav { display: none; }
    .hamburger { display: flex; }
    .nav-drawer { display: block; }
    .sticky-cta { display: block; }
    body { padding-bottom: 70px; }
    .lead-form { flex-direction: column; }
    .proof-strip-inner { gap: 24px; }
}
