:root {
    /* Light Theme - Clean, Professional Sales Page */
    --bg-page: #FAFAFA;
    --bg-section: #ffffff;
    --bg-section-alt: #F5F5F5;
    --bg-card: #ffffff;
    --bg-card-hover: #FAFAFA;
    --bg-dark: #0a0a0f;
    
    /* Brand Colors */
    --accent: #EDB50E;
    --accent-dark: #c99a0c;
    --accent-light: #FFF8E1;
    --cta: #00ABF3;
    --cta-dark: #0088c2;
    --cta-light: #E3F6FD;
    --purple: #7c3aed;
    --purple-dark: #5b21b6;
    --purple-light: #EDE9FE;
    --red: #EB0039;
    --red-light: #FEE2E8;
    --green: #74C82F;
    --green-dark: #5ca025;
    --green-light: #ECFCCB;
    
    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #717171;
    --text-light: #9a9a9a;
    
    /* Borders & Shadows */
    --border: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
}

.v5-sale-offer {
   section h1, section h2, section h3, section h4 {
        font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
        font-weight: 800;
        line-height: 1.2;
        color: var(--text-primary);
    }

    section h1 {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    section h2 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        margin-bottom: 1.5rem;
    }

    section h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    section p {
        margin-bottom: 1.5rem;
    }

    .highlight {
        color: var(--accent-dark);
    }

    section strong {
        color: var(--text-primary);
        font-weight: 700;
    }

    .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 24px;
    }

    section {
        padding: 80px 0;
        background: var(--bg-section);
    }

    .section-alt {
        background: var(--bg-section-alt);
    }

    .section-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--accent-dark);
        background: var(--accent-light);
        padding: 8px 16px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    /* Header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        padding: 12px 0;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    
    .header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }
    
    .header.scrolled .logo {
        color: var(--text-primary);
    }

    .header-inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-weight: 800;
        font-size: 1.1rem;
        color: #ffffff;
        transition: color 0.3s ease;
    }

    .header-cta {
        background: var(--cta);
        color: #fff;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.2s;
        box-shadow: var(--shadow-sm);
    }

    .header-cta:hover {
        background: var(--cta-hover);
    }

    /* VSL Hero - DARK */
    .vsl-hero {
        padding: 60px 0 80px;
        text-align: center;
        background: #0a0a0f;
        position: relative;
        overflow: hidden;
    }
    
    .vsl-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 150px;
        background: linear-gradient(to bottom, transparent 0%, #F5F5F5 100%);
        pointer-events: none;
        z-index: 1;
    }

    .vsl-hero::before {
        content: '';
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 1000px;
        height: 1000px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
        pointer-events: none;
        z-index: 0;
    }
    
    .vsl-hero h1 {
        max-width: 900px;
        margin: 0 auto 1rem;
        color: #ffffff;
        position: relative;
        z-index: 2;
    }
    
    .vsl-hero .hero-subhead {
        color: rgba(255, 255, 255, 0.7) !important;
        position: relative;
        z-index: 2;
    }
    
    .vsl-hero .hero-subtitle {
        position: relative;
        z-index: 2;
    }
    
    .vsl-hero .container {
        position: relative;
        z-index: 2;
    }

    .hero-label {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 20px;
        box-shadow: none;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.7);
        max-width: 550px;
        margin: 0 auto 2rem;
    }

    /* Video Container */
    .video-container {
        max-width: 800px;
        margin: 0 auto 2rem;
        position: relative;
        z-index: 2;
    }

    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 16px;
        background: #1a1a1a;
        border: 3px solid var(--purple);
        box-shadow: var(--shadow-xl), 0 0 40px rgba(124, 58, 237, 0.15);
    }

    .video-wrapper iframe,
    .video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .video-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #2a2a3a 0%, #1a1a28 100%);
        cursor: pointer;
        transition: all 0.3s;
    }

    .video-placeholder:hover {
        background: linear-gradient(135deg, #3a3a4a 0%, #2a2a38 100%);
    }

    .video-placeholder:hover .play-button {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(0, 171, 243, 0.4);
    }

    .play-button {
        width: 80px;
        height: 80px;
        background: var(--cta);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        transition: all 0.3s;
        box-shadow: 0 4px 20px rgba(0, 171, 243, 0.4);
        animation: pulse 2s ease-in-out infinite;
    }

    .play-button svg {
        width: 32px;
        height: 32px;
        fill: #fff;
        margin-left: 4px;
    }

    .video-placeholder p {
        color: rgba(255,255,255,0.7);
        font-size: 14px;
        margin: 0;
    }

    .video-duration {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(0, 0, 0, 0.5);
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 13px;
        color: rgba(255,255,255,0.8);
        margin-top: 12px;
    }

    .sound-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px 16px;
        border-radius: 8px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 1rem;
        box-shadow: none;
    }

    .sound-badge svg {
        width: 18px;
        height: 18px;
        fill: var(--accent);
    }

    /* CTA Wrapper */
    .cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 8px;
        position: relative;
        z-index: 2;
    }

    /* CTA Button */
    .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--cta);
        color: #fff;
        padding: 18px 36px;
        border-radius: 12px;
        text-decoration: none;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 16px;
        transition: all 0.3s;
        box-shadow: 0 4px 24px rgba(0, 171, 243, 0.3);
        border: none;
        cursor: pointer;
    }

    .cta-button:hover {
        background: var(--cta-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0, 171, 243, 0.4);
    }

    .cta-button.large {
        padding: 20px 48px;
        font-size: 18px;
    }
    
    .cta-button.gold {
        background: linear-gradient(135deg, #f5c93a, #EDB50E);
        color: #000;
        box-shadow: 0 4px 24px rgba(237, 181, 14, 0.3);
    }
    
    .cta-button.gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(237, 181, 14, 0.4);
    }


    /* Social Proof - Dark Hero */
    .social-proof {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 32px;
        position: relative;
        z-index: 2;
    }
    
    .text-center {
        text-align: center;
    }

    .avatar-cluster {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid var(--bg-dark);
        background: rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
        color: #ffffff;
        margin-left: -12px;
        overflow:clip;
    }

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

    .avatar.count {
        background: var(--accent);
        color: #000;
        font-size: 12px;
    }

    .join-text {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    .trust-badges {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
    }

    .trust-badges span {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    /* Light section trust badges override */
    .cta-block .trust-badges,
    section:not(.vsl-hero) .trust-badges {
        color: var(--text-muted);
    }

    /* CTA Block */
    .cta-block {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 40px;
        text-align: center;
        margin: 60px 0;
        box-shadow: var(--shadow-md);
    }

    .cta-block .social-proof {
        margin-top: 24px;
    }

    /* Highlight Box */
    .highlight-box {
        background: var(--accent-light);
        border: 1px solid rgba(237, 181, 14, 0.3);
        border-radius: 12px;
        padding: 32px;
        margin: 2rem 0;
    }

    .highlight-box h3 {
        color: var(--accent-dark);
        margin-bottom: 12px;
    }

    .highlight-box p:last-child {
        margin-bottom: 0;
    }

    /* Money Callout */
    .money-callout {
        background: var(--red-light);
        border: 1px solid rgba(235, 0, 57, 0.2);
        border-radius: 12px;
        padding: 40px;
        text-align: center;
        margin: 2.5rem 0;
    }

    .money-callout .amount {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--red);
        display: block;
        margin-bottom: 8px;
    }

    /* Lesson Box */
    .lesson-box {
        background: #ffffff;
        border: 1px solid var(--border);
        border-left: 4px solid var(--accent);
        padding: 24px 28px;
        border-radius: 0 12px 12px 0;
        margin: 1.5rem 0;
        box-shadow: var(--shadow-sm);
    }

    .lesson-box h4 {
        color: var(--accent-dark);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .lesson-box p {
        margin: 0;
        color: var(--text-primary);
        font-size: 1.1rem;
    }

    /* Success Numbers */
    .success-numbers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 2.5rem 0;
    }

    .success-number {
        background: #ffffff;
        border: 1px solid var(--border);
        padding: 32px;
        border-radius: 12px;
        text-align: center;
        box-shadow: var(--shadow-sm);
    }

    .success-number .num {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--cta);
        display: block;
        margin-bottom: 4px;
    }

    .success-number .label {
        font-size: 14px;
        color: var(--text-muted);
    }

    /* Phase Cards */
    .phase-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
        margin: 24px 0;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .phase-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    .phase-card.prepare::before {
        background: var(--red);
    }

    .phase-card.launch::before {
        background: var(--green);
    }

    .phase-card.grow::before {
        background: var(--cta);
    }

    .phase-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .phase-badge.red {
        background: var(--red-light);
        color: var(--red);
    }

    .phase-badge.green {
        background: var(--green-light);
        color: var(--green-dark);
    }

    .phase-badge.blue {
        background: var(--cta-light);
        color: var(--cta);
    }

    .phase-card h3 {
        margin-bottom: 16px;
    }

    .phase-card h4 {
        font-size: 1rem;
        color: var(--accent-dark);
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .phase-card ul {
        list-style: none;
        margin-top: 1rem;
    }

    .phase-card li {
        padding: 10px 0;
        padding-left: 28px;
        position: relative;
        color: var(--text-secondary);
    }

    .phase-card li::before {
        content: "→";
        position: absolute;
        left: 0;
        color: var(--accent-dark);
    }

    /* Testimonials */
    .testimonial-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
        margin: 24px 0;
        box-shadow: var(--shadow-sm);
    }

    .testimonial-quote {
        font-size: 1.15rem;
        font-style: italic;
        color: var(--text-primary);
        margin-bottom: 1.5rem;
        position: relative;
        padding-left: 24px;
        border-left: 3px solid var(--accent);
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .testimonial-avatar {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, var(--accent), var(--accent-dark));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 800;
        font-size: 20px;
    }

    .testimonial-info h4 {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .testimonial-info p {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0;
    }

    .result-tag {
        display: inline-block;
        background: var(--green-light);
        color: var(--green-dark);
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 700;
        margin-top: 8px;
    }

    /* Why Now Grid */
    .reason-grid {
        display: grid;
        gap: 20px;
        margin-top: 2rem;
    }

    .reason-card {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 28px;
        box-shadow: var(--shadow-sm);
    }

    .reason-card h4 {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    .reason-icon {
        font-size: 1.5rem;
    }

    .reason-card p {
        margin: 0;
        color: var(--text-muted);
    }

    /* AI Card Special Styling */
    .reason-card.ai-card {
        border: 2px solid var(--purple);
        background: var(--purple-light);
    }

    .reason-card.ai-card h4 {
        color: var(--purple-dark);
    }

    /* Included Items */
    .included-item {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
        margin: 20px 0;
        box-shadow: var(--shadow-sm);
    }
    
    .included-item-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        border-radius: 12px;
        margin: 20px auto;
        display: block;
        box-shadow: var(--shadow-md);
    }
    
    .included-item-image.book-image {
        max-width: 280px;
    }

    .included-item h4 {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .item-icon {
        font-size: 1.75rem;
    }

    .included-item p {
        color: var(--text-muted);
        margin-bottom: 0;
    }

    /* AI Item Special Styling */
    .included-item.ai-item {
        border: 2px solid var(--purple);
        background: var(--purple-light);
        box-shadow: var(--shadow-md);
    }

    .included-item.ai-item h4 {
        color: var(--purple-dark);
    }

    .workshop-list {
        margin: 20px 0 0;
        padding: 0;
        list-style: none;
    }

    .workshop-list li {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .workshop-list li:last-child {
        border-bottom: none;
    }

    .workshop-num {
        background: var(--accent);
        color: #fff;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 800;
        flex-shrink: 0;
    }

    .workshop-list strong {
        color: var(--text-primary);
    }

    /* Pricing */
    .pricing-section {
        text-align: center;
    }

    .price-card {
        background: #ffffff;
        border: 3px solid var(--accent);
        border-radius: 20px;
        padding: 48px;
        max-width: 500px;
        margin: 0 auto;
        position: relative;
        box-shadow: var(--shadow-xl), 0 0 40px rgba(237, 181, 14, 0.15);
    }

    .price-card::before {
        display: none;
    }

    .price-amount {
        font-size: 5rem;
        font-weight: 900;
        color: var(--text-primary);
        line-height: 1;
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
    }

    .price-amount span {
        font-size: 2.5rem;
        font-weight: 700;
        margin-top: 0.5rem;
    }

    .price-note {
        color: var(--text-muted);
        margin-bottom: 24px;
    }

    .price-includes {
        text-align: left;
        margin: 24px 0;
        padding: 24px;
        background: var(--accent-light);
        border-radius: 12px;
    }

    .price-includes ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .price-includes li {
        padding: 10px 0;
        padding-left: 32px;
        position: relative;
        border-bottom: 1px solid rgba(237, 181, 14, 0.2);
        color: var(--text-secondary);
    }

    .price-includes li:last-child {
        border-bottom: none;
    }

    .price-includes li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--green);
        font-weight: 700;
    }

    /* FAQ Items - Dropdown Style */
    .faq-item {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 12px;
        margin: 12px 0;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
    }

    .faq-question {
        padding: 20px 28px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.2s ease;
    }

    .faq-question:hover {
        background: var(--bg-section-alt);
    }

    .faq-question h4 {
        color: var(--accent-dark);
        font-size: 1.1rem;
        margin: 0;
        flex: 1;
    }

    .faq-question::after {
        content: '+';
        font-size: 1.5rem;
        color: var(--accent-dark);
        font-weight: 300;
        margin-left: 1rem;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
        content: '−';
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 28px;
    }

    .faq-item.active .faq-answer {
        max-height: 1000px;
        padding: 0 28px 20px 28px;
    }

    .faq-answer p {
        margin-bottom: 1rem;
    }

    .faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Why So Cheap */
    .why-cheap {
        max-width: 600px;
        margin: 60px auto 0;
        text-align: left;
    }

    .why-cheap h3 {
        color: var(--accent-dark);
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    /* Guarantee */
    .guarantee-section {
        text-align: center;
    }

    .guarantee-box {
        background: var(--cta-light);
        border: 2px solid var(--cta);
        border-radius: 16px;
        padding: 48px;
        max-width: 600px;
        margin: 0 auto;
        box-shadow: var(--shadow-lg);
    }

    .guarantee-badge {
        font-size: 4rem;
        margin-bottom: 16px;
    }

    .guarantee-list {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0;
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .guarantee-list li {
        padding: 8px 0;
        padding-left: 32px;
        position: relative;
        color: var(--text-secondary);
    }

    .guarantee-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--cta);
        font-weight: 700;
    }

    /* Not For Everyone */
    .disqualify-list, .qualify-list {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0;
    }

    .disqualify-list li, .qualify-list li {
        padding: 12px 0;
        padding-left: 36px;
        position: relative;
    }

    .disqualify-list li::before {
        content: "✗";
        position: absolute;
        left: 0;
        color: var(--red);
        font-weight: 700;
        font-size: 1.2rem;
    }

    .qualify-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--cta);
        font-weight: 700;
        font-size: 1.2rem;
    }

    /* Choice Cards */
    .choice-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin: 2rem 0;
    }

    .choice-card {
        padding: 32px;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
    }

    .choice-card h3 {
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .choice-card p:last-child {
        margin-bottom: 0;
    }

    .option-a {
        background: #ffffff;
        border: 1px solid var(--border);
    }

    .option-a h3 {
        color: var(--text-muted);
    }

    .option-b {
        background: var(--green-light);
        border: 2px solid var(--green);
    }

    .option-b h3 {
        color: var(--green-dark);
    }

    /* Seven Days */
    .seven-days {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
        margin-top: 2rem;
        box-shadow: var(--shadow-sm);
    }

    .seven-days h3 {
        color: var(--accent-dark);
        margin-bottom: 1rem;
    }

    .seven-days ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
    }

    .seven-days li {
        padding: 8px 0;
        padding-left: 32px;
        position: relative;
    }

    .seven-days li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--green);
        font-weight: 700;
    }

    /* Path Summary */
    .path-summary {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 2rem 0;
    }

    .path-item {
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 24px 28px;
        box-shadow: var(--shadow-sm);
    }

    .path-item p {
        margin: 0;
        color: var(--text-secondary);
    }

    .path-phase {
        display: inline-block;
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 6px 14px;
        border-radius: 6px;
        margin-bottom: 12px;
    }

    .path-phase.prepare {
        background: var(--red-light);
        color: var(--red);
    }

    .path-phase.launch {
        background: var(--green-light);
        color: var(--green-dark);
    }

    .path-phase.grow {
        background: var(--cta-light);
        color: var(--cta);
    }

    /* Footer CTA */
    .footer-cta {
        background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
        text-align: center;
        padding: 100px 0;
        position: relative;
    }

    .footer-cta::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 171, 243, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    /* PS */
    .ps-section {
        background: #ffffff;
        border-top: 1px solid var(--border);
        padding: 40px 0;
    }

    .ps-text {
        font-size: 15px;
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    /* Footer */
    footer {
        background: #F5F5F5;
        border-top: 1px solid var(--border);
        padding: 40px 0;
        text-align: center;
    }

    footer p {
        font-size: 13px;
        color: var(--text-muted);
        margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        section {
            padding: 60px 0;
        }

        .vsl-hero {
            padding: 50px 0 50px;
        }

        .success-numbers {
            grid-template-columns: 1fr;
        }

        .choice-grid {
            grid-template-columns: 1fr;
        }
        
        .phase-visual-grid {
            grid-template-columns: 1fr !important;
            gap: 30px !important;
        }
        
        /* Fear handling grid */
        section > .container > div[style*="grid-template-columns: repeat(2"] {
            grid-template-columns: 1fr !important;
        }
        
        /* Case studies grid */
        section > .container > div[style*="grid-template-columns: repeat(3"] {
            grid-template-columns: 1fr !important;
        }
        
        .fear-grid {
            grid-template-columns: 1fr !important;
        }
        
        .case-grid {
            grid-template-columns: 1fr !important;
        }
        
        .timeline-container {
            margin-left: -20px;
            margin-right: -20px;
            padding-left: 20px;
            padding-right: 20px;
        }
        
        .timeline-line {
            left: 20px !important;
            right: 20px !important;
            width: calc(700px - 40px) !important;
        }

        .price-card {
            padding: 32px 24px;
        }

        .price-amount {
            font-size: 4rem;
        }

        .cta-block {
            padding: 32px 24px;
        }

        .trust-badges {
            gap: 16px;
        }

        .play-button {
            width: 64px;
            height: 64px;
        }

        .play-button svg {
            width: 24px;
            height: 24px;
        }
        
        .income-streams-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 0 30px var(--cta-glow);
        }
        50% {
            box-shadow: 0 0 50px var(--cta-glow);
        }
    }

    .phase-card, .testimonial-card, .included-item, .reason-card {
        animation: fadeInUp 0.6s ease forwards;
    }
    
    /* Reveal Button - Dark Hero */
    .reveal-button {
        display: inline-block;
        margin-top: 2rem;
        padding: 16px 40px;
        background: transparent;
        border: 2px solid var(--accent);
        color: var(--accent);
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: inherit;
        position: relative;
        z-index: 2;
    }
    
    .reveal-button:hover {
        background: var(--accent);
        color: var(--bg-dark);
    }
    
    .reveal-button span {
        display: inline-block;
        animation: bounce 1.5s ease infinite;
    }
    
    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(5px); }
    }
}