/* ================================================
   SCALECUBATORS V3 — Premium Growth Partner Site
   Schwartz-based copy + Premium design system
   ================================================ */

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
    --bg: #050505;
    --bg-2: #0B0B0B;
    --bg-3: #111;
    --bg-card: #0D0D0D;
    --border: rgba(255,255,255,0.06);
    --border-2: rgba(255,255,255,0.10);
    --border-3: rgba(255,255,255,0.15);
    --text: #F0EDE8;
    --text-2: rgba(240,237,232,0.55);
    --text-3: rgba(240,237,232,0.28);
    --gold: #C9A84C;
    --gold-2: #E0C36A;
    --gold-dim: rgba(201,168,76,0.10);
    --gold-glow: rgba(201,168,76,0.06);
    --emerald: #2DD4A8;
    --sans: 'Inter', -apple-system, system-ui, sans-serif;
    --serif: 'Playfair Display', Georgia, serif;
    --ease: cubic-bezier(0.25,0.46,0.45,0.94);
    --ease-out: cubic-bezier(0.16,1,0.3,1);
    --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(201,168,76,0.3); color: #fff; }

/* ---- NOISE ---- */
.noise {
    position: fixed; inset: 0; pointer-events: none; z-index: 9999;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* ---- LOADER ---- */
.loader {
    position: fixed; inset: 0; z-index: 10000; background: var(--bg);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
    transition: opacity 0.5s, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-size: 13px; font-weight: 800; letter-spacing: 0.3em; color: var(--text-3); }
.loader-bar { width: 120px; height: 2px; background: var(--border-2); border-radius: 99px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 0; background: var(--gold); border-radius: 99px; transition: width 0.6s var(--ease); }

/* ---- CONTAINER ---- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 60px; }

/* ---- TYPOGRAPHY ---- */
.tag {
    font-size: 13px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 28px;
}
.tag.centered { text-align: center; }

.h2 {
    font-family: var(--sans);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-bottom: 32px;
}
.h2.centered { text-align: center; }

.serif, .gold-serif {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}
.gold-serif { color: var(--gold); }

.subtitle {
    font-size: 20px; line-height: 1.75; color: var(--text-2); margin-bottom: 56px; max-width: 720px;
}
.subtitle.centered { text-align: center; margin-left: auto; margin-right: auto; }
.subtitle strong { color: var(--text); font-weight: 600; }

.gold-text { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans); font-size: 15px; font-weight: 600;
    text-decoration: none; border-radius: 8px; padding: 14px 28px;
    transition: all 0.35s var(--ease); cursor: pointer; border: none;
}
.btn-gold {
    background: var(--gold); color: #080808; position: relative; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 0 0 0 rgba(201,168,76,0.15);
}
.btn-gold::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
    border-radius: inherit; pointer-events: none; opacity: 0;
    transition: opacity 0.35s var(--ease);
}
.btn-gold:hover {
    background: var(--gold-2); transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.35), 0 0 80px rgba(201,168,76,0.15);
}
.btn-gold:hover::before { opacity: 0.4; }
.btn-outline {
    background: rgba(255,255,255,0.02); color: var(--text);
    border: 1px solid var(--border-2);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.btn-outline:hover {
    border-color: rgba(201,168,76,0.3); background: rgba(255,255,255,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 20px rgba(201,168,76,0.08);
}
.btn-lg { font-size: 16px; padding: 18px 36px; }
.btn-full { width: 100%; justify-content: center; }
.arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateY(3px); }

/* ---- GLASS ---- */
.glass {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201,168,76,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.15);
}
.glass-heavy {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(201,168,76,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 16px 48px rgba(0,0,0,0.2);
}

/* ---- REVEAL ---- */
[data-reveal] {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    will-change: transform, opacity;
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-d="1"] { transition-delay: 0.1s; }
[data-d="2"] { transition-delay: 0.2s; }
[data-d="3"] { transition-delay: 0.3s; }
[data-d="4"] { transition-delay: 0.4s; }

/* ---- NAV ---- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(5,5,5,0.88);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}
.nav-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 60px;
    height: 72px; display: flex; align-items: center; gap: 40px;
}
.nav-logo { font-size: 13px; font-weight: 800; letter-spacing: 0.2em; color: var(--text); text-decoration: none; }
.nav-links { display: flex; gap: 36px; margin-left: auto; }
.nav-link { font-size: 15px; color: var(--text-2); text-decoration: none; transition: color 0.2s; }
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--gold); }
.nav-cta {
    font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none;
    border: 1px solid rgba(201,168,76,0.35); padding: 9px 20px; border-radius: 6px;
    transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold-dim); border-color: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; margin-left: auto; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.3s; transform-origin: center; }
.nav-toggle.active span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:last-child { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
    display: none; flex-direction: column; gap: 4px; padding: 24px 60px 32px;
    background: rgba(5,5,5,0.95); backdrop-filter: blur(20px);
    border-top: 1px solid var(--border); max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s;
}
.nav-mobile.open { max-height: 400px; display: flex; }
.nav-mobile-link { font-size: 17px; color: var(--text-2); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px; overflow: hidden;
}
.hero-glow-a {
    position: absolute; top: -200px; left: -100px; width: 900px; height: 900px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.03) 40%, transparent 65%);
    pointer-events: none; filter: blur(40px); animation: glowA 8s ease-in-out infinite;
}
.hero-glow-b {
    position: absolute; top: 0; right: -200px; width: 800px; height: 800px;
    background: radial-gradient(ellipse, rgba(45,212,168,0.06) 0%, transparent 55%);
    pointer-events: none; filter: blur(30px); animation: glowA 10s ease-in-out infinite reverse;
}
.hero-glow-c {
    position: absolute; bottom: -80px; left: 40%; transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(ellipse, rgba(45,212,168,0.05) 0%, transparent 55%);
    pointer-events: none; filter: blur(35px); animation: glowA 12s ease-in-out infinite;
}
@keyframes glowA { 0%,100% { transform: translate(0,0); opacity: 0.85; } 50% { transform: translate(25px,15px); opacity: 1; } }

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 40% 40%, black 20%, transparent 100%);
    pointer-events: none;
}

.hero-layout {
    display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center;
    position: relative; z-index: 1;
}

.hero-copy { max-width: 640px; }

.pill {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--gold); background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.2);
    padding: 10px 22px; border-radius: 99px; margin-bottom: 36px;
    box-shadow: 0 0 30px rgba(201,168,76,0.06);
}
.pill-dot {
    width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
    box-shadow: 0 0 12px rgba(201,168,76,0.6);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-h1 {
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.hero-sub {
    font-size: 19px; line-height: 1.75; color: var(--text-2);
    margin-bottom: 40px; max-width: 560px;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

/* Proof bar */
.hero-proof {
    display: flex; align-items: center; gap: 28px;
    padding: 28px 0; margin-bottom: 40px;
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
}
.proof-item { display: flex; flex-direction: column; gap: 4px; }
.proof-num {
    font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--text);
    display: inline;
}
.proof-unit { font-size: 16px; font-weight: 600; color: var(--text-2); }
.proof-label { font-size: 13px; color: var(--text-3); letter-spacing: 0.01em; }
.proof-divider { width: 1px; height: 48px; background: var(--border-2); flex-shrink: 0; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Hero Visual / Image ---- */
.hero-visual { position: relative; }
.hero-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-2);
    box-shadow: 0 20px 80px rgba(0,0,0,0.4), 0 0 120px rgba(201,168,76,0.04);
    background: var(--bg-card);
}
.hero-img {
    width: 100%; height: auto; display: block;
    border-radius: 16px;
}
.hero-img-wrapper.placeholder .hero-img { display: none; }
.hero-img-placeholder {
    display: none;
    flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    padding: 80px 40px;
    text-align: center;
}
.hero-img-wrapper.placeholder .hero-img-placeholder { display: flex; }
.hero-img-placeholder span { font-size: 14px; color: var(--text-3); }
.hero-img-placeholder .ph-hint { font-size: 11px; color: var(--text-3); opacity: 0.5; }

