/* ===================================
   DESIGN SYSTEM & VARIABLES
   =================================== */

:root {
    /* Colors */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-neon-green: #CEFF00;
    --color-gray-light: #999999;
    --color-gray-dark: #333333;

    /* Typography */
    --font-primary: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-glow: 0 0 20px rgba(206, 255, 0, 0.3);
    --shadow-glow-hover: 0 0 30px rgba(206, 255, 0, 0.5);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    line-height: 1.6;
}

/* ===================================
   LAYOUT
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) 0 var(--spacing-xs) 0;
    position: relative;
}

/* Animated gradient background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(206, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Social Proof */
/* Limited Time Offer Alert */
.limit-offer-alert {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.limit-offer-alert:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-neon-green);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--color-neon-green);
}

.pulsing-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--color-neon-green);
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    opacity: 0.6;
}

.alert-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.01em;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }

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

.stars {
    color: var(--color-neon-green);
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
}

/* Hero Title */
.hero-title {
    font-size: 2rem;
    /* 32px - mobile */
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.03em;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
        /* 48px - tablet */
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
        /* 56px - desktop */
    }
}



/* Hero Description */
.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2.5rem;
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* ===================================
   VIDEO SHOWCASE CAROUSEL
   =================================== */

.showcase-section {
    padding: var(--spacing-xs) 0 var(--spacing-2xl) 0;
    background: transparent;
}

.showcase-carousel {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* Left fade overlay */
.showcase-carousel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Right fade overlay */
.showcase-carousel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.carousel-track {
    display: flex;
    gap: var(--spacing-xs);
    animation: scroll-left 30s linear infinite;
    will-change: transform;
}



.carousel-video {
    flex: 0 0 auto;
    width: 200px;
    height: 355px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-medium);
    cursor: pointer;
}

.carousel-video:hover {
    transform: scale(1.05);
}

/* ===================================
   PAYMENTS PROOF SECTION
   =================================== */

.payments-proof-section {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.payments-proof-section .section-description {
    text-align: left;
    font-size: 1.3rem;
    max-width: 800px;
    color: var(--color-white);
}


.payments-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-3xl);
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.payments-subtitle p {
    margin-bottom: var(--spacing-md);
}

.payments-subtitle p:last-child {
    margin-bottom: 0;
}

.payments-subtitle strong {
    color: var(--color-white);
    font-weight: 700;
}

.payments-carousel {
    width: 100%;
    max-width: 900px;
    margin: 0 auto var(--spacing-xs) auto;
    overflow: hidden;
    position: relative;
}

/* Fade overlays for payments carousels */
.payments-carousel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.payments-carousel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.payments-track {
    display: flex;
    gap: var(--spacing-xs);
    will-change: transform;
}

/* Row 1 - Scroll Left */
.payments-row-1 .payments-track {
    animation: scroll-left 40s linear infinite;
}

/* Row 2 - Scroll Right */
.payments-row-2 .payments-track {
    animation: scroll-right 45s linear infinite;
}

/* Row 3 - Scroll Left */
.payments-row-3 .payments-track {
    animation: scroll-left 50s linear infinite;
}

.payment-img {
    flex: 0 0 auto;
    width: 270px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-img:hover {
    transform: scale(1.05);
}

/* Keyframe animations */
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .payments-carousel {
        max-width: 100%;
        overflow: hidden;
        /* Ensure overflow is hidden on mobile */
    }

    .payments-track {
        display: flex;
        /* Ensure flex display is maintained */
        gap: var(--spacing-xs);
        will-change: transform;
        /* Ensure animations continue */
    }

    .payment-img {
        width: 180px;
        flex-shrink: 0;
        /* Prevent images from shrinking */
    }

    .payments-carousel::before,
    .payments-carousel::after {
        width: 50px;
    }
}


@media (max-width: 768px) {
    .showcase-carousel {
        max-width: 100%;
        margin: 0;
    }

    .showcase-carousel::before,
    .showcase-carousel::after {
        width: 30px;
    }

    .carousel-video {
        width: 140px;
        height: 250px;
    }
}

/* Auto-scroll animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        /* 6 videos * (200px width + 16px gap) */
        transform: translateX(calc(-1 * (200px * 6 + 1.5rem * 6)));
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(206, 255, 0, 0.3), transparent);
    transition: left var(--transition-slow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(206, 255, 0, 0.2);
}

.cta-button:active {
    transform: translateY(0);
}

