/* =========================================
   OPTIMIZED SALES PAGE - MOBILE-FIRST
   High-Converting, Less Text-Heavy Design
   ========================================= */

:root {
    /* Color Palette */
    --bg-dark: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --primary: #6366f1;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-orange: #f97316;

    --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.4);
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    --nav-height: 70px;
    
    /* Spacing System - More generous on mobile */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: clip;
    position: relative;
}

/* Skip-to-content link for keyboard / screen-reader users */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
}

.skip-to-content:focus {
    left: 1rem;
    top: 0;
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Background gradients */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(236,72,153,0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.narrow-container {
    max-width: 800px;
}

.pricing-container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

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

.section {
    padding: var(--space-2xl) 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

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

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: var(--space-lg);
}

.glass {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   NAVBAR — Sticky with Links + CTA
   ========================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
    flex-shrink: 0;
}

.logo-symbol {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-icon {
    width: 35px;
    height: 35px;
}

.logo-text-main {
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-text-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

/* Desktop section links */
.nav-links {
    display: flex;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-cyan);
}

.nav-cta {
    background: var(--gradient-main);
    color: white;
    padding: 0.6rem 1.15rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

/* Hamburger — mobile only */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background 0.2s;
    z-index: 10;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile dropdown menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem var(--space-md) 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
}

.mobile-menu a.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-menu a.mobile-nav-link:hover {
    color: var(--accent-cyan);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    background: var(--gradient-main);
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
}

/* Mobile sticky bottom CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.65rem var(--space-md);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    display: none; /* hidden on desktop */
}

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

.mobile-sticky-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-main);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    min-height: 48px;
}

/* Mobile: hide nav-links and nav-cta, show hamburger + sticky CTA */
@media (max-width: 767px) {
    .nav-links {
        display: none !important;
    }

    .nav-cta {
        display: none !important;
    }

    .hamburger {
        display: block;
    }

    .mobile-sticky-cta {
        display: block;
    }

    /* Add bottom padding to body so sticky CTA doesn't overlap content */
    body {
        padding-bottom: 70px;
    }

    .logo-text-main {
        font-size: 0.95rem;
    }
}

/* Tablet: slightly smaller nav links */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-links a {
        font-size: 0.78rem;
        padding: 0.35rem 0.5rem;
    }

    .nav-cta {
        font-size: 0.78rem;
        padding: 0.5rem 0.9rem;
    }

    .logo-text-main {
        font-size: 0.95rem;
    }
}

/* =========================================
   HERO - DRAMATICALLY SIMPLIFIED
   ========================================= */
.hero {
    padding: var(--space-2xl) 0;
    min-height: auto; /* Remove forced height */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.badge-pill {
    display: inline-block;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--accent-cyan);
}

.hero-title {
    font-size: 2.25rem;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
    /* Reduced from 42 words to 18 words */
}

/* Above-the-fold product spec strip: course count, delivery, price */
.hero-value-anchor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    margin-bottom: var(--space-md);
    transition: border-color 0.2s, background 0.2s;
}

.hero-value-anchor:hover {
    border-color: rgba(99, 102, 241, 0.6);
    background: rgba(99, 102, 241, 0.18);
}

.hero-value-anchor-old {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-value-anchor-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.hero-value-anchor-new {
    font-weight: 700;
    font-size: 1.05rem;
}

.hero-value-anchor-link {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .hero-value-anchor {
        justify-content: center;
    }
    .hero-value-anchor-link {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}

.hero-cta-group {
    margin-bottom: var(--space-lg);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-main);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    /* Minimum touch target size */
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.cta-button.large {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
    min-height: 64px;
}

/* Explicit "primary" variant — currently the only button style on the page.
   Defined so the class isn't a dead marker, and so a future .secondary/.outline
   variant has something concrete to diverge from. Values match .cta-button's
   own defaults, so this changes nothing visually. */
.cta-button.primary {
    background: var(--gradient-main);
    color: white;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.03); filter: brightness(1.1); }
}

.cta-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* Payment trust - simplified */
.payment-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.secure-badge {
    font-size: 0.85rem;
    color: var(--accent-green);
}

/* Simplified testimonial */
.hero-testimonial {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    background: rgba(30, 41, 59, 0.5);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
}

.hero-testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-testimonial-text p {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-style: italic;
}