/* ---- Proof Gallery ---- */
.proof-gallery {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin-top: 32px;
}
.proof-img-slot {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-2);
    background: var(--bg-card);
    aspect-ratio: 16/10;
}
.proof-img-slot img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.proof-img-slot.placeholder img { display: none; }
.proof-img-ph {
    display: none;
    flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    position: absolute; inset: 0;
}
.proof-img-slot.placeholder .proof-img-ph { display: flex; }
.proof-img-ph span { font-size: 12px; color: var(--text-3); opacity: 0.5; }

/* Keep old dash-metrics for fallback */
.dash-metrics {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    border-top: 1px solid var(--border); margin-top: 16px;
}
.dash-metric {
    padding: 16px 20px; display: flex; flex-direction: column; gap: 2px;
    background: var(--bg-card);
}
.dm-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }
.dm-value { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.dm-change { font-size: 12px; font-weight: 700; }
.dm-change.up { color: var(--emerald); }
.dm-change.down { color: var(--emerald); }

/* ---- HERO LIVE DASHBOARD ---- */
.hero-dashboard-live {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    backdrop-filter: blur(8px);
}
.dash-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;
}
.dash-badge {
    font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); background: rgba(201,168,76,0.1); padding: 4px 10px; border-radius: 4px;
}
.dash-brand { font-size: 12px; color: var(--text-3); }
.dash-big-number {
    font-size: 42px; font-weight: 800; letter-spacing: -0.03em; color: var(--text);
    font-family: var(--serif);
}
.dash-big-number .dash-period {
    font-size: 16px; font-weight: 400; color: var(--text-3); margin-left: 8px;
    font-family: var(--sans); letter-spacing: 0;
}
.dash-chart {
    width: 100%; height: 100px; margin: 12px 0 16px; display: block;
}
.dash-stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
    border-top: 1px solid var(--border); padding-top: 16px;
}
.dash-stat { display: flex; flex-direction: column; gap: 2px; }
.ds-val { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.ds-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---- REVENUE PROOF CARDS ---- */
.revenue-proof-card {
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: 12px; padding: 20px 24px; display: flex; flex-direction: column; gap: 8px;
}
.revenue-proof-card.rpc-highlight {
    border-color: rgba(201,168,76,0.2);
    background: rgba(201,168,76,0.03);
}
.rpc-header { display: flex; justify-content: space-between; align-items: center; }
.rpc-month { font-size: 13px; font-weight: 600; color: var(--text-2); }
.rpc-tag {
    font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-3); background: rgba(255,255,255,0.05); padding: 3px 8px; border-radius: 4px;
}
.rpc-change {
    font-size: 13px; font-weight: 700; color: var(--emerald);
}
.rpc-amount {
    font-size: 32px; font-weight: 800; letter-spacing: -0.03em; color: var(--text);
    font-family: var(--serif);
}
.rpc-details {
    display: flex; gap: 16px; font-size: 12px; color: var(--text-3);
}
.rpc-chart { width: 100%; height: 30px; display: block; margin-top: 4px; }

