/* ======================= */
/* 0. Global Setup & Variables
/* ======================= */

/* Import Premium Fonts (Poppins & Inter) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* Premium Color Palette - Professional & High Contrast */
:root {
    /* Primary Colors - Deep, Professional Palette */
    --primary-navy: #1e3a8a;        /* Deep Navy Blue */
    --primary-navy-dark: #1e293b;
    --primary-indigo: #4f46e5;      /* Vibrant Indigo */
    --primary-indigo-dark: #4338ca;
    
    /* Accent Colors */
    --accent-emerald: #10b981;      /* Success Green */
    --accent-emerald-dark: #059669;
    --accent-amber: #f59e0b;        /* Highlight Gold */
    --accent-rose: #f43f5e;         /* Attention Red */
    --accent-sky: #0ea5e9;          /* Trust Blue */
    
    /* Neutrals - High Contrast */
    --neutral-white: #ffffff;
    --neutral-gray-50: #f9fafb;
    --neutral-gray-100: #f3f4f6;
    --neutral-gray-200: #e5e7eb;
    --neutral-gray-300: #d1d5db;
    --neutral-gray-600: #4b5563;
    --neutral-gray-700: #374151;
    --neutral-gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 50%, #7c3aed 100%);
    
    /* Shadows - Layered for depth */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Premium Glow Effects */
    --glow-primary: 0 0 20px rgba(79, 70, 229, 0.4);
    --glow-success: 0 0 20px rgba(16, 185, 129, 0.4);
}

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

html {
    /* Fix sticky nav scroll issue - content won't hide behind navbar */
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--neutral-gray-900);
    background-color: var(--neutral-gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-gray-900);
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.75rem; text-align: center; margin-bottom: 20px; }
h3 { font-size: 1.625rem; color: var(--primary-indigo); margin-bottom: 12px; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--neutral-gray-600);
    font-size: 1.0625rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--neutral-gray-700);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-indigo);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
    color: var(--primary-indigo-dark);
}

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
    position: relative;
}

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

.section-subtitle {
    font-size: 1.125rem;
    max-width: 720px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: var(--neutral-gray-600);
    line-height: 1.8;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--neutral-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ======================= */
/* 1. Navigation Bar - SOLID BACKGROUND (NO TRANSPARENCY)
/* ======================= */
.navbar {
    background: var(--neutral-white);
    padding: 0;
    border-bottom: 1px solid var(--neutral-gray-200);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-gray-900);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-logo .logo-icon {
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    color: var(--primary-indigo);
}

.nav-logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
}

.nav-links ul {
    display: flex;
    gap: 8px;
}

.nav-links ul a {
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    color: var(--neutral-gray-700);
    padding: 10px 16px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links ul a:hover {
    color: var(--primary-indigo);
    background: var(--neutral-gray-100);
}

.nav-links ul a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--primary-indigo);
    transition: transform 0.3s ease;
}

.nav-links ul a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-gray-900);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger to "X" animation */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}
.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* ======================= */
/* 2. Hero Section - HIGH CONTRAST WHITE TEXT
/* ======================= */
.hero-section {
    background: var(--gradient-hero);
    color: var(--neutral-white);
    padding: 60px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--neutral-white);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-headline {
    color: var(--neutral-white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-subheadline {
    font-size: 1.375rem;
    color: var(--neutral-white);
    opacity: 1;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.vsl-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-2xl);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vsl-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.vsl-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

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

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--neutral-white);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--neutral-white);
    font-weight: 500;
    opacity: 0.95;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
}

