/* 
   === DESIGN SYSTEM & VARIABLES ===
*/
:root {
    /* Colors */
    --bg-ultra-dark: #050a14;
    --bg-card: #0d1520;
    --bg-card-glass: rgba(13, 21, 32, 0.7);

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;

    --accent-gold: #FFB800;
    --accent-gold-light: #ffd666;
    --accent-gold-dim: rgba(255, 184, 0, 0.1);

    /* Typography */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;

    /* Spacing */
    --container-width: 1200px;
}

/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-ultra-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* UTILITIES */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: var(--accent-gold);
}

.text-gradient {
    background: linear-gradient(135deg, #FFB800 0%, #FFF5D1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ANIMATIONS DEFINITIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 184, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* === SECTION 1: HERO === */
/* === SECTION 1: HERO === */
/* HERO SECTION BACKGROUND & SIZING */
.hero-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 130px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, #1a2333 0%, #050a14 70%);
    overflow: hidden;
}

/* Subtle Glow behind text */
.hero-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    text-align: left;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* TYPOGRAPHY REFINEMENTS */
.hero-title {
    font-family: var(--font-display);
    /* Fluid typography: 3rem mobile -> 5.5rem desktop */
    font-size: clamp(3rem, 5vw + 1rem, 5.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    min-height: auto;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

/* BRAND NAME */
.hero-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.hero-brand i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* BADGE STRETCHED */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.4);
    color: var(--accent-gold);
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 32px;
    text-transform: uppercase;
    min-width: 180px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.pulse-icon {
    animation: pulse-glow 2s infinite;
}

.typing-target {
    color: #fff;
}

.typing-cursor {
    color: var(--accent-gold);
    animation: blink 0.7s infinite;
}

/* BUTTON */
.hero-cta-wrapper {
    width: 100%;
    max-width: 480px;
}

.cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 24px 32px;
    background: var(--accent-gold);
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: transform 0.25s ease-out, background-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
    text-transform: uppercase;
    border: none;
}

.cta-button:hover {
    transform: scale(1.03);
    background-color: #ffc107;
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
    filter: brightness(1.1);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Center image in its half */
    position: relative;
    min-height: 500px;
    align-items: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* Increased by ~20% (from 420px) */
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

/* ... existing styles ... */

/* SCROLL HINT (DESCUBRA COMO) */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

/* RESPONSIVE SCROLL HINT OVERRIDE */
@media (max-width: 992px) {
    .scroll-hint {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
        margin-bottom: -40px;
        /* Pull next section slightly or just sit there */
        width: 100%;
    }

    .hero-section {
        padding-bottom: 60px;
        /* Adjust padding for relative hint */
    }
}

.typing-target {
    color: #fff;
}

.typing-cursor {
    color: var(--accent-gold);
    animation: blink 0.7s infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* BRAND NAME */
.hero-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.hero-brand i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* BADGE STRETCHED */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 32px;
    text-transform: uppercase;
    min-width: 200px;
    text-align: center;
}

.pulse-icon {
    animation: pulse-glow 2s infinite;
}

/* BUTTON STRETCHED */
.hero-cta-wrapper {
    width: 100%;
    max-width: 480px;
}

.cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 24px 40px;
    background: var(--accent-gold);
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 184, 0, 0.5);
    background-color: var(--accent-gold-light);
}

/* HERO VISUAL */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 500px;
    align-items: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* Increased from 420px */
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

/* ... */

/* RESPONSIVE */
@media (max-width: 992px) {
    /* ... existing responsive styles ... */

    .scroll-hint {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 50px;
        margin-bottom: 20px;
        width: 100%;
    }

    .hero-section {
        padding-bottom: 40px;
    }
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    z-index: 10;
}

