:root {
    /* Golden Yellow - Energy & Warmth */
    --golden: #febf00;
    --golden-light: #fcd34d;
    --golden-lighter: #fef3c7;

    /* Cream/Off-white - Approachability & Calm */
    --cream: #efe3d4;
    --cream-light: #f5f0e8;
    --cream-lighter: #faf8f5;

    /* Vibrant Blue - Trust & Intelligence */
    --blue: #4a71f6;
    --blue-dark: #3b5fd4;
    --blue-light: #6b8eff;

    /* Dark - Sophistication & Grounding */
    --dark: #000001;
    --dark-80: #1a1a1a;
    --dark-60: #4d4d4d;
    --dark-40: #808080;
    --dark-blue: #1A1F3A;

    /* Neutral grays derived from palette */
    --gray-200: #e8e2d5;
    --gray-300: #d4cbc0;
    --gray-400: #bfb6a8;

    /* Semantics */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Backgrounds */
    --bg-primary: #faf8f5;
    --bg-secondary: #f5f0e8;
    --bg-tertiary: #efe3d4;
    --bg: #faf8f5;

    /* Text */
    --text-primary: #000001;
    --text-secondary: #4d4d4d;
    --text-tertiary: #808080;
    --text: #000001;
    --text-light: #4d4d4d;

    /* Borders */
    --border-color: #d4cbc0;
    --border-light: #e8e2d5;
    --border: #d4cbc0;

    /* Legacy mappings for compatibility */
    --primary: #4a71f6;
    --primary-dark: #3b5fd4;
    --accent: #febf00;
    --accent-dark: #fcc200;
    --white: #FFFFFF;
    --shadow: rgba(74, 113, 246, 0.1);
    --shadow-strong: rgba(74, 113, 246, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Prompt', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.landing-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    background: var(--bg-secondary);
}

.landing-hero {
    max-width: 720px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 56px 48px;
    box-shadow: 0 24px 60px rgba(74, 113, 246, 0.15);
}

.landing-hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    color: var(--dark);
    margin-bottom: 16px;
}

.landing-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

.site-header {
    background: var(--cream-light);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.site-logo {
    height: 45px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--blue);
}