/* ======================= */
/* 3. CTA Button - HIGHLY VISIBLE & CLEAR
/* ======================= */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--accent-emerald);
    color: var(--neutral-white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 22px 48px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--accent-emerald-dark);
    color: var(--neutral-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

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

.cta-icon {
    font-size: 1.25rem;
}

.cta-subtitle {
    display: block;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    opacity: 0.95;
}

/* ======================= */
/* 4. Social Proof Bar
/* ======================= */
.social-proof-bar {
    background: var(--neutral-white);
    padding: 24px 0;
    border-bottom: 1px solid var(--neutral-gray-200);
    box-shadow: var(--shadow-sm);
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.proof-badge {
    font-size: 1.25rem;
    color: var(--accent-amber);
}

.social-proof-bar p {
    margin: 0;
    font-weight: 600;
    color: var(--neutral-gray-700);
    font-size: 1.0625rem;
}

/* ======================= */
/* 5. Features Section - Enhanced
/* ======================= */
.features-section {
    background: var(--neutral-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: var(--neutral-gray-50);
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid var(--neutral-gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-indigo);
}

.feature-icon-wrapper {
    margin-bottom: 20px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    margin-bottom: 16px;
    color: var(--neutral-gray-900);
}

.feature-card p {
    font-size: 1rem;
    color: var(--neutral-gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-image {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

/* ======================= */
/* 6. About Section - FIXED ICON SIZES
/* ======================= */
.about-section {
    background: linear-gradient(180deg, var(--neutral-white) 0%, var(--neutral-gray-50) 100%);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 64px;
}

.about-image {
    flex-basis: 42%;
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.image-frame img {
    border-radius: 20px;
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

.about-image:hover .image-frame img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.about-content {
    flex-basis: 58%;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 24px;
    font-size: 3rem;
}

.about-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.credentials-list {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.credentials-list li {
    font-weight: 600;
    color: var(--neutral-gray-700);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--neutral-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.credentials-list li:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

/* FIXED: Much smaller credential icons */
.credential-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--gradient-success);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credential-icon svg {
    width: 14px;
    height: 14px;
    color: var(--neutral-white);
}

/* ======================= */
/* 7. Testimonials Section - HIGH CONTRAST
/* ======================= */
.testimonials-section {
    background: var(--neutral-gray-50);
    color: var(--neutral-gray-900);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--neutral-white);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--neutral-gray-200);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-indigo);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-indigo);
}

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

.testimonial-rating {
    font-size: 1rem;
    color: var(--accent-amber);
}

.testimonial-card .quote {
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    color: var(--neutral-gray-700);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-card .author {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--neutral-gray-900);
    margin-bottom: 4px;
    font-size: 1rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--neutral-gray-600);
    font-weight: 500;
    margin-bottom: 0;
}

/* ======================= */
/* 7.5. Bonus Section
/* ======================= */
.bonus-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.bonus-card {
    background: var(--neutral-white);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--neutral-gray-200);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-indigo);
}

.bonus-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--neutral-white);
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 12px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.bonus-card h3 {
    color: var(--neutral-gray-900);
    margin-bottom: 12px;
    font-size: 1.375rem;
    line-height: 1.3;
}

.bonus-value {
    display: inline-block;
    background: var(--accent-emerald);
    color: var(--neutral-white);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.bonus-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-gray-600);
    margin-bottom: 0;
}

.bonus-highlight {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--neutral-white);
    border-radius: 16px;
    border: 3px dashed var(--primary-indigo);
    position: relative;
    z-index: 1;
}

.bonus-highlight h3 {
    color: var(--primary-indigo);
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.total-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-emerald);
    font-family: 'Poppins', sans-serif;
    margin: 8px 0;
}

.bonus-highlight p {
    color: var(--neutral-gray-600);
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* ======================= */
/* 8. Pricing Section - Premium
/* ======================= */
.pricing-section {
    background: var(--neutral-white);
    position: relative;
}

.pricing-box {
    max-width: 680px;
    margin: 0 auto;
    background: var(--neutral-white);
    border: 3px solid var(--primary-indigo);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--accent-rose);
    color: var(--neutral-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.pricing-box h2 {
    margin-bottom: 12px;
    font-size: 2.25rem;
}

.pricing-box > p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: var(--neutral-gray-600);
}

.price-container {
    margin-bottom: 24px;
    padding: 24px;
    background: var(--neutral-gray-50);
    border-radius: 16px;
}

.strikethrough-price {
    font-size: 1.75rem;
    color: var(--neutral-gray-600);
    text-decoration: line-through;
    margin-right: 12px;
    opacity: 0.6;
}

.current-price-wrapper {
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
    margin: 16px 0;
}

.currency {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-indigo);
}