/* ---- TICKER ---- */
.ticker {
    overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--bg-2); padding: 14px 0;
}
.ticker-track {
    display: flex; align-items: center; gap: 28px;
    width: max-content; animation: tickerMove 30s linear infinite;
}
.ticker-track span {
    font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-3); white-space: nowrap;
}
.ticker-track span.sep { color: var(--gold); opacity: 0.35; font-size: 7px; }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: 140px 0; position: relative; }
.section-alt {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Gold line accent */
.section-alt::before {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 160px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    pointer-events: none;
}

/* ================================================================
   PAIN SECTION
   ================================================================ */
.pain-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    margin-bottom: 72px;
}
.pain-card {
    padding: 36px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); position: relative; overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
}
.pain-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(500px at var(--mx, 50%) var(--my, 50%), rgba(201,168,76,0.07), transparent 60%);
    border-radius: var(--radius); opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.pain-card:hover {
    border-color: rgba(201,168,76,0.2);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.06);
}
.pain-card:hover::before { opacity: 1; }
.pain-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gold-dim), rgba(201,168,76,0.04));
    border: 1px solid rgba(201,168,76,0.2); border-radius: 10px; color: var(--gold); margin-bottom: 20px;
    transition: transform 0.35s var(--ease), filter 0.35s;
}
.pain-card:hover .pain-icon {
    transform: scale(1.12) rotate(4deg);
    filter: drop-shadow(0 0 10px rgba(201,168,76,0.4));
}
.pain-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.pain-card p { font-size: 16px; line-height: 1.7; color: var(--text-2); }