.overlay-brand {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 0.875rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.overlay-text {
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-section {
        padding-top: 100px;
        flex-direction: column;
        height: auto;
        display: block;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: 2.25rem;
        /* ~36px */
    }

    .hero-description {
        margin: 0 auto 30px auto;
        font-size: 1rem;
        /* 16px */
    }

    .hero-subtitle {
        font-size: 1.125rem;
        /* 18px */
    }

    .hero-badge {
        margin-bottom: 20px;
        width: auto;
        min-width: 60%;
        padding: 8px 16px;
    }

    .cta-button {
        font-size: 1.125rem;
        /* 18px */
        padding: 16px 24px;
    }

    .hero-brand {
        justify-content: center;
        /* Center brand on mobile */
    }

    .hero-visual {
        justify-content: center;
        width: 100%;
        min-height: 400px;
        /* Ensure height for image */
        margin-top: 40px;
        display: flex;
        /* Force display */
    }

    .hero-card {
        max-width: 340px;
        margin: 0 auto;
    }

    .hero-cta-wrapper {
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* MARQUEE */
.marquee-top {
    position: absolute;
    top: 0;
    width: 100%;
    background: var(--bg-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    overflow: hidden;
    z-index: 10;
}

.marquee-content {
    display: flex;
    width: 200%;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    white-space: nowrap;
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 50px;
}

@keyframes blink {

    0%,
    100% {
        border-color: transparent;
        opacity: 1;
    }

    50% {
        border-color: var(--accent-gold);
        opacity: 0;
    }
}

/* SCROLL HINT (DESCUBRA COMO) */
.scroll-hint {
    position: absolute;
    bottom: 20px;
    /* Adjusted for mobile space */
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    pointer-events: none;
    /* Allow clicking through if needed */
}

.hint-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-family: var(--font-accent);
    opacity: 0.8;
}

.bounce-icon {
    color: var(--accent-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* === UTILITIES FOR SECTIONS === */
.section-padding {
    padding: 100px 20px;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-secondary);
}

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #fff;
}

.text-gold {
    color: var(--accent-gold);
}

.section-sub {
    font-size: 1.125rem;
    font-weight: 400;
}

.section-micro {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
    margin-top: 8px;
    color: var(--text-secondary);
}

/* === SECTION 2: EXCLUSIVE CONDITION === */
.exclusive-card {
    max-width: 500px;
    margin: 0 auto;
    background: #0b0f19;
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.1);
    background-image: radial-gradient(circle at top right, rgba(255, 184, 0, 0.05), transparent 40%);
}

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-gold);
    color: #000;
    font-weight: 800;
    padding: 12px 24px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 20px;
    font-size: 0.9rem;
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.exclusive-card .section-title {
    font-size: 2.25rem;
    /* Adjusted for card scale */
    margin-top: 20px;
    margin-bottom: 30px;
}

.exclusive-card .section-copy {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.exclusive-card .section-copy strong {
    font-weight: 800;
    color: var(--accent-gold);
}

.exclusive-card .section-sub {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 40px;
    opacity: 0.6;
}

.cta-button.full-width {
    width: 100%;
    display: block;
    padding: 24px;
    font-size: 1.125rem;
}

/* === SECTION 3: SOCIAL PROOF === */
.proof-section .section-header {
    margin-bottom: 60px;
}

.dashboards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* FLIP CARD STYLES */
.dashboard-item {
    background: transparent;
    perspective: 1000px;
    /* Removed large fixed height, using aspect ratio instead */
    aspect-ratio: 16/10;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* Inner Container - The one that flips */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border-radius: 16px;
}

/* Trigger flip on CLICK (via JS class) */
.dashboard-item.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* Front and Back Faces */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 184, 0, 0.1);
    top: 0;
    left: 0;
    cursor: pointer;
}

/* FRONT FACE: IMAGE */
.flip-card-front {
    background: #1a2333;
    /* Match page theme instead of black */
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-img-front {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s ease;
    background: transparent;
    /* No black bars */
}

/* Removed hover scale */
.dashboard-item:hover .metric-img-front {
    filter: brightness(1);
}

.front-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 35, 51, 0.9);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* BACK FACE: DETAILS */
/* BACK FACE: DETAILS */
.flip-card-back {
    background: #1a2333;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center horizontally */
    padding: 20px 16px;
    /* Reduced vertical padding to prevent cut-off */
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(255, 184, 0, 0.1);
}

/* Hide old elements if they exist in cache */
.metric-img-container,
.metric-content {
    display: none;
}

/* METRIC CARD STYLES */
.metric-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    /* Prevent title wrapping */
}

.metric-header i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.metric-value {
    font-family: var(--font-accent);
    font-size: 2rem;
    /* Adjusted size */
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.1;
    text-align: center;
}

.metric-conversion {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
    opacity: 0.8;
}

.metric-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.metric-trend.text-gold {
    background: rgba(255, 184, 0, 0.1);
    color: var(--accent-gold);
}

.metric-trend.text-green {
    color: #10b981;
}

.metric-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
    width: 100%;
    text-align: center;
}

.img-placeholder {
    display: none;
    /* Hide old placeholder styles if present */
}

.center-cta {
    text-align: center;
}