.current-price {
    font-size: 5.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-indigo);
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-tag {
    display: block;
    font-weight: 600;
    color: var(--neutral-gray-600);
    margin-top: 12px;
    font-size: 1rem;
}

/* FIXED: Smaller checklist icons */
.checklist {
    text-align: left;
    max-width: 420px;
    margin: 0 auto 28px auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checklist li {
    font-weight: 600;
    color: var(--neutral-gray-700);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    padding: 8px;
    background: var(--neutral-gray-50);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checklist li:hover {
    background: var(--neutral-white);
    transform: translateX(4px);
}

/* FIXED: Properly sized checkmarks - SMALLER */
.check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--accent-emerald);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 12px;
    height: 12px;
    color: var(--neutral-white);
}

.pricing-box .cta-button {
    width: 100%;
    padding: 20px 48px;
    font-size: 1.25rem;
}

.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    margin-top: 24px;
    background: var(--neutral-gray-50);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--neutral-gray-200);
}

.guarantee-badge {
    color: var(--primary-indigo);
    flex-shrink: 0;
}

.guarantee-badge svg {
    width: 40px;
    height: 40px;
}

.guarantee-content {
    flex: 1;
}

.guarantee-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--neutral-gray-900);
    margin-bottom: 6px;
}

.guarantee-text {
    margin: 0;
    font-size: 0.875rem;
    color: var(--neutral-gray-600);
    line-height: 1.6;
}

/* ======================= */
/* 9. FAQ Section - Enhanced
/* ======================= */
.faq-section {
    background: var(--neutral-white);
    padding-bottom: 120px;
}

.faq-section .container {
    max-width: 900px;
}

.faq-accordion {
    border-top: 2px solid var(--neutral-gray-200);
}

.faq-item {
    border-bottom: 2px solid var(--neutral-gray-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--neutral-gray-50);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 28px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-indigo);
}

.faq-icon {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-indigo);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 32px;
    text-align: center;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 28px 24px;
    display: none;
    overflow: hidden;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin: 0;
    color: var(--neutral-gray-600);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ======================= */
/* 10. Footer - SIMPLIFIED & CLEAN
/* ======================= */
.footer {
    background: var(--neutral-gray-900);
    color: var(--neutral-gray-300);
    padding: 60px 0 30px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    font-size: 0.9375rem;
}

.footer-brand p {
    max-width: 320px;
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 20px;
    color: var(--neutral-gray-300);
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-white);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .logo-icon {
    font-size: 1.75rem;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--neutral-white);
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: var(--neutral-gray-300);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--neutral-white);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--neutral-gray-700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-gray-300);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-indigo);
    color: var(--neutral-white);
}

.footer-bottom {
    border-top: 1px solid var(--neutral-gray-700);
    padding: 24px 0 0;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--neutral-gray-300);
    line-height: 1.6;
}

.footer-disclaimer {
    margin-top: 6px !important;
    font-size: 0.8125rem !important;
    opacity: 0.7;
}

/* ======================= */
/* 11. Scroll Animations - Enhanced
/* ======================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.reveal[data-delay="0"] { transition-delay: 0s; }
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }


/* ======================= */
/* 12. Responsive Design
/* ======================= */