.pain-closer { text-align: center; max-width: 720px; margin: 0 auto; }
.closer-headline {
    font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
    letter-spacing: -0.02em; margin-bottom: 20px;
}
.closer-body { font-size: 19px; line-height: 1.8; color: var(--text-2); }
.closer-body strong { color: var(--gold); font-weight: 700; }

/* ================================================================
   SYSTEM (Mechanism)
   ================================================================ */
.system-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.sys-card {
    padding: 36px; background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius); position: relative; overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.sys-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(400px at var(--mx, 50%) var(--my, 50%), rgba(201,168,76,0.06), transparent 60%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.sys-card:hover {
    border-color: rgba(201,168,76,0.2);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.05);
}
.sys-card:hover::before { opacity: 1; }
.sys-icon {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gold-dim), rgba(201,168,76,0.04));
    border: 1px solid rgba(201,168,76,0.2); border-radius: 12px;
    color: var(--gold); margin-bottom: 20px;
    transition: transform 0.35s var(--ease), filter 0.35s;
}
.sys-card:hover .sys-icon {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 0 10px rgba(201,168,76,0.4));
}
.sys-num {
    font-size: 11px; font-weight: 800; color: var(--gold); letter-spacing: 0.15em;
    margin-bottom: 14px; opacity: 0.6;
}
.sys-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.sys-card p { font-size: 15px; line-height: 1.7; color: var(--text-2); }

/* ================================================================
   RESULTS (Case Studies)
   ================================================================ */
