/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CSS VARIABLES FOR THEME SWITCHING ===== */
:root {
    /* Light Theme (Default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-tertiary: #64748b;
    --text-muted: #94a3b8;
    
    /* Brand Colors */
    --brand-primary: #3b82f6;
    --brand-secondary: #1d4ed8;
    --brand-accent: #dbeafe;
    
    /* Semantic Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --error: #ef4444;
    --error-light: #fecaca;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --gradient-secondary: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.08), 0 1px 2px -1px rgb(0 0 0 / 0.08);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.12), 0 2px 4px -2px rgb(0 0 0 / 0.12);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.15), 0 4px 6px -4px rgb(0 0 0 / 0.15);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.15);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-accent: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --text-muted: #64748b;
    
    --brand-primary: #60a5fa;
    --brand-secondary: #3b82f6;
    --brand-accent: #1e3a8a;
    
    --success: #34d399;
    --success-light: #064e3b;
    --warning: #fbbf24;
    --warning-light: #78350f;
    --error: #f87171;
    --error-light: #7f1d1d;
    
    --gradient-primary: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.2), 0 1px 2px -1px rgb(0 0 0 / 0.2);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5), 0 8px 10px -6px rgb(0 0 0 / 0.5);
}

/* ===== BASE TYPOGRAPHY ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition-base), color var(--transition-base);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--brand-secondary);
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

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

@media (max-width: 768px) {
    .section-padding {
        padding: var(--space-2xl) 0;
    }
}

/* ===== NAVIGATION ===== */
.nav-container {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all var(--transition-base);
}

[data-theme="dark"] .nav-container {
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-synapse {
    color: var(--brand-primary);
}

.brand-tutor {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-base);
}

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

.nav-login-btn {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .nav-link {
        display: none;
    }
    .nav-login-btn {
        padding: var(--space-xs) var(--space-md);
        font-size: 14px;
    }
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.theme-toggle:hover {
    color: var(--text-primary);
}

.theme-icon {
    width: 20px;
    height: 20px;
}

[data-theme="light"] .sun-icon,
[data-theme="dark"] .moon-icon {
    display: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    overflow: hidden;
}

/* Light mode hero */
.sgu-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-primary);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Dark mode hero - dramatic gradient */
[data-theme="dark"] .sgu-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: var(--text-primary);
}

/* Add subtle pattern overlay */
.sgu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-3xl) 0;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

/* Light mode highlight */
.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark mode highlight - more vibrant */
[data-theme="dark"] .hero-title .highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Pass Protection Guarantee Badge */
.hero-guarantee {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--success);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-2xl);
    color: var(--success);
    font-weight: 600;
    margin-bottom: var(--space-xl);
    transition: all 0.3s ease;
}

.hero-guarantee:hover {
    background: rgba(34, 197, 94, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

[data-theme="dark"] .hero-guarantee {
    background: rgba(34, 197, 94, 0.15);
    border-color: var(--success);
}

/* ===== URGENCY BOX ===== */
.urgency-box {
    background: var(--bg-primary);
    border: 2px solid var(--bg-accent);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--warning);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    background: rgba(251, 191, 36, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.urgency-item:hover {
    background: rgba(251, 191, 36, 0.15);
    transform: translateX(5px);
}

/* Dark mode urgency item */
[data-theme="dark"] .urgency-item {
    background: rgba(251, 191, 36, 0.15);
    color: var(--warning);
}

/* ===== TEXT UTILITIES ===== */
.text-center { text-align: center; }

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.problem-section .content-narrow {
    position: relative;
    z-index: 1;
}

.problem-section .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-2xl);
    color: var(--text-primary);
    line-height: 1.3;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-list {
    margin: var(--space-2xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--bg-accent);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.problem-item:hover::before {
    transform: translateX(100%);
}

.problem-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(239, 68, 68, 0.2);
}

.problem-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--error);
    transition: all 0.3s ease;
}

.problem-item:hover .problem-icon {
    background: rgba(239, 68, 68, 0.15);
    transform: rotate(-5deg) scale(1.05);
}

.problem-item span {
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.problem-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.problem-item em {
    font-style: italic;
    color: var(--text-primary);
}

/* Alternate styling for visual interest */
.problem-item:nth-child(2) .problem-icon {
    background: rgba(251, 191, 36, 0.1);
    color: var(--warning);
}

.problem-item:nth-child(2):hover .problem-icon {
    background: rgba(251, 191, 36, 0.15);
}

.problem-item:nth-child(3) .problem-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--brand-primary);
}

.problem-item:nth-child(3):hover .problem-icon {
    background: rgba(59, 130, 246, 0.15);
}

.problem-question {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-top: var(--space-2xl);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-top: var(--space-xl);
}

.problem-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
    border-radius: 2px;
}

/* ===== TUTOR SECTION - JOURNEY THEME ===== */
.tutor-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.tutor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 40%),
                      radial-gradient(circle at 70% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 40%);
    z-index: 0;
}

.journey-header {
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.journey-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

.journey-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-3xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Journey Timeline */
.journey-timeline {
    position: relative;
    padding: var(--space-xl) 0;
}

.journey-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--error) 0%, var(--warning) 33%, var(--brand-primary) 66%, var(--success) 100%);
    opacity: 0.3;
}

/* Journey Milestones */
.journey-milestone {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    position: relative;
}