@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 48px;
    }
    
    .about-content h2 {
        text-align: center;
    }
    
    .credentials-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .navbar {
        height: 70px;
    }
    
    html {
        scroll-padding-top: 70px;
    }
    
    /* Mobile Menu Styles */
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--neutral-white);
        box-shadow: var(--shadow-xl);
        border-top: 1px solid var(--neutral-gray-200);
        animation: slideDown 0.3s ease;
    }
    
    .nav-links.active {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
        padding: 16px 20px;
        gap: 0;
    }
    
    .nav-links ul li {
        width: 100%;
    }

    .nav-links ul a {
        display: block;
        padding: 16px;
        text-align: center;
        border-bottom: 1px solid var(--neutral-gray-200);
        border-radius: 0;
    }
    
    .nav-links ul a::after {
        display: none;
    }
    
    .nav-links ul a:hover {
        background: var(--neutral-gray-100);
    }
    
    .hamburger-menu {
        display: flex;
    }

    /* Other Responsive Styles */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-section {
        padding: 20px 0 40px 0;
    }
    
    .hero-headline { 
        font-size: 2.75rem; 
    }
    
    .hero-subheadline {
        font-size: 1.25rem;
    }
    
    .vsl-container {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-box {
        padding: 32px 24px;
    }
    
    .pricing-badge {
        position: static;
        display: inline-block;
        margin-bottom: 16px;
    }
    
    .current-price {
        font-size: 4.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-col ul {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .about-content h2 {
        font-size: 2.25rem;
    }
    
    .faq-question {
        font-size: 1.0625rem;
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-headline { 
        font-size: 2.25rem; 
    }
    
    .hero-subheadline { 
        font-size: 1.125rem; 
    }

    .cta-button {
        padding: 18px 32px;
        font-size: 1rem;
        width: 100%;
        flex-direction: column;
        gap: 4px;
    }
    
    .cta-icon {
        font-size: 1.25rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .pricing-box {
        padding: 28px 20px;
    }
    
    .current-price {
        font-size: 3.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}
/* ======================= */
/* New Sections Styles
/* ======================= */

/* 1. Pain Points Section */
.pain-points-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 100%);
    padding: 80px 0;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.pain-point-card {
    background: var(--neutral-white);
    padding: 32px 28px;
    border-radius: 16px;
    border: 2px solid var(--accent-rose);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.pain-point-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pain-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pain-point-card p {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--neutral-gray-700);
    line-height: 1.6;
}

.pain-points-cta {
    text-align: center;
    margin-top: 48px;
}

.pain-points-cta .lead-text {
    margin-bottom: 28px;
    font-size: 1.375rem;
}

/* 2. Curriculum Section */
.curriculum-section {
    background: var(--neutral-white);
    padding: 80px 0;
}

.curriculum-container {
    max-width: 900px;
    margin: 0 auto;
}

.curriculum-module {
    background: var(--neutral-gray-50);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    border: 2px solid var(--neutral-gray-200);
    transition: all 0.3s ease;
}

.curriculum-module:hover {
    border-color: var(--primary-indigo);
    box-shadow: var(--shadow-lg);
}

.module-header {
    margin-bottom: 24px;
}

.module-number {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--neutral-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.module-header h3 {
    font-size: 1.375rem;
    color: var(--neutral-gray-900);
    margin: 0;
}

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

.curriculum-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--neutral-gray-200);
}

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

.lesson-number {
    font-weight: 700;
    color: var(--primary-indigo);
    flex-shrink: 0;
    min-width: 28px;
}

.lesson-title {
    color: var(--neutral-gray-700);
    font-size: 1rem;
    line-height: 1.6;
}

.curriculum-cta {
    text-align: center;
    margin-top: 48px;
}

/* 3. Comparison Section */
.comparison-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
}

/* Desktop/Mobile Toggle */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Desktop Table View */
.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--neutral-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table thead {
    background: var(--primary-navy);
    color: var(--neutral-white);
}

.comparison-table th {
    padding: 20px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid var(--primary-indigo);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--neutral-gray-200);
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: var(--neutral-gray-50);
}

.comparison-table tbody tr.highlight-row {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid var(--accent-amber);
}

.comparison-table tbody tr.highlight-row:hover {
    background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
}

.comparison-table td {
    padding: 20px 16px;
    color: var(--neutral-gray-700);
    font-size: 1rem;
}

.comparison-table td strong {
    color: var(--neutral-gray-900);
}

.highlight-text {
    color: var(--accent-emerald-dark);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Mobile Card View */
.comparison-cards-mobile {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.comparison-card-mobile {
    background: var(--neutral-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--neutral-gray-200);
    transition: all 0.3s ease;
}

.comparison-card-mobile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.comparison-card-mobile.highlight-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 3px solid var(--accent-amber);
    position: relative;
    padding-top: 40px;
}

.best-choice-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-emerald);
    color: var(--neutral-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.comparison-method {
    font-size: 1.375rem;
    color: var(--neutral-gray-900);
    margin-bottom: 16px;
    font-weight: 700;
}

.comparison-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--neutral-gray-200);
}