.nav-button {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    background: var(--golden);
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-button:hover {
    background: var(--golden-light);
    transform: translateY(-1px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    padding: 10px 20px;
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 24px;
    text-transform: none;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.hero-headline {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.accent-text {
    color: var(--dark);
    position: relative;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: var(--golden);
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
}

.hero-subheadline {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Prompt', sans-serif;
}

.cta-primary {
    background: var(--golden);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(254, 191, 0, 0.25);
    animation: fadeInUp 0.6s ease 0.3s forwards, pulse 2s ease-in-out 1s infinite;
    opacity: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.cta-primary:hover {
    background: var(--golden-light);
    box-shadow: 0 12px 35px rgba(254, 191, 0, 0.35);
    transform: translateY(-2px);
}

.cta-primary svg {
    transition: transform 0.3s ease;
}

.cta-primary:hover svg {
    transform: translateX(4px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.trust-item {
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-1 {
    width: 280px;
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    width: 180px;
    top: 150px;
    right: 200px;
    animation-delay: 0.5s;
}

.card-3 {
    width: 140px;
    top: 280px;
    right: 50px;
    background: var(--golden);
    color: var(--dark);
    animation-delay: 1s;
}

.card-header {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.progress-bar {
    height: 8px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    width: 100%;
    background: var(--golden);
    animation: fillProgress 2s ease forwards;
}

@keyframes fillProgress {
    from { width: 0; }
    to { width: 100%; }
}

.card-status {
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
}

.check-icon {
    width: 40px;
    height: 40px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-text {
    font-weight: 700;
    color: var(--dark);
}

.card-time {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
}

section {
    padding: 20px 24px;
}

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

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: var(--blue);
    position: relative;
}

.dream-outcome {
    background: var(--bg-primary);
}

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

.dream-item {
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 2px 8px rgba(0, 0, 1, 0.05);
}

.dream-item.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.dream-item:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 1, 0.08);
}

.dream-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.dream-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.dream-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.problem {
    background: var(--dark);
    color: var(--white);
}

.problem h2 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.problem-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
}

.problem-item.visible {
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.problem-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--golden);
    font-family: 'Prompt', sans-serif;
    line-height: 1;
    min-width: 80px;
}

.problem-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.problem-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.problem-solution {
    text-align: center;
    padding: 60px 40px;
    background: rgba(74, 113, 246, 0.1);
    border-radius: 1.5rem;
    border: 2px solid var(--blue);
}

.problem-insight {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
}

.mechanism {
    background: var(--bg-secondary);
}

.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.mechanism-card {
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 1, 0.05);
}

.mechanism-card.visible {
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mechanism-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mechanism-card:hover::before {
    transform: scaleX(1);
}

.mechanism-card:hover {
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(0, 0, 1, 0.08);
    transform: translateY(-4px);
}

.mechanism-step {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.mechanism-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.mechanism-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.outcome {
    background: var(--bg-primary);
}

.outcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.outcome h2 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.outcome-intro {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.outcome-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.outcome-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 18px;
    color: var(--text);
    opacity: 0;
    transform: translateX(-20px);
}

.outcome-list li.visible {
    animation: slideInRight 0.5s ease forwards;
}

.check-mark {
    flex-shrink: 0;
    margin-top: 2px;
}

.browser-mockup {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.browser-header {
    background: #E2E8F0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #CBD5E0;
}

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.browser-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-line {
    height: 12px;
    background: var(--border);
    border-radius: 6px;
}

.mockup-line.long { width: 100%; }
.mockup-line.medium { width: 70%; }
.mockup-line.short { width: 40%; }

.mockup-box {
    height: 80px;
    background: rgba(74, 113, 246, 0.1);
    border-radius: 12px;
    margin: 16px 0;
}

.outcome-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.outcome-url-bar {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.outcome-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-light);
}

.value-stack {
    background: var(--bg-secondary);
}

.value-items {
    max-width: 900px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 2px 4px rgba(0, 0, 1, 0.05);
}

.value-item.visible {
    animation: fadeInUp 0.5s ease forwards;
}

.value-item:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 24px rgba(0, 0, 1, 0.08);
    transform: translateY(-4px);
}

.value-item.bonus {
    position: relative;
    border-color: var(--golden);
    background: rgba(254, 191, 0, 0.05);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--golden);
    color: var(--dark);
    padding: 4px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.value-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.value-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
    margin-left: 24px;
}

.value-total {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background: var(--dark);
    border-radius: 1.5rem;
    text-align: center;
}

.value-calculation {
    margin-bottom: 32px;
}

.total-value {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.total-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.total-amount {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.strikethrough {
    position: relative;
}

.strikethrough::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden);
    transform: rotate(-5deg);
}

.today-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.today-label {
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
}

.today-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--golden);
    font-family: 'Prompt', sans-serif;
}

/* Choices Section - Cleaner Journey Design */
.choices-section {
    background: var(--bg-primary);
    position: relative;
}

.choices-header {
    text-align: center;
    margin-bottom: 60px;
}

.choices-header h2 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.choices-intro {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}

.choices-journey {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.choice-item {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 36px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.choice-item.visible {
    animation: scaleIn 0.6s ease forwards;
}

.choice-flawed {
    border: 2px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.choice-flawed:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.choice-winner {
    background: linear-gradient(135deg,
        rgba(254, 191, 0, 0.15) 0%,
        rgba(254, 191, 0, 0.05) 100%
    );
    border: 3px solid var(--golden);
    box-shadow: 0 20px 60px rgba(254, 191, 0, 0.25);
    padding: 40px;
}

.choice-winner:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 30px 80px rgba(254, 191, 0, 0.35);
}

.winner-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--golden);
    color: var(--dark);
    padding: 8px 28px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(254, 191, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.choice-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Prompt', sans-serif;
    background: var(--bg-secondary);
    color: var(--text-light);
    margin-bottom: 20px;
}

.choice-number-golden {
    background: var(--golden);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(254, 191, 0, 0.3);
    width: 56px;
    height: 56px;
    font-size: 32px;
}

.choice-content {
    width: 100%;
}

.choice-title {
    margin-bottom: 20px;
}

.choice-title h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.choice-promise {
    display: block;
    font-size: 18px;
    color: var(--text-light);
    font-style: italic;
}

.choice-tagline {
    display: block;
    font-size: 20px;
    color: var(--dark);
    line-height: 1.6;
    margin-top: 4px;
}

.choice-tagline strong {
    color: var(--golden);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--golden);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.choice-reality {
    margin-top: 24px;
    padding: 20px 24px;
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid var(--error);
    border-radius: 8px;
}

.reality-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--error);
    margin-bottom: 12px;
}

.reality-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reality-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 17px;
    color: var(--text);
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.reality-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}

.choice-benefits {
    margin-top: 24px;
    padding: 24px;
    background: rgba(16, 185, 129, 0.05);
    border-left: 4px solid var(--success);
    border-radius: 8px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.6;
}

.benefit-icon {
    color: var(--success);
    flex-shrink: 0;
}