.journey-milestone::before {
    content: attr(data-year);
    position: absolute;
    left: -60px;
    top: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.milestone-marker {
    position: relative;
    z-index: 2;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border: 3px solid var(--error);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--error);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.journey-milestone:nth-child(2) .marker-icon {
    border-color: var(--warning);
    color: var(--warning);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.journey-milestone:nth-child(3) .marker-icon {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.journey-milestone.milestone-success .marker-icon {
    border-color: var(--success);
    color: var(--success);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.journey-milestone:hover .marker-icon {
    transform: scale(1.1) rotate(-5deg);
}

.milestone-content {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--bg-accent);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.journey-milestone:hover .milestone-content {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.milestone-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.milestone-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.milestone-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--bg-accent);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

/* Profile Card */
.tutor-profile-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: sticky;
    top: 100px;
    border: 2px solid var(--bg-accent);
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.tutor-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.profile-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.tutor-profile-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.profile-title {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.profile-achievements {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    background: var(--brand-accent);
    color: var(--brand-primary);
    transform: translateX(5px);
}

/* ===== TUTOR SECTION ===== */
.tutor-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.tutor-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tutor Bio */
.tutor-bio h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.tutor-story {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.tutor-experience {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

/* Credentials */
.tutor-credentials {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.credential-item:hover {
    transform: translateX(10px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

.credential-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-accent);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.credential-text {
    display: flex;
    flex-direction: column;
}

.credential-text strong {
    font-size: 1.0625rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.credential-text span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Tutor Image */
.tutor-image {
    position: relative;
}

.tutor-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--brand-primary);
}

.tutor-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
}

/* Dark Mode Tutor Styles */
[data-theme="dark"] .tutor-section {
    background: rgba(30, 41, 59, 0.5);
}

[data-theme="dark"] .credential-item {
    background: rgba(51, 65, 85, 0.4);
    backdrop-filter: blur(10px);
    border-color: rgba(148, 163, 184, 0.1);
}

[data-theme="dark"] .credential-item:hover {
    background: rgba(51, 65, 85, 0.6);
    border-color: var(--brand-primary);
}

[data-theme="dark"] .credential-icon {
    background: rgba(59, 130, 246, 0.2);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .tutor-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .tutor-bio h2 {
        font-size: 2rem;
    }
    
    .tutor-credentials {
        align-items: stretch;
    }
    
    .credential-item {
        justify-content: center;
    }
    
    .tutor-image {
        order: -1;
        margin: 0 auto;
    }
    
    .tutor-photo {
        max-width: 300px;
    }
}

/* ===== SOLUTION SECTION - SYNAPSE TUTOR MODULE ACCELERATOR ===== */
.solution-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Solution Header */
.solution-header {
    margin-bottom: var(--space-3xl);
}

.solution-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

/* Rotating Subject Text */
.rotating-subject {
    color: var(--brand-primary);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* Integration Visual */
.integration-visual {
    position: relative;
    width: 400px;
    height: 400px;
    margin: var(--space-3xl) auto;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-text {
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
}

.hub-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

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

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Subject Nodes */
.subject-nodes {
    position: absolute;
    inset: 0;
}

.subject-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

/* Position nodes in a circle */
.subject-node[data-subject="pathology"] { top: 20px; left: 50%; transform: translateX(-50%); }
.subject-node[data-subject="pharm"] { top: 30%; right: 40px; }
.subject-node[data-subject="micro"] { bottom: 30%; right: 40px; }
.subject-node[data-subject="physio"] { bottom: 20px; left: 50%; transform: translateX(-50%); }
.subject-node[data-subject="patho"] { bottom: 30%; left: 40px; }
.subject-node[data-subject="clinical"] { top: 30%; left: 40px; }

.subject-node:hover {
    transform: translateX(-50%) scale(1.1) translateY(-4px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-lg);
}

.subject-node[data-subject="pharm"]:hover,
.subject-node[data-subject="micro"]:hover { transform: scale(1.1) translate(-4px, -4px); }

.subject-node[data-subject="patho"]:hover,
.subject-node[data-subject="clinical"]:hover { transform: scale(1.1) translate(4px, -4px); }

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

.node-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Features Container */
.features-container {
    margin-top: var(--space-4xl);
}

/* Feature Categories */
.feature-category {
    background: var(--bg-accent);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border-color);
    margin-bottom: var(--space-3xl);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.category-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

/* Category Colors */
.category-live .category-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--brand-primary);
}

.category-personal .category-badge {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.category-community .category-badge {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.category-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

/* Category Features Grid */
.category-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced Feature Cards */
.feature-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Category-specific borders */
.category-live .feature-card {
    border-color: rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.category-personal .feature-card {
    border-color: rgba(139, 92, 246, 0.2);
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.category-community .feature-card {
    border-color: rgba(34, 197, 94, 0.2);
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(34, 197, 94, 0.02) 100%);
}

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

.category-live .feature-card:hover { border-color: var(--brand-primary); }
.category-personal .feature-card:hover { border-color: #8b5cf6; }
.category-community .feature-card:hover { border-color: var(--success); }

/* Feature Icon */
.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-live .feature-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--brand-primary);
}

.category-personal .feature-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.category-community .feature-icon {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

/* Feature Content */
.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.125rem;
    margin: 0 0 var(--space-sm) 0;
    color: var(--text-primary);
}

.feature-highlight {
    color: var(--brand-primary);
    font-weight: 700;
}

.category-personal .feature-highlight { color: #8b5cf6; }
.category-community .feature-highlight { color: var(--success); }

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 var(--space-md) 0;
    font-size: 0.9375rem;
}

/* Feature Stat */
.feature-stat {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stat-icon {
    font-size: 1rem;
}

/* Emphasis Text */
.emphasis-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: var(--space-3xl);
}

/* Dark Mode */
[data-theme="dark"] .solution-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(30, 41, 59, 0.5) 100%);
}

[data-theme="dark"] .subject-node {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .hub-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

[data-theme="dark"] .feature-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .feature-stat {
    background: rgba(51, 65, 85, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .integration-visual {
        width: 300px;
        height: 300px;
        margin: var(--space-2xl) auto;
    }
    
    .central-hub {
        width: 100px;
        height: 100px;
    }
    
    .hub-text {
        font-size: 0.875rem;
    }
    
    .subject-node {
        width: 60px;
        height: 60px;
    }
    
    .node-icon {
        font-size: 1.25rem;
    }
    
    .node-label {
        font-size: 0.625rem;
    }
    
    /* Adjust node positions for mobile */
    .subject-node[data-subject="pathology"] { top: 10px; }
    .subject-node[data-subject="pharm"] { right: 20px; }
    .subject-node[data-subject="micro"] { right: 20px; }
    .subject-node[data-subject="physio"] { bottom: 10px; }
    .subject-node[data-subject="patho"] { left: 20px; }
    .subject-node[data-subject="clinical"] { left: 20px; }
    
    .category-features {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }
    
    .feature-icon {
        margin: 0 auto var(--space-md);
    }
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    background: var(--bg-secondary);
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
    border: 2px solid var(--success);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
}

.guarantee-icon {
    display: inline-flex;
    color: var(--success);
    margin-bottom: var(--space-lg);
}

.guarantee-main {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    font-weight: 600;
}

.guarantee-requirements {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    text-align: left;
}

.guarantee-requirements h4 {
    margin-bottom: var(--space-md);
}

.guarantee-requirements ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.guarantee-requirements li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
}

.guarantee-footer {
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== VALUE STACK ===== */
.value-section {
    background: var(--bg-primary);
}

/* Value Section Header - Hormozi Style */
.value-section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.value-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: var(--space-md);
    position: relative;
    padding: 0 var(--space-lg);
}

.value-eyebrow::before,
.value-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--border-color);
}

.value-eyebrow::before {
    left: -50px;
}

.value-eyebrow::after {
    right: -50px;
}

.value-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 0 0 var(--space-lg);
    letter-spacing: -0.02em;
}

.value-subtitle {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: var(--brand-primary);
    margin-top: var(--space-xs);
}

/* Dark mode adjustments */
[data-theme="dark"] .value-eyebrow::before,
[data-theme="dark"] .value-eyebrow::after {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .value-eyebrow {
        font-size: 0.625rem;
    }
    
    .value-eyebrow::before,
    .value-eyebrow::after {
        width: 20px;
    }
    
    .value-eyebrow::before {
        left: -25px;
    }
    
    .value-eyebrow::after {
        right: -25px;
    }
    
    .value-title {
        font-size: 2rem;
    }
    
    .value-subtitle {
        font-size: 1.25rem;
    }
}

.value-stack {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.value-stack::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.value-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.value-item:last-of-type {
    margin-bottom: 0;
}

.value-check {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--success), #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.value-check svg {
    width: 24px;
    height: 24px;
    color: white;
}

.value-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.value-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
    max-width: 50%;
}

.value-price {
    color: var(--text-tertiary);
    text-align: right;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    padding-left: var(--space-md);
}

.value-price::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--error);
    opacity: 0.7;
    transform: translateY(-50%);
}

/* Dark mode value stack styles */
[data-theme="dark"] .value-stack {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(59, 130, 246, 0.1));
    border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .value-item {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(59, 130, 246, 0.1);
}

[data-theme="dark"] .value-item:hover {
    border-color: var(--brand-primary);
    background: rgba(30, 41, 59, 0.8);
}

[data-theme="dark"] .value-total {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(59, 130, 246, 0.1));
    border-color: rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .value-stack {
        padding: var(--space-xl);
    }
    
    .value-item {
        padding: var(--space-md);
        gap: var(--space-md);
    }
    
    .value-check {
        width: 40px;
        height: 40px;
    }
    
    .value-check svg {
        width: 20px;
        height: 20px;
    }
    
    .value-content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
    
    .value-name {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .value-price {
        max-width: 100%;
        text-align: left;
        font-size: 0.8rem;
    }
    
    .total-amount {
        font-size: 2rem;
    }
}

.value-total {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(59, 130, 246, 0.3);
    text-align: center;
    position: relative;
}

.total-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.total-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--error);
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: rgba(239, 68, 68, 0.7);
}