.arrow-icon {
    transition: transform var(--transition-medium);
}

.cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

/* ===================================
   PROBLEMS SECTION
   =================================== */

.problems-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: capitalize;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-medium);
    overflow: hidden;
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.option-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: all var(--transition-medium);
}

.option-card:hover .mockup-img {
    opacity: 1;
    transform: scale(1.05);
}

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

.option-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: lowercase;
    margin-bottom: var(--spacing-xs);
}

.option-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.option-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   SOLUTION SECTION
   =================================== */

.solution-section {
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
}

.section-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 auto var(--spacing-sm) auto;
    max-width: 700px;
    text-align: center;
}

.solution-section .cta-button {
    margin-bottom: var(--spacing-3xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-medium);
    text-align: center;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(206, 255, 0, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md) auto;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.feature-icon svg {
    stroke: rgba(255, 255, 255, 0.6);
    transition: stroke var(--transition-medium);
}

.feature-card:hover .feature-icon {
    background: rgba(206, 255, 0, 0.05);
    border-color: rgba(206, 255, 0, 0.3);
}

.feature-card:hover .feature-icon svg {
    stroke: var(--color-neon-green);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.feature-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Badges Row */
.badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-lg) 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.badge-item svg {
    stroke: rgba(255, 255, 255, 0.6);
}

/* Main CTA Section */
.main-cta-section {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.primary-cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0.625rem 3.5rem;
    background: var(--color-neon-green);
    color: var(--color-black);
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(206, 255, 0, 0.3);
    min-width: 320px;
}

.primary-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(206, 255, 0, 0.5);
    background: #DEFF33;
}

.cta-main-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cta-sub-text {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 0.125rem;
}

/* Hero Features Checkmarks */
.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.feature-check {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.social-proof-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.avatar-small {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--color-black);
    margin-left: -8px;
}

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

.proof-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* ===================================
   WHAT HAPPENS SECTION
   =================================== */

/* ===================================
   ZIGZAG FEATURES SECTION
   =================================== */

.what-happens-section {
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.what-happens-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    letter-spacing: -0.01em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Bonuses Cards */
.bonuses-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto var(--spacing-3xl) auto;
    padding: 0 var(--spacing-md);
}

.bonus-card-item {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(94, 255, 0, 0.15);
    border-radius: 20px;
    padding: var(--spacing-xl) var(--spacing-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.bonus-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-neon-green) 0%, rgba(94, 255, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bonus-card-item:hover {
    transform: translateY(-8px);
    border-color: rgba(94, 255, 0, 0.4);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(94, 255, 0, 0.1);
}

.bonus-card-item:hover::before {
    opacity: 1;
}

.bonus-card-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at 30% 30%, rgba(94, 255, 0, 0.15) 0%, rgba(94, 255, 0, 0.05) 50%, transparent 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    border: 1px solid rgba(94, 255, 0, 0.1);
}

.bonus-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 16px rgba(94, 255, 0, 0.3));
    transition: transform 0.3s ease;
}

.bonus-card-item:hover .bonus-icon {
    transform: scale(1.1) rotate(5deg);
}

.bonus-step {
    font-size: 1.1rem;
    color: var(--color-neon-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-sm);
}

.bonus-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-align: left;
}

.bonus-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.bonus-card-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.bonus-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-neon-green);
    font-weight: 700;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .bonuses-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .bonus-card-item {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .bonus-step {
        font-size: 0.85rem;
    }

    .bonus-card-visual {
        aspect-ratio: 2 / 1;
    }

    .bonus-icon {
        font-size: 3rem;
    }

    .bonus-card-title {
        font-size: 1.35rem;
    }

    .bonus-card-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .bonuses-zigzag {
        gap: var(--spacing-2xl);
    }

    .bonus-zigzag-item,
    .bonus-zigzag-item:nth-child(even) {
        flex-direction: column;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .bonus-title {
        font-size: 1.5rem;
    }

    .bonus-list li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .bonus-image {
        order: -1;
    }
}

/* ===================================
   4 PILLARS SECTION
   =================================== */

.four-pillars-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(206, 255, 0, 0.02) 50%, rgba(0, 0, 0, 0) 100%);
    position: relative;
}

.four-pillars-section .section-title {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(206, 255, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pillar-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-primary);
}

.pillar-card:hover .pillar-number {
    color: rgba(206, 255, 0, 0.2);
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

.pillar-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0 auto;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xs);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-family: var(--font-primary);
}

