:root {
    /* --- V8 RICH DESIGN SYSTEM --- */
    --c-bg: #030303;
    --c-panel: #0a0a0a;
    --c-border: rgba(255, 255, 255, 0.08);

    --c-gold: #E5C365;
    --c-gold-pale: #F4E4BC;
    --c-red: #ff3333;
    --c-green: #33ff33;

    --c-text-main: #FFFFFF;
    --c-text-mute: #888888;

    --g-onyx: linear-gradient(180deg, #0a0a0a 0%, #030303 100%);
    --g-gold: linear-gradient(135deg, #E5C365 0%, #D4AF37 100%);

    --f-display: 'Oswald', sans-serif;
    --f-body: 'Inter', sans-serif;

    --sp-pad: 40px;

    /* 3D */
    --perspective: 1000px;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f-body);
    background-color: var(--c-bg);
    color: var(--c-text-main);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 50px;
    /* Space for sticky bar */
}

/* --- TOP URGENCY BAR --- */
#top-urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #000;
    border-bottom: 1px solid var(--c-gold);
    z-index: 9999;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.urgency-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.urgency-btn {
    background: var(--c-gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.urgency-btn:hover {
    background: #fff;
}

@media (max-width: 768px) {
    .urgency-container {
        font-size: 0.7rem;
        gap: 10px;
    }

    .urgency-btn {
        padding: 2px 8px;
        font-size: 0.7rem;
    }
}

h1,
h2,
h3 {
    font-family: var(--f-display);
    text-transform: uppercase;
    line-height: 0.95;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- MOTION & UTILS --- */
.text-gold {
    color: var(--c-gold);
}

.text-mute {
    color: var(--c-text-mute);
    font-size: 0.95rem;
}

/* 3D Tilt */
.tilt-card {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-card>* {
    transform: translateZ(20px);
}

/* --- COMPONENTS --- */
.btn {
    display: inline-block;
    background: var(--c-text-main);
    color: var(--c-bg);
    padding: 18px 40px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--c-gold);
}

/* --- BENTO GRID SYSTEM --- */
/* --- SHINY BUTTON (Houdini Animation) --- */
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-angle-offset {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-percent {
    syntax: "<percentage>";
    initial-value: 5%;
    inherits: false;
}

@property --gradient-shine {
    syntax: "<color>";
    initial-value: white;
    inherits: false;
}

.shiny-cta {
    --shiny-cta-bg: #111;
    --shiny-cta-bg-subtle: #1a1818;
    --shiny-cta-fg: #ffffff;
    /* Adapted to Gold */
    --shiny-cta-highlight: #d4af37;
    --shiny-cta-highlight-subtle: #F0E68C;
    --animation: gradient-angle linear infinite;
    --duration: 3s;
    --shadow-size: 2px;
    --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);

    isolation: isolate;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline-offset: 4px;
    padding: 1.25rem 2.5rem;
    font-family: var(--f-display);
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 360px;
    color: var(--shiny-cta-fg);
    background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box,
        conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
            transparent,
            var(--shiny-cta-highlight) var(--gradient-percent),
            var(--gradient-shine) calc(var(--gradient-percent) * 2),
            var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
            transparent calc(var(--gradient-percent) * 4)) border-box;
    box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
    transition: var(--transition);
    transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.shiny-cta::before,
.shiny-cta::after,
.shiny-cta span::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    z-index: -1;
}

.shiny-cta:active {
    translate: 0 1px;
}

/* Shiny Card Effect (Adapted for Cards) */
.shiny-card {
    --shiny-cta-bg: #151515;
    /* Darker card bg */
    --shiny-cta-bg-subtle: #1a1818;
    --shiny-cta-highlight: #d4af37;
    --shiny-cta-highlight-subtle: #F0E68C;
    --gradient-angle: 0deg;
    --gradient-percent: 5%;
    --gradient-shine: white;

    position: relative;
    border-radius: 20px;
    /* Match card radius */
    background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box,
        conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset, 0deg)),
            transparent,
            var(--shiny-cta-highlight) var(--gradient-percent),
            var(--gradient-shine) calc(var(--gradient-percent) * 2),
            var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
            transparent calc(var(--gradient-percent) * 4)) border-box !important;
    border: 2px solid transparent !important;
    animation: gradient-angle 3s linear infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Reusing global Property definitions from shiny-cta */

/* Dots pattern */
.shiny-cta::before {
    --size: calc(100% - var(--shadow-size) * 3);
    --position: 2px;
    --space: calc(var(--position) * 2);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle at var(--position) var(--position),
            white calc(var(--position) / 4),
            transparent 0) padding-box;
    background-size: var(--space) var(--space);
    background-repeat: space;
    mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg),
            black,
            transparent 10% 90%,
            black);
    border-radius: inherit;
    opacity: 0.4;
    z-index: -1;
}