.value-investment {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.value-investment strong {
    color: var(--brand-primary);
    font-size: 1.5rem;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.faq-item {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.faq-question {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Is This For You Section ===== */
.is-this-for-you-section {
    background: var(--bg-secondary);
}

.who-its-for-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.who-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 2px solid;
}

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

.who-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.who-card li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--space-md);
}

.who-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-size: contain;
}

.who-for {
    border-color: var(--success);
    background-color: var(--success-light);
}

.who-for li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.who-not-for {
    border-color: var(--error);
    background-color: var(--error-light);
}

.who-not-for li::before {
    content: '✗';
    color: var(--error);
    font-weight: bold;
}

@media (max-width: 768px) {
    .who-its-for-container {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--bg-primary);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.cta-note {
    margin-top: var(--space-md);
    color: var(--text-tertiary);
}

/* ===== APPLICATION FORM ===== */
.application-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.application-form input,
.application-form select,
.application-form textarea {
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
    width: 100%;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: var(--bg-primary);
}

.application-form input::placeholder,
.application-form textarea::placeholder {
    color: var(--text-tertiary);
}

.application-form textarea {
    font-family: inherit;
    line-height: 1.6;
    min-height: 100px;
    resize: vertical;
}

.application-form select {
    cursor: pointer;
}

/* Character counter */
.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: var(--space-xs);
}