/* === SECTION 4: MODULES === */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--accent-gold-dim);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.module-number {
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.1;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-accent);
    color: var(--accent-gold);
}

.module-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-display);
    margin-bottom: 12px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.module-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.module-footer {
    font-size: 0.875rem;
    font-style: italic;
    color: #eab308;
    position: relative;
    z-index: 1;
}

.bonus-card {
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.method-bonus-highlight {
    background: linear-gradient(145deg, rgba(26, 35, 51, 1), rgba(16, 20, 28, 1));
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.1);
    transform: translateY(-5px);
    /* Slightly elevated by default */
}

.method-bonus-highlight:hover {
    box-shadow: 0 10px 40px rgba(255, 184, 0, 0.2);
    border-color: #ffd700;
}

.method-bonus-highlight h3 {
    color: #fff;
}

.card-badge-sm {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.bonus-icon {
    font-size: 2.5rem;
    /* Larger icon */
    margin-bottom: 12px;
    color: var(--accent-gold);
    display: inline-block;
}

/* === SECTION 5: DIFFERENTIAL === */
.differential-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.diff-list {
    margin-top: 40px;
}

.diff-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    cursor: default;
}

/* Hover Effect for Differential Items */
.diff-list li:hover strong {
    color: var(--accent-gold);
}

.diff-list li:hover .check-icon {
    border-color: var(--accent-gold);
    background: rgba(255, 184, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.2);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.check-icon i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.diff-list strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

/* ... existing styles ... */

.bonus-card:hover {
    border-color: var(--accent-gold);
    /* Full gold border on hover */
    background: #0f1420;
    transform: translateY(-5px);
}

.bonus-card.highlight-border {
    /* Kept just in case, but user wants it removed from default view */
    border-color: var(--accent-gold);
}

.diff-list span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 365 CIRCLE VISUAL */
.diff-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.diff-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.1);
    /* Reduced static border opacity */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.02) 0%, transparent 70%);
}

/* Neon Rotation Effect */
.diff-circle::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 3px;
    /* Thickness of the glow ring */
    background: conic-gradient(from 0deg, transparent 40%, rgba(255, 184, 0, 0.1), var(--accent-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin 3s linear infinite;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.diff-number {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-gold);
    font-family: var(--font-accent);
}

.diff-label {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #fff;
    /* Removed text-transform: uppercase to respect specific casing */
    margin-top: 10px;
    text-align: center;
}

.rocket-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
    z-index: 2;
}

/* RESPONSIVE DIFFERENTIAL */
@media (max-width: 992px) {
    .differential-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .diff-circle {
        width: 300px;
        height: 300px;
    }

    .diff-number {
        font-size: 6rem;
    }

    .rocket-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: 30px;
        right: 30px;
    }
}

/* === SECTION 6: BONUSES === */
.bonus-section .section-header {
    text-align: left;
    margin-bottom: 50px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns like reference */
    gap: 20px;
}

.bonus-card {
    background: #0b0f19;
    /* Very dark blue/black */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bonus-card:hover {
    border-color: rgba(255, 184, 0, 0.5);
    background: #0f1420;
}

.bonus-card.highlight-border {
    border-color: var(--accent-gold);
    /* Yellow border for specific card */
}

.bonus-icon-ref {
    font-size: 1.75rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.bonus-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .bonus-section .section-header {
        text-align: center;
    }
}

/* === SECTION 7: TRANSPARENCY === */
.transparency-card {
    border: 1px solid rgba(239, 68, 68, 0.3);
    /* Subtle red warning */
    background: rgba(239, 68, 68, 0.05);
    padding: 40px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.warn-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.transparency-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.transparency-copy {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.transparency-sub {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* === SECTION 8: BIO === */
.bio-visual {
    margin: 40px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bio-img-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--accent-gold);
    margin-bottom: 20px;
}

.bio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-badge {
    background: var(--bg-card);
    border: 1px solid var(--accent-gold);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: -30px;
    z-index: 2;
}

.bio-story {
    max-width: 800px;
    margin: 30px auto;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.bio-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.bio-stat {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-gold);
}

/* === SECTION 9: INVESTMENT === */
.investment-section {
    background: radial-gradient(circle at center, rgba(255, 184, 0, 0.1), transparent 70%);
}

.checkout-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--bg-card-glass);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 100px rgba(255, 184, 0, 0.1);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.checkout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFB800, transparent);
    animation: marquee 2s linear infinite;
    /* Reuse animation logic if desired or make simple */
}

.main-price {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-accent);
    margin: 20px 0 0;
}

