/* ═══════════════════════════════════════ */
/* TCM v5 — FacilPay-Inspired Premium     */
/* ═══════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #a88a2e;
    --bg: #000;
    --bg-alt: #050505;
    --bg-card: #0a0a0c;
    --text: #e0e0e0;
    --text-muted: #666;
    --green: #22c55e;
    --red: #ef4444;
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Inter', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* MACRO PHONE SCALE VARIABLES */
    --phone-w: clamp(500px, 52vw, 1000px);
    --phone-rad: calc(var(--phone-w) * 0.13);
    --phone-bezel: calc(var(--phone-w) * 0.035);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--bg);
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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


/* ─── TOP ANNOUNCEMENT BANNER ─── */
.top-banner {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 36px;
    background: #c9a84c;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-content {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000;
}
.banner-badge { display: none; }
.banner-text .val {
    font-weight: 900;
    font-size: 13px;
    margin-left: 5px;
    color: #000;
    transition: color 0.4s ease;
}
.banner-text .val.up { color: #1a6e2e; }
.banner-text .val.dn { color: #8b1a1a; }
.banner-text .sep {
    margin: 0 20px;
    color: rgba(0,0,0,0.3);
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    padding: 12px 48px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    height: 48px;
    width: 140px;
}
.nav-logo img {
    height: 110px;
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.nav-links {
    display: flex;
    gap: 36px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-links a {
    font-size: 11px;
    font-weight: 500;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--gold); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}
.btn-nav-gold {
    padding: 10px 24px;
    border-radius: 100px;
    background: linear-gradient(110deg, #efe19e 0%, #c9a84c 30%, #4a3810 50%, #c9a84c 70%, #efe19e 100%);
    background-size: 300% 100%;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease, filter 0.3s ease;
    box-shadow: 0 4px 15px rgba(201,168,76,0.2);
    position: relative;
    overflow: hidden;
    animation: goldFluidSweep 3s ease-in-out infinite alternate;
}
@keyframes goldFluidSweep {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
.btn-nav-gold:hover {
    transform: translateY(-2px);
    filter: brightness(1.1) drop-shadow(0 6px 20px rgba(201,168,76,0.4));
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-link { font-size: 24px; font-weight: 600; color: #fff; }
.mobile-menu-contact {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 28px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    transition: background 0.3s;
}
.mobile-menu-contact:hover { background: rgba(201,168,76,0.1); }
.mobile-menu-cta {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, #f0e0a0, #c9a84c);
    padding: 14px 32px;
    border-radius: 50px;
}


/* ═══════════════════════════════════════ */
/* MACRO HERO (Preserved from v4)          */
/* ═══════════════════════════════════════ */
.hero-macro {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    background: #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding-top: 22vh;
    padding-bottom: 10vh;
}
.hero-fade {
    position: absolute;
    bottom: 5vh;
    left: 0;
    width: 100%;
    height: 35vh;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.95) 15%, rgba(0,0,0,0.5) 50%, transparent 100%);
    z-index: 60;
    pointer-events: none;
}

/* Master Background */
.macro-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.macro-horizon { display: none; }
.macro-horizon-core { display: none; }
@keyframes pulseHorizon {
    0% { opacity: 0.3; transform: translateX(-50%) scale(0.9); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
.macro-particles { position: absolute; inset: 0; }
.macro-particle {
    position: absolute;
    width: 2px; height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.2;
    animation: particleTwinkle var(--dur) ease-in-out infinite;
    animation-delay: var(--delay);
}
@keyframes particleTwinkle {
    0%, 100% { opacity: 0.1; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.5); }
}

/* Floating Coins */
.macro-floats {
    position: absolute;
    inset: 0;
    z-index: 15;
    pointer-events: none;
}
.m-float { position: absolute; will-change: transform, filter; }

/* GOLD coin — top-left, tilted left naturally, slightly behind */
.m-float--gold {
    width: clamp(100px, 12vw, 200px);
    top: 18%;
    left: 12%;
    filter: drop-shadow(0 20px 40px rgba(201,168,76,0.4));
    transform: rotate(-8deg);
    opacity: 0.9;
    animation: coinFloat 4s ease-in-out infinite;
}

/* OIL coin — bottom-right, closer to phone, sharp */
.m-float--oil {
    width: clamp(80px, 9vw, 160px);
    bottom: 22%;
    right: 20%;
    filter: drop-shadow(0 15px 35px rgba(201,168,76,0.35));
    transform: rotate(5deg);
    opacity: 0.9;
    animation: coinFloat 5s ease-in-out 1s infinite;
}

/* BTC coin — top-right, tilted left, sharp foreground hero */
.m-float--btc {
    width: clamp(110px, 14vw, 220px);
    top: 28%;
    right: 12%;
    filter: drop-shadow(0 30px 50px rgba(247,164,49,0.5));
    transform: rotate(3deg);
    opacity: 1;
    animation: coinFloat 6s ease-in-out 0.5s infinite;
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-15px) rotate(var(--rot, 0deg)); }
}

/* MACRO PHONE */
.macro-phone {
    position: relative;
    width: var(--phone-w);
    height: auto;
    border-radius: var(--phone-rad);
    background: #000;
    box-sizing: border-box;
    z-index: 10;
    box-shadow:
        0 0 0 calc(var(--phone-w) * 0.003) #121316,
        0 0 0 calc(var(--phone-w) * 0.005) #22232a,
        0 0 0 calc(var(--phone-w) * 0.007) #000,
        0 clamp(40px, 8vw, 100px) clamp(80px, 15vw, 200px) rgba(0,0,0,1);
    display: flex;
    flex-direction: column;
}
.macro-phone::after {
    content:'';
    position: absolute;
    inset: 0;
    border-radius: var(--phone-rad);
    border: 2px solid rgba(255,255,255,0.06);
    pointer-events: none;
    z-index: 20;
    mask-image: linear-gradient(to bottom, black 0%, transparent 40%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 40%);
}

/* Hardware Buttons */
.m-btn { position: absolute; background: #111; border-radius: 2px 0 0 2px; z-index: 9; }
.m-btn-mute { width: calc(var(--phone-w) * 0.005); height: calc(var(--phone-w) * 0.04); left: calc(var(--phone-w) * -0.007); top: calc(var(--phone-w) * 0.25); }
.m-btn-vol-up { width: calc(var(--phone-w) * 0.005); height: calc(var(--phone-w) * 0.08); left: calc(var(--phone-w) * -0.007); top: calc(var(--phone-w) * 0.35); }
.m-btn-vol-dn { width: calc(var(--phone-w) * 0.005); height: calc(var(--phone-w) * 0.08); left: calc(var(--phone-w) * -0.007); top: calc(var(--phone-w) * 0.45); }
.m-btn-power { width: calc(var(--phone-w) * 0.005); height: calc(var(--phone-w) * 0.12); right: calc(var(--phone-w) * -0.007); top: calc(var(--phone-w) * 0.4); border-radius: 0 2px 2px 0; }

/* MACRO SCREEN */
.macro-screen {
    flex: 1;
    margin: var(--phone-bezel);
    border-radius: calc(var(--phone-rad) - var(--phone-bezel));
    background: linear-gradient(180deg, #0e1015 0%, #030406 30%, #000 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: calc(var(--phone-w) * 0.12);
}
.macro-screen::before {
    content:'';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 20;
}

/* Ambient Glow */
.macro-glow-ball {
    position: absolute;
    width: calc(var(--phone-w) * 0.8);
    height: calc(var(--phone-w) * 0.8);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    top: 10%; left: 10%;
    pointer-events: none;
    z-index: 10;
    animation: driftGlow 12s infinite alternate ease-in-out;
}
@keyframes driftGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15%, 25%) scale(1.3); }
}

/* Dynamic Island — hidden, notification handles the top */
.macro-hardware-island {
    display: none;
}

/* Notification */
.macro-notification {
    position: absolute;
    top: calc(var(--phone-w) * 0.02);
    width: 90%;
    background: #000;
    border-radius: calc(var(--phone-w) * 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: calc(var(--phone-w) * 0.025) calc(var(--phone-w) * 0.035);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 10px rgba(255, 255, 255, 0.25);
    z-index: 50;
    transform: scale(0.3) translateY(-50px);
    opacity: 0;
    transform-origin: top center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: calc(var(--phone-w) * 0.015);
}
.macro-notification.active { transform: scale(1) translateY(0); opacity: 1; }
.mac-notif-header { display: flex; align-items: center; gap: calc(var(--phone-w) * 0.02); }
.mac-notif-app-icon { width: calc(var(--phone-w) * 0.035); height: calc(var(--phone-w) * 0.035); border-radius: calc(var(--phone-w) * 0.008); background: #000; }
.mac-notif-app-name { font-size: calc(var(--phone-w) * 0.022); font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; flex: 1; }
.mac-notif-time { font-size: calc(var(--phone-w) * 0.022); color: rgba(255,255,255,0.4); }
.mac-notif-title { font-size: calc(var(--phone-w) * 0.030); font-weight: 600; color: #fff; margin-bottom: calc(var(--phone-w) * 0.003); }
.mac-notif-desc { font-size: calc(var(--phone-w) * 0.026); color: rgba(255,255,255,0.6); line-height: 1.4; }

/* Screen Typography */
.macro-content {
    margin-top: calc(var(--phone-w) * 0.30);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
}
.mc-subtitle { font-size: clamp(14px, calc(var(--phone-w) * 0.024), 28px); color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 0.01em; margin-bottom: calc(var(--phone-w) * 0.01); }
.mc-title-wrapper { font-size: clamp(36px, calc(var(--phone-w) * 0.09), 110px); height: 3.6em; display: flex; align-items: center; justify-content: center; margin-bottom: calc(var(--phone-w) * 0.02); }
.mc-title { font-size: 1em; font-weight: 600; line-height: 1.05; color: #fff; letter-spacing: -0.03em; transition: opacity 0.8s ease; }
.mc-desc { font-size: clamp(15px, calc(var(--phone-w) * 0.026), 32px); color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 80%; margin-bottom: calc(var(--phone-w) * 0.03); }
.mc-ctas { display: flex; gap: calc(var(--phone-w) * 0.02); }
.btn-giant { font-size: clamp(16px, calc(var(--phone-w) * 0.024), 28px); padding: clamp(14px, calc(var(--phone-w) * 0.025), 28px) clamp(24px, calc(var(--phone-w) * 0.04), 48px); border-radius: 100px; background: #fff; color: #000; font-weight: 600; transition: all 0.3s ease; cursor: pointer; box-shadow: 0 10px 30px rgba(255,255,255,0.1); }
.btn-giant:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(255,255,255,0.2); background: #f0f0f0; }


/* ═══════════════════════════════════════════════════ */
/* FACILPAY-INSPIRED SECTIONS (New Design System)      */
/* ═══════════════════════════════════════════════════ */

.fp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.fp-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.fp-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 50px;
}

.fp-heading-xl {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    font-family: var(--font-display);
}

.fp-heading-lg {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}

.fp-text-large {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
}


/* ═══════════════════════════════════════════════════ */
/* SECTION 1: GIANT STAT (like FacilPay "182")         */
/* ═══════════════════════════════════════════════════ */
.fp-stat-section {
    background: #000;
    padding: 160px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    position: relative;
    overflow: visible;
}
.fp-stat-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 50%, transparent 100%),
        radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 80%, rgba(232,201,122,0.5) 50%, transparent 100%),
        radial-gradient(1px 1px at 55% 20%, rgba(255,255,255,0.5) 50%, transparent 100%),
        radial-gradient(1px 1px at 65% 60%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 78% 35%, rgba(232,201,122,0.4) 50%, transparent 100%),
        radial-gradient(1px 1px at 85% 75%, rgba(255,255,255,0.5) 50%, transparent 100%),
        radial-gradient(1px 1px at 92% 10%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(1px 1px at 15% 70%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(1px 1px at 35% 25%, rgba(255,255,255,0.5) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 55%, rgba(232,201,122,0.3) 50%, transparent 100%),
        radial-gradient(1px 1px at 70% 85%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.35) 50%, transparent 100%),
        radial-gradient(1px 1px at 45% 5%, rgba(255,255,255,0.45) 50%, transparent 100%),
        radial-gradient(1px 1px at 88% 50%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 20% 90%, rgba(232,201,122,0.35) 50%, transparent 100%),
        radial-gradient(1px 1px at 60% 40%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(1px 1px at 75% 12%, rgba(255,255,255,0.5) 50%, transparent 100%),
        radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.35) 50%, transparent 100%),
        radial-gradient(1px 1px at 95% 88%, rgba(255,255,255,0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.fp-stat-section .fp-container { position: relative; z-index: 1; overflow: visible; }
.fp-stat-row {
    display: flex;
    align-items: center;
    gap: 60px;
}
.fp-stat-number {
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
    font-family: var(--font-display);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow: visible;
    padding-right: 0.05em;
}
.fp-stat-text {
    padding-top: clamp(20px, 4vw, 60px);
    max-width: 500px;
}
.fp-stat-text h2 {
    font-size: clamp(24px, 2.8vw, 42px);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-display);
}

/* ═══════════════════════════════════════════════════ */
/* SECTION 3: JOIN THE COMMUNITY                       */
/* ═══════════════════════════════════════════════════ */
.fp-community-section {
    background: #000;
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201,168,76,0.5);
    border-bottom: 1px solid rgba(201,168,76,0.5);
}
.community-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.05);
    z-index: 0;
}
.community-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.70);
    z-index: 1;
}
.community-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
.community-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}
.community-sub {
    font-size: clamp(14px, 1.1vw, 17px);
    color: rgba(255,255,255,0.45);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.community-checks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 44px;
    align-items: center;
}
.community-check {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}
.community-check svg { flex-shrink: 0; }
.community-ctas {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
}
.cta-free-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #c9a84c, #e8c97a);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font);
}
.cta-free-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,201,122,0.25);
}
.vip-cta-wrapper {
    position: relative;
    display: inline-block;
}
.cta-vip-access {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(232,201,122,0.25);
    color: #e8c97a;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font);
    position: relative;
    z-index: 2;
}
.cta-vip-access:hover {
    background: rgba(232,201,122,0.08);
    transform: translateY(-2px);
}
.vip-brush-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 64px;
    transform: translate(-50%, -50%) rotate(-1deg);
    pointer-events: none;
    z-index: 3;
}
.vip-annotation {
    position: absolute;
    top: 100%;
    right: -40px;
    margin-top: 8px;
    font-family: 'Caveat', cursive;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transform: rotate(2deg);
    pointer-events: none;
}