/* Dark mode form styles */
[data-theme="dark"] .application-form {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .application-form input,
[data-theme="dark"] .application-form select,
[data-theme="dark"] .application-form textarea {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .application-form input:focus,
[data-theme="dark"] .application-form select:focus,
[data-theme="dark"] .application-form textarea:focus {
    background: rgba(30, 41, 59, 1);
    border-color: var(--brand-primary);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .application-form {
        padding: var(--space-xl);
    }
}

/* ===== METHOD SECTION ===== */
/* ===== METHOD SECTION - THE FOCAL POINT METHOD ===== */
.method-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.method-header {
    margin-bottom: var(--space-2xl);
}

.method-badge {
    display: inline-block;
    background: var(--brand-gradient);
    color: white;
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.method-tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: var(--space-sm);
}

/* Impact Visual */
.impact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.before-state,
.after-state {
    flex: 1;
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.before-state {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.after-state {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.state-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.before-state .state-label {
    color: #ef4444;
}

.after-state .state-label {
    color: #22c55e;
}

.state-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.payment-plan {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

.payment-plan strong {
    color: var(--brand-primary);
}

.state-result {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.transformation-arrow {
    flex-shrink: 0;
    color: var(--brand-primary);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Method Framework */
.method-framework {
    position: relative;
    margin-top: var(--space-2xl);
    min-height: 600px;
}

/* Focal Point Visual */
.focal-point-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.focal-lens {
    width: 180px;
    height: 180px;
    position: relative;
}

.lens-ring {
    position: absolute;
    inset: 0;
    border: 4px solid var(--brand-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: lensRotate 20s linear infinite;
}

.lens-ring::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    opacity: 0.5;
}

.lens-core {
    position: absolute;
    inset: 30%;
    background: var(--brand-gradient);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    animation: corePulse 3s ease-in-out infinite;
}

@keyframes lensRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.focus-rays {
    position: absolute;
    inset: -50px;
}

.focus-rays span {
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--brand-primary), transparent);
    opacity: 0.3;
}

.focus-rays span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.focus-rays span:nth-child(2) { bottom: 0; left: 50%; transform: translateX(-50%); }
.focus-rays span:nth-child(3) { left: 0; top: 50%; transform: translateY(-50%) rotate(90deg); }
.focus-rays span:nth-child(4) { right: 0; top: 50%; transform: translateY(-50%) rotate(90deg); }

/* Method Pillars */
.method-pillars {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 0 auto;
}

.method-pillar {
    position: absolute;
    width: 280px;
    padding: var(--space-xl);
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.pillar-diagnose { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.2s; }
.pillar-map { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.4s; }
.pillar-solve { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.6s; }
.pillar-master { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 0.8s; }

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.pillar-map { animation-name: fadeInScaleRight; }
.pillar-master { animation-name: fadeInScaleLeft; }

@keyframes fadeInScaleRight {
    to { opacity: 1; transform: translateY(-50%) scale(1); }
}

@keyframes fadeInScaleLeft {
    to { opacity: 1; transform: translateY(-50%) scale(1); }
}

.method-pillar:hover {
    border-color: var(--brand-primary);
    transform: translateX(-50%) translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.pillar-map:hover { transform: translateY(-50%) translateX(-5px) scale(1.02); }
.pillar-master:hover { transform: translateY(-50%) translateX(5px) scale(1.02); }

.pillar-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--brand-primary);
}

.method-pillar h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.method-pillar p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.pillar-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Connection Lines */
.pillar-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    fill: none;
    stroke: var(--brand-primary);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.2;
    animation: dashFlow 20s linear infinite;
}

@keyframes dashFlow {
    to { stroke-dashoffset: -100; }
}

/* Method CTA */
.method-cta {
    margin-top: var(--space-4xl);
}

.method-promise {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.method-promise strong {
    color: var(--text-primary);
}

/* Dark Mode Method Styles */
[data-theme="dark"] .method-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(30, 41, 59, 0.5) 100%);
}

[data-theme="dark"] .impact-visual {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .lens-core {
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.8);
}

[data-theme="dark"] .method-pillar {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .pillar-icon {
    background: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .connection-line {
    stroke: rgba(59, 130, 246, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .method-framework {
        margin-top: var(--space-xl);
        min-height: auto;
    }
    
    /* Compact Focal Lens for Mobile */
    .focal-point-visual {
        position: relative;
        transform: none;
        margin: 0 auto var(--space-2xl);
        width: 120px;
        height: 120px;
    }
    
    .focal-lens {
        width: 120px;
        height: 120px;
    }
    
    .lens-core {
        inset: 35%;
    }
    
    .focus-rays {
        display: none; /* Too busy on mobile */
    }
    
    /* Mobile Method Pillars with Connection */
    .method-pillars {
        height: auto;
        display: block;
        position: relative;
        padding-left: 60px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Vertical Progress Line */
    .method-pillars::before {
        content: '';
        position: absolute;
        left: 24px;
        top: 20px;
        bottom: 20px;
        width: 2px;
        background: linear-gradient(to bottom, 
            var(--brand-primary) 0%, 
            var(--brand-primary) 25%,
            var(--brand-secondary) 50%,
            var(--success) 100%);
        opacity: 0.3;
    }
    
    .method-pillar {
        position: relative;
        width: 100%;
        margin-bottom: var(--space-xl);
        padding: var(--space-lg);
        transform: none !important;
        animation: slideInRight 0.5s ease-out forwards;
        opacity: 0;
    }
    
    .pillar-diagnose { animation-delay: 0.1s; }
    .pillar-map { animation-delay: 0.2s; }
    .pillar-solve { animation-delay: 0.3s; }
    .pillar-master { animation-delay: 0.4s; }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Step Number Indicators */
    .method-pillar::before {
        content: attr(data-step);
        position: absolute;
        left: -36px;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        background: var(--bg-primary);
        border: 2px solid var(--brand-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.875rem;
        color: var(--brand-primary);
        z-index: 2;
    }
    
    .method-pillar:hover::before {
        background: var(--brand-primary);
        color: white;
    }
    
    /* Connecting Lines Between Cards */
    .method-pillar:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: calc(var(--space-xl) * -1);
        left: -25px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--brand-primary);
        opacity: 0.3;
    }
    
    /* Adjust Pillar Content for Mobile */
    .pillar-icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--space-sm);
    }
    
    .method-pillar h3 {
        font-size: 1.125rem;
    }
    
    .method-pillar p {
        font-size: 0.875rem;
    }
    
    /* Compact Stats Display */
    .pillar-stat {
        flex-direction: row;
        align-items: center;
        gap: var(--space-xs);
        padding-top: var(--space-sm);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Hide Desktop Connection Lines */
    .pillar-connections {
        display: none;
    }
    
    /* Method CTA Mobile */
    .method-cta {
        margin-top: var(--space-2xl);
        padding: 0 var(--space-md);
    }
    
    .method-promise {
        font-size: 1rem;
    }
}

/* Small Phone Adjustments */
@media (max-width: 375px) {
    .method-pillars {
        padding-left: 50px;
    }
    
    .method-pillar {
        padding: var(--space-md);
    }
    
    .method-pillar::before {
        left: -28px;
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .pillar-icon {
        width: 40px;
        height: 40px;
    }
}


/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: #0f172a;
    color: #f1f5f9;
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: calc(var(--space-3xl) * 2);
    overflow: hidden;
}

[data-theme="dark"] .footer {
    background: #000000;
}

/* Footer gradient overlay */
.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--brand-primary) 0%, 
        #60a5fa 25%, 
        var(--brand-primary) 50%,
        #60a5fa 75%,
        var(--brand-primary) 100%
    );
    background-size: 200% 100%;
    animation: gradientSlide 3s ease-in-out infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Main footer content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
}

/* Footer sections */
.footer-section {
    min-width: 0;
}

.footer-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: var(--space-md);
}

/* Brand section */
.footer-brand-section {
    max-width: 320px;
}

@media (max-width: 640px) {
    .footer-brand-section {
        max-width: none;
        margin: 0 auto;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

@media (max-width: 640px) {
    .footer-brand {
        justify-content: center;
    }
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--brand-primary);
}

.footer-brand-name span {
    font-weight: 300;
    color: #94a3b8;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

/* Social links */
.footer-social {
    display: flex;
    gap: var(--space-sm);
}

@media (max-width: 640px) {
    .footer-social {
        justify-content: center;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Footer links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    transition: all 0.2s ease;
    position: relative;
}

@media (max-width: 640px) {
    .footer-link {
        justify-content: center;
    }
}

.footer-link:hover {
    color: var(--brand-primary);
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .footer-link:hover {
        transform: none;
    }
}

.footer-link svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.footer-link:hover svg {
    opacity: 1;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

.footer-copyright p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    gap: var(--space-sm);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: #cbd5e1;
}

/* Disclaimer */
.disclaimer {
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.disclaimer p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.6;
    color: #64748b;
}

.disclaimer strong {
    color: #94a3b8;
    font-weight: 600;
}

/* Dark theme adjustments */
[data-theme="dark"] .footer {
    background: #000000;
}

[data-theme="dark"] .social-link {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .disclaimer {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.03);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .urgency-box {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Hero content animation */
.hero-title {
    animation: slideUp 0.8s ease-out, gentleFloat 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Very subtle floating animation */
@keyframes gentleFloat {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-subtitle {
    animation: slideUp 0.8s ease-out 0.1s backwards;
}

.hero-guarantee {
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.urgency-box {
    animation: slideUp 0.8s ease-out 0.3s backwards;
}

/* Problem section animations */
.problem-section .section-title {
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.problem-item {
    animation: slideUp 0.8s ease-out backwards;
}

.problem-item:nth-child(1) {
    animation-delay: 0.5s;
}

.problem-item:nth-child(2) {
    animation-delay: 0.6s;
}

.problem-item:nth-child(3) {
    animation-delay: 0.7s;
}

.problem-item:nth-child(4) {
    animation-delay: 0.8s;
}

.problem-question {
    animation: slideUp 0.8s ease-out 0.9s backwards;
}

/* Journey section animations */
.journey-header {
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.journey-milestone {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.journey-milestone:nth-child(1) {
    animation-delay: 0.5s;
}

.journey-milestone:nth-child(2) {
    animation-delay: 0.7s;
}

.journey-milestone:nth-child(3) {
    animation-delay: 0.9s;
}

.journey-milestone:nth-child(4) {
    animation-delay: 1.1s;
}

.tutor-profile-card {
    animation: slideUp 0.8s ease-out 1.3s backwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animated counter for student number */
@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-padding > .container > * {
    animation: fadeIn 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* ===== DARK MODE SPECIFIC ===== */

[data-theme="dark"] .urgency-box {
    background: var(--bg-secondary);
    border-color: var(--bg-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .guarantee-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(22, 163, 74, 0.05));
}

/* Dark mode problem section */
[data-theme="dark"] .problem-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .problem-section::before {
    background-image: radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
}

[data-theme="dark"] .problem-item {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(30, 41, 59, 0.5) 100%);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .problem-item:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .problem-icon {
    background: rgba(239, 68, 68, 0.15);
}

[data-theme="dark"] .problem-item:nth-child(2) .problem-icon {
    background: rgba(251, 191, 36, 0.15);
}

[data-theme="dark"] .problem-item:nth-child(3) .problem-icon {
    background: rgba(59, 130, 246, 0.15);
}

[data-theme="dark"] .problem-question::before {
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
}

/* Dark mode journey section */
[data-theme="dark"] .tutor-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

[data-theme="dark"] .tutor-section::before {
    background-image: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 70% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 40%);
}

[data-theme="dark"] .journey-line {
    background: linear-gradient(180deg, var(--error) 0%, var(--warning) 33%, var(--brand-primary) 66%, var(--success) 100%);
    opacity: 0.5;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

[data-theme="dark"] .marker-icon {
    background: var(--bg-secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(239, 68, 68, 0.1);
}

[data-theme="dark"] .journey-milestone:nth-child(2) .marker-icon {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(251, 191, 36, 0.1);
}

[data-theme="dark"] .journey-milestone:nth-child(3) .marker-icon {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(59, 130, 246, 0.1);
}

[data-theme="dark"] .journey-milestone.milestone-success .marker-icon {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 197, 94, 0.1) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(34, 197, 94, 0.2);
}

[data-theme="dark"] .milestone-content {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .milestone-stat {
    border-top-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .tutor-profile-card {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .tutor-photo {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .achievement-badge {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .achievement-badge:hover {
    background: rgba(59, 130, 246, 0.15);
    color: var(--brand-primary);
}

/* ===== MOBILE MENU (if needed) ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--bg-accent);
    padding: var(--space-lg);
    z-index: 999;
}

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

.mobile-nav-link {
    display: block;
    padding: var(--space-sm) 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===== FOCUS STATES ===== */
button:focus,
a:focus,
input:focus,
select:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .nav-container,
    .cta-section,
    .footer {
        display: none;
    }
}

/* ===== TUTOR PHOTO ENHANCEMENT ===== */
.tutor-photo {
    object-fit: cover;
    object-position: center;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    margin: 0 -var(--space-lg);
    padding: 0 var(--space-lg);
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform 0.5s ease;
    padding: var(--space-md) 0;
}

.testimonial-card {
    flex: 0 0 min(400px, 85vw);
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-detail {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.author-name::after {
    content: " • ";
    color: var(--text-tertiary);
    margin: 0 var(--space-xs);
}

/* Navigation arrows */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-primary);
    border: 1px solid var(--bg-accent);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 2;
    color: var(--text-secondary);
}

.testimonial-nav:hover {
    background: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

@media (max-width: 768px) {
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-container {
        margin: 0;
        padding: 0;
    }
}

/* ===== ENROLLMENT OPTIONS ===== */
.enrollment-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    margin: var(--space-3xl) 0;
    flex-wrap: wrap;
}

.enrollment-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 240px;
    max-width: 300px;
    box-shadow: var(--shadow-md);
}

.enrollment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-primary);
    background: var(--bg-secondary);
}

.semester-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.enrollment-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.enrollment-details {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.enrollment-details .dot {
    font-size: 0.5rem;
}

.enrollment-or {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-tertiary);
    padding: 0 var(--space-lg);
}

/* Dark mode adjustments */
[data-theme="dark"] .enrollment-card {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .enrollment-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--brand-primary);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .enrollment-options {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .enrollment-card {
        width: 100%;
        max-width: 100%;
        padding: var(--space-xl);
    }
    
    .enrollment-price {
        font-size: 2.5rem;
    }
    
    .enrollment-or {
        transform: rotate(90deg);
        margin: var(--space-md) 0;
    }
}

/* Keep old container for backwards compatibility */
.cohort-options-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cohort-option-card {
    background: var(--bg-primary);
    border: 2px solid var(--bg-accent);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.cohort-option-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-primary);
}

.cohort-option-card.recommended {
    border-color: var(--brand-primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--brand-accent) 100%);
}

/* Dark mode specific styles for pricing cards */
[data-theme="dark"] .cohort-option-card.recommended {
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-color: var(--brand-primary);
}

[data-theme="dark"] .cohort-duration {
    background: rgba(51, 65, 85, 0.8);
    color: var(--text-secondary);
}

/* Ensure proper text contrast in dark mode */
[data-theme="dark"] .cohort-option-card {
    background: var(--bg-primary) !important;
    border-color: var(--bg-accent) !important;
}

[data-theme="dark"] .cohort-header h3 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .cohort-subtitle {
    color: var(--brand-primary) !important;
}

[data-theme="dark"] .cohort-description {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .founding-price {
    color: var(--brand-primary) !important;
}

[data-theme="dark"] .standard-price {
    color: var(--text-tertiary) !important;
}

[data-theme="dark"] .cohort-note {
    color: var(--success) !important;
}

.recommended-badge, .launching-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.recommended-badge {
    background: var(--gradient-primary);
}

.launching-badge {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

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

.cohort-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.cohort-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-primary);
    font-style: italic;
    margin-bottom: var(--space-xs);
}

.cohort-duration {
    display: inline-block;
    background: var(--bg-accent);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

.cohort-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    text-align: center;
}

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

.founding-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
}

.standard-price {
    display: block;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
    margin-top: 0.25rem;
}

.cohort-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .cohort-options-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        margin: var(--space-xl) 0;
    }
    
    .cohort-option-card {
        padding: var(--space-lg);
    }
    
    .cohort-header h3 {
        font-size: 1.25rem;
    }
    
    .founding-price {
        font-size: 2rem;
    }
}

/* ===== SIGNUP INSTRUCTIONS ===== */
.signup-instructions {
    text-align: center;
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--brand-primary);
}

.signup-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: var(--space-md);
    animation: bounce 2s infinite;
}

.signup-arrow svg {
    color: white;
}

.signup-instructions h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.signup-instructions p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .signup-instructions {
        margin: var(--space-xl) 0;
        padding: var(--space-lg);
    }
    
    .signup-instructions h3 {
        font-size: 1.25rem;
    }
    
    .signup-instructions p {
        font-size: 1rem;
    }
}

/* ===== BUNDLE VALUE CARD ===== */
.bundle-value-card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--brand-accent) 100%);
    border: 3px solid var(--brand-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    margin: var(--space-2xl) 0;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.bundle-value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.bundle-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.bundle-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.bundle-includes {
    display: grid;
    gap: var(--space-md);
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-accent);
}

.bundle-item {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.bundle-pricing {
    text-align: center;
    position: relative;
    z-index: 1;
}

.bundle-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.bundle-label {
    font-weight: 600;
    color: var(--text-primary);
}

.bundle-separate-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
    text-decoration: line-through;
}

.bundle-deal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-lg);
    border: 2px solid var(--success);
}

.bundle-get-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.bundle-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--success);
    line-height: 1;
}

.bundle-price-range {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--success);
    line-height: 1;
}

.bundle-warning {
    background: var(--warning-light);
    color: #92400e;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 1rem;
    margin-bottom: var(--space-md);
    border: 1px solid var(--warning);
}

.bundle-note {
    color: var(--success);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .bundle-value-card {
        padding: var(--space-xl);
        margin: var(--space-xl) 0;
    }
    
    .bundle-header h3 {
        font-size: 1.5rem;
    }
    
    .bundle-value, .bundle-deal {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .bundle-price {
        font-size: 2.5rem;
    }
}

/* ===== PRICING DISPLAY ===== */
.pricing-display {
    margin-top: var(--space-2xl);
}

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

.divider-text {
    display: inline-block;
    background: var(--bg-primary);
    padding: 0 var(--space-lg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-tertiary);
    position: relative;
}

.pricing-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
    z-index: -1;
}

.term-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.term-price-item {
    text-align: center;
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    min-width: 220px;
    flex: 1;
    max-width: 280px;
}

.term-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.term-details {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: var(--space-lg);
}

.term-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: var(--space-xs);
}