.price-installment {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.card-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.info-item i {
    color: var(--accent-gold);
}

.mega-cta {
    display: block;
    width: 100%;
    margin-bottom: 24px;
    font-size: 1.25rem;
    padding: 24px;
}

.payment-badges span {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0 4px;
}

.secure-badge {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* === SECTION 10: FAQ === */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 24px 0;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 20px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === SECTION 11: FINAL CTA === */
.final-cta-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-ultra-dark) 0%, #0d1520 100%);
}

.final-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.final-copy {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.final-button {
    font-size: 1.5rem;
    padding: 24px 60px;
}

.final-sub {
    margin-top: 24px;
    font-weight: 600;
}

.marquee-bottom {
    margin-top: 80px;
    background: var(--bg-card);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content-reverse {
    display: flex;
    width: 200%;
    animation: marquee 30s linear infinite reverse;
}

.marquee-content-reverse span {
    white-space: nowrap;
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 50px;
}

/* === FOOTER === */
.main-footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.legal-links a {
    margin-left: 20px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--accent-gold);
}

/* === STICKY CTA === */
.sticky-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
    overflow: hidden;
    white-space: nowrap;
}

.sticky-text {
    width: 0;
    opacity: 0;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 0;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    width: 220px;
}

.sticky-cta:hover .sticky-text {
    width: auto;
    opacity: 1;
    margin-left: 10px;
}

/* RESPONSIVE FINAL */
@media (max-width: 768px) {
    .final-title {
        font-size: 2.5rem;
    }

    .investment-section .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-links a {
        margin: 0 10px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .main-price {
        font-size: 3.5rem;
    }
}

/* === RESPONSIVE FIXES (OVERRIDES) === */
@media (max-width: 992px) {
    .scroll-hint {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        /* Equal spacing above and below: 40px */
        margin-top: 40px;
        margin-bottom: 0px;
        /* Padding of next section handles the rest, but we removed padding-bottom from hero */
        padding-bottom: 40px;
        /* To mimic margin but ensure it's part of the flow */
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-section {
        padding-bottom: 0px;
        /* Remove padding so hint margin controls exact spacing */
        min-height: auto;
    }

    /* Ensure the next section starts closer */
    .exclusive-section {
        padding-top: 40px !important;
        /* Force reduced padding on mobile */
    }
}

/* === MID-PAGE MARQUEE STYLES === */
.marquee-mid {
    background: #000;
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
    margin-top: 0;
}

.marquee-mid .marquee-content {
    display: flex;
    gap: 40px;
    /* Space between repeated items */
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-mid span {
    color: #fff;
    font-size: 1.5rem;
    /* Larger than top marquee */
    font-weight: 800;
    /* Bold */
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-mid .text-stroke {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-gold);
}

/* === SECTION DIVIDER === */
.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 40px 0;
    opacity: 0.6;
}

/* === PROOF TEXT === */
.proof-text {
    font-size: 16px;
    color: #94a3b8;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 40px auto;
    display: block;
    padding: 0 20px;
    /* Ensure 20px padding on mobile */
}

/* === MOBILE SPACING OPTIMIZATION === */
@media (max-width: 992px) {
    .section-padding {
        padding: 40px 20px !important;
        /* Force reduced padding */
    }

    .section-title {
        margin-bottom: 24px;
        /* Tighter title spacing */
    }

    .section-header {
        margin-bottom: 30px;
        /* Reduced header spacing */
    }

    /* Remove gap between Proof and Modules sections */
    .proof-section {
        padding-bottom: 0 !important;
    }

    .modules-section {
        padding-top: 100px !important;
        margin-top: 0 !important;
        /* Increased spacing for visual separation */
    }

    /* Aggressively remove internal spacing at the boundary */
    .proof-section .center-cta {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .modules-section .section-header {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Mobile-specific proof text spacing */
    .proof-text {
        margin: 24px auto !important;
    }
}

/* === MODIFIED: UNIFIED OFFER GRID === */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

/* Ensure consistent height for cards in grid */
.offer-grid .glass-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exclusive-card .exclusive-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* On desktop, remove default section margins since they are inside grid */
@media (min-width: 993px) {
    .offer-grid .glass-card {
        margin-bottom: 0;
    }
}

/* Mobile Stack: Exclusive First (Top), Investment Second (Bottom) */
@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Just to be safe, though HTML order usually handles stacking naturally */
    .offer-grid .exclusive-card {
        order: 1;
    }

    .offer-grid .checkout-card {
        order: 2;
    }
}