.hero-testimonial-author {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-testimonial-author i {
    color: var(--accent-green);
}

/* Social proof mini */
.social-proof-mini {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.avatars {
    display: flex;
}

.avatar-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -10px;
    overflow: hidden;
}

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

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

.social-proof-mini p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero stats box - simplified */
.hero-stats-box {
    padding: var(--space-lg);
}

.hero-stats-box h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.hero-stat-item i {
    font-size: 2rem;
    color: var(--primary);
}

.hero-stat-item strong {
    display: block;
    font-size: 1.5rem;
}

.hero-stat-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   BENEFITS QUICK SECTION
   ========================================= */
.benefits-quick {
    background: rgba(30, 41, 59, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.benefit-card {
    padding: var(--space-lg);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   PRICING SECTION - OPTIMIZED
   ========================================= */
.pricing-section {
    padding: var(--space-2xl) 0;
}

/* Simplified urgency banner */
.urgency-banner {
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.urgency-icon {
    font-size: 2rem;
    color: var(--accent-orange);
}

.urgency-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.urgency-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Main pricing card */
.main-pricing-card {
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.pricing-header h2 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.pricing-header p {
    color: var(--text-muted);
}

/* Price display */
.pricing-price-display {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.currency {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-description {
    margin-top: var(--space-sm);
    color: var(--text-muted);
}

/* Features list */
.pricing-features-main {
    list-style: none;
    margin: var(--space-xl) 0;
}

.pricing-features-main li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.pricing-features-main li:last-child {
    border-bottom: none;
}

.pricing-features-main i {
    color: var(--accent-green);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cta-section {
    margin: var(--space-xl) 0;
    text-align: center;
}

.cta-subtext {
    text-align: center;
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Payment trust center */
.payment-trust-center {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-icons-large {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.secure-text {
    font-size: 0.9rem;
    color: var(--accent-green);
}

/* Stats strip */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits-section {
    background: rgba(30, 41, 59, 0.2);
}

/* =========================================
   TESTIMONIALS - SIMPLIFIED
   ========================================= */
.testimonials-section {
    background: rgba(30, 41, 59, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.testimonial-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.testimonial-card strong {
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-card i {
    color: var(--accent-green);
}

.testimonial-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

/* =========================================
   FAQ - COLLAPSED
   ========================================= */
.faq-section {
    padding-top: var(--space-xl);
}

.faq-accordion {
    margin-top: var(--space-lg);
}

.accordion-item {
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: var(--space-lg);
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Minimum touch target */
    min-height: 56px;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 var(--space-lg) var(--space-lg);
}

.accordion-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta-section {
    padding: var(--space-2xl) 0;
}

.final-cta-box {
    padding: var(--space-2xl);
}

.final-cta-box h2 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.final-cta-box p {
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.final-cta-note {
    margin-top: var(--space-md);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer p {
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 var(--space-sm);
}

.footer-links a:hover {
    color: var(--primary);
}

/* STICKY CTA REMOVED - Not needed */

/* =========================================
   ANIMATIONS
   ========================================= */
.animated {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

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

/* =========================================
   TABLET+ RESPONSIVE (768px+)
   ========================================= */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        width: auto;
        display: inline-flex;
    }
    
    .hero-cta-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   DESKTOP RESPONSIVE (1024px+)
   ========================================= */
@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   MOBILE-SPECIFIC FIXES
   ========================================= */
@media (max-width: 767px) {
    /* Increase touch targets */
    .cta-button {
        min-height: 56px;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        text-align: center;
        white-space: normal;
        line-height: 1.3;
    }
    
    .cta-button.large {
        min-height: 64px;
        font-size: 1.15rem;
        padding: 1.25rem 1.5rem;
    }
    
    /* Better mobile spacing */
    .section {
        padding: var(--space-xl) 0;
    }
    
    /* Simplified hero for mobile */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    /* Mobile pricing adjustments */
    .amount {
        font-size: 4rem;
    }
    
    /* Stats strip mobile */
    .stats-strip {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .stat-item {
        padding: var(--space-md);
        background: rgba(30, 41, 59, 0.3);
        border-radius: var(--radius-lg);
    }
}

/* =========================================
   ACCESSIBILITY
   ========================================= */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    /* Animations are off, so show the final state instead of the hidden start state */
    .animated {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Scroll targets focused by in-page links: no outline box on sections */
[tabindex="-1"]:focus {
    outline: none;
}

/* Focus states */
.cta-button:focus,
.accordion-header:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}
/* Additional styles for new sections */

/* =========================================
   BONUS CALLOUT
   ========================================= */
.bonus-callout {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-top: var(--space-lg);
    text-align: center;
}

.bonus-callout p {
    margin: 0;
    font-size: 0.95rem;
}

.bonus-callout em {
    color: var(--accent-pink);
}

/* =========================================
   HERO IMAGE
   ========================================= */
.bundle-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.image-caption {
    text-align: center;
    margin-top: var(--space-md);
    color: var(--accent-cyan);
    font-weight: 600;
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.video-section {
    background: rgba(30, 41, 59, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: var(--space-xl) 0;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
}

/* =========================================
   COMPANY LOGOS
   ========================================= */
.companies-section {
    padding: var(--space-xl) 0;
}

.companies-intro {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
}

.company-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.company-logo:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* =========================================
   3-PHASE ROADMAP
   ========================================= */
/* Old 3-phase roadmap CSS removed — replaced by fast-track-section styles */

/* =========================================
   COMPARISON TABLE
   ========================================= */
.comparison-table th {
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.comparison-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.featured-col {
    background: rgba(99, 102, 241, 0.1);
    font-weight: 700;
}

.price-tag {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-top: 0.25rem;
}

.check-green {
    color: white;
    background: var(--accent-green);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.check-red {
    color: white;
    background: #ef4444;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.total-row {
    background: rgba(99, 102, 241, 0.1);
    font-weight: 700;
}

.comparison-cta-text {
    text-align: center;
    font-size: 1.25rem;
    margin: var(--space-xl) 0 var(--space-lg);
}

/* =========================================
   PRICING ENHANCEMENTS
   ========================================= */
.urgency-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin: var(--space-lg) 0;
}

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

.urgency-stat strong {
    display: block;
    font-size: 1.25rem;
    color: var(--accent-cyan);
}

.urgency-stat span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.urgency-warning {
    text-align: center;
    color: var(--accent-orange);
    font-weight: 700;
    margin-top: var(--space-md);
}

.value-breakdown {
    margin: var(--space-xl) 0;
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.value-total {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0;
    margin-top: var(--space-md);
    border-top: 2px solid rgba(255,255,255,0.1);
    font-weight: 700;
}

.value-discount {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    color: var(--accent-green);
}

.discount-amount {
    font-weight: 700;
    color: var(--accent-green);
}

.today-price-label {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.trust-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

/* =========================================
   GUARANTEE SECTION
   ========================================= */
.guarantee-section {
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
    text-align: center;
}

.guarantee-section-wrapper {
    background: rgba(30, 41, 59, 0.3);
    padding: var(--space-2xl) 0;
}

.guarantee-badge-large {
    width: 150px;
    height: auto;
    margin: 0 auto var(--space-lg);
}

.guarantee-section h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--accent-green);
}

.guarantee-section p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.refund-process {
    background: rgba(30, 41, 59, 0.5);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    text-align: left;
}

.refund-process h4 {
    margin-bottom: var(--space-sm);
    color: var(--accent-cyan);
}

.refund-process a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.guarantee-statement {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: var(--space-lg);
    color: var(--accent-green);
}

.guarantee-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    padding: var(--space-md);
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.guarantee-mini-icon {
    width: 40px;
    height: auto;
}

.guarantee-mini span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* =========================================
   INSTRUCTOR SECTION
   ========================================= */
.instructor-section {
    background: rgba(30, 41, 59, 0.3);
}

.instructor-bio {
    padding: var(--space-2xl);
}

.instructor-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-lg);
    border: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.instructor-credentials {
    margin-bottom: var(--space-xl);
}

.instructor-credentials p {
    margin: var(--space-sm) 0;
    font-size: 1.05rem;
}

.instructor-quote {
    text-align: left;
    font-style: italic;
    padding: var(--space-xl);
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary);
    margin: var(--space-xl) 0;
}

.instructor-quote p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.instructor-companies {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* =========================================
   FINAL PUSH
   ========================================= */
.final-push-section {
    background: rgba(30, 41, 59, 0.2);
}

.ps-box {
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.ps-box h3 {
    color: var(--accent-pink);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
}

.ps-box h3:first-child {
    margin-top: 0;
}

.final-social-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.stat-highlight {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
}

.stat-highlight .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-highlight .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.final-cta-wrapper {
    text-align: center;
}

.final-cta-features {
    margin: var(--space-md) 0;
    color: var(--text-muted);
}

.final-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (min-width: 768px) {
    .company-logos {
        gap: var(--space-2xl);
    }
    
    .company-logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--space-sm);
    }
    
    .urgency-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .final-social-proof-strip {
        grid-template-columns: 1fr;
    }
    
    .stat-highlight .stat-number {
        font-size: 2.5rem;
    }
    
    .company-logos {
        gap: var(--space-sm);
    }
    
    .company-logo {
        font-size: 1rem;
        padding: var(--space-sm) var(--space-md);
    }
}
/* Testimonial Cards - Old Style (Exact Match) */
.testimonials-section {
    background: rgba(30, 41, 59, 0.3);
}

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

.testimonial-card-old-style {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.metric-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.metric-value {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.metric-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.divider-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: var(--space-xl) 0;
}

.testimonial-content-flex {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.testimonial-avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #6366f1;
}

.testimonial-text {
    flex: 1;
}

.testimonial-quote {
    font-style: italic;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: white;
}

.verified-icon {
    color: var(--accent-green);
    font-size: 0.9rem;
}

.author-details {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-value {
        font-size: 3rem;
    }
    
    .testimonial-content-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-avatar-circle {
        width: 60px;
        height: 60px;
    }
}
/* Comparison Table - Optimized & Clean */
.comparison-section {
    background: rgba(30, 41, 59, 0.2);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: var(--space-2xl) 0;
    border-radius: var(--radius-xl);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(15, 23, 42, 0.8);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(30, 41, 59, 0.9);
}

.comparison-table th {
    padding: var(--space-xl);
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    vertical-align: middle;
}

.comparison-table th:first-child {
    text-align: left;
    font-size: 1rem;
    background: rgba(30, 41, 59, 1);
}

.comparison-table td {
    padding: var(--space-lg) var(--space-xl);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    vertical-align: middle;
    font-size: 1rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    background: rgba(30, 41, 59, 0.5);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.featured-col {
    background: rgba(99, 102, 241, 0.15);
    font-weight: 700;
    position: relative;
}

.featured-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6366f1 0%, #ec4899 100%);
}

.price-tag {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-top: 0.5rem;
}

.check-green {
    color: white;
    background: var(--accent-green);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.check-red {
    color: white;
    background: #ef4444;
    font-size: 1.5rem;
}

.total-row {
    background: rgba(99, 102, 241, 0.2);
    font-weight: 800;
    font-size: 1.15rem;
}

.total-row td {
    padding: var(--space-xl);
}

.comparison-cta-text {
    text-align: center;
    font-size: 1.25rem;
    margin: var(--space-xl) 0 var(--space-lg);
    font-weight: 600;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--space-md) var(--space-sm);
    }
    
    .price-tag {
        font-size: 1rem;
    }
    
    .check-green,
    .check-red {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
}

/* CSS Updated - Testimonials and Table */
/* Bundle Image Optimization */
.hero-image {
    position: relative;
}

.bundle-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    display: block;
    margin: 0 auto;
}

.image-caption {
    text-align: center;
    margin-top: var(--space-lg);
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        margin-top: var(--space-2xl);
    }
    
    .bundle-image {
        max-width: 100%;
    }
}

@media (min-width: 769px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
        align-items: center;
    }
}

/* Mobile Navigation Fixes */
@media (max-width: 767px) {
    /* Nav CTA hidden on mobile — handled by new nav CSS above */
    
    /* Fix logo display on mobile */
    .logo {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .logo-text-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .logo-text-main {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .logo-text-sub {
        font-size: 0.7rem;
    }
    
    .logo-symbol {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
}

/* Animated scroll arrow for comparison table (mobile only) */
.table-scroll-indicator {
    display: none;
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        position: relative;
    }
    
    .table-scroll-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(99, 102, 241, 0.9);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        pointer-events: none;
        animation: bounceRight 1.5s infinite;
        z-index: 10;
    }
    
    @keyframes bounceRight {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
        }
        50% {
            transform: translateY(-50%) translateX(10px);
        }
    }
}

/* Mobile Guarantee Section Fixes */
@media (max-width: 768px) {
    .guarantee-section {
        padding: var(--space-lg);
        text-align: center;
    }
    
    .guarantee-badge-large {
        width: 100px;
        height: auto;
        margin: 0 auto var(--space-md);
    }
    
    .guarantee-section h3 {
        font-size: 1.35rem;
        margin-bottom: var(--space-md);
    }
    
    .guarantee-section p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: var(--space-md);
    }
    
    .refund-process {
        padding: var(--space-md);
        margin: var(--space-md) 0;
        text-align: left;
    }
    
    .refund-process h4 {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }
    
    .refund-process p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .guarantee-statement {
        font-size: 1rem;
        margin-top: var(--space-md);
    }
}

/* Mobile Instructor Section Fixes */
@media (max-width: 768px) {
    .instructor-bio {
        padding: var(--space-lg);
    }
    
    .instructor-photo {
        width: 100px;
        height: 100px;
        margin-bottom: var(--space-md);
    }
    
    .instructor-credentials {
        margin-bottom: var(--space-lg);
    }
    
    .instructor-credentials p {
        font-size: 0.95rem;
        margin: var(--space-xs) 0;
    }
    
    .instructor-quote {
        text-align: left;
        padding: var(--space-lg);
        margin: var(--space-lg) 0;
        border-left: 3px solid var(--primary);
    }
    
    .instructor-quote p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: var(--space-md);
    }
    
    .instructor-companies {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE FIXES
   ============================================ */

@media (max-width: 767px) {
    /* Nav CTA and links already handled by new nav CSS */
    
    /* 3. Fix logo display on mobile */
    .nav-container {
        justify-content: space-between;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .logo-symbol {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .logo-text-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .logo-text-main {
        font-size: 0.85rem;
        line-height: 1.1;
        font-weight: 700;
    }
    
    .logo-text-sub {
        font-size: 0.65rem;
        line-height: 1;
    }
    
    /* 6. Fix Refund Guarantee Section on Mobile - CRITICAL */
    .guarantee-section {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .guarantee-content {
        max-width: 100%;
    }
    
    .guarantee-badge-large {
        width: 80px;
        height: auto;
        margin: 0 auto 1rem;
        display: block;
    }
    
    .guarantee-section h3 {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .guarantee-section > p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .refund-process {
        background: rgba(30, 41, 59, 0.5);
        padding: 1rem;
        border-radius: 12px;
        margin: 1rem 0;
        text-align: left;
        border-left: 3px solid var(--accent-cyan);
    }
    
    .refund-process h4 {
        font-size: 1rem;
        color: var(--accent-cyan);
        margin-bottom: 0.75rem;
    }
    
    .refund-process p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    
    .guarantee-statement {
        font-size: 0.95rem;
        font-weight: 600;
        margin-top: 1rem;
    }
    
    /* 7. Fix Instructor Quote Section on Mobile - CRITICAL */
    .instructor-section {
        padding: 1.5rem 1rem;
    }
    
    .instructor-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .instructor-photo {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        margin-bottom: 1rem;
        flex-shrink: 0;
    }
    
    .instructor-info {
        width: 100%;
    }
    
    .instructor-credentials {
        margin-bottom: 1.5rem;
    }
    
    .instructor-credentials strong {
        font-size: 1.1rem;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .instructor-credentials p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0.25rem 0;
        color: var(--text-muted);
    }
    
    .instructor-quote {
        background: rgba(30, 41, 59, 0.6);
        padding: 1.25rem;
        border-radius: 12px;
        border-left: 4px solid var(--primary);
        text-align: left;
        margin: 1.5rem 0;
    }
    
    .instructor-quote p {
        font-style: italic;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #cbd5e1;
    }
    
    .instructor-quote p:last-child {
        margin-bottom: 0;
    }
    
    .instructor-companies {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 1rem;
    }
}

/* 4. Animated Scroll Arrow for Table - Mobile Only */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        position: relative;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table-scroll-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
        z-index: 100;
        pointer-events: none;
        animation: bounceRight 2s ease-in-out infinite;
    }
    
    .table-scroll-indicator i {
        font-size: 1.25rem;
    }
    
    @keyframes bounceRight {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
            opacity: 1;
        }
        50% {
            transform: translateY(-50%) translateX(10px);
            opacity: 0.8;
        }
    }
}

/* Mobile Fixes Applied - All 7 Issues */

/* =========================================
   FAST-TRACK PATH SECTION — Light Pastel Cards
   ========================================= */

/* Phase color palette */
.fast-track-section {
    --green-50: #ecfdf5;
    --green-100: #d1fae5;
    --green-500: #10b981;
    --green-600: #059669;
    --green-700: #047857;
    --green-800: #065f46;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --pink-500: #ec4899;
    
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    padding: var(--space-2xl) 0;
}

.fast-track-header {
    margin-bottom: var(--space-xl);
}

.fast-track-header .badge-pill {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-main);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

/* Grid: mobile=stack, desktop=5-col with arrows */
.fast-track-paths {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

/* ——— Phase cards (shared) ——— */
.phase-card {
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    border: 1.5px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-4px);
}

/* Phase 1 — Soft Green */
.phase-card.phase-green {
    background: var(--green-50);
    border-color: var(--green-100);
}
.phase-card.phase-green:hover { box-shadow: 0 12px 32px rgba(16,185,129,0.15); }
.phase-card.phase-green .phase-icon-ring { background: var(--green-100); color: var(--green-600); }
.phase-card.phase-green .phase-label { color: var(--green-700); background: var(--green-100); }
.phase-card.phase-green .phase-title-new { color: var(--green-800); }
.phase-card.phase-green .phase-audience-tag { background: var(--green-100); color: var(--green-700); }
.phase-card.phase-green .phase-time i { color: var(--green-500); }
.phase-card.phase-green .phase-check { color: var(--green-500); }
.phase-card.phase-green .phase-courses { border-color: rgba(16,185,129,0.15); }
.phase-card.phase-green .phase-outcome { background: var(--green-100); border-left-color: var(--green-500); }
.phase-card.phase-green .phase-outcome strong { color: var(--green-700); }

/* Phase 2 — Soft Blue */
.phase-card.phase-blue {
    background: var(--blue-50);
    border-color: var(--blue-100);
}
.phase-card.phase-blue:hover { box-shadow: 0 12px 32px rgba(59,130,246,0.15); }
.phase-card.phase-blue .phase-icon-ring { background: var(--blue-100); color: var(--blue-600); }
.phase-card.phase-blue .phase-label { color: var(--blue-700); background: var(--blue-100); }
.phase-card.phase-blue .phase-title-new { color: var(--blue-800); }
.phase-card.phase-blue .phase-audience-tag { background: var(--blue-100); color: var(--blue-700); }
.phase-card.phase-blue .phase-time i { color: var(--blue-500); }
.phase-card.phase-blue .phase-check { color: var(--blue-500); }
.phase-card.phase-blue .phase-courses { border-color: rgba(59,130,246,0.15); }
.phase-card.phase-blue .phase-outcome { background: var(--blue-100); border-left-color: var(--blue-500); }
.phase-card.phase-blue .phase-outcome strong { color: var(--blue-700); }

/* Phase 3 — Soft Amber */
.phase-card.phase-amber {
    background: var(--amber-50);
    border-color: var(--amber-100);
}
.phase-card.phase-amber:hover { box-shadow: 0 12px 32px rgba(245,158,11,0.15); }
.phase-card.phase-amber .phase-icon-ring { background: var(--amber-100); color: var(--amber-600); }
.phase-card.phase-amber .phase-label { color: var(--amber-700); background: var(--amber-100); }
.phase-card.phase-amber .phase-title-new { color: var(--amber-800); }
.phase-card.phase-amber .phase-audience-tag { background: var(--amber-100); color: var(--amber-700); }
.phase-card.phase-amber .phase-time i { color: var(--amber-500); }
.phase-card.phase-amber .phase-check { color: var(--amber-500); }
.phase-card.phase-amber .phase-courses { border-color: rgba(245,158,11,0.15); }
.phase-card.phase-amber .phase-outcome { background: var(--amber-100); border-left-color: var(--amber-500); }
.phase-card.phase-amber .phase-outcome strong { color: var(--amber-700); }

/* Card inner elements */
.phase-top-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.phase-icon-ring {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.phase-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
}

.phase-title-new {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.phase-card .phase-subtitle {
    font-size: 0.88rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.phase-audience-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.65rem;
}

.phase-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Course list */
.phase-courses {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
    padding: 0.85rem 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.phase-course-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.phase-check {
    font-size: 0.95rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.phase-course-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.35;
    display: block;
}

.phase-course-tagline {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: #718096;
    margin-top: 1px;
}

/* Outcome badge */
.phase-outcome {
    padding: 0.65rem 0.85rem;
    border-left: 3px solid;
    border-radius: 0 8px 8px 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #4a5568;
}

.phase-outcome strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.15rem;
}

/* "Most Popular" corner ribbon */
.popular-ribbon {
    position: absolute;
    top: -1px;
    right: -1px;
    overflow: hidden;
    width: 110px;
    height: 110px;
    pointer-events: none;
    z-index: 2;
}

.popular-ribbon span {
    position: absolute;
    display: block;
    width: 170px;
    padding: 5px 0;
    background: var(--pink-500);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    right: -38px;
    top: 24px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(236,72,153,0.3);
}

/* Arrow connectors — hidden on mobile */
.roadmap-arrow {
    display: none;
}

.arrow-skip-label {
    display: none;
}

/* Footer */
.fast-track-footer {
    margin-top: var(--space-xl);
}

.value-reminder {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 2px solid var(--primary);
}

.value-text {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.value-subtext {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ——— Desktop: 5-column grid with arrows ——— */
@media (min-width: 768px) {
    .fast-track-paths {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 0;
        align-items: stretch;
    }

    .phase-card {
        padding: 1.75rem 1.4rem;
    }

    /* Phase 2 slightly scaled up */
    .phase-card.phase-blue {
        z-index: 1;
        transform: scale(1.015);
    }

    .phase-card.phase-blue:hover {
        transform: scale(1.015) translateY(-4px);
    }

    /* Show arrow connectors */
    .roadmap-arrow {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 0.5rem;
        position: relative;
        z-index: 3;
    }

    .roadmap-arrow svg {
        width: 30px;
        height: 30px;
        color: var(--text-muted);
        opacity: 0.3;
    }

    /* "Start at any phase" label on second arrow */
    .arrow-skip-label {
        display: block;
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(15, 23, 42, 0.9);
        border: 1.5px solid var(--primary);
        color: var(--accent-cyan);
        font-size: 0.56rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        padding: 0.2rem 0.5rem;
        border-radius: 50px;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(99,102,241,0.2);
        z-index: 5;
    }

    .phase-title-new {
        font-size: 1.15rem;
    }
}

@media (min-width: 1024px) {
    .phase-card {
        padding: 2rem 1.6rem;
    }

    .phase-title-new {
        font-size: 1.3rem;
    }
}


/* =============================================
   MOBILE PRICING FIX
   ============================================= */

@media (max-width: 480px) {
    /* 1. Reduce container side padding on small phones */
    .pricing-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* 2. Reduce pricing card padding dramatically */
    .main-pricing-card {
        padding: 1.25rem 1rem;
    }

    /* 3. Pricing header tighter */
    .pricing-header {
        margin-bottom: 1.25rem;
    }

    .pricing-header h2 {
        font-size: 1.5rem;
    }

    /* 4. Value breakdown — smaller text, tighter spacing */
    .value-breakdown {
        margin: 1.25rem 0;
    }

    .value-item {
        padding: 0.5rem 0;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .value-item .value-desc {
        flex: 1;
        min-width: 0;
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .value-item .value-price,
    .value-total .value-price,
    .value-discount .value-price {
        flex-shrink: 0;
        font-size: 0.85rem;
        text-align: right;
    }

    .value-total {
        padding: 0.75rem 0;
        margin-top: 0.75rem;
        font-size: 0.9rem;
    }

    .value-discount {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    /* 5. Price display — slightly smaller */
    .pricing-price-display {
        margin-bottom: 1.5rem;
    }

    .today-price-label {
        font-size: 1.1rem;
    }

    .price-description {
        font-size: 0.85rem;
    }

    /* 7. CTA section tighter */
    .cta-section {
        margin: 1.25rem 0;
    }

    /* 8. Payment trust section */
    .payment-trust-center {
        padding-top: 1.25rem;
    }

    .payment-icons-large {
        font-size: 1.5rem;
        gap: 0.75rem;
    }

    .trust-text {
        font-size: 0.8rem;
    }
}

/* Slightly wider phones (481-768px) — lighter adjustments */
@media (min-width: 481px) and (max-width: 768px) {
    .main-pricing-card {
        padding: 1.75rem 1.5rem;
    }

    .value-item .value-desc {
        font-size: 0.9rem;
    }
}

/* =========================================
   SVG COMPANY LOGOS - PROFESSIONAL STRIP
   ========================================= */
.company-logos-svg {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-md) 0;
}

.company-logo-item {
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    height: 28px;
    display: flex;
    align-items: center;
}

.company-logo-item:hover {
    opacity: 0.8;
}

.company-logo-item svg {
    height: 100%;
    width: auto;
}

@media (max-width: 767px) {
    .company-logos-svg {
        gap: var(--space-lg) var(--space-xl);
    }
    
    .company-logo-item {
        height: 22px;
    }
}

/* =========================================
   BUG FIXES: Previously missing selectors
   ========================================= */

/* .section-subtitle — used on 5+ elements but had no styling */
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: var(--space-lg);
}

.text-center .section-subtitle,
.section-subtitle.text-center {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .section-subtitle {
        font-size: 1rem;
    }
}

/* .bonus-courses-banner — replace inline styles */
.bonus-courses-banner {
    margin-top: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.bonus-banner-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.bonus-banner-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   CHECKOUT FLOW STEPS — Post-CTA Trust
   ========================================= */
.checkout-flow-steps {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-flow-title {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.checkout-flow-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
}

.checkout-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    max-width: 180px;
}

.checkout-step-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.checkout-step-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 2px;
}

.checkout-step-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.checkout-step-arrow {
    color: rgba(148, 163, 184, 0.3);
    font-size: 0.75rem;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Mobile: stack vertically */
@media (max-width: 600px) {
    .checkout-flow-track {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
    }

    .checkout-step {
        max-width: none;
    }

    .checkout-step-arrow {
        display: none;
    }

    .checkout-step-number {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 0.75rem;
    }
}

/* =========================================
   TAWK.TO WIDGET — Push up on mobile 
   to avoid overlap with sticky CTA
   ========================================= */
@media (max-width: 767px) {
    #tawk-bubble-container,
    .tawk-min-container {
        bottom: 75px !important;
    }
}

/* =========================================
   CHANGE 4: BONUS COURSES — COLLAPSIBLE NOTE
   De-emphasizes marketing courses to keep 
   focus on core Scrum offering
   ========================================= */
.bonus-courses-collapsible {
    margin-top: var(--space-xl);
    text-align: center;
}

.bonus-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.bonus-toggle:hover {
    background: rgba(30, 41, 59, 0.6);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.15);
}

.bonus-toggle-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.bonus-toggle.open .bonus-toggle-icon {
    transform: rotate(180deg);
}

.bonus-expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    text-align: center;
}

.bonus-expand-content.open {
    /* Tall enough for a 12-item curriculum list, not just a line of text */
    max-height: 4000px;
    padding-top: var(--space-md);
}

.bonus-expand-content p,
.bonus-expand-intro {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto var(--space-md);
}

/* =========================================
   CURRICULUM LIST — real, named course list
   (13 core courses + 12 bonus courses)
   ========================================= */
.curriculum-block {
    margin-top: var(--space-xl);
    scroll-margin-top: calc(var(--nav-height) + var(--space-md));
}

.curriculum-heading {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: var(--space-sm);
}

.curriculum-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.curriculum-list {
    list-style: none;
    counter-reset: curriculum-counter;
    margin: 0;
    padding: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.curriculum-list li {
    counter-increment: curriculum-counter;
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: var(--space-sm) 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.curriculum-list li::before {
    content: counter(curriculum-counter);
    flex: 0 0 auto;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}

.curriculum-item-body {
    flex: 1 1 0%;
    min-width: 0;
}

.curriculum-item-title {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.curriculum-item-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* =========================================
   CHANGE 5: STATS FOOTNOTE
   Adds credibility to numbers
   ========================================= */
.stats-footnote {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.5);
    margin-top: var(--space-md);
    font-style: italic;
}

/* =========================================
   CHANGE 2: INSTRUCTOR SIGNATURE
   ========================================= */
.instructor-signature {
    font-weight: 700;
    font-style: normal;
    color: var(--text-main);
    margin-top: var(--space-sm);
    margin-bottom: 0;
}

/* =========================================
   VALUE RECEIPT SECTION — concrete value framing for first-time visitors
   ========================================= */
.value-receipt-section {
    padding: var(--space-xl) 0;
}

.value-receipt {
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(6, 182, 212, 0.04));
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.value-receipt-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.value-receipt-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: var(--space-sm);
}

.value-receipt-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.value-receipt-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.value-receipt-list {
    list-style: none;
    margin: 0 0 var(--space-lg);
    padding: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.value-receipt-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.value-receipt-desc {
    flex: 1 1 auto;
    min-width: 0;
}

.value-receipt-desc strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.value-receipt-desc span {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.value-receipt-desc span a {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.value-receipt-desc span a:hover {
    color: var(--text-main);
}

.value-receipt-price {
    flex: 0 0 auto;
    font-weight: 700;
    color: var(--accent-cyan);
    font-size: 1.05rem;
    white-space: nowrap;
    padding-top: 0.1rem;
}

.value-receipt-totals {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-md);
    background: rgba(15, 23, 42, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-receipt-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 1rem;
}

.value-receipt-line-label {
    color: var(--text-muted);
}

.value-receipt-line-amount {
    font-weight: 700;
    color: var(--text-main);
}

.value-receipt-line-final {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.5rem;
    padding-top: var(--space-sm);
    font-size: 1.25rem;
}

.value-receipt-line-final .value-receipt-line-label {
    color: var(--text-main);
    font-weight: 600;
}

.value-receipt-line-final .value-receipt-line-amount {
    font-size: 2rem;
    font-weight: 700;
}

/* Verifiable-proof link attached to a testimonial (Item 6) */
.testimonial-proof-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-decoration: none;
    border-bottom: 1px dashed rgba(6, 182, 212, 0.5);
}

.testimonial-proof-link:hover {
    color: var(--accent-pink);
    border-bottom-color: rgba(236, 72, 153, 0.6);
}

/* Quick-buy strip (Item 7) — compact, low-emphasis so it doesn't compete with the hero CTA */
.quick-buy-section {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
}

.quick-buy-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.quick-buy-cta {
    width: auto;
    display: inline-flex;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    min-height: 44px;
}

.value-receipt-cta {
    display: block;
    margin: var(--space-xl) auto 0;
    width: fit-content;
}

.value-receipt-cta + .cta-note {
    margin-top: var(--space-sm);
    text-align: center;
}

@media (max-width: 768px) {
    .value-receipt {
        padding: var(--space-lg) var(--space-md);
    }

    .value-receipt-title {
        font-size: 1.4rem;
    }

    .value-receipt-item {
        gap: var(--space-sm);
    }

    .value-receipt-desc strong {
        font-size: 0.95rem;
    }

    .value-receipt-desc span {
        font-size: 0.825rem;
    }

    .value-receipt-price {
        font-size: 0.95rem;
    }

    .value-receipt-line-final {
        font-size: 1.1rem;
    }

    .value-receipt-line-final .value-receipt-line-amount {
        font-size: 1.65rem;
    }
}

/* =========================================
   HONEST ANSWER SECTION — preempts "what's the catch?" objection
   ========================================= */
.honest-answer-section {
    padding: var(--space-lg) 0 var(--space-xl);
}

.honest-answer {
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(236, 72, 153, 0.2);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.04), rgba(99, 102, 241, 0.04));
}

.honest-answer-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-pink);
    margin-bottom: var(--space-sm);
}

.honest-answer-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    line-height: 1.25;
}

.honest-answer-body {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.honest-answer-body p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

.honest-answer-body strong {
    color: var(--text-main);
}

.honest-answer-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.honest-answer-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(99, 102, 241, 0.4);
}

.honest-answer-name {
    text-align: left;
}

.honest-answer-name strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.3;
}

.honest-answer-name span {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.15rem;
}

@media (max-width: 768px) {
    .honest-answer {
        padding: var(--space-lg) var(--space-md);
    }

    .honest-answer-title {
        font-size: 1.4rem;
    }

    .honest-answer-body p {
        font-size: 0.95rem;
    }

    .honest-answer-signature {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .honest-answer-name {
        text-align: center;
    }
}

/* =========================================
   BONUS PILL — compact version (hero placement)
   ========================================= */
.bonus-pill-compact {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: var(--space-md);
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(236, 72, 153, 0.08));
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text-main);
}

.bonus-pill-compact i {
    color: var(--accent-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bonus-pill-compact strong {
    color: var(--accent-orange);
    font-weight: 700;
}

@media (max-width: 768px) {
    .bonus-pill-compact {
        font-size: 0.85rem;
        padding: 0.65rem 0.85rem;
    }
}

/* =========================================
   BONUS CARDS — 4-card grid (above pricing card)
   ========================================= */
.bonus-cards-header {
    margin-bottom: var(--space-lg);
}

.bonus-callout-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    margin-bottom: var(--space-md);
}

.bonus-cards-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-cards-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.55;
}

.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.bonus-card {
    position: relative;
    padding: var(--space-lg) var(--space-md) var(--space-md);
    border-width: 1px;
    border-style: solid;
    overflow: hidden;
}

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

.bonus-card--pink {
    border-color: rgba(236, 72, 153, 0.35);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.03));
}
.bonus-card--pink::before { background: var(--accent-pink); }

.bonus-card--cyan {
    border-color: rgba(6, 182, 212, 0.35);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.03));
}
.bonus-card--cyan::before { background: var(--accent-cyan); }

.bonus-card--green {
    border-color: rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.03));
}
.bonus-card--green::before { background: var(--accent-green); }

.bonus-card--orange {
    border-color: rgba(249, 115, 22, 0.35);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.03));
}
.bonus-card--orange::before { background: var(--accent-orange); }

.bonus-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    margin-bottom: var(--space-sm);
    color: var(--bg-dark);
}

.bonus-card-tag--pink { background: var(--accent-pink); }
.bonus-card-tag--cyan { background: var(--accent-cyan); }
.bonus-card-tag--green { background: var(--accent-green); }
.bonus-card-tag--orange { background: var(--accent-orange); }

.bonus-card-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.bonus-card--pink .bonus-card-icon { color: var(--accent-pink); }
.bonus-card--cyan .bonus-card-icon { color: var(--accent-cyan); }
.bonus-card--green .bonus-card-icon { color: var(--accent-green); }
.bonus-card--orange .bonus-card-icon { color: var(--accent-orange); }

.bonus-card-title {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--text-main);
}

.bonus-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.bonus-cards-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin: 0 0 var(--space-lg);
}

.bonus-cards-note a {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .bonus-cards-title {
        font-size: 1.25rem;
    }

    .bonus-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FIT QUALIFIER SECTION — "Is this for you?" self-identification
   ============================================================ */
/* =========================================
   IDENTITY PATH CARDS (parallel, not sequential)
   Used by the 3 identity paths section (#roadmap).
   ========================================= */
.fast-track-paths--parallel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    align-items: stretch;
}

/* "+ N more courses" note inside a phase card */
.phase-more-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    padding-left: 1.6rem;
}

/* "Read the full path" link under each identity card */
.phase-path-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s ease;
}
.phase-path-link:hover {
    color: #22d3ee;
}
.phase-path-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}
.phase-path-link:hover i {
    transform: translateX(3px);
}

/* =========================================
   MISMATCH STRIP
   Small honest self-disqualification block. Sits inside #roadmap,
   above the value-reminder CTA. Kept quiet and short so it does not
   repel any identity.
   ========================================= */
.mismatch-strip {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.05), rgba(148, 163, 184, 0.02));
}
.mismatch-strip-title {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mismatch-strip-title i {
    color: var(--text-muted);
}
.mismatch-strip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}
.mismatch-strip-list li::before {
    content: "\2022";
    margin-right: 0.5rem;
    color: var(--text-muted);
}

/* =========================================
   TESTIMONIAL PERSONA TAGS
   ========================================= */
.testimonial-card-old-style {
    position: relative;
}
.persona-tag {
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    z-index: 2;
}
.persona-tag--career {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.35);
}
.persona-tag--drafted {
    background: rgba(59, 130, 246, 0.18);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.35);
}
.persona-tag--practicing {
    background: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

/* Invite for a Drafted Pro story (below testimonials grid) */
.testimonials-invite {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: var(--space-md) 0 var(--space-lg);
}
.testimonials-invite a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(6, 182, 212, 0.4);
}
.testimonials-invite a:hover {
    color: #22d3ee;
}

/* =========================================
   RESPONSIVE (tablet + mobile) for the identity paths
   ========================================= */
@media (max-width: 1024px) {
    .fast-track-paths--parallel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .persona-tag {
        top: 10px;
        right: 10px;
        font-size: 0.68rem;
        padding: 0.2rem 0.55rem;
    }
    .phase-more-note {
        font-size: 0.82rem;
    }
}

/* =========================================
   PHOTO DIVIDERS — visual breaks between text-heavy sections
   ========================================= */
.photo-divider {
    position: relative;
    width: 100%;
    height: 320px;
    margin: 0;
    overflow: hidden;
}

.photo-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) brightness(0.75);
}

.photo-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.65) 100%);
}

.photo-divider-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--space-lg);
    text-align: center;
    z-index: 1;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0 var(--space-md);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .photo-divider {
        height: 220px;
    }
    .photo-divider-caption {
        font-size: 0.95rem;
        bottom: var(--space-md);
    }
}

@media (prefers-reduced-motion: reduce) {
    .photo-divider img {
        transition: none;
    }
}