.faq-question:hover {
    color: var(--color-neon-green);
}

.faq-question span {
    flex: 1;
    padding-right: var(--spacing-md);
}

.faq-icon {
    flex-shrink: 0;
    stroke: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-medium);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    stroke: var(--color-neon-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
    padding: 0 var(--spacing-lg);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-md) var(--spacing-lg);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .hero-section {
        min-height: 100svh;
        padding: var(--spacing-2xl) 0;
    }

    .social-proof {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }

    .rating {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: var(--spacing-sm);
    }

    .hero-title br,
    .hero-description br {
        display: none;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .hero-features {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .feature-check {
        font-size: 0.85rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .option-card {
        padding: var(--spacing-lg);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .feature-card {
        padding: var(--spacing-lg);
    }

    .badges-row {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .primary-cta-button {
        padding: 0.75rem 2rem;
    }

    .social-proof-bottom {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

@media (max-width: 480px) {
    .avatar {
        width: 28px;
        height: 28px;
    }

    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-neon {
    color: var(--color-neon-green);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   VALUE STACK SECTION
   =================================== */

.value-stack-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.value-stack-card {
    max-width: 700px;
    margin: 0 auto;
    background: #0a0a0a;
    /* Dark background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    /* Reduced vertical padding */
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    color: var(--color-white);
}

/* Neon Flare Effect at the top */
.value-stack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: radial-gradient(circle at top center, rgba(206, 255, 0, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Thin neon line at top border */
.value-stack-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(206, 255, 0, 0.5), transparent);
}

.stack-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.stack-badge {
    display: inline-block;
    /* Dark glass effect for badge */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-white);
    font-size: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Special glow text for badge text if desired, or simpler white */
.stack-badge i {
    color: var(--color-neon-green);
    margin-right: 8px;
}

.stack-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    /* Very tight gap for compactness */
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.stack-item:last-child {
    border-bottom: none;
}

.stack-name {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stack-value {
    font-size: 0.95rem;
    color: var(--color-white);
    font-weight: 700;
}

.stack-total {
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.total-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 2px;
}

.strikethrough {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
}

.price-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.final-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-neon-yellow);
    /* Neon yellow/green for price pop */
    line-height: 1;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 25px rgba(206, 255, 0, 0.4);
}

.stack-cta {
    width: 100%;
    max-width: 380px;
    margin-bottom: var(--spacing-xs);
    /* Neon Green Button */
    background: linear-gradient(135deg, #CEFF00 0%, #a3cc00 100%);
    box-shadow: 0 0 20px rgba(206, 255, 0, 0.3);
    color: #000000;
    font-weight: 800;
    border: none;
}

.stack-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(206, 255, 0, 0.5);
}

.stack-cta .cta-main-text {
    color: #000000;
}

.stack-cta .cta-sub-text {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.7rem;
}

.guarantee-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--spacing-sm);
}

@media (max-width: 768px) {
    .value-stack-card {
        padding: var(--spacing-lg);
    }

    .stack-item {
        flex-direction: row;
        gap: 0.5rem;
    }

    .stack-name {
        font-size: 0.85rem;
    }

    .final-price {
        font-size: 2.5rem;
    }
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta-section {
    padding: var(--spacing-xl) 0 100px;
    /* Reduced top padding and bottom padding */
    position: relative;
    overflow: hidden;
}

.bottom-flare {
    position: absolute;
    bottom: -150px;
    /* Adjusted to keep glow subtle but visible */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(206, 255, 0, 0.25), transparent 70%);
    /* Neon green flare */
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    /* Reduced gap */
}

.final-cta-btn {
    width: 100%;
    max-width: 500px;
    height: 80px;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    /* Neon Green Gradient matching other buttons */
    background: linear-gradient(135deg, #CEFF00 0%, #a3cc00 100%);
    box-shadow: 0 0 30px rgba(206, 255, 0, 0.4);
    border: none;
}

.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(206, 255, 0, 0.6);
}

.final-cta-btn .cta-main-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
}

.final-cta-btn .cta-sub-text {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.social-proof-pill {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    border-radius: var(--radius-full);
}

.avatars {
    display: flex;
    margin-left: 0.5rem;
}

.proof-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -10px;
    object-fit: cover;
    /* Ensure images don't stretch */
}

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

.proof-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.highlight-text {
    color: #CEFF00;
    /* Neon green highlight text */
    font-weight: 700;
}

/* ===================================
   FOOTER SECTION
   =================================== */

.site-footer {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    /* Reduced padding */
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
    position: relative;
    z-index: 10;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    /* Reduced gap */
    margin-bottom: var(--spacing-lg);
    /* Reduced margin */
    opacity: 0.8;
}

.logo-letter-white {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}

.logo-letter-neon {
    font-size: 1.5rem;
    font-weight: 800;
    color: #CEFF00;
    /* Neon green */
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-top {
    font-size: 0.75rem;
    /* Slightly smaller */
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-white);
}

.logo-bottom {
    font-size: 1.125rem;
    /* Slightly smaller */
    font-weight: 800;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #CEFF00 0%, #a3cc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    /* Reduced gap */
    margin-bottom: var(--spacing-md);
    /* Reduced margin */
}

.footer-link {
    font-size: 0.8rem;
    /* Slightly smaller */
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.65rem;
    /* Smaller text for compact look */
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
    /* Tighter line height */
}

.footer-disclaimer p {
    margin-bottom: 4px;
    /* Very tight margin */
}

.copyright {
    margin-top: var(--spacing-md);
    /* Reduced margin */
    color: rgba(255, 255, 255, 0.3);
}

/* Feature Image Styling */
.feature-img {
    width: 100%;
    aspect-ratio: 16/11;
    /* Match placeholder dimensions */
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.02);
}

/* ===================================
   SECTIONS GRID - CLICKFUNNELS STYLE
   =================================== */

.sections-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 750px;
    margin: 0 auto;
    padding: 0;
}

.section-card {
    background: transparent;
    padding: 0;
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-2px);
}

.section-label-tag {
    display: block;
    background: var(--color-neon-green);
    color: var(--color-black);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: var(--spacing-sm) var(--spacing-xs);
    margin: 0 0 var(--spacing-xl) 0;
    text-align: center;
    line-height: 1.25;
}

.section-label-tag strong {
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    color: var(--color-white);
    font-size: 1.35rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.section-subtitle strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-xl);
    }

    .section-subtitle strong {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
}