.choice-verdict {
    display: none;
}

@media (max-width: 1024px) {
    .choices-journey {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .choices-intro {
        font-size: 26px;
    }

    .choice-item {
        padding: 32px 24px;
        min-height: auto;
    }

    .choice-winner {
        padding: 36px 24px;
    }

    .choice-number {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .choice-number-golden {
        width: 48px;
        height: 48px;
        font-size: 28px;
    }

    .choice-title h3 {
        font-size: 22px;
    }

    .choice-tagline {
        font-size: 18px;
    }

    .benefits-list li {
        font-size: 17px;
    }

    .reality-list li {
        font-size: 16px;
    }
}

.who-its-for {
    background: var(--bg-secondary);
}

.for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.for-column h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 32px;
}

.for-column.not-for h2 {
    color: var(--text-light);
}

.for-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.for-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 17px;
    line-height: 1.7;
    padding-left: 32px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
}

.for-list li.visible {
    animation: slideInRight 0.5s ease forwards;
}

.for-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--golden);
    font-weight: 700;
    font-size: 20px;
}

.for-column.not-for .for-list li::before {
    content: '×';
    color: var(--text-light);
}

.final-cta {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(74, 113, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(254, 191, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.final-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 48px;
}

.final-summary {
    text-align: center;
    margin: 48px 0;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.5;
}

.summary-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.summary-option {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.summary-option strong {
    color: var(--golden);
    font-weight: 700;
    margin-right: 8px;
}

.summary-question {
    font-size: 28px;
    font-weight: 700;
    color: var(--golden);
    margin: 0 0 32px 0;
    font-family: 'Prompt', sans-serif;
}

.final-summary .cta-button {
    margin: 0 auto 24px auto;
}

.final-summary .final-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.final-cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 48px 40px;
    margin-bottom: 40px;
}

.summary-section {
    text-align: center;
    margin: 32px 0;
    padding: 32px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-section .summary-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.5;
}

.summary-section .summary-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.summary-section .summary-option {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.summary-section .summary-option strong {
    color: var(--golden);
    font-weight: 700;
    margin-right: 8px;
}

.summary-section .summary-question {
    font-size: 26px;
    font-weight: 700;
    color: var(--golden);
    margin: 0;
    font-family: 'Prompt', sans-serif;
}

.final-offer {
    margin-bottom: 32px;
}

.offer-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.offer-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.offer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.offer-price-original {
    font-size: 36px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Prompt', sans-serif;
    line-height: 1;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.offer-price-amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--golden);
    font-family: 'Prompt', sans-serif;
    line-height: 1;
}

.offer-price-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: 8px;
}

.offer-price-value {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-button.large {
    width: 100%;
    justify-content: center;
    padding: 24px 48px;
    font-size: 20px;
}

.final-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.final-reminder {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-style: italic;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--border-light);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-cta-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
}

.sticky-cta-price {
    font-weight: 700;
    color: var(--golden);
    font-size: 24px;
    font-family: 'Prompt', sans-serif;
}

.cta-button.compact {
    padding: 14px 32px;
    font-size: 16px;
}

.problem-intro {
    background: var(--white);
    padding: 50px 24px;
}

.problem-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-number {
    font-size: 48px;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
}

.intro-text {
    font-size: 31px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 700;
}

/* Section Transition */
.section-transition {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 48px 0 32px 0;
    text-align: center;
}

/* Pain Points - Mobile First */
.pain-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.pain-point {
    padding: 20px;
    background: rgba(239, 68, 68, 0.04);
    border-left: 3px solid rgba(239, 68, 68, 0.5);
    border-radius: 8px;
}

.pain-header {
    font-size: 16px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 12px;
    line-height: 1.4;
}

.pain-point p {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.pain-detail {
    color: #6b7280;
    font-size: 14px;
}

/* Failed Attempts */
.failed-attempts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.attempt-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.attempt-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #dc2626;
}

/* Worst Reveal */
.worst-reveal {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    margin-top: 32px;
}

.reveal-question {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
    line-height: 1.4;
}

.reveal-answer p {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.reveal-truth {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--dark) !important;
}

.reveal-pain {
    font-size: 17px !important;
    font-weight: 700;
    color: #2563eb !important;
    font-style: italic;
    margin-top: 20px !important;
}

/* Desktop Enhancement */
@media (min-width: 640px) {
    .section-transition {
        font-size: 24px;
        margin: 56px 0 40px 0;
    }

    .pain-point {
        padding: 24px 28px;
    }

    .pain-header {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .pain-point p {
        font-size: 16px;
    }

    .pain-detail {
        font-size: 15px;
    }

    .attempt-item {
        padding: 20px 24px;
        font-size: 16px;
    }

    .worst-reveal {
        padding: 40px 48px;
    }

    .reveal-question {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .reveal-answer p {
        font-size: 17px;
    }

    .reveal-truth {
        font-size: 20px !important;
    }

    .reveal-pain {
        font-size: 19px !important;
    }
}

@media (min-width: 768px) {
    .pain-points {
        gap: 20px;
    }

    .pain-point {
        padding: 28px 32px;
    }

    .pain-header {
        font-size: 19px;
    }

    .pain-point p {
        font-size: 17px;
    }

    .attempt-item {
        font-size: 17px;
    }

    .reveal-question {
        font-size: 26px;
    }

    .reveal-answer p {
        font-size: 18px;
    }
}

/* Legacy styles - keep for backwards compatibility */
.problem-intro-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.problem-intro-list li {
    padding: 24px 32px;
    background: var(--bg-secondary);
    border-left: 4px solid var(--blue);
    border-radius: 8px;
    font-size: 18px;
    color: var(--dark);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.problem-intro-list li:hover {
    transform: translateX(8px);
    background: var(--bg-tertiary);
    border-left-color: var(--golden);
}

.problem-result {
    text-align: center;
    padding: 48px 40px;
    background: rgba(239, 68, 68, 0.08);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
}

.problem-result p {
    font-size: 20px;
    color: var(--dark);
    font-weight: 400;
    line-height: 1.8;
}

.amplify-pain {
    background: var(--bg-secondary);
    padding: 100px 24px;
}

.amplify-content {
    max-width: 800px;
    margin: 0 auto;
}

.pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.pain-list li {
    padding: 24px 32px;
    background: var(--white);
    border-left: 4px solid var(--golden);
    border-radius: 8px;
    font-size: 18px;
    color: var(--dark);
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 1, 0.05);
    transition: all 0.3s ease;
}

.pain-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 1, 0.1);
    border-left-color: var(--blue);
}

.worst-part {
    text-align: center;
    padding: 48px 40px;
    background: var(--white);
    border: 2px solid var(--blue);
    border-radius: 12px;
    margin-top: 40px;
}

.worst-part h3 {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 24px;
    font-weight: 700;
}

.worst-part p {
    font-size: 20px;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.final-statement {
    font-weight: 700;
    color: var(--blue);
    font-size: 22px !important;
}

/* Section Divider */
.section-divider {
    background: var(--white);
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-divider::before {
    content: '';
    width: 400px;
    max-width: 90%;
    height: 3px;
    background: var(--golden);
    border-radius: 2px;
}

/* Who Am I Section */
.who-am-i {
    background: var(--white);
    padding: 60px 24px;
}

.who-am-i-header {
    text-align: center;
    margin-bottom: 60px;
}

.author-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    padding: 10px 20px;
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.who-am-i-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--dark);
}

.who-am-i-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.author-image {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.author-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid var(--border);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
}

.image-placeholder span {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 600;
}

.credentials-box {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--blue);
}