/* Inner shimmer */
.shiny-cta::after {
    --animation: shimmer linear infinite;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(-50deg,
            transparent,
            var(--shiny-cta-highlight),
            transparent);
    mask-image: radial-gradient(circle at bottom, transparent 40%, black);
    opacity: 0.6;
}

.shiny-cta span {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shiny-cta span::before {
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
    opacity: 0;
    transition: opacity var(--transition);
    animation: calc(var(--duration) * 1.5) breathe linear infinite;
}

/* Animate */
.shiny-cta,
.shiny-cta::before,
.shiny-cta::after {
    animation: var(--animation) var(--duration),
        var(--animation) calc(var(--duration) / 0.4) reverse paused;
    animation-composition: add;
}

.shiny-cta:is(:hover, :focus-visible) {
    --gradient-percent: 20%;
    --gradient-angle-offset: 95deg;
    --gradient-shine: var(--shiny-cta-highlight-subtle);
}

.shiny-cta:is(:hover, :focus-visible),
.shiny-cta:is(:hover, :focus-visible)::before,
.shiny-cta:is(:hover, :focus-visible)::after {
    animation-play-state: running;
}

.shiny-cta:is(:hover, :focus-visible) span::before {
    opacity: 1;
}

@keyframes gradient-angle {
    to {
        --gradient-angle: 360deg;
    }
}

@keyframes shimmer {
    to {
        rotate: 360deg;
    }
}

@keyframes breathe {

    from,
    to {
        scale: 1;
    }

    50% {
        scale: 1.2;
    }
}

/* --- GUARANTEE SECTION --- */
.guarantee-box {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    position: relative;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.shield-svg {
    width: 100%;
    height: 100%;
    stroke: var(--c-gold);
    fill: rgba(229, 195, 101, 0.05);
}

.guarantee-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: goldPulse 4s ease-in-out infinite;
}

@keyframes goldPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.guarantee-content {
    text-align: left;
}

@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 40px 20px;
    }

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

/* --- SAAS HERO V9 --- */
/* --- SAAS HERO V9 --- */
/* --- SAAS HERO V9 --- */
.hero-v9-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    /* Reduced from 60px */
    position: relative;
    z-index: 2;
}

/* Social Proof Pill */
.social-proof-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    /* Reduced from 20px */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pill-avatars {
    display: flex;
    margin-left: 10px;
}

.pill-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -10px;
}

.pill-text {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

/* SaaS Headlines */
.saas-headline {
    font-family: var(--f-display);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 10px;
    /* Reduced from 15px */
    text-transform: uppercase;
    letter-spacing: -1px;
}

.saas-sub {
    font-size: 1.2rem;
    color: var(--c-text-mute);
    max-width: 600px;
    margin: 0 auto 20px;
    /* Reduced from 25px */
    line-height: 1.6;
}

/* Benefits List */
.saas-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    /* Reduced from 30px */
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #eee;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    color: var(--c-gold);
}

/* CTA Group */
.saas-cta-group {
    margin-bottom: 20px;
    /* Reduced from 40px */
}

/* --- SECTIONS --- */
.section {
    padding: 40px 0;
    /* Reduced from 60px */
    position: relative;
}