.section-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.section-card-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    padding: 0 var(--spacing-xs);
    text-align: left;
}

.section-card-list li {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.section-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-neon-green);
    font-weight: 700;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .sections-grid {
        gap: var(--spacing-3xl);
    }

    .section-label-tag {
        font-size: 1.25rem;
        padding: var(--spacing-sm) 0.5rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-xl);
    }

    .section-card-list {
        padding: 0 0.25rem;
        gap: var(--spacing-xs);
    }

    .section-card-text {
        font-size: 1.35rem;
        padding: 0 0.5rem;
        line-height: 1.5;
        margin-bottom: var(--spacing-lg);
    }

    .section-card-list li {
        font-size: 1.35rem;
        padding-left: 2.25rem;
        line-height: 1.4;
        margin-bottom: 0.125rem;
    }
}

/* ===================================
   RESULTS SECTION - VERTICAL CAROUSEL
   =================================== */

.results-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.results-carousel {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 1000px;
    margin: 0 auto;
    height: 600px;
    position: relative;
    overflow: hidden;
}

/* Top fade overlay */
.results-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Bottom fade overlay */
.results-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.results-column {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.results-track {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    animation: scroll-down 30s linear infinite;
    will-change: transform;
}

/* Reverse animation for column 2 */
.results-column-reverse .results-track {
    animation: scroll-up 30s linear infinite;
}

.result-card {
    break-inside: avoid;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.result-card:hover {
    transform: scale(1.02);
    border-color: rgba(206, 255, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.result-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Scroll down animation */
@keyframes scroll-down {
    0% {
        transform: translateY(0);
    }

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

/* Scroll up animation (reverse) */
@keyframes scroll-up {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .results-carousel {
        gap: var(--spacing-sm);
        height: 400px;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .results-carousel::before,
    .results-carousel::after {
        width: 50px;
    }
}

@media (max-width: 768px) {

    /* Hide carousel on mobile - it breaks the layout */
    .results-section {
        display: none;
    }
}

@media (max-width: 600px) {
    .results-carousel {
        height: 300px;
        padding: 0 var(--spacing-sm);
    }

    .results-column {
        min-width: 200px;
        height: 280px;
    }

    .results-carousel::before,
    .results-carousel::after {
        display: none;
    }
}