@media (max-width: 900px) {
    .community-ctas { flex-direction: column; align-items: center; }
}


/* ═══════════════════════════════════════════════════ */
/* SECTION 2: SCROLL-PINNED SIGNAL DEMO                */
/* ═══════════════════════════════════════════════════ */
.demo-section {
    background: #000;
    position: relative;
}
.demo-track {
    height: 300vh; /* scrollable height for pinning */
    position: relative;
}

/* ─── Sticky Row: Text + Phone centered ─── */
.demo-sticky-row {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    z-index: 10;
    pointer-events: none;
}

/* ─── Phone Wrapper ─── */
.demo-phone-wrap {
    flex-shrink: 0;
    pointer-events: all;
    position: relative;
}
.demo-phone {
    width: 320px;
    height: 640px;
    border-radius: 44px;
    background: #0a0a0a;
    border: 3px solid #222;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.8),
        0 0 100px rgba(201,168,76,0.25),
        0 0 200px rgba(201,168,76,0.12);
    overflow: hidden;
    position: relative;
    pointer-events: all;
    cursor: default;
}
.demo-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #000;
    border-radius: 12px;
    z-index: 100;
}

/* ─── Screen Phases ─── */
.demo-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    overflow: hidden;
}
.demo-screen.active {
    opacity: 1;
    pointer-events: all;
}