.pricing-separator {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-tertiary);
    padding: 0 var(--space-md);
}

/* Dark mode adjustments */
[data-theme="dark"] .term-price-item {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .divider-text {
    background: var(--bg-primary);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .term-pricing {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .pricing-separator {
        transform: rotate(90deg);
        margin: var(--space-md) 0;
    }
    
    .term-price-item {
        width: 100%;
        max-width: 300px;
    }
    
    .term-price {
        font-size: 2rem;
    }
}

/* Remove old pricing card styles - keeping container for backwards compatibility */
.pricing-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.pricing-card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--brand-accent) 100%);
    border: 2px solid var(--success);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-primary);
}

.pricing-card-header {
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.pricing-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--space-xs);
}

.pricing-card-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-primary);
    font-style: italic;
}

.pricing-card-price {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--success);
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-md);
}

.pricing-card-duration {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-accent);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-top: var(--space-xs);
}

.pricing-card-footer {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--bg-accent);
}

.pricing-increase {
    font-size: 0.75rem;
    color: var(--warning);
    font-weight: 500;
}

/* Dark mode styles for pricing cards */
[data-theme="dark"] .pricing-card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(59, 130, 246, 0.15) 100%) !important;
    border-color: var(--brand-primary) !important;
}

[data-theme="dark"] .pricing-card-title {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .pricing-card-subtitle {
    color: var(--brand-primary) !important;
}

[data-theme="dark"] .pricing-card-duration {
    background: rgba(51, 65, 85, 0.8) !important;
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .pricing-card-price {
    color: var(--brand-primary) !important;
}

[data-theme="dark"] .pricing-card-footer {
    border-top-color: var(--bg-accent) !important;
}

[data-theme="dark"] .pricing-increase {
    color: var(--warning) !important;
}

@media (max-width: 768px) {
    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .pricing-card {
        padding: var(--space-md);
    }
    
    .pricing-card-price {
        font-size: 1.25rem;
    }
}

/* ===== MODULE ACCELERATOR PROGRAM STATEMENT ===== */
.program-statement {
    margin: var(--space-2xl) auto;
    max-width: 800px;
    text-align: center;
}

.statement-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 500;
}

.statement-text .highlight {
    color: var(--brand-primary);
    font-weight: 700;
    border-bottom: 2px solid var(--brand-primary);
    padding-bottom: 2px;
}

/* Rotating subject text */
.rotating-subject {
    transition: opacity 0.3s ease;
}


/* Dark mode adjustments */
[data-theme="dark"] .statement-text {
    color: var(--text-secondary);
}

[data-theme="dark"] .statement-text .highlight {
    color: var(--brand-primary);
    border-bottom-color: var(--brand-primary);
}

[data-theme="dark"] .feature-category {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(59, 130, 246, 0.2);
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .program-statement {
        margin: var(--space-xl) auto;
        padding: 0 var(--space-md);
    }
    
    .statement-text {
        font-size: 1.125rem;
        line-height: 1.7;
    }
}

/* ===== HORMOZI-INSPIRED ENHANCEMENTS ===== */

/* Founding Cohort Banner in Hero */
.founding-cohort-banner {
    background: var(--warning-light);
    border: 2px solid var(--warning);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.founding-cohort-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cohort-badge {
    display: inline-block;
    background: var(--warning);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-md);
}

.cohort-offer {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: var(--space-sm) 0;
}

.cohort-deadline {
    color: var(--error);
    font-weight: 600;
    margin: 0;
}

/* Fast-Action Bonuses Section */
.bonuses-section {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(239, 68, 68, 0.02));
    position: relative;
}

