:root {
    /* Premium Dark Palette - Night & Calm */
    --bg-dark: #0A1929;
    /* Deep Navy */
    --bg-card: #132F4C;
    /* Lighter Navy for cards */
    --bg-card-hover: #173A5E;

    /* Primary Colors - Trust & Serenity */
    --primary-light: #64B5F6;
    --primary: #2196F3;
    --primary-dark: #0D47A1;

    /* Accent Colors - Warmth & Action (Gold/Amber) */
    --accent-light: #FFECB3;
    --accent: #FFC107;
    --accent-dark: #FFA000;
    --accent-glow: rgba(255, 193, 7, 0.4);

    /* Text Colors */
    --text-main: #ECEFF1;
    /* Off-white for readability */
    --text-muted: #B0BEC5;
    --text-dark: #0A1929;
    /* For buttons/light backgrounds */

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

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px var(--accent-glow);

    /* Gradients */
    --gradient-hero: radial-gradient(circle at top center, #173A5E 0%, #0A1929 70%);
    --gradient-gold: linear-gradient(135deg, #FFC107 0%, #FF6F00 100%);
    --gradient-blue: linear-gradient(135deg, #2196F3 0%, #0D47A1 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: radial-gradient(circle at 50% 0%, #132F4C 0%, #0A1929 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: white;
}

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

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid {
    display: grid;
    gap: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6F00 0%, #FFC107 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--accent-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
}

.btn-secondary:hover {
    background: rgba(100, 181, 246, 0.1);
    color: white;
    border-color: white;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sections */
section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--accent-light);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(180deg, #FFFFFF 0%, #B0BEC5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.vsl-container {
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.cta-box {
    margin-top: var(--spacing-md);
}

.price-tag {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.guarantee-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    opacity: 0.8;
}

/* Bullets Section */
.bullets {
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bullets-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.bullet-item {
    text-align: center;
    padding: var(--spacing-sm);
}

.bullet-item .icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.bullet-item p {
    font-weight: 500;
    color: var(--text-main);
}

.disclaimer {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Problem Section (The Wound) */
.problem {
    background: var(--bg-dark);
}

.problem .content-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.problem h2 {
    margin-bottom: var(--spacing-md);
    color: #EF5350;
    /* Softer red for dark mode */
}

.pain-list {
    margin: var(--spacing-md) 0;
}

.pain-list li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.hope-box {
    background: rgba(33, 150, 243, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
    border-left: 4px solid var(--primary);
}

.hope-box h3 {
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

/* Solution Section (The Mechanism) */
.solution {
    background: var(--bg-dark);
    position: relative;
}

.solution h2 {
    margin-bottom: var(--spacing-sm);
}

.sub-text {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    color: var(--text-muted);
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.step-card {
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.step-card h3 {
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--accent-light);
}

.examples {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.why-different {
    margin-top: var(--spacing-lg);
    background: rgba(33, 150, 243, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.why-different ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

/* Logo */
.logo-img {
    max-width: 180px;
    margin: 0 auto var(--spacing-md);
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Modules Section */
.modules {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #050f19 100%);
}

.modules-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: var(--spacing-lg);
}

.module-item {
    background: rgba(19, 47, 76, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.module-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.module-item h4 {
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.bonuses {
    background: transparent;
    /* Removed card background to let cards pop */
    padding: var(--spacing-lg) 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    margin: 0 auto;
    border: none;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.bonus-card {
    background: linear-gradient(145deg, #5C6BC0 0%, #3949AB 100%);
    /* Blue gradient from reference */
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bonus-image {
    width: 100%;
    max-width: 250px;
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.bonus-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.bonus-price {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.bonus-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.strike {
    text-decoration: line-through;
    font-size: 0.9em;
}

.price-summary {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 2px dashed rgba(255, 255, 255, 0.1);
}

.total-value {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.today-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

/* Testimonials */
.testimonials {
    background: var(--bg-dark);
    overflow: hidden;
    /* Prevent scrollbar from carousel */
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--spacing-md) 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    gap: var(--spacing-md);
}

.carousel-track:hover {
    animation-play-state: paused;
}

.testimonial-img-card {
    flex: 0 0 auto;
    width: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-img-card:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-glow);
}

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

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

    100% {
        transform: translateX(calc(-50% - var(--spacing-md)/2));
        /* Move half width (original set) + half gap correction */
    }
}

/* Who is it for */
.who-is-it {
    background: var(--bg-dark);
}

.two-col {
    grid-template-columns: 1fr 1fr;
}

.card-green {
    background: rgba(10, 30, 20, 0.6);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid #00E676;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-green:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.2);
}

.card-red {
    background: rgba(40, 10, 10, 0.6);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid #FF5252;
    box-shadow: 0 0 20px rgba(255, 82, 82, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-red:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 82, 82, 0.2);
}

.card-green h3 {
    color: #00E676;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.card-red h3 {
    color: #FF5252;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.card-green ul,
.card-red ul {
    margin-top: var(--spacing-sm);
    padding-left: 0;
}

.card-green li,
.card-red li {
    margin-bottom: 1rem;
    list-style-type: none;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.card-green li::before {
    content: '•';
    color: #00E676;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.card-red li::before {
    content: '•';
    color: #FF5252;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

/* Offer Section */
.offer {
    background: var(--bg-dark);
}

/* Pricing Card */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 400px;
    margin: var(--spacing-md) auto;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pricing-header {
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    padding: var(--spacing-lg) var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-gradient {
    position: absolute;
    inset: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 40%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.pricing-content {
    position: relative;
    z-index: 1;
}

.plan-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.plan-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-badge {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    color: white;
    background: linear-gradient(to bottom, #f97316, #ea580c);
    box-shadow: 0 10px 25px rgba(255, 115, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: var(--spacing-md);
    border: none;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 115, 0, 0.4);
}

.pricing-body {
    padding: var(--spacing-md);
}

.price-container {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.old-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.bonus-highlight {
    font-size: 1.1rem;
    color: #00E676;
    /* Green for value/bonus */
    font-weight: 600;
    background: rgba(0, 230, 118, 0.1);
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.price-small {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-large {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    line-height: 1;
}

.guarantee-box {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-seal {
    max-width: 120px;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* FAQ */
.faq {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 800px;
    margin: var(--spacing-md) auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: var(--text-main);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

.toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

/* Footer */
footer {
    background: #050f19;
    color: var(--text-muted);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .hero::before {
        width: 100%;
        height: 40%;
        top: -5%;
        right: -20%;
    }
}