.comparison-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--neutral-gray-700);
    font-size: 0.9375rem;
}

.detail-value {
    font-weight: 600;
    color: var(--neutral-gray-900);
    font-size: 1rem;
}

/* Comparison Note */
.comparison-note {
    background: var(--neutral-white);
    border-left: 4px solid var(--primary-indigo);
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.comparison-note p {
    margin: 0;
    color: var(--neutral-gray-700);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.comparison-note strong {
    color: var(--neutral-gray-900);
}

/* Badge Styles */
.badge-high,
.badge-very-high,
.badge-medium,
.badge-easy,
.badge-slow,
.badge-fast,
.badge-inconsistent {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-high {
    background: #fee2e2;
    color: #991b1b;
}

.badge-very-high {
    background: #fecaca;
    color: #7f1d1d;
}

.badge-medium {
    background: #fef3c7;
    color: #92400e;
}

.badge-easy {
    background: #d1fae5;
    color: #065f46;
}

.badge-slow {
    background: #fee2e2;
    color: #991b1b;
}

.badge-fast {
    background: #d1fae5;
    color: #065f46;
}

.badge-inconsistent {
    background: #fed7aa;
    color: #92400e;
}

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

.comparison-cta .lead-text {
    margin-bottom: 28px;
    font-size: 1.375rem;
}

/* 4. Qualification Section */
.qualification-section {
    background: var(--neutral-white);
    padding: 80px 0;
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.qualification-box {
    background: var(--neutral-gray-50);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.qualification-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.qualification-box.perfect-fit {
    border: 3px solid var(--accent-emerald);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.qualification-box.not-fit {
    border: 3px solid var(--accent-rose);
    background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 100%);
}

.qualification-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.qualification-box h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--neutral-gray-900);
}

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

.qualification-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.0625rem;
    color: var(--neutral-gray-700);
}

.check-mark,
.cross-mark {
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-mark {
    color: var(--accent-emerald-dark);
}

.cross-mark {
    color: var(--accent-rose);
}

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

.qualification-cta .lead-text {
    margin-bottom: 28px;
    font-size: 1.375rem;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    /* Toggle desktop/mobile views */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pain-point-card {
        padding: 24px 20px;
    }
    
    .qualification-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .qualification-box {
        padding: 32px 24px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px;
        font-size: 0.9375rem;
    }
    
    .curriculum-module {
        padding: 24px 20px;
    }
    
    .comparison-note {
        padding: 16px 20px;
    }
    
    .comparison-note p {
        font-size: 0.875rem;
    }
}

/* Secondary CTA Button */
.cta-button.secondary-cta {
    background: var(--neutral-white);
    color: var(--primary-indigo);
    border: 2px solid var(--primary-indigo);
}

.cta-button.secondary-cta:hover {
    background: var(--primary-indigo);
    color: var(--neutral-white);
    transform: translateY(-3px);
}

/* Enhanced Bonus Cards */
.bonus-image-wrapper {
    width: 100%;
    height: 200px;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.bonus-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-image {
    transform: scale(1.05);
}

.bonus-card {
    position: relative;
}

.bonus-badge {
    background: var(--accent-emerald);
    color: var(--neutral-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 12px;
}

.bonus-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.bonus-card-link .bonus-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bonus-card-link .bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-indigo);
}

.bonus-link-text {
    color: var(--primary-indigo);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.bonus-card-link:hover .bonus-link-text {
    color: var(--primary-indigo-dark);
    transform: translateX(4px);
}

.bonus-card-link:hover h3 {
    color: var(--primary-indigo);
}
/* ======================= */
/* NEW ADDITIONS - Add these to your existing style.css file */
/* ======================= */

/* Mini Testimonials Sections (After Pain Points, Curriculum, Comparison) */
.mini-testimonials-section {
    margin-top: 60px;
    padding: 40px 30px;
    background: var(--neutral-gray-50);
    border-radius: 16px;
}

.mini-testimonials-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: var(--neutral-gray-900);
    margin-bottom: 40px;
}

.mini-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.mini-testimonial-card {
    background: var(--neutral-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mini-testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

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

.mini-testimonial-meta {
    flex: 1;
}

.mini-author {
    font-weight: 600;
    font-size: 1rem;
    color: var(--neutral-gray-900);
    margin-bottom: 4px;
}

.mini-author-role {
    font-size: 0.875rem;
    color: var(--neutral-gray-600);
    margin-bottom: 6px;
}

.mini-rating {
    font-size: 0.875rem;
    color: var(--accent-amber);
}

.mini-quote {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--neutral-gray-700);
    margin: 0;
}

.mini-quote strong {
    color: var(--primary-indigo);
    font-weight: 600;
}

/* Student Portfolio Gallery */
.student-portfolio-section {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
}

.portfolio-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: var(--neutral-gray-900);
    margin-bottom: 12px;
}

.portfolio-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--neutral-gray-600);
    margin-bottom: 48px;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    background: var(--neutral-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--neutral-gray-100);
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image-wrapper img {
    transform: scale(1.05);
}

.portfolio-caption {
    padding: 16px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--neutral-gray-700);
    text-align: center;
    margin: 0;
}

/* Trust Badges Section (Below Pricing CTA) */
.trust-badges-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--neutral-gray-200);
}