.credentials-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 20px;
}

.credentials-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credentials-list li {
    font-size: 16px;
    color: var(--dark);
    font-weight: 500;
}

.author-story {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-text {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
}

.story-highlight {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--golden);
    margin-top: 16px;
}

.story-highlight p {
    font-size: 20px;
    color: var(--dark);
    line-height: 1.7;
}

/* Student Showcase Section */
.student-showcase {
    background: linear-gradient(180deg, var(--dark) 0%, #0a0a0a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.student-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(254, 191, 0, 0.3), transparent);
}

.showcase-header {
    text-align: center;
    margin-bottom: 80px;
}

.showcase-label {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(254, 191, 0, 0.1);
    border: 1px solid rgba(254, 191, 0, 0.3);
    border-radius: 100px;
    color: var(--golden);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.showcase-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.showcase-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.showcase-item {
    opacity: 0;
    animation: showcaseFadeIn 0.8s ease forwards;
    aspect-ratio: 3 / 2;
}

@keyframes showcaseFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.showcase-image-wrapper:hover {
    transform: translateY(-8px);
    border-color: rgba(254, 191, 0, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(254, 191, 0, 0.1),
        0 0 40px rgba(254, 191, 0, 0.1);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-image-wrapper:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    padding: 32px 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-image-wrapper:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.showcase-student {
    font-size: 18px;
    font-weight: 700;
    color: var(--golden);
    font-family: 'Prompt', sans-serif;
}

.showcase-type {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive Grid Adjustments */
@media (max-width: 900px) {
    .showcase-header h2 {
        font-size: 36px;
    }

    .showcase-grid {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .student-showcase {
        padding: 80px 0;
    }

    .showcase-header {
        margin-bottom: 48px;
    }

    .showcase-header h2 {
        font-size: 32px;
    }

    .showcase-subtitle {
        font-size: 18px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Social Proof / Testimonials Section */
.social-proof {
    background: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 24px;
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.social-proof-header p {
    font-size: 20px;
    color: var(--text-light);
}

.testimonials-marquee {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    max-width: 1152px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 135s linear infinite;
    width: fit-content;
}

.testimonials-marquee-reverse .testimonials-track {
    animation: scroll-right 135s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

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

.testimonial-mini-card {
    min-width: 700px;
    max-width: 700px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 1, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.testimonial-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.testimonial-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 1, 0.1);
}

.testimonial-mini-card .mini-avatar {
    width: 48px;
    height: 48px;
    background: var(--avatar-color, var(--blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.mini-info {
    flex: 1;
}

.mini-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.mini-handle {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.mini-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        gap: 16px;
    }

    .nav-link {
        font-size: 14px;
    }

    .nav-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .site-logo {
        height: 35px;
    }

    section {
        padding: 60px 24px;
    }

    .problem-intro, .amplify-pain {
        padding: 60px 24px;
    }

    .section-number {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .intro-text {
        font-size: 25px;
    }

    .problem-intro-list {
        grid-template-columns: 1fr;
    }

    .problem-intro-list li, .pain-list li {
        padding: 20px 24px;
        font-size: 16px;
    }

    .problem-result, .worst-part {
        padding: 32px 24px;
    }

    .problem-result p, .worst-part p {
        font-size: 18px;
    }

    .worst-part h3 {
        font-size: 24px;
    }

    .who-am-i {
        padding: 60px 24px;
    }

    .who-am-i-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text {
        font-size: 16px;
    }

    .story-highlight p {
        font-size: 18px;
    }

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

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-mini-card {
        min-width: 560px;
        max-width: 560px;
        padding: 20px;
    }

    .mini-info h5 {
        font-size: 14px;
    }

    .mini-text {
        font-size: 14px;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .outcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .outcome-visual {
        order: -1;
    }

    .for-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .comparison-card.highlighted {
        transform: scale(1);
    }

    .value-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .value-price {
        margin-left: 0;
    }

    .value-total {
        padding: 32px 24px;
    }

    .today-amount {
        font-size: 48px;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 12px;
    }

    .summary-section {
        padding: 24px 16px;
        margin: 24px 0;
    }

    .summary-section .summary-title {
        font-size: 18px;
    }

    .summary-section .summary-option {
        font-size: 16px;
    }

    .summary-section .summary-question {
        font-size: 22px;
    }

    .sticky-cta-text {
        width: 100%;
        justify-content: space-between;
    }

    .cta-button.compact {
        width: 100%;
        justify-content: center;
    }
}

/* Guarantee Section */
/* Guarantee Section - Minimal & Sincere */
.guarantee {
    background: #ffffff;
    padding: 48px 20px;
}

.guarantee-content {
    max-width: 580px;
    margin: 0 auto;
}

/* Title */
.guarantee-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 32px 0;
    line-height: 1.3;
}

/* Promise Box */
.guarantee-promise {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.guarantee-promise p {
    font-size: 18px;
    line-height: 1.7;
    color: #111827;
    margin: 0;
    font-weight: 500;
}

/* Body Text */
.guarantee-body {
    margin-bottom: 48px;
}

.guarantee-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin: 0 0 20px 0;
}

.guarantee-body p:last-child {
    margin-bottom: 0;
}

.guarantee-body strong {
    color: #111827;
    font-weight: 600;
}

/* Signature */
.guarantee-signature {
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.signature-name {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 4px;
}

.signature-role {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}

/* Desktop */
@media (min-width: 640px) {
    .guarantee {
        padding: 80px 32px;
    }

    .guarantee-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .guarantee-promise p {
        font-size: 20px;
    }

    .guarantee-body p {
        font-size: 17px;
    }

    .signature-name {
        font-size: 22px;
    }

    .signature-role {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .guarantee {
        padding: 100px 40px;
    }

    .guarantee-title {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .guarantee-promise {
        margin-bottom: 48px;
        padding-bottom: 40px;
    }

    .guarantee-promise p {
        font-size: 22px;
    }

    .guarantee-body {
        margin-bottom: 56px;
    }

    .guarantee-body p {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .signature-name {
        font-size: 24px;
    }
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 32px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 2px 8px rgba(0, 0, 1, 0.05);
}

.faq-item.visible {
    animation: fadeInUp 0.5s ease forwards;
}

.faq-item:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 24px rgba(0, 0, 1, 0.08);
    transform: translateY(-4px);
}

.faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 20px;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
    line-height: 1.4;
    position: relative;
    padding-left: 40px;
    flex: 1;
}

.faq-question::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--golden);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: var(--blue);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    user-select: none;
}

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

.faq-answer {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 40px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
}

.faq-answer strong {
    color: var(--dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .guarantee {
        padding: 60px 0;
    }

    .guarantee-paper {
        padding: 40px 30px;
        transform: rotate(-1deg);
    }

    .guarantee-stamp {
        width: 90px;
        height: 90px;
        top: 20px;
        right: 20px;
    }

    .stamp-inner {
        width: 72px;
        height: 72px;
    }

    .stamp-text {
        font-size: 22px;
    }

    .stamp-subtext {
        font-size: 9px;
    }

    .guarantee-header h2 {
        font-size: 28px;
    }

    .guarantee-opening,
    .guarantee-promise {
        font-size: 16px;
    }

    .guarantee-highlight {
        font-size: 18px;
        padding: 16px;
    }

    .guarantee-points {
        padding: 24px 20px;
    }

    .guarantee-points-title {
        font-size: 18px;
    }

    .guarantee-item p {
        font-size: 15px;
    }

    .guarantee-number {
        font-size: 28px;
    }

    .signature-line {
        font-size: 38px;
    }

    .signature-role {
        font-size: 12px;
    }

    .faq-item {
        padding: 24px 20px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 16px;
    }
}

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

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

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

    .final-trust {
        flex-direction: column;
        gap: 12px;
    }

    .final-summary {
        padding: 32px 24px;
        margin: 32px 0;
    }

    .summary-title {
        font-size: 20px;
    }

    .summary-option {
        font-size: 18px;
    }

    .summary-question {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .final-summary .final-trust {
        gap: 12px;
    }

    .guarantee-paper {
        padding: 32px 24px;
    }

    .guarantee-stamp {
        width: 80px;
        height: 80px;
        top: 16px;
        right: 16px;
        border: 3px solid rgba(178, 34, 34, 0.4);
    }

    .stamp-inner {
        width: 64px;
        height: 64px;
    }

    .stamp-text {
        font-size: 20px;
    }

    .stamp-subtext {
        font-size: 8px;
    }

    .signature-line {
        font-size: 34px;
    }

    .faq-question,
    .faq-answer {
        padding-left: 0;
    }

    .faq-question::before {
        position: relative;
        margin-right: 12px;
        display: inline-flex;
    }
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: var(--cream-light);
    padding: 20px 0;
    margin-top: 0;
}

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

.footer-content p {
    margin: 0;
    font-size: 16px;
    color: var(--cream-light);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 16px 0;
        margin-top: 0;
    }

    .footer-content p {
        font-size: 14px;
    }
}

/* ============================================
   PASSWORD PAGE STYLES
   ============================================ */

.password-page {
    min-height: 100vh;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}

.back-link {
    position: absolute;
    top: 32px;
    left: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--dark);
    transform: translateX(-4px);
}

.password-container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.password-hero-image {
    width: 100%;
    height: 200px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.password-card {
    background: var(--white);
    border-radius: 0 0 16px 16px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.password-header {
    text-align: center;
    margin-bottom: 32px;
}

.password-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-family: 'Prompt', sans-serif;
}

.password-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.password-form {
    margin-bottom: 24px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.password-input {
    width: 100%;
    padding: 16px 48px 16px 16px;
    font-size: 16px;
    font-family: 'Prompt', sans-serif;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--dark);
    transition: all 0.2s ease;
}

.password-input:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.toggle-password:hover {
    color: var(--dark);
}

.access-button {
    width: 100%;
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    background: var(--golden);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(254, 191, 0, 0.3);
}

.access-button:hover {
    background: var(--golden-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 191, 0, 0.4);
}

.access-button svg {
    transition: transform 0.3s ease;
}

.access-button:hover svg {
    transform: translateX(4px);
}

.error-message {
    color: var(--error);
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
    min-height: 20px;
}

.password-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.password-footer p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.password-footer a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.password-footer a:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .back-link {
        top: 20px;
        left: 20px;
        font-size: 14px;
    }

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

    .password-header h1 {
        font-size: 28px;
    }

    .password-hero-image {
        height: 160px;
    }
}

/* ============================================
   COURSE PAGE STYLES
   ============================================ */

.course-page {
    background: var(--bg-primary);
    min-height: 100vh;
}

.course-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.back-link-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-link-header:hover {
    color: var(--dark);
    transform: translateX(-4px);
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Prompt', sans-serif;
    color: var(--dark);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.whatsapp-link:hover {
    color: var(--success);
}

.course-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 70px);
}

.course-sidebar {
    width: 300px;
    background: var(--white);
    border-right: 1px solid var(--border-light);
    padding: 24px 0;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
    flex-shrink: 0;
}

.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--golden);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(254, 191, 0, 0.4);
    cursor: pointer;
    z-index: 1000;
    color: var(--dark);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(254, 191, 0, 0.5);
}

.sidebar-content {
    padding: 0 24px;
}

.sidebar-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.course-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: block;
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-item:hover {
    background: var(--bg-secondary);
    color: var(--dark);
}

.nav-item.active {
    background: var(--bg-secondary);
    color: var(--dark);
    font-weight: 600;
}

.nav-sub-item {
    display: block;
    padding: 10px 16px 10px 32px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-sub-item:hover {
    background: var(--bg-secondary);
    color: var(--text);
}

.nav-sub-item.active {
    background: var(--bg-secondary);
    color: var(--dark);
    font-weight: 600;
}

.course-main {
    flex: 1;
    padding: 48px 32px;
    overflow-y: auto;
}

.course-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    display: block;
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-intro {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
    margin: 16px 0 24px 0;
}

/* Section Header Image */
.section-header-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-header-image--auto {
    height: auto;
    background: none;
    overflow: visible;
}

.section-header-image--auto img {
    height: auto;
    object-fit: contain;
    display: block;
}

.stripe-step-images {
    margin-top: 16px;
}

.stripe-step-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 16px 0;
    border-radius: 12px;
}

.stripe-step-image--clickable {
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stripe-step-image--clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.image-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
}

.image-lightbox.is-active {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(2px);
}

.image-lightbox__panel {
    position: relative;
    z-index: 1;
    max-width: min(1400px, 96vw);
    max-height: 94vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #0c0f16;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.image-lightbox__image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    display: block;
}

.image-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.image-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.lightbox-open {
    overflow: hidden;
}

.stripe-step-figure {
    margin: 16px 0;
}

.stripe-step-figure .stripe-step-image {
    margin: 0;
}

.stripe-step-caption {
    margin-top: 8px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    background: var(--golden);
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(254, 191, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.download-button:hover {
    background: var(--golden-light);
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(254, 191, 0, 0.3);
}

@media (max-width: 768px) {
    .section-header-image {
        height: 150px;
        border-radius: 12px;
    }

    .section-header-image--auto {
        height: auto;
    }

    .section-header-image--auto img {
        height: auto;
    }
}

.course-main-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Prompt', sans-serif;
}

.course-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.6;
}

.newsletter-box {
    background: linear-gradient(135deg, rgba(74, 113, 246, 0.05) 0%, rgba(74, 113, 246, 0.02) 100%);
    border: 2px solid rgba(74, 113, 246, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
    text-align: center;
}

.newsletter-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.newsletter-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.newsletter-box p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Prompt', sans-serif;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    background: var(--white);
    transition: all 0.2s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--blue);
}

.submit-button {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-button:hover {
    background: var(--dark-80);
    transform: translateY(-2px);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(2px);
}

.tools-section {
    margin-bottom: 48px;
}

.tools-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s ease;
}

.tool-badge:hover {
    border-color: var(--golden);
    background: rgba(254, 191, 0, 0.05);
    transform: translateY(-2px);
}

.video-section {
    margin-bottom: 48px;
}

.video-section h2,
.text-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    font-family: 'Prompt', sans-serif;
}

.video-wrapper {
    margin-bottom: 32px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-secondary);
    border: 2px dashed var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px;
    text-align: center;
}

.video-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.video-placeholder small {
    font-size: 14px;
    color: var(--text-light);
}

.video-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 32px;
}

.video-wrapper iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    border: none;
    display: block;
}

.text-content {
    line-height: 1.8;
}

.text-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 16px 0;
}

.text-content p {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 20px;
}

.outcomes-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.outcomes-list li {
    padding: 12px 16px 12px 48px;
    position: relative;
    font-size: 17px;
    color: var(--text);
    margin-bottom: 12px;
}

.outcomes-list li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 12px;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.callout-box {
    background: rgba(254, 191, 0, 0.08);
    border-left: 4px solid var(--golden);
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
}

.callout-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.callout-box p {
    font-size: 16px;
    color: var(--text);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .course-sidebar {
        position: fixed;
        left: -300px;
        top: 0;
        height: 100vh;
        z-index: 999;
        transition: left 0.3s ease;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    }

    .course-sidebar.open {
        left: 0;
    }

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

    .course-main {
        padding: 32px 20px;
    }

    .course-main-title {
        font-size: 36px;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .header-logo {
        position: static;
        transform: none;
    }

    .whatsapp-link {
        display: none;
    }

    .back-link-header {
        font-size: 13px;
    }

    .course-main-title {
        font-size: 28px;
    }

    .course-subtitle {
        font-size: 16px;
    }

    .newsletter-box {
        padding: 24px 20px;
    }

    .video-section h2,
    .text-content h2 {
        font-size: 24px;
    }

    .text-content h3 {
        font-size: 20px;
    }

    .text-content p,
    .outcomes-list li {
        font-size: 16px;
    }
}

/* ============================================ */
/* CELEBRATION TEXT COMPONENT */
/* ============================================ */

.celebration-container {
    position: relative;
    text-align: center;
    padding: 60px 40px;
    margin: 40px 0;
}

.celebration-text {
    font-family: 'Righteous', 'Kanit', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    background: linear-gradient(
        90deg,
        #ff0080 0%,
        #ff8c00 15%,
        #ffd700 30%,
        #00ff00 45%,
        #00bfff 60%,
        #8a2be2 75%,
        #ff1493 90%,
        #ff0080 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-flow 3s linear infinite,
               pulse-scale 2s ease-in-out infinite,
               float-gentle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5))
            drop-shadow(0 0 40px rgba(255, 100, 255, 0.3));
    position: relative;
    display: inline-block;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
    animation: sparkle-twinkle 1.5s infinite;
    filter: drop-shadow(0 0 4px currentColor);
}

.sparkle:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    color: #ff0080;
}

.sparkle:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 0.3s;
    color: #ffd700;
    transform: scale(1.3);
}