.bonuses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bonuses-header {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-2xl);
}

.urgency-badge {
    display: inline-block;
    background: var(--warning);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

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

.bonuses-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-top: var(--space-sm);
}

.bonuses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.bonus-card {
    background: var(--bg-primary);
    border: 2px solid var(--brand-accent);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transform: rotate(-45deg);
    transition: all var(--transition-base);
}

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

.bonus-card:hover::before {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(-45deg); }
    100% { transform: rotate(315deg); }
}

.bonus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.bonus-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.bonus-value {
    display: inline-block;
    background: var(--success-light);
    color: var(--success);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    border: 2px solid var(--success);
}

.bonus-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.bonuses-countdown {
    background: var(--warning-light);
    border: 2px solid var(--warning);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-2xl) 0;
    text-align: center;
}

.countdown-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.countdown-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.countdown-time {
    color: var(--warning);
    font-weight: 800;
    font-size: 1.5rem;
    animation: countdownPulse 2s infinite;
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); color: var(--warning); }
    50% { transform: scale(1.1); color: var(--error); }
}

.countdown-note {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin: 0;
}

/* Enhanced Value Stack Elements */
.founding-cohort-savings {
    margin-top: var(--space-lg);
}

.savings-badge {
    display: inline-block;
    background: var(--warning);
    color: white;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.bonus-item {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(34, 197, 94, 0.02));
    border-color: rgba(34, 197, 94, 0.3);
}