.cta-sub {
    font-size: 0.8rem;
    color: var(--c-text-mute);
    margin-top: 15px;
    opacity: 0.7;
}

/* --- HERO PHONE TRIO VISUAL --- */
.hero-phones-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    margin: 0 auto;
    perspective: 2000px;
}

.phone-mockup {
    position: absolute;
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #1a1a1a;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.5s ease;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1a1a1a;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Screen Gradients */
.screen-agenda {
    background: linear-gradient(135deg, #111, #222);
}

.screen-flash {
    background: linear-gradient(135deg, #000, #333);
}

.screen-tattoo {
    background: linear-gradient(135deg, #0f0f0f, #1f1f1f);
}

.screen-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.screen-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.screen-badge.gold {
    background: var(--c-gold);
    color: #000;
}

.phone-screen h3 {
    font-family: var(--f-display);
    font-size: 3rem;
    line-height: 0.9;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.screen-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* Positioning */
.phone-left {
    left: 10%;
    top: 40px;
    transform: rotateY(15deg) translateZ(-50px) scale(0.9);
    z-index: 1;
    filter: brightness(0.7);
    animation: floatPhoneLeft 6s ease-in-out infinite;
}

.phone-right {
    right: 10%;
    top: 40px;
    transform: rotateY(-15deg) translateZ(-50px) scale(0.9);
    z-index: 1;
    filter: brightness(0.7);
    animation: floatPhoneRight 7s ease-in-out infinite;
}

.phone-center {
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateZ(50px);
    z-index: 5;
    border-color: #333;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 50px rgba(229, 195, 101, 0.1);
    animation: floatPhoneCenter 8s ease-in-out infinite;
}

@keyframes floatPhoneCenter {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes floatPhoneLeft {

    0%,
    100% {
        transform: rotateY(15deg) translateZ(-50px) translateY(0) scale(0.9);
    }

    50% {
        transform: rotateY(15deg) translateZ(-50px) translateY(-20px) scale(0.9);
    }
}

@keyframes floatPhoneRight {

    0%,
    100% {
        transform: rotateY(-15deg) translateZ(-50px) translateY(0) scale(0.9);
    }

    50% {
        transform: rotateY(-15deg) translateZ(-50px) translateY(-15px) scale(0.9);
    }
}

@media(max-width: 768px) {
    .hero-phones-wrapper {
        height: 600px;
        transform: scale(0.7);
        margin-top: -50px;
    }

    .phone-left {
        left: -20px;
    }

    .phone-right {
        right: -20px;
    }
}

/* GOLDEN MIST GLOW (Monochromatic) */
.hero-glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero-glow-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg,
            rgba(212, 175, 55, 0.2),
            transparent,
            rgba(212, 175, 55, 0.1),
            transparent,
            rgba(212, 175, 55, 0.2));
    filter: blur(80px);
    opacity: 0.5;
    border-radius: 50%;
    animation: goldMistSpin 30s linear infinite;
}

@keyframes goldMistSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Card Gloss Sheen */
.story-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 15;
    animation: glossSheen 4s ease-in-out infinite;
}

@keyframes glossSheen {

    0%,
    40% {
        left: -150%;
    }

    60%,
    100% {
        left: 250%;
    }
}

/* --- OFFER CARD MARQUEE --- */
.offer-visual-carousel {
    width: 100%;
    height: 120px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 10px;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.offer-marquee-track {
    display: flex;
    gap: 12px;
    width: max-content;
    height: 100%;
    animation: offerMarquee 25s linear infinite;
}

.offer-mini-card {
    height: 100%;
    aspect-ratio: 9/16;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.offer-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes offerMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the width (since we double the items) */
    }
}

@media(max-width: 768px) {
    .saas-headline {
        font-size: 2.5rem;
    }

    .mockup-grid {
        grid-template-columns: 1fr;
    }

    .mockup-sidebar {
        display: none;
    }

    .float-badge {
        display: none;
    }

    /* Hide floating content on mobile for clean look */
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .bento-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .bento-grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.bento-card {
    background: var(--c-panel);
    border: 1px solid var(--c-border);
    padding: var(--sp-pad);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s;
    position: relative;
    overflow: hidden;
}

/* --- FAQ (REFINED) --- */
.faq-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--c-border);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-row:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.faq-q {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.faq-q span {
    font-size: 1.5rem;
    color: var(--c-gold);
    transition: 0.3s;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    color: var(--c-text-mute);
    transition: all 0.4s ease;
    padding: 0 25px;
    line-height: 1.6;
}

.faq-row.active {
    border-color: var(--c-gold);
    background: rgba(229, 195, 101, 0.05);
}

.faq-row.active .faq-q span {
    transform: rotate(45deg);
}

.faq-row.active .faq-a {
    padding-bottom: 25px;
    max-height: 200px;
}

/* --- ATMOSPHERE & VISUALS --- */
/* .global-noise removed */

.hero-neon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.4) 0%, rgba(184, 134, 11, 0.2) 40%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: color-dodge;
    animation: neonPulse 8s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes neonPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.9);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Enhanced Typography */
.hero-headline {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 0.9;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 5;
}

/* Richer Gold Gradient */
:root {
    --g-gold: linear-gradient(135deg, #FFD700 0%, #B8860B 40%, #8B6914 100%);
}

/* --- V8.5 HERO CENTERED STACK --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
    background-image: linear-gradient(to bottom, rgba(3, 3, 3, 0.8), rgba(3, 3, 3, 1)), url('https://i.imgur.com/5dKNDBw.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-split {
    display: flex;
    flex-direction: column;
    /* Stack: Text -> Visual */
    align-items: center;
    text-align: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

/* Desktop tweaks if needed (mostly just overrides) */
@media (min-width: 992px) {
    .hero-content {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        z-index: 2;
        display: flex;
        flex-direction: column;
    }

    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: 2;
        perspective: 1000px;
        margin-top: 20px;
    }

    .hero-bullets {
        justify-content: center;
    }
}

/* Trust Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--c-gold);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* CSS Only Phone Mockup (REMOVED V8) */
/* .phone-mockup { ... } */

/* --- CARD CLUSTER V8 --- */
.card-cluster {
    position: relative;
    width: 320px;
    height: 450px;
    /* Generic container size */
    z-index: 10;
    transform-style: preserve-3d;
}

.story-card {
    position: absolute;
    width: 220px;
    height: 390px;
    background: linear-gradient(135deg, #111, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s ease;


    /* Glassy header inside card */
    .card-header {
        height: 40px;
        background: rgba(255, 255, 255, 0.03);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        padding: 0 15px;
    }

    .badge-sm {
        font-size: 0.6rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 2px 8px;
        border-radius: 4px;
        color: #fff;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .symbol {
        font-size: 3rem;
        margin-bottom: 15px;
        filter: drop-shadow(0 0 10px rgba(229, 195, 101, 0.3));
    }

    .story-card h3 {
        font-size: 1.5rem;
        color: var(--c-text-main);
        margin-bottom: 5px;
    }

    .story-card p {
        font-size: 0.8rem;
        color: var(--c-text-mute);
    }

    .btn-xs {
        margin-top: 15px;
        background: var(--c-gold);
        color: #000;
        padding: 6px 18px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    /* Positioning & Animation */
    transform-style: preserve-3d;
}

.story-card {
    position: absolute;
    width: 220px;
    height: 390px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s ease;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CAROUSEL POSITIONS & ANIMATION */
.card-1 {
    animation: carouselRotate 9s infinite;
    animation-delay: 0s;
}

.card-2 {
    animation: carouselRotate 9s infinite;
    animation-delay: -3s;
    /* Start at Center */
}

.card-3 {
    animation: carouselRotate 9s infinite;
    animation-delay: -6s;
    /* Start at Right */
}

@keyframes carouselRotate {

    /* Position A: LEFT (Back) */
    0%,
    100% {
        top: 20px;
        left: 0;
        z-index: 1;
        transform: rotate(-10deg) scale(0.9);
        opacity: 0.7;
        filter: blur(1px);
        border-color: rgba(255, 255, 255, 0.1);
    }

    /* Position B: CENTER (Front/Focus) */
    33% {
        top: 0;
        left: 50px;
        z-index: 10;
        transform: rotate(0deg) scale(1);
        opacity: 1;
        filter: blur(0);
        border-color: var(--c-gold);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 195, 101, 0.2);
    }

    /* Position C: RIGHT (Back) */
    66% {
        top: 40px;
        left: 110px;
        z-index: 2;
        transform: rotate(10deg) scale(0.9);
        opacity: 0.7;
        filter: blur(1px);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* Background Glow */
.hero-glow {
    position: absolute;
    top: 50%;
    right: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: translate(20%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* .hero-headline removed (replaced by enhanced version) */

.hero-sub {
    font-size: 1.25rem;
    color: var(--c-text-mute);
    margin: 30px 0 50px;
    max-width: 500px;
}

/* --- SECTIONS --- */
.section {
    padding: 60px 0;
    /* Reduced from 120px */
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 15px;
    display: block;
}

.icon-box {
    font-size: 2.5rem;
    color: var(--c-gold);
    margin-bottom: 20px;
    display: inline-block;
}

.display-title {
    font-size: 3rem;
}

/* --- NEW SECTION: COMPARISON TABLE --- */
.comparison-table {
    width: 100%;
    margin-top: 40px;
    border-collapse: collapse;
    font-family: var(--f-body);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--c-border);
    text-align: center;
}

/* --- MARQUEE --- */
.marquee-wrap {
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 30px 0;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-text {
    display: inline-block;
    font-family: var(--f-display);
    font-size: 4rem;
    color: #1a1a1a;
    -webkit-text-stroke: 1px #333;
    margin-right: 50px;
    animation: marquee 40s linear infinite;
}

/* Small Variant for Model Names */
.marquee-sm {
    border-top: none;
    border-bottom: none;
    padding: 10px 0;
    background: transparent;
}

.marquee-sm .marquee-text {
    font-size: 1.2rem;
    color: var(--c-text-mute);
    -webkit-text-stroke: 0;
    animation-duration: 25s;
    font-family: var(--f-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-sm span {
    color: var(--c-gold);
    margin: 0 15px;
}

.comparison-table th {
    font-family: var(--f-display);
    font-size: 1.2rem;
    color: var(--c-text-mute);
}

.comparison-table th.highlight {
    color: var(--c-gold);
    font-size: 1.5rem;
    border: 1px solid var(--c-gold);
    border-bottom: none;
    background: rgba(229, 195, 101, 0.05);
}

.comparison-table td.highlight {
    border-left: 1px solid var(--c-gold);
    border-right: 1px solid var(--c-gold);
    background: rgba(229, 195, 101, 0.05);
    font-weight: 700;
}

.comparison-table tr:last-child td.highlight {
    border-bottom: 1px solid var(--c-gold);
}

.check {
    color: var(--c-green);
}

.cross {
    color: var(--c-red);
}

/* --- NEW SECTION: GALLERY (Horizontal) --- */
.gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    /* Space for scrollbar */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    will-change: transform;
    /* Hardware acceleration */
}

/* Custom Scrollbar for Gallery */
.gallery-grid::-webkit-scrollbar {
    height: 6px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 3px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--c-gold);
    border-radius: 3px;
}

.gallery-item {
    min-width: 220px;
    /* Fixed width for scrolling */
    aspect-ratio: 9/16;
    background: #1a1a1a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.8rem;
    transition: transform 0.3s;
    scroll-snap-align: start;
    /* Snap to left */
    border: 1px solid var(--c-border);
}

.gallery-item:hover {
    transform: translateY(-10px);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--c-gold);
}


/* --- OFFER CARD V2 (HIGH CONVERSION) --- */
.offer-card-v2 {
    background: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #050505 100%);
    border: 1px solid var(--c-border);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
    padding: 40px;
    text-align: center;
}

/* Gold Border Glow Animation */
/* Gold Border Glow Animation (REMOVED in favor of Shiny Effect) */
/* .offer-card-v2::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(180deg, var(--c-gold), transparent, transparent);
    z-index: 0;
    opacity: 0.3;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
} */

.offer-header-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 195, 101, 0.1);
    color: var(--c-gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(229, 195, 101, 0.2);
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: var(--c-red);
    border-radius: 50%;
    animation: redPulse 1.5s infinite;
}

@keyframes redPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 51, 51, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
    }
}

/* Price Anchoring */
.price-container {
    margin-bottom: 60px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--c-gold);
    color: var(--c-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--c-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}



.price-old {
    color: #666;
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.price-main {
    font-family: var(--f-display);
    color: #fff;
    display: flex;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
}

.price-main .currency {
    font-size: 2rem;
    margin-top: 10px;
    font-weight: 500;
}

.price-main .amount {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-main .cents {
    font-size: 2rem;
    margin-top: 10px;
    font-weight: 500;
    color: var(--c-text-mute);
}

.price-tag {
    display: inline-block;
    background: var(--c-gold);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 5px;
}

/* Value Stack */
.value-stack {
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: background 0.2s;
}

.stack-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.stack-icon {
    font-size: 1.2rem;
    color: var(--c-green);
    min-width: 20px;
}

.stack-text {
    flex-grow: 1;
    font-weight: 500;
}

.highlight-item {
    background: rgba(229, 195, 101, 0.1);
    border-color: rgba(229, 195, 101, 0.2);
}

.highlight-item:hover {
    background: rgba(229, 195, 101, 0.15);
}

.total-value-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--c-text-mute);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.strike {
    text-decoration: line-through;
    color: #666;
}

/* CTA & Trust */
.offer-cta-wrapper {
    margin-bottom: 25px;
}

.btn-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
    font-family: var(--f-body);
}

.offer-trust-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--c-text-mute);
    opacity: 0.8;
}

.guarantee-badge,
.payment-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.guarantee-badge i,
.payment-icons i {
    font-size: 1.1rem;
    color: var(--c-gold);
}

/* Sticky */
.sticky-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--c-border);
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 100;
    display: flex;
    gap: 15px;

    /* --- NEW HOW IT WORKS (Minimalist) --- */
    .steps-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        margin-top: 40px;
        position: relative;
    }

    .step-min {
        flex: 1;
        text-align: center;
        position: relative;
        padding: 20px;
    }

    .step-number-big {
        font-family: var(--f-display);
        font-size: 6rem;
        line-height: 1;
        font-weight: 700;
        margin-bottom: 20px;
        /* Outline Text Effect */
        color: transparent;
        -webkit-text-stroke: 1px var(--c-gold);
        opacity: 0.5;
        transition: 0.3s;
    }

    .step-min:hover .step-number-big {
        opacity: 1;
        -webkit-text-stroke: 0;
        color: var(--c-gold);
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    }

    .step-divider {
        align-self: center;
        font-size: 2rem;
        color: var(--c-border);
        padding-top: 20px;
        /* Align with center roughly */
    }

    @media (max-width: 768px) {
        .steps-wrapper {
            flex-direction: column;
            gap: 60px;
        }

        .step-divider {
            transform: rotate(90deg);
        }
    }

    /* --- V8 NEW HERO STYLES --- */

    /* Hero Actions & Trust */
    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 30px;
        margin-top: 40px;
    }

    .hero-trust {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .avatars {
        display: flex;
    }

    .avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid #000;
        background-size: cover;
        background-position: center;
        margin-left: -15px;
        position: relative;
        z-index: 1;
    }

    .avatar:first-child {
        margin-left: 0;
    }

    .trust-text {
        font-size: 0.9rem;
        color: var(--c-text-mute);
        font-weight: 500;
    }

    /* Shimmer Text Effect */
    .shimmer-text {
        position: relative;
        color: var(--c-gold);
        background: linear-gradient(90deg,
                var(--c-gold) 0%,
                #fff 50%,
                var(--c-gold) 100%);
        background-size: 200% auto;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 3s linear infinite;
    }

    @keyframes shimmer {
        to {
            background-position: 200% center;
        }
    }

    /* Premium Glow Button */
    .btn-glow {
        position: relative;
        background: linear-gradient(135deg, #FFF 0%, #CCC 100%);
        z-index: 1;
        border: none;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    .btn-glow:hover {
        background: linear-gradient(135deg, var(--c-gold), #B8860B);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
        transform: translateY(-3px);
        color: #000;
    }

    .btn-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent);
        transform: skewX(-20deg);
        animation: shine 4s infinite;
        pointer-events: none;
    }

    @keyframes shine {
        0% {
            left: -100%;
        }

        20% {
            left: 200%;
        }

        100% {
            left: 200%;
        }
    }

    /* --- PREMIUM BUTTON V8 --- */
    .btn-premium-v8 {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 20px 40px;
        background: rgba(20, 20, 20, 0.6);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(229, 195, 101, 0.3);
        border-radius: 50px;
        font-family: var(--f-display);
        font-size: 1.1rem;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(229, 195, 101, 0.05);
    }

    .btn-premium-v8::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50px;
        padding: 2px;
        background: linear-gradient(45deg, transparent, var(--c-gold), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0.5;
        transition: 0.3s;
    }

    .btn-premium-v8:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(229, 195, 101, 0.2);
        border-color: var(--c-gold);
        color: #000;
    }

    .btn-premium-v8 .btn-liquid {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200%;
        height: 200%;
        background: var(--g-gold);
        border-radius: 40%;
        transform: translate(-50%, -50%) translateY(100%);
        transition: transform 0.6s ease-in-out;
        z-index: -1;
        opacity: 0.9;
    }

    .btn-premium-v8:hover .btn-liquid {
        transform: translate(-50%, -50%) translateY(0) rotate(10deg);
    }

    .btn-premium-v8 .btn-icon {
        transition: transform 0.3s ease;
    }

    .btn-premium-v8:hover .btn-icon {
        transform: translateX(5px);
    }

    @media (max-width: 768px) {
        .hero-actions {
            justify-content: center;
            flex-direction: column;
            gap: 20px;
        }

        .hero-headline {
            font-size: 3rem;
        }
    }
}