.sparkle:nth-child(3) {
    bottom: 15%;
    left: 8%;
    animation-delay: 0.6s;
    color: #00bfff;
    transform: scale(0.8);
}

.sparkle:nth-child(4) {
    bottom: 25%;
    right: 5%;
    animation-delay: 0.9s;
    color: #00ff00;
}

.sparkle:nth-child(5) {
    top: 50%;
    left: 2%;
    animation-delay: 1.2s;
    color: #8a2be2;
    transform: scale(1.1);
}

.sparkle:nth-child(6) {
    top: 45%;
    right: 3%;
    animation-delay: 1.5s;
    color: #ff8c00;
    transform: scale(0.9);
}

.sparkle:nth-child(7) {
    top: 5%;
    left: 50%;
    animation-delay: 0.4s;
    color: #ff1493;
    transform: scale(1.2);
}

.sparkle:nth-child(8) {
    bottom: 10%;
    left: 50%;
    animation-delay: 1.1s;
    color: #00ff00;
}

/* Celebration Animations */
@keyframes rainbow-flow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .celebration-container {
        padding: 40px 20px;
    }
}

.celebration-meme {
    margin-top: 30px;
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float-gentle 4s ease-in-out infinite;
}

@media (max-width: 768px) {
    .celebration-meme {
        max-width: 100%;
        margin-top: 20px;
    }
}