.bonus-check {
    background: linear-gradient(135deg, var(--warning), #f59e0b);
}

.bonus-badge {
    display: inline-block;
    background: var(--warning);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: var(--space-xs);
}

.original-price {
    color: var(--text-tertiary);
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.original-price strike {
    color: var(--error);
}


/* Enhanced Pricing Cards */
.founding-cohort-header {
    background: var(--warning-light);
    border: 2px solid var(--warning);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.founding-cohort-card {
    border: 3px solid var(--brand-primary);
    background: linear-gradient(135deg, var(--bg-primary), var(--brand-accent));
    position: relative;
    overflow: hidden;
}

.cohort-header {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) var(--space-md) calc(-1 * var(--space-lg));
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}


.price-comparison {
    margin: var(--space-md) 0;
}

.savings-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: var(--space-xs);
    box-shadow: var(--shadow-md);
}

.bonus-reminder {
    background: var(--warning-light);
    color: var(--warning);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: var(--space-md);
    border: 1px solid var(--warning);
}

.pricing-urgency {
    background: var(--warning-light);
    border: 2px solid var(--warning);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    text-align: center;
}

.urgency-text {
    color: var(--warning);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.scarcity-text {
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

/* Dark Mode Adjustments */
[data-theme="dark"] .founding-cohort-banner,
[data-theme="dark"] .founding-cohort-header {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--warning);
}

[data-theme="dark"] .bonuses-section {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(239, 68, 68, 0.05));
}

[data-theme="dark"] .bonus-card {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
}

[data-theme="dark"] .bonus-card:hover {
    border-color: var(--brand-primary);
    background: rgba(30, 41, 59, 0.9);
}

[data-theme="dark"] .founding-cohort-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(59, 130, 246, 0.1));
}