.results-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px;
}
.result-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px; transition: all 0.35s;
}
.result-card:hover {
    border-color: var(--border-3);
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.result-card.featured {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
    background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent 60%);
    border-color: rgba(201,168,76,0.15);
}
.rc-tag {
    font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
}
.rc-brand { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.rc-metrics { margin-bottom: 20px; }
.rc-metric { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.rc-before { font-size: 20px; color: var(--text-3); font-weight: 600; }
.rc-arrow { color: var(--gold); font-size: 16px; }
.rc-after { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; color: var(--emerald); }

.rc-details { display: flex; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.rc-detail { display: flex; flex-direction: column; gap: 2px; }
.rc-detail span { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.rc-detail strong { font-size: 16px; color: var(--text); }

.rc-summary { font-size: 15px; line-height: 1.7; color: var(--text-2); }

.results-note {
    text-align: center; font-size: 14px; color: var(--text-3); font-style: italic;
}

/* ================================================================
   SHIFT (Future Pacing)
   ================================================================ */
.shift-layout {
    display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start;
}
.shift-text { margin-bottom: 0; }
.shift-text p { font-size: 19px; line-height: 1.85; color: var(--text-2); margin-bottom: 20px; }
.shift-text p:last-child { margin-bottom: 0; }
.shift-bold {
    font-size: 20px !important; font-weight: 600 !important; color: var(--text) !important;
    border-left: 3px solid var(--gold); padding-left: 24px; margin-top: 24px !important;
}

.shift-results { display: flex; flex-direction: column; gap: 16px; }
.sr-card {
    padding: 28px; background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius); display: flex; flex-direction: column; gap: 6px;
    transition: all 0.3s;
}
.sr-card:hover {
    border-color: var(--border-3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.sr-icon {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    background: var(--gold-dim); border-radius: 8px; font-weight: 800; color: var(--gold);
    font-size: 16px; margin-bottom: 4px;
}
.sr-card strong { font-size: 17px; }
.sr-card span { font-size: 15px; color: var(--text-2); line-height: 1.5; }

/* ================================================================
   MODEL
   ================================================================ */
.model-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-bottom: 64px;
}
.model-card {
    padding: 36px; border-radius: var(--radius); text-align: center;
    transition: all 0.35s;
}
.model-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 60px rgba(0,0,0,0.25), 0 0 60px rgba(201,168,76,0.03);
}
.mc-icon {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px; color: var(--gold); margin: 0 auto 20px;
}
.model-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.model-card p { font-size: 16px; line-height: 1.7; color: var(--text-2); }

/* ---- VS TABLE ---- */
.vs {
    border: 1px solid var(--border-2); border-radius: var(--radius); overflow: hidden;
}
.vs-head {
    display: grid; grid-template-columns: 140px 1fr 1fr;
    background: var(--bg-2); border-bottom: 1px solid var(--border-2);
}
.vs-col-h {
    padding: 16px 28px; font-size: 12px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
}
.vs-col-h.vs-them { color: var(--text-3); border-left: 1px solid var(--border); }
.vs-col-h.vs-us { color: var(--gold); border-left: 1px solid var(--border); }
.vs-row {
    display: grid; grid-template-columns: 140px 1fr 1fr;
    border-bottom: 1px solid var(--border); transition: background 0.2s;
}
.vs-row:last-child { border-bottom: none; }
.vs-row:hover { background: rgba(255,255,255,0.01); }
.vs-label { padding: 18px 28px; font-size: 14px; font-weight: 600; color: var(--text-2); display: flex; align-items: center; }
.vs-row .vs-them { color: var(--text-3); border-left: 1px solid var(--border); padding: 18px 28px; font-size: 15px; line-height: 1.5; }
.vs-row .vs-us {
    color: var(--text); border-left: 1px solid var(--border); padding: 18px 28px;
    font-size: 15px; line-height: 1.5; background: rgba(201,168,76,0.02);
    display: flex; align-items: center; gap: 10px;
}
.gd {
    width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
    flex-shrink: 0; box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

/* ================================================================
   PROCESS
   ================================================================ */
.steps { margin-top: 60px; display: flex; flex-direction: column; gap: 0; }
.step {
    display: grid; grid-template-columns: 90px 1fr; gap: 40px;
    padding: 44px 0; border-bottom: 1px solid var(--border); align-items: start;
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }
.step-num { font-size: 52px; font-weight: 900; letter-spacing: -0.04em; color: var(--text-3); line-height: 1; }
.step-label { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.step-content h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
.step-content p { font-size: 17px; line-height: 1.75; color: var(--text-2); max-width: 600px; }

.gold-step {
    background: linear-gradient(135deg, rgba(201,168,76,0.05), rgba(201,168,76,0.015));
    border: 1px solid rgba(201,168,76,0.15); border-radius: 14px;
    padding: 44px 36px; margin-top: 16px;
}
.gold-step .step-num { color: var(--gold); text-shadow: 0 0 40px rgba(201,168,76,0.25); }

/* ================================================================
   GUARANTEE
   ================================================================ */
.guarantee {
    position: relative; border-radius: 18px; padding: 80px; overflow: hidden;
}
.g-bg {
    position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
    font-size: clamp(180px, 22vw, 320px); font-weight: 900; letter-spacing: -0.06em;
    color: rgba(201,168,76,0.04); line-height: 1; pointer-events: none;
}
.g-glow {
    position: absolute; top: 50%; right: 10%; transform: translateY(-50%);
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%);
    pointer-events: none; filter: blur(30px);
}
.g-body { position: relative; z-index: 1; max-width: 700px; }
.g-h2 {
    font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em; margin-bottom: 28px;
}
.g-text { font-size: 18px; line-height: 1.75; color: var(--text-2); margin-bottom: 40px; }
.g-text strong { color: var(--gold); }

.g-options { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.g-opt {
    flex: 1; min-width: 180px; padding: 22px 24px; border-radius: 10px;
    border: 1px solid var(--border-2); display: flex; flex-direction: column; gap: 4px;
}
.opt-a { background: rgba(255,255,255,0.02); }
.opt-b { background: var(--gold-dim); border-color: rgba(201,168,76,0.25); }
.g-opt-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); }
.g-opt-title { font-size: 19px; font-weight: 700; }
.g-opt-desc { font-size: 13px; color: var(--text-2); }
.g-or { font-size: 14px; color: var(--text-3); flex-shrink: 0; }

/* ================================================================
   AUDIT + BOOKING
   ================================================================ */
.audit-layout { display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: start; }

.checklist { list-style: none; margin: 0 0 32px; }
.checklist li {
    font-size: 16px; color: var(--text-2); padding: 14px 0;
    border-bottom: 1px solid var(--border); display: flex; gap: 14px; align-items: center; line-height: 1.5;
}
.checklist li svg { flex-shrink: 0; }

.audit-note {
    font-size: 16px; color: var(--text-2); padding: 22px 26px;
    background: var(--gold-dim); border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0; line-height: 1.65;
}
.audit-note strong { color: var(--gold); }

/* Google Meet Booking Widget */
.gmeet-widget {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(12px);
}
.gmeet-widget-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.gmeet-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4CAF50;
}
.gmeet-meta {
    font-size: 12px;
    color: rgba(240,237,232,0.45);
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}
.gmeet-what {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.gmeet-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(240,237,232,0.7);
    line-height: 1.5;
}
.gmeet-row svg { margin-top: 2px; flex-shrink: 0; }
.gmeet-form { display: flex; flex-direction: column; gap: 14px; }
.gf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gf-group { display: flex; flex-direction: column; gap: 6px; }
.gf-group label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(240,237,232,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.gf-group input,
.gf-group select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text-1);
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}
.gf-group input::placeholder { color: rgba(240,237,232,0.25); }
.gf-group select { color: rgba(240,237,232,0.7); appearance: none; cursor: pointer; }
.gf-group select option { background: #1a1510; color: var(--text-1); }
.gf-group input:focus,
.gf-group select:focus { border-color: rgba(201,168,76,0.5); }
.btn-full { width: 100%; justify-content: center; text-align: center; display: flex; }
.gf-note {
    text-align: center;
    font-size: 12px;
    color: rgba(240,237,232,0.35);
    margin-top: 4px;
}
.gmeet-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 20px;
    text-align: center;
}
.gmeet-success h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-1); }
.gmeet-success p { color: var(--text-2); font-size: 14px; }
@media(max-width:560px) { .gf-row { grid-template-columns: 1fr; } }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { max-width: 820px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.2s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-q::after {
    content: '−';
    transform: rotate(0deg);
}
.faq-q:hover { color: var(--gold); }
.faq-a {
    padding: 0 0 24px 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-2);
    max-width: 700px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer { border-top: 1px solid var(--border); padding: 72px 0 44px; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 80px; margin-bottom: 56px; }
.footer-logo { font-size: 13px; font-weight: 800; letter-spacing: 0.18em; margin-bottom: 14px; }
.footer-brand p { font-size: 15px; color: var(--text-3); line-height: 1.7; }
.footer-links { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.footer-col a { font-size: 15px; color: var(--text-2); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-col span { font-size: 15px; color: var(--text-3); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-3);
    flex-wrap: wrap; gap: 8px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .hero-layout { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 500px; }
    .shift-layout { grid-template-columns: 1fr; gap: 48px; }
    .audit-layout { grid-template-columns: 1fr; gap: 48px; }
    .result-card.featured { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .container { padding: 0 36px; }
    .system-grid { grid-template-columns: repeat(2, 1fr); }
    .model-cards { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .vs-head, .vs-row { grid-template-columns: 120px 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-inner { padding: 0 24px; }
    .nav-mobile { padding: 20px 24px 28px; }
    .section { padding: 100px 0; }
    .hero { padding: 110px 0 60px; }
    .hero-h1 { font-size: clamp(34px, 8vw, 52px); }
    .hero-proof { flex-direction: column; gap: 20px; text-align: center; align-items: stretch; }
    .proof-divider { width: 60px; height: 1px; margin: 0 auto; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .pain-grid { grid-template-columns: 1fr; }
    .system-grid { grid-template-columns: 1fr; }
    .vs-head, .vs-row { grid-template-columns: 1fr; }
    .vs-head { display: none; }
    .vs-row { padding: 14px 0; gap: 0; }
    .vs-label { padding: 8px 20px 2px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
    .vs-row .vs-them, .vs-row .vs-us { padding: 6px 20px; border-left: none; }
    .proof-gallery { grid-template-columns: 1fr; }
    .proof-img-slot { aspect-ratio: 16/9; }
    .step { grid-template-columns: 50px 1fr; gap: 16px; }
    .step-num { font-size: 36px; }
    .gold-step { padding: 28px 20px; }
    .guarantee { padding: 44px 28px; }
    .g-options { flex-direction: column; }
    .g-opt { min-width: auto; }
    .footer-links { flex-direction: column; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .h2 { font-size: clamp(30px, 8vw, 42px); }
    .guarantee { padding: 32px 18px; }
}