/* ============================================ */
/* CONCLUSION SECTION */
/* ============================================ */

.conclusion-section {
    margin-top: 40px;
}

.conclusion-header {
    margin-bottom: 40px;
}

.conclusion-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.conclusion-divider {
    width: 60px;
    height: 3px;
    background: var(--golden);
    margin-top: 10px;
}

.conclusion-content {
    max-width: 800px;
}

.conclusion-paragraph {
    margin-bottom: 24px;
}

.conclusion-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.highlight-box {
    background: var(--cream-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--golden);
}

.price-highlight {
    font-weight: 700;
    color: var(--error);
}

.savings-box {
    background: var(--cream-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--success);
}

.free-badge {
    font-weight: 700;
    color: var(--success);
}

.conclusion-section-break {
    margin: 40px 0;
    text-align: center;
    color: var(--golden);
}

.section-break-icon {
    font-size: 1.5rem;
    color: var(--golden);
}

.next-steps-box {
    margin: 32px 0;
}

.next-steps-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.next-steps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--golden);
    font-weight: 700;
}

.final-message-box {
    background: var(--cream-light);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.final-message-box .conclusion-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.closing-message {
    text-align: center;
    margin-top: 32px;
}

.cheer-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.action-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--golden);
}

@media (max-width: 768px) {
    .conclusion-title {
        font-size: 1.75rem;
    }

    .action-text {
        font-size: 1.5rem;
    }
}