[data-theme="dark"] .pricing-urgency {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--warning);
}

[data-theme="dark"] .bonuses-countdown {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--warning);
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bonuses-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .bonus-card {
        padding: var(--space-lg);
    }
    
    .bonus-icon {
        width: 60px;
        height: 60px;
    }
    
    .bonus-title {
        font-size: 1.25rem;
    }
    
    .countdown-text {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .countdown-time {
        font-size: 1.25rem;
    }
    
    .founding-cohort-banner,
    .founding-cohort-header {
        padding: var(--space-lg);
    }
    
    .cohort-offer {
        font-size: 1.125rem;
    }
    
    .savings-badge {
        font-size: 1rem;
        padding: var(--space-sm) var(--space-lg);
    }
}

/* ===== FLOATING BONUSES ELEMENT ===== */
.floating-bonuses {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 1000;
    background: var(--bg-primary);
    border: 2px solid var(--warning);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 320px;
    width: 100%;
    transition: all 0.3s ease;
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.floating-bonuses.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.floating-bonuses.dismissed {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.floating-bonuses-content {
    position: relative;
}

.floating-bonuses-compact {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    gap: var(--space-sm);
    flex-wrap: wrap;
    min-width: 0;
}

.floating-bonuses-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--warning);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.floating-bonuses-text {
    flex: 1;
}

.floating-bonuses-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.2;
}

.floating-bonuses-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 2px;
}

.floating-bonuses-cta {
    background: var(--warning);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-xs) var(--space-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.floating-bonuses-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.floating-bonuses-actions {
    display: flex;
    gap: var(--space-xs);
    flex-shrink: 0;
    align-items: center;
    flex-wrap: wrap;
}

.floating-bonuses-secondary {
    background: transparent;
    color: var(--warning);
    border: 1px solid var(--warning);
    border-radius: var(--radius-md);
    padding: var(--space-xs) var(--space-sm);
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    min-width: 0;
    flex-shrink: 1;
}

.floating-bonuses-secondary:hover {
    background: var(--warning);
    color: white;
    transform: translateY(-1px);
}

/* Override btn-primary in floating bonuses to use warning colors */
.floating-bonuses .btn-primary {
    background: var(--warning);
    color: white;
}

.floating-bonuses .btn-primary:hover {
    background: var(--warning);
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.floating-bonuses-toggle {
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    margin-left: var(--space-xs);
    flex-shrink: 0;
}

.floating-bonuses-toggle:hover {
    background: var(--bg-accent);
    color: var(--text-primary);
}

.floating-bonuses-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid var(--bg-accent);
}

.floating-bonuses.expanded .floating-bonuses-expanded {
    max-height: 200px;
}

.floating-bonus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
}

.floating-bonus-item:not(:last-child) {
    border-bottom: 1px solid var(--bg-accent);
}

.floating-bonus-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.floating-bonus-value {
    font-weight: 700;
    color: var(--success);
    font-size: 0.875rem;
}

.floating-bonuses-action {
    padding: var(--space-md);
    padding-top: var(--space-sm);
}

.floating-bonuses-dismiss {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--error);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.floating-bonuses-dismiss:hover {
    background: var(--error);
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-bonuses {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: none;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        transform: translateY(100%);
    }
    
    .floating-bonuses.visible {
        transform: translateY(0);
    }
    
    .floating-bonuses.dismissed {
        transform: translateY(100%);
    }
    
    .floating-bonuses-compact {
        padding: var(--space-lg) var(--space-md);
    }
    
    .floating-bonuses-toggle {
        display: block;
    }
    
    .floating-bonuses-dismiss {
        top: var(--space-sm);
        right: var(--space-sm);
        position: absolute;
    }
    
    .floating-bonuses-actions {
        flex-direction: column;
        gap: var(--space-xs);
        width: 100%;
    }
    
    .floating-bonuses-cta,
    .floating-bonuses-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Dark Mode Adjustments */
[data-theme="dark"] .floating-bonuses {
    background: rgba(30, 41, 59, 0.95);
    border-color: var(--warning);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .floating-bonuses-expanded {
    border-top-color: rgba(251, 191, 36, 0.2);
}

[data-theme="dark"] .floating-bonus-item:not(:last-child) {
    border-bottom-color: rgba(251, 191, 36, 0.2);
}

[data-theme="dark"] .floating-bonuses-toggle:hover {
    background: rgba(251, 191, 36, 0.1);
}