/* --- FINAL CAROUSEL FIX (Overrides) --- */
.card-1 {
    animation: carouselRotate 12s infinite cubic-bezier(0.25, 1, 0.5, 1);
    animation-delay: 0s;
}

.card-2 {
    animation: carouselRotate 12s infinite cubic-bezier(0.25, 1, 0.5, 1);
    animation-delay: -4s;
}

.card-3 {
    animation: carouselRotate 12s infinite cubic-bezier(0.25, 1, 0.5, 1);
    animation-delay: -8s;
}

@keyframes carouselRotate {

    /* 0s - 4s: Position A (Left) -> Position B (Center) */
    0% {
        transform: translateX(0) scale(0.85) rotate(-5deg);
        z-index: 1;
        opacity: 0.6;
        filter: blur(2px);
    }

    5%,
    33% {
        transform: translateX(0) scale(0.85) rotate(-5deg);
        z-index: 1;
        opacity: 0.6;
        filter: blur(2px);
    }

    /* Move to Center */
    38%,
    66% {
        transform: translateX(50px) scale(1) rotate(0deg);
        z-index: 10;
        opacity: 1;
        filter: blur(0);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    }

    /* Move to Right */
    71%,
    99% {
        transform: translateX(100px) scale(0.85) rotate(5deg);
        z-index: 1;
        opacity: 0.6;
        filter: blur(2px);
    }

    /* Instant Reset to Left (Behind) */
    100% {
        transform: translateX(0) scale(0.85) rotate(-5deg);
        z-index: 0;
    }
}