/* ────────────────────────────────────────────────────── */
/* TELEGRAM SIGNAL SCREEN                                 */
/* ────────────────────────────────────────────────────── */
.demo-screen--signal {
    background: #17212b;
    font-family: var(--font);
}
.tg-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 38px 12px 8px;
    background: #1c2733;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tg-avatar {
    width: 32px; height: 32px; border-radius: 16px;
    background: linear-gradient(135deg, #e8c97a, #a07d3a);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800; color: #0a0e14;
    flex-shrink: 0;
}
.tg-name { font-size: 12px; font-weight: 600; color: #fff; }
.tg-subs { font-size: 10px; color: #6b7a8d; }

.tg-chat {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    gap: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.tg-chat::-webkit-scrollbar { display: none; }
.tg-date {
    text-align: center;
    font-size: 10px;
    color: #6b7a8d;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.3);
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    align-self: center;
}

/* Telegram Signal Bubble */
.tg-bubble {
    background: #1e2c3a;
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tg-bubble.visible {
    transform: translateY(0);
    opacity: 1;
}
.tg-bubble-bar {
    border-left: 3px solid #e8c97a;
    background: rgba(232,201,122,0.08);
    padding: 4px 8px;
    font-size: 11px; font-weight: 600; color: #e8c97a;
}
.tg-chart-img {
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, #0f1a12, #0a1510, #121a16);
}
.tg-chart-img svg { width: 100%; height: 100%; }

.tg-signal-body {
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.55;
    color: #d4dae3;
}
.tg-signal-title { font-weight: 700; font-size: 12px; margin-bottom: 3px; }
.tg-line { margin-bottom: 2px; }
.tg-green { color: #10b981; }
.tg-red { color: #ef4444; }
.tg-tp-section { margin-top: 6px; }
.tg-tp-head { font-weight: 600; margin-bottom: 2px; }
.tg-tp { opacity: 0.4; }
.tg-tp .tp-check { opacity: 0; transition: opacity 0.3s; }
.tg-tp.hit { opacity: 1; }
.tg-tp.hit .tp-check { opacity: 1; }
.tg-fire { margin-top: 6px; opacity: 0.6; font-size: 10px; }

.tg-footer {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 9px;
    color: #6b7a8d;
}
.tg-footer-avatar {
    width: 14px; height: 14px; border-radius: 7px;
    background: linear-gradient(135deg, #e8c97a, #a07d3a);
    display: flex; align-items: center; justify-content: center;
    font-size: 6px; font-weight: 800; color: #0a0e14;
}
.tg-footer-meta { margin-left: auto; }

/* Old Signal (compact, already visible) */
.tg-bubble--old { opacity: 0.55; }
.tg-signal-body--compact { padding: 5px 8px; font-size: 10px; line-height: 1.4; }
.tg-signal-body--compact .tg-signal-title { font-size: 10px; }
.tg-signal-body--compact .tg-line { font-size: 9px; }

/* ────────────────────────────────────────────────────── */
/* MINI APP TRADE SCREEN                                   */
/* ────────────────────────────────────────────────────── */
.demo-screen--copy {
    background: #0a0a0f;
    font-family: var(--font);
}
.app-user-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 38px 10px 6px;
}
.app-avatar {
    width: 28px; height: 28px; border-radius: 14px;
    background: linear-gradient(135deg, #e8c97a, #a07d3a);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: #000;
    flex-shrink: 0;
}
.app-user-name { font-size: 12px; font-weight: 600; color: #fff; }
.app-mt5 { font-size: 9px; color: #6b7a8d; }
.app-asset-pill {
    margin-left: auto;
    display: flex; align-items: center; gap: 4px;
    background: rgba(20,20,30,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 10px; font-weight: 600; color: #d4dae3;
}
.app-dot { width: 6px; height: 6px; border-radius: 3px; }
.app-dot--gold { background: #e8c97a; }
.app-chevron { font-size: 8px; color: #6b7a8d; }

.app-chart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px 6px;
}
.app-symbol-row {
    display: flex;
    align-items: center;
    gap: 5px;
}
.app-symbol { font-size: 12px; font-weight: 700; color: #e8c97a; }
.app-price { font-size: 14px; font-weight: 800; color: #fff; }
.app-change {
    font-size: 9px; font-weight: 600;
    padding: 1px 5px; border-radius: 3px;
}
.app-change--up { background: rgba(16,185,129,0.15); color: #10b981; }
.app-tf-bar { display: flex; gap: 2px; }
.app-tf {
    font-size: 9px; font-weight: 600;
    padding: 2px 8px; border-radius: 4px;
    color: #3d4a5c;
}
.app-tf.active {
    background: rgba(232,201,122,0.15);
    color: #e8c97a;
    border-radius: 4px;
}

/* Chart Container */
.app-chart {
    flex: 1;
    margin: 0 6px;
    background: #12121a;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}
.app-chart-svg { width: 100%; height: 100%; overflow: visible; }

/* Toast */
.app-toast {
    position: absolute;
    bottom: 8px; left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 10px; font-weight: 600;
    color: #10b981;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
    z-index: 10;
}
.app-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Entry Label */
.app-entry-label {
    position: absolute;
    right: 8px; top: 56%;
    background: #e8c97a;
    color: #000;
    font-size: 8px; font-weight: 700;
    padding: 2px 6px; border-radius: 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}
.app-entry-label.show { opacity: 1; }

/* Trade Lines */
.app-line {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}
.app-line span {
    position: absolute;
    right: 6px; top: -8px;
    font-size: 7px; font-weight: 600;
}
.app-line.show { opacity: 1; }
.app-line--entry { top: 56%; background: #e8c97a; border-top: 1px dashed #e8c97a; }
.app-line--sl { top: 82%; background: transparent; border-top: 1px dashed #ef5350; }
.app-line--sl span { color: #ef5350; }
.app-line--tp1 { top: 46%; background: transparent; border-top: 1px dashed #10b981; }
.app-line--tp1 span { color: #10b981; }
.app-line--tp2 { top: 36%; background: transparent; border-top: 1px dashed #10b981; }
.app-line--tp2 span { color: #10b981; }
.app-line--tp3 { top: 26%; background: transparent; border-top: 1px dashed #10b981; }
.app-line--tp3 span { color: #10b981; }

/* Strategy Strip */
.app-strat-strip {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 5px 8px 0;
    padding: 5px 8px;
    background: rgba(20,20,30,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 10px;
    color: #d4dae3;
}
.app-strat-strip b { color: #e8c97a; }
.app-settings-link { margin-left: auto; font-size: 9px; color: #e8c97a; }

/* Status Strip */
.app-status-strip {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    padding: 4px 0;
    font-size: 9px; font-weight: 500;
    color: #6b7a8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.app-status-strip b { font-size: 12px; font-weight: 700; color: #fff; margin-left: 4px; }
.app-divider { width: 1px; height: 16px; background: #1e2938; }

/* BUY / SELL Buttons */
.app-buttons {
    display: flex;
    gap: 6px;
    padding: 0 8px;
}
.app-btn {
    flex: 1;
    height: 34px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    cursor: default;
    font-family: var(--font);
    transition: all 0.15s ease;
}
.app-btn--buy {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #000;
}
.app-btn--buy.pressed {
    transform: scale(0.95);
    box-shadow: 0 0 20px rgba(0,200,83,0.5);
    background: #00c853;
}
.app-btn--sell {
    background: linear-gradient(135deg, #ff1744, #ff5252);
    color: #fff;
}
.app-close-all {
    text-align: center;
    padding: 3px 0;
    font-size: 10px;
    font-weight: 600;
    color: #3d4a5c;
}

/* Bottom Nav */
.app-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 44px;
    background: #0a0a0f;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}
.app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 8px;
    font-weight: 400;
    color: #3d4a5c;
}
.app-nav-item.active {
    color: #e8c97a;
    font-weight: 600;
}

/* ─── Text Panels (left side of sticky row) ─── */
.demo-panels-slot {
    flex: 1;
    position: relative;
    min-height: 300px;
}
.demo-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}
.demo-panel.visible {
    opacity: 1;
    transform: translateY(0);
}
.fp-giant-text {
    font-size: clamp(80px, 14vw, 200px);
    font-weight: 800;
    color: #fff;
    line-height: 0.9;
    letter-spacing: -0.04em;
    font-family: var(--font-display);
    margin-bottom: 20px;
}
.fp-giant-text--gold {
    background: linear-gradient(135deg, #f0e0a0 0%, #c9a84c 50%, #8a6d2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fp-flow-desc {
    font-size: clamp(16px, 1.5vw, 22px);
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════════ */
/* SECTION 3: 3D PERSPECTIVE FEATURE CARDS             */
/* ═══════════════════════════════════════════════════ */
.fp-cards-section {
    background: #000;
    padding: 160px 0;
    position: relative;
}

/* Perspective grid background (FacilPay signature) */
.fp-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(800px) rotateX(60deg) scale(2.5);
    transform-origin: center top;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
    pointer-events: none;
    opacity: 0.8;
}

.fp-cards-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    perspective: 1200px;
}

.fp-card {
    width: 340px;
    padding: 40px 30px 40px;
    background: linear-gradient(160deg, rgba(201,168,76,0.08) 0%, rgba(10,10,14,0.95) 40%, rgba(10,10,14,0.98) 100%);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    will-change: transform;
    position: relative;
    overflow: hidden;
}
.fp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, transparent 100%);
    pointer-events: none;
}

.fp-card--left {
    transform: rotateY(8deg) rotateX(2deg) translateZ(-20px);
}
.fp-card--center {
    transform: translateY(-20px) scale(1.02);
    border-color: rgba(201,168,76,0.25);
    box-shadow: 0 40px 80px rgba(201,168,76,0.08), 0 0 120px rgba(201,168,76,0.04);
}
.fp-card--right {
    transform: rotateY(-8deg) rotateX(2deg) translateZ(-20px);
}

.fp-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 0 40px 80px rgba(201,168,76,0.15), 0 0 0 1px rgba(201,168,76,0.3);
}

.fp-card-visual {
    width: 80px;
    height: 80px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fp-card-visual svg {
    width: 100%;
    height: 100%;
}

.fp-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--font-display);
}
.fp-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}


/* ═══════════════════════════════════════════════════ */
/* SECTION 4: THE METHOD (Editorial + Video)           */
/* ═══════════════════════════════════════════════════ */
.fp-method-section {
    background: #080808;
    padding: 160px 0;
}
.fp-method-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}
.fp-method-left {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.fp-method-left::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 320px;
    height: 550px;
    transform: translate(0, -50%);
    background: radial-gradient(ellipse, rgba(201,168,76,0.30) 0%, rgba(201,168,76,0.10) 50%, transparent 75%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}
.fp-method-right p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Video frame (no box) */
.smart-video-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 50px rgba(201,168,76,0.10);
    aspect-ratio: 9/16;
    max-height: 560px;
    position: relative;
    z-index: 1;
}
.smart-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TP Strategy list */
.smart-tp-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.smart-tp-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.smart-tp-item strong {
    display: block;
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
}
.smart-tp-item p {
    font-size: 14px !important;
    color: rgba(255,255,255,0.45) !important;
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
}
.smart-tp-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 0 10px;
    height: 32px;
    border-radius: 6px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    color: #e8c97a;
    font-size: 11px;
    font-weight: 800;
    font-family: var(--font);
    letter-spacing: 0.5px;
    margin-top: 2px;
}


/* ═══════════════════════════════════════════════════ */
/* SECTION 5: GIANT TEXT + COMPARISON                  */
/* ═══════════════════════════════════════════════════ */
.fp-compare-section {
    background: #000;
    padding: 140px 0 160px;
    position: relative;
    overflow: hidden;
}
.fp-compare-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        repeating-linear-gradient(0deg, rgba(201,168,76,0.12) 0px, rgba(201,168,76,0.12) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(90deg, rgba(201,168,76,0.12) 0px, rgba(201,168,76,0.12) 1px, transparent 1px, transparent 80px);
    animation: gridDrift 10s linear infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}
.fp-mega-text {
    font-size: clamp(48px, 7vw, 100px);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.04em;
    font-family: var(--font-display);
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* Rotating title word */
.rotating-text-wrap {
    display: inline-block;
    position: relative;
    min-width: 4ch;
}
.rotating-text {
    display: inline-block;
    animation: rotateWordIn 0.5s ease forwards;
}
@keyframes rotateWordIn {
    0% { opacity: 0; transform: translateY(20px); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes rotateWordOut {
    0% { opacity: 1; transform: translateY(0); filter: blur(0); }
    100% { opacity: 0; transform: translateY(-20px); filter: blur(4px); }
}

.fp-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 1;
}
.fp-compare-col {
    border-radius: 20px;
    background: #050505;
    border: 2px solid rgba(255,255,255,0.06);
    padding: 10px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.fp-compare-col:hover {
    transform: translateY(-4px);
}
.fp-compare-col--tcm {
    background: #080704;
    border: 2px solid transparent;
    box-shadow: 0 0 100px rgba(201,168,76,0.03) inset;
    overflow: hidden;
}
.fp-compare-col--tcm::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: conic-gradient(from var(--glow-angle, 0deg), rgba(201,168,76,0.5), transparent 40%, rgba(201,168,76,0.3) 60%, transparent 80%, rgba(201,168,76,0.5));
    z-index: -1;
    animation: glowRotate 4s linear infinite;
}
.fp-compare-col--tcm::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 18px;
    background: #080704;
    z-index: -1;
}
@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes glowRotate {
    to { --glow-angle: 360deg; }
}
.fp-compare-col--tcm:hover {
    box-shadow: 0 0 120px rgba(201,168,76,0.06) inset, 0 20px 60px rgba(0,0,0,0.4);
}
.fp-compare-col--solo {
    border: 2px solid rgba(255,255,255,0.06);
}
.fp-compare-col--solo:hover {
    border-color: rgba(239,83,80,0.12);
}
.fp-compare-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fp-compare-logo { width: 36px; height: 36px; }
.fp-compare-solo-svg { flex-shrink: 0; }
.text-muted-header { color: rgba(255,255,255,0.4); }
.fp-compare-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}
.fp-compare-item:last-child { border-bottom: none; }

/* SVG icons */
.fp-ci-icon {
    flex-shrink: 0;
}

/* Staggered slide-in animation */
.fp-ci-anim {
    opacity: 0;
    transform: translateX(-12px);
    animation: ciSlideIn 0.5s ease forwards;
    animation-delay: var(--delay, 0s);
}
.fp-compare-col--solo .fp-ci-anim {
    transform: translateX(12px);
}
@keyframes ciSlideIn {
    to { opacity: 1; transform: translateX(0); }
}


/* ═══════════════════════════════════════════════════ */
/* SECTION 6: LIVE CALLS SHOWCASE                      */
/* ═══════════════════════════════════════════════════ */
.fp-calls-section {
    background: #080808;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}
.fp-calls-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(2.5px 2.5px at 8% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
                       radial-gradient(2px 2px at 22% 70%, rgba(255,255,255,0.4) 0%, transparent 100%),
                       radial-gradient(2px 2px at 38% 35%, rgba(255,255,255,0.45) 0%, transparent 100%),
                       radial-gradient(2.5px 2.5px at 55% 85%, rgba(201,168,76,0.5) 0%, transparent 100%),
                       radial-gradient(2px 2px at 68% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
                       radial-gradient(2.5px 2.5px at 82% 60%, rgba(255,255,255,0.35) 0%, transparent 100%),
                       radial-gradient(2px 2px at 95% 40%, rgba(201,168,76,0.4) 0%, transparent 100%),
                       radial-gradient(2.5px 2.5px at 12% 90%, rgba(255,255,255,0.35) 0%, transparent 100%),
                       radial-gradient(2px 2px at 45% 50%, rgba(255,255,255,0.4) 0%, transparent 100%),
                       radial-gradient(2.5px 2.5px at 75% 10%, rgba(201,168,76,0.5) 0%, transparent 100%),
                       radial-gradient(1.5px 1.5px at 5% 45%, rgba(255,255,255,0.4) 0%, transparent 100%),
                       radial-gradient(2px 2px at 60% 5%, rgba(255,255,255,0.35) 0%, transparent 100%),
                       radial-gradient(1.5px 1.5px at 88% 88%, rgba(201,168,76,0.35) 0%, transparent 100%),
                       radial-gradient(2.5px 2.5px at 33% 92%, rgba(255,255,255,0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.fp-calls-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.fp-calls-text p {
    margin-top: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}
.fp-calls-text p:last-of-type {
    font-style: italic;
    color: var(--gold);
}
.fp-calls-cards {
    display: flex;
    justify-content: center;
    position: relative;
    height: 420px;
}
.fp-calls-cards::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201,168,76,0.6) 0%, rgba(201,168,76,0.2) 30%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}
.fp-call-card {
    position: absolute;
    width: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), z-index 0s;
}
.fp-call-card img {
    width: 100%;
    display: block;
    animation: cardImgFloat 3s ease-in-out infinite;
}
.fp-call-card--2 img { animation-delay: 0.5s; }
.fp-call-card--3 img { animation-delay: 1s; }
@keyframes cardImgFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
/* Position states driven by JS — no animation, just transitions */
.fp-call-card[data-pos="left"] {
    transform: rotate(-8deg) translateX(-100px) translateY(0);
    z-index: 1;
}
.fp-call-card[data-pos="center"] {
    transform: rotate(0deg) translateY(-10px);
    z-index: 3;
}
.fp-call-card[data-pos="right"] {
    transform: rotate(8deg) translateX(100px) translateY(0);
    z-index: 2;
}
.fp-call-asset {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
}


/* ═══════════════════════════════════════════════════ */
/* SECTION 7: ACADEMY                                  */
/* ═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════ */
/* SECTION 7: COMMUNITY                                */
/* ═══════════════════════════════════════════════════ */
.fp-community-section {
    background: #000;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}
.fp-community-section::before {
    content: '';
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(201,168,76,0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.12) 1px, transparent 1px);
    background-size: 120px 120px;
    animation: gridDrift 10s linear infinite;
    z-index: 0;
    pointer-events: none;
}
.fp-community-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.fp-community-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.fp-community-video-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.fp-community-video-wrap video {
    width: 100%;
    display: block;
}
.fp-community-text p {
    margin-top: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}
.fp-community-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fp-community-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
}
.fp-community-list svg {
    flex-shrink: 0;
}
.fp-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, var(--gold), #d4a843);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 8px;
}
.fp-btn-primary:hover {
    background: linear-gradient(135deg, #d4b255, #e8c97a);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.2);
}


/* ═══════════════════════════════════════════════════ */
/* SECTION 8: FAQ                                      */
/* ═══════════════════════════════════════════════════ */
.fp-faq-section {
    background: #080808;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}
.fp-faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.12) 0%, transparent 100%),
                       radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.08) 0%, transparent 100%),
                       radial-gradient(1px 1px at 50% 40%, rgba(255,255,255,0.1) 0%, transparent 100%),
                       radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.06) 0%, transparent 100%),
                       radial-gradient(1px 1px at 90% 30%, rgba(255,255,255,0.1) 0%, transparent 100%),
                       radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,0.08) 0%, transparent 100%),
                       radial-gradient(1px 1px at 45% 15%, rgba(201,168,76,0.12) 0%, transparent 100%),
                       radial-gradient(1px 1px at 75% 55%, rgba(201,168,76,0.08) 0%, transparent 100%),
                       radial-gradient(1px 1px at 85% 10%, rgba(255,255,255,0.1) 0%, transparent 100%),
                       radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.06) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.fp-faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.fp-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.fp-faq-item {
    border-radius: var(--radius);
    overflow: hidden;
}
.fp-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.3s, border-color 0.3s;
}
.fp-faq-item:nth-child(odd) .fp-faq-q {
    color: #fff;
}
.fp-faq-item:nth-child(even) .fp-faq-q {
    color: var(--gold);
}
.fp-faq-q:hover {
    border-color: rgba(201,168,76,0.15);
    background: rgba(255,255,255,0.03);
}
.fp-faq-icon {
    font-size: 24px;
    color: rgba(255,255,255,0.3);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}
.fp-faq-item.open .fp-faq-icon {
    transform: rotate(45deg);
    color: var(--gold);
}
.fp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fp-faq-item.open .fp-faq-a {
    max-height: 400px;
}
.fp-faq-a p {
    padding: 16px 28px 24px;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════════ */
/* ARTISTIC ENDING — "THE COPY METHOD"                 */
/* ═══════════════════════════════════════════════════ */
.fp-ending {
    background: #000;
    padding: 120px 0 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.fp-ending::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.fp-ending-inner {
    position: relative;
    z-index: 1;
}
.fp-ending-text {
    font-size: clamp(48px, 10vw, 160px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    font-family: var(--font-display);
    background: linear-gradient(180deg, rgba(232,201,122,0.9) 0%, rgba(201,168,76,0.3) 60%, rgba(201,168,76,0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 32px;
}
.fp-ending-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 24px;
}
.fp-ending-sub {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-family: var(--font);
}


/* ═══════════════════════════════════════════════════ */
/* FOOTER                                              */
/* ═══════════════════════════════════════════════════ */
.fp-footer {
    padding: 40px 0 40px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.fp-footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
}
.fp-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}
.fp-footer-logo { width: 140px; height: 140px; }
.fp-footer-name { display: none; }
.fp-footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-top: -30px;
    margin-bottom: 24px;
}
.fp-footer-socials {
    display: flex;
    gap: 16px;
}
.fp-footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}
.fp-footer-socials a:hover {
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.25);
    color: var(--gold);
}
.fp-footer-links-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 20px;
}
.fp-footer-links-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
    transition: color 0.2s;
}
.fp-footer-links-col a:hover {
    color: #fff;
}
.fp-footer-newsletter-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-bottom: 16px;
}
.fp-footer-newsletter {
    display: flex;
    gap: 8px;
}
.fp-newsletter-input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}
.fp-newsletter-input:focus {
    border-color: var(--gold);
}
.fp-newsletter-input::placeholder {
    color: rgba(255,255,255,0.25);
}
.fp-newsletter-btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    background: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.fp-newsletter-btn:hover {
    background: #d4b255;
    transform: translateY(-1px);
}
.fp-footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
    margin-bottom: 32px;
}
.fp-footer-bottom {
    text-align: center;
}
.fp-footer-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    max-width: 700px;
    margin: 0 auto 12px;
    line-height: 1.6;
}
.fp-footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}


/* ═══════════════════════════════════════════════════ */
/* RESPONSIVE                                          */
/* ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .fp-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .fp-card--left,
    .fp-card--center,
    .fp-card--right {
        transform: none !important;
        width: 100%;
        max-width: 500px;
    }
    .fp-community-layout { grid-template-columns: 1fr; gap: 40px; }
    .fp-calls-layout { grid-template-columns: 1fr; gap: 40px; }
    .fp-compare-grid { grid-template-columns: 1fr; }
    .fp-footer-main { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    /* ── NAV ── */
    .nav { padding: 16px 32px; }
    .nav.scrolled { padding: 12px 32px; }
    .nav-links, .nav-right { display: none; }
    .nav-hamburger { display: flex; }

    /* ── PRICE TICKER ── */
    .top-banner { padding: 6px 10px; }
    .banner-content { font-size: 10px; letter-spacing: 0.08em; }
    .banner-text .val { font-size: 11px; }
    .banner-text .sep { margin: 0 6px; }

    /* ── HERO ── */
    :root { --phone-w: clamp(280px, 72vw, 380px); }
    .hero-macro { padding-top: 140px; padding-bottom: 20px; min-height: auto; height: auto; }
    .macro-floats { display: block; z-index: 15; }
    .m-float--gold { width: 45px; top: 35%; left: 6%; opacity: 1; }
    .m-float--btc { width: 55px; top: 40%; right: 5%; opacity: 1; }
    .m-float--oil { width: 40px; bottom: 15%; right: 10%; opacity: 0.9; }
    .hero-fade { height: 15vh; bottom: 0; }

    /* ── PHONE CONTENT SPACING ── */
    .macro-content { margin-top: 38%; gap: 0; }
    .mc-subtitle { margin-bottom: 6px; }
    .mc-title-wrapper { height: auto; min-height: 3.2em; margin-bottom: 8px; }
    .mc-desc { margin-bottom: 24px; line-height: 1.5; max-width: 85%; }
    .mc-ctas { gap: 6px; }

    /* ── SECTIONS GENERAL ── */
    .fp-section { padding: 48px 0; }
    .fp-container { padding: 0 32px; overflow: hidden; }

    /* ── STAT SECTION (78.4% WIN RATE) ── */
    .fp-stat-section { padding: 32px 0; overflow: hidden; }
    .fp-stat-row {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    .fp-stat-number { font-size: clamp(60px, 18vw, 120px); }
    .fp-stat-text { text-align: center; padding-top: 0; max-width: 100%; }
    .fp-stat-text h2 { font-size: clamp(16px, 4vw, 24px); text-align: center; }

    /* ── DEMO SECTION (SIGNAL/COPY/PROFIT) ── */
    .demo-section { overflow: visible; }
    .demo-track { padding-bottom: 80px; }
    .demo-sticky-row {
        flex-direction: column;
        gap: 0;
        padding: 80px 32px 10px;
        height: 100vh;
        align-items: center;
        justify-content: flex-start;
    }
    .demo-panels-slot {
        flex: 0;
        position: relative;
        height: 60px;
        text-align: center;
        width: 100%;
    }
    .demo-phone { width: 240px; height: 500px; }
    .demo-phone-wrap { 
        display: flex; 
        justify-content: center; 
        margin-top: -30px; 
        transform: scale(0.85); 
        transform-origin: top center; 
    }
    .fp-flow-desc { font-size: 13px; padding: 0 12px; text-align: center; margin-bottom: 8px; }

    /* ── GIANT TEXT ── */
    .fp-giant-text { font-size: clamp(40px, 11vw, 72px); }

    /* ── MEGA TEXT ── */
    .fp-mega-text { font-size: clamp(24px, 7vw, 48px); text-align: center; }

    /* ── COMMUNITY (Join a Community of Profitable Traders) ── */
    .community-ctas { flex-direction: column; align-items: center; gap: 12px; }
    .vip-cta-wrapper { position: relative; }
    .vip-brush-circle { display: none; }
    .vip-annotation { display: none; }
    .community-heading { font-size: clamp(24px, 7vw, 36px); }
    .community-check { font-size: 13px; }

    /* ── METHOD SECTION (CHOOSE TAKE-PROFIT) ── */
    .fp-method-section { padding: 60px 0; }
    .fp-method-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .fp-method-left { justify-content: center; }
    .fp-method-left::before { display: none; }
    .smart-video-frame { max-height: 380px; margin: 0 auto; max-width: 260px; }
    .fp-method-right { text-align: center; }
    .fp-method-right p { font-size: 14px; }
    .smart-tp-list { align-items: flex-start; width: 100%; max-width: 340px; margin: 0 auto; }
    .smart-tp-item { max-width: 100%; text-align: left; }

    /* ── CALLS SECTION (Calls drop. The engine executes.) ── */
    .fp-calls-layout { grid-template-columns: 1fr; gap: 20px; }
    .fp-calls-text { text-align: center; }
    .fp-calls-text .fp-heading-xl { font-size: clamp(28px, 8vw, 40px); }
    .fp-calls-text .fp-text-large { font-size: 15px; }
    .fp-calls-text p { font-size: 14px; }
    .fp-calls-section .fp-container { overflow: visible; padding: 0 24px; }
    .fp-calls-section { padding: 60px 0; }
    .fp-calls-cards { height: 320px; overflow: visible; margin: 20px 0 40px; }
    .fp-calls-cards::before { width: 350px; height: 350px; }
    .fp-call-card { width: 160px; }
    .fp-call-card[data-pos="left"] { transform: rotate(-6deg) translateX(-70px) translateY(0); }
    .fp-call-card[data-pos="center"] { transform: rotate(0deg) translateY(-10px); }
    .fp-call-card[data-pos="right"] { transform: rotate(6deg) translateX(70px) translateY(0); }

    /* ── COMMUNITY SECTION (Join the winning side) ── */
    .fp-community-section { padding: 60px 0; }
    .fp-community-layout { grid-template-columns: 1fr; gap: 24px; }
    .fp-community-video-wrap video { max-height: 50vh; border-radius: 12px; }
    .fp-community-text { text-align: center; }
    .fp-community-list { text-align: left; display: inline-block; }
    .fp-community-list li { font-size: 13px; }

    /* ── CARDS SECTION ── */
    .fp-cards-row { flex-direction: column; align-items: center; gap: 20px; }
    .fp-card--left, .fp-card--center, .fp-card--right {
        transform: none !important;
        width: 100%;
        max-width: 340px;
    }

    /* ── COMPARE GRID ── */
    .fp-compare-grid { grid-template-columns: 1fr; gap: 16px; }
    .fp-compare-col { border-radius: 14px; padding: 6px; }
    .fp-compare-col--tcm::before { border-radius: 16px; }
    .fp-compare-col--tcm::after { border-radius: 12px; }
    .fp-compare-header { padding: 14px 16px; font-size: 16px; gap: 10px; }
    .fp-compare-logo { width: 28px; height: 28px; }
    .fp-compare-item { padding: 12px 16px; font-size: 13px; gap: 10px; }

    /* ── METHOD STEPS ── */
    .fp-method-steps { grid-template-columns: 1fr; gap: 16px; }

    /* ── NUMBERS / ACADEMY ── */
    .fp-numbers-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* ── FAQ ── */
    .fp-faq-list { padding: 0; }

    /* ── CTA ── */
    .fp-cta-section .fp-heading-xl { font-size: clamp(24px, 7vw, 40px); text-align: center; }
    .fp-btn-secondary { margin-left: 0; margin-top: 12px; }

    /* ── ENDING ── */
    .fp-ending { padding: 48px 0 40px; }
    .fp-ending-text { padding-bottom: 16px; }
    .fp-ending-sub { font-size: 12px; letter-spacing: 0.2em; }

    /* ── FOOTER ── */
    .fp-footer { padding: 40px 0 24px; }

    /* ── FOOTER (Navigate + Legal side-by-side) ── */
    .fp-footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .fp-footer-brand-col { text-align: center; }
    .fp-footer-brand { justify-content: center; }
    .fp-footer-socials { justify-content: center; }
    .fp-footer-links-col h4 { font-size: 13px; }
    .fp-footer-links-col a { font-size: 13px; }
    /* Navigate + Legal side by side */
    .fp-footer-main {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .fp-footer-brand-col { width: 100%; }
    .fp-footer-links-col:nth-child(2),
    .fp-footer-links-col:nth-child(3) {
        width: 45%;
        text-align: center;
    }
    .fp-footer-links-col:nth-child(4) { width: 100%; }

    /* ── COOKIE BANNER ── */
    .cookie-banner { bottom: 10px; left: 10px; right: 10px; }
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 12px 14px;
    }
    .cookie-icon { font-size: 18px; }
    .cookie-text p { font-size: 11px; white-space: normal; line-height: 1.4; }
    .cookie-actions { justify-content: center; width: 100%; gap: 8px; }
    .cookie-btn { padding: 8px 14px; font-size: 11px; flex: 1; text-align: center; }

    /* ── CHATBOT ── */
    .chatbot-window { width: calc(100vw - 32px); right: 16px; bottom: 80px; max-height: 75vh; }
    .chatbot-toggle { width: 48px; height: 48px; right: 16px; bottom: 16px; }

    /* ── NAV CONTACT (HIDE ON MOBILE) ── */
    .btn-nav-contact { display: none; }

    /* ── CONSISTENT TEXT SIZES ── */
    .fp-heading-lg { font-size: clamp(28px, 7vw, 40px); }
    .fp-heading-xl { font-size: clamp(32px, 8vw, 48px); }
    .fp-label { font-size: 11px; }
    .fp-desc, .fp-method-right p, .fp-flow-desc { font-size: 15px; line-height: 1.6; }
}

/* ── Extra small (iPhone SE, 375px and below) ── */
@media (max-width: 400px) {
    .top-banner { padding: 5px 8px; }
    .banner-content { font-size: 9px; gap: 0; }
    .banner-text .val { font-size: 10px; }
    :root { --phone-w: clamp(220px, 60vw, 280px); }
    .demo-phone { width: 240px; height: 480px; }
    .fp-giant-text { font-size: clamp(40px, 12vw, 80px); }
    .fp-mega-text { font-size: clamp(28px, 8vw, 56px); }
    .chatbot-window { bottom: 70px; }
}


/* ═══════════════════════════════════════════════════ */
/* CONTACT US NAV BUTTON                               */
/* ═══════════════════════════════════════════════════ */
.btn-nav-contact {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    margin-right: 8px;
    background: transparent;
    z-index: 1;
}
.btn-nav-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1.5px;
    background: linear-gradient(90deg, var(--gold), #f0d78a, #8b6914, var(--gold));
    background-size: 300% 100%;
    animation: borderFlow 3s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}
@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
.btn-nav-contact:hover {
    color: #fff;
}
.btn-nav-contact:hover::before {
    padding: 2px;
    background: linear-gradient(90deg, #f0d78a, #fff, #f0d78a, var(--gold));
    background-size: 300% 100%;
    animation: borderFlow 1.5s linear infinite;
}

/* SECONDARY CTA BUTTON */
.fp-btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    margin-left: 12px;
}
.fp-btn-secondary:hover {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════ */
/* COOKIE CONSENT BANNER                               */
/* ═══════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 9999;
    animation: cookieSlideUp 0.6s ease;
}
.cookie-banner.hidden { display: none; }
.cookie-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.cookie-icon {
    font-size: 32px;
    color: var(--gold);
    flex-shrink: 0;
}
.cookie-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.cookie-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}
.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: var(--font);
}
.cookie-btn--accept {
    background: var(--gold);
    color: #000;
}
.cookie-btn--accept:hover {
    background: #f0d78a;
    transform: translateY(-1px);
}
.cookie-btn--learn {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn--learn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
@keyframes cookieSlideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ═══════════════════════════════════════════════════ */
/* CHATBOT WIDGET                                      */
/* ═══════════════════════════════════════════════════ */
.chatbot-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), #d4a843);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #000;
}
.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.chatbot-toggle.hidden { display: none; }

.chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 380px;
    max-height: 520px;
    background: #0a0a0a;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px;
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
    animation: chatSlideUp 0.3s ease;
}
.chatbot-window.open { display: flex; }
@keyframes chatSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(201,168,76,0.06);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chatbot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}
.chatbot-name {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}
.chatbot-status {
    display: block;
    font-size: 11px;
    color: #26a69a;
}
.chatbot-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}
.chatbot-close:hover { color: #fff; }

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 360px;
}

.chat-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    animation: msgFade 0.3s ease;
}
@keyframes msgFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-msg--bot {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.75);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chat-msg--user {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.15);
    color: var(--gold);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.chat-msg p { margin: 0; }

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.chat-quick {
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font);
}
.chat-quick:hover {
    background: rgba(201,168,76,0.12);
    border-color: var(--gold);
}

.chatbot-input {
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chatbot-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, var(--gold), #d4a843);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.chatbot-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}
.chatbot-cta-btn--contact {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.chatbot-cta-btn--contact:hover {
    background: rgba(201,168,76,0.1);
    box-shadow: 0 4px 15px rgba(201,168,76,0.15);
}