.trust-badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 16px;
    background: var(--neutral-gray-50);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: var(--neutral-white);
    box-shadow: var(--shadow-sm);
}

.trust-badge svg {
    color: var(--accent-emerald);
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-gray-700);
    line-height: 1.4;
}

.trust-badge small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--neutral-gray-600);
    display: block;
}

.star-rating {
    font-size: 1.25rem;
    line-height: 1;
}

.checkout-reassurance {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--neutral-gray-600);
    padding: 16px;
    background: var(--neutral-gray-50);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .mini-testimonials-section {
        padding: 30px 20px;
    }

    .mini-testimonials-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .mini-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mini-testimonial-card {
        padding: 20px;
    }

    .student-portfolio-section {
        padding: 40px 20px;
    }

    .portfolio-title {
        font-size: 1.75rem;
    }

    .portfolio-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-badges-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-badge {
        padding: 12px;
    }

    .trust-badge svg {
        width: 28px;
        height: 28px;
    }

    .trust-badge span {
        font-size: 0.8125rem;
    }

    .checkout-reassurance {
        font-size: 0.875rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .mini-testimonials-title {
        font-size: 1.25rem;
    }

    .mini-testimonial-header {
        flex-direction: column;
        text-align: center;
    }

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

    .trust-badges-row {
        gap: 12px;
    }

    .checkout-reassurance {
        font-size: 0.8125rem;
        line-height: 1.6;
    }
}

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

.mini-testimonials-section.reveal,
.student-portfolio-section.reveal {
    animation: fadeInUp 0.8s ease-out;
}

/* Ensure proper spacing between sections */
.mini-testimonials-section + .pain-points-cta,
.mini-testimonials-section + .curriculum-cta,
.mini-testimonials-section + .comparison-cta {
    margin-top: 40px;
}