/* ============================================
   TAMI TUTOR - MODERN CSS
   Inter Font | Cinematic Vignette | Premium Feel
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --navy: #1F3F66;
    --deep-blue: #112D4A;
    --accent-blue: #5E84AE;
    --light-blue: #E8EFF7;
    --white: #FFFFFF;
    --off-white: #F7FAFC;
    --gray: #5F6E82;
    --light-gray: #E3EAF1;
    --text-dark: #2A3D52;
    --success: #10B981;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Crimson Pro', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --page-scroll-progress: 0;
    --hero-scroll-progress: 0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-screen.active {
    opacity: 1;
    pointer-events: all;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loader {
    margin-bottom: 2rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--white);
    width: 0%;
    transition: width 0.3s ease;
}

/* ============================================
   CINEMATIC VIGNETTE OVERLAY
   ============================================ */

.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded .vignette-overlay {
    opacity: calc(0.42 + (var(--page-scroll-progress) * 0.28));
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p, .section-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.01em;
}

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

.btn-primary:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
    transition: all var(--transition-normal);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav-brand,
.nav-cta {
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
}

.nav.collapsed {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.nav.collapsed .nav-container {
    justify-content: flex-end;
    padding: 0.3rem 1rem;
}

.nav.collapsed .nav-brand,
.nav.collapsed .nav-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.logo img {
    width: 86px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 2rem;
    width: min(360px, calc(100% - 3rem));
    display: grid;
    gap: 0.15rem;
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: all var(--transition-normal);
    z-index: 1001;
}

.nav.open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition-fast);
    position: relative;
    display: block;
    border-radius: 8px;
    padding: 0.7rem 0.85rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--accent-blue);
    background: var(--off-white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--navy);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    background: var(--white);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.nav-toggle:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-sm);
}

.nav-toggle-line {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--deep-blue);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.hero::before {
    content: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 20, 45, 0.24) 0%,
        rgba(7, 20, 45, 0.16) 34%,
        rgba(7, 20, 45, 0.04) 52%,
        rgba(7, 20, 45, 0) 68%
    );
    z-index: 2;
}

.hero-logo-watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    opacity: 0.16;
    z-index: 1;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
    pointer-events: none;
    user-select: none;
}

.hero-gradient {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 60%, var(--accent-blue) 100%);
    opacity: 0.03;
}

.hero > .container {
    position: relative;
    z-index: 4;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3.25rem;
    align-items: start;
    transform: translate3d(0, calc(var(--hero-scroll-progress) * -8px), 0);
    transition: transform 0.18s linear;
}

.hero-text {
    padding: 0.5rem 0;
}


.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--navy);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--accent-blue);
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.7vw, 1.65rem);
    font-style: italic;
    color: var(--accent-blue);
    margin-bottom: 1.1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.65;
    max-width: 54ch;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.hero-buttons .btn {
    min-width: 205px;
}

.hero-program {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 123, 167, 0.18);
    border-radius: 18px;
    padding: 2.15rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.hero-program-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
}

.hero-program h3 {
    font-size: 1.6rem;
    color: var(--deep-blue);
    margin-bottom: 0.875rem;
}

.hero-program-intro {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.hero-program-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.hero-program-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.hero-program-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent-blue);
}

.hero-guarantee-box {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 1.1rem 1.15rem;
    border: 1px solid rgba(74, 123, 167, 0.28);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 241, 248, 0.7) 0%, rgba(255, 255, 255, 0.96) 100%);
    max-width: 700px;
}

.hero-guarantee-badge {
    width: 94px;
    height: 94px;
    border-radius: 10px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.2rem;
}

.hero-guarantee-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-guarantee-copy {
    min-width: 0;
}

.hero-guarantee-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.hero-guarantee-text {
    font-size: 0.93rem;
    color: var(--gray);
    line-height: 1.45;
    margin-bottom: 0.6rem;
}

.hero-guarantee-link {
    font-size: 0.85rem;
    color: var(--deep-blue);
    font-weight: 600;
    border-bottom: 1px solid rgba(15, 39, 68, 0.35);
    transition: all var(--transition-fast);
}

.hero-guarantee-link:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

.hero-reservation-btn {
    width: 100%;
    margin-top: auto;
}

/* ============================================
   GUARANTEE LETTER
   ============================================ */

.guarantee-letter {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.guarantee-letter-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-md);
}

.guarantee-letter-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
}

.guarantee-letter-card h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.guarantee-letter-card p {
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.guarantee-signoff {
    margin-top: 1rem;
    margin-bottom: 0.2rem;
}

.guarantee-signature {
    font-family: 'Great Vibes', 'Brush Script MT', 'Segoe Script', cursive;
    font-size: clamp(2.4rem, 5vw, 3.3rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #173a61;
    line-height: 1.05;
    margin-bottom: 0;
    margin-top: -0.1rem;
    transform: rotate(-2deg);
    text-shadow: 0 1px 0 rgba(23, 58, 97, 0.15);
}

/* Animation Classes */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s ease;
    filter: blur(2px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.premium-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.992);
    filter: blur(3px);
    transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.premium-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .animate-in,
    .animate-on-scroll,
    .premium-reveal,
    .hero-content {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* ============================================
   VIDEO SECTION
   ============================================ */

.video-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.video-wrapper {
    margin-bottom: 3rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

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

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    color: var(--white);
    z-index: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.video-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-placeholder span {
    font-size: 0.875rem;
    color: var(--light-blue);
}

.video-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.highlight-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.highlight-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.highlight-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   DASHBOARD BLURB
   ============================================ */

.dashboard-blurb {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.dashboard-blurb-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.dashboard-blurb-media img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(27, 58, 95, 0.15);
}

.dashboard-blurb-content h2 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    margin-bottom: 0.9rem;
}

.dashboard-blurb-content p {
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.dashboard-blurb-content ul {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.25rem;
}

.dashboard-blurb-content li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.dashboard-blurb-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent-blue);
}

/* ============================================
   PROGRAMS TEASER (HOMEPAGE)
   ============================================ */

.programs-teaser {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.programs-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.programs-teaser-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 14px;
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.programs-teaser-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.programs-teaser-card.featured {
    border: 2px solid var(--accent-blue);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
}

.programs-teaser-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
}

.programs-teaser-card p {
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.programs-teaser-card ul {
    display: grid;
    gap: 0.55rem;
}

.programs-teaser-card li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.programs-teaser-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent-blue);
}

.programs-teaser-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   IEP SECTION
   ============================================ */

.iep-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.iep-section .section-header p {
    max-width: 70ch;
    margin: 0.9rem auto 0;
    line-height: 1.8;
}

.iep-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.iep-card {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 14px;
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
}

.iep-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.iep-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.iep-card li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--text-dark);
    line-height: 1.75;
}

.iep-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent-blue);
}

.iep-note {
    background: var(--off-white);
    border-left: 4px solid var(--accent-blue);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    color: var(--text-dark);
    line-height: 1.75;
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}

.iep-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   DISTINCTION SECTION
   ============================================ */

.distinction {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.credentials-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.credentials-layout {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.credentials-panel {
    position: relative;
    padding: 2rem 2rem 1.85rem;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.credentials-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--navy) 100%);
}

.credentials-academic {
    background: linear-gradient(140deg, var(--white) 0%, var(--light-blue) 100%);
}

.credentials-expertise {
    background: linear-gradient(160deg, var(--white) 0%, var(--off-white) 100%);
}

.credentials-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.85rem;
}

.credentials-expertise h3 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.credentials-block + .credentials-block {
    margin-top: 1rem;
}

.credentials-block h4 {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep-blue);
    margin-bottom: 0.6rem;
}

.credentials-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.credential-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--deep-blue);
    border: 1px solid rgba(94, 132, 174, 0.35);
    background: rgba(232, 239, 247, 0.65);
}

.credentials-list {
    display: grid;
    gap: 0.82rem;
}

.credentials-list-tight {
    margin-top: 0;
}

.credentials-list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

.credentials-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.53em;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent-blue);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

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

.comparison-card.enrichment {
    border-color: var(--accent-blue);
}

.comparison-card.enrichment:hover {
    border-color: var(--navy);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.comparison-card ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-card li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.comparison-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 700;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--light-gray);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--accent-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
}

.timeline-day {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.timeline-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-icon {
    color: var(--accent-blue);
    font-weight: 700;
    flex-shrink: 0;
}

.detail-item span {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ============================================
   ASSESSMENT SECTION
   ============================================ */

.assessment {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

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

.assessment-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.assessment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.assessment-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.assessment-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.assessment-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */

.philosophy {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-text p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.philosophy-text p:last-child {
    margin-bottom: 0;
}

.metrics-box {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-blue);
    box-shadow: var(--shadow-sm);
}

.metrics-box h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--navy);
}

.metric-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-item:last-child {
    margin-bottom: 0;
}

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

.metric-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.metric-description {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   REWARDS SECTION
   ============================================ */

.rewards {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reward-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.reward-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.reward-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.reward-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.reward-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.reward-card li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.reward-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.rewards-note {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-blue);
    line-height: 1.7;
}

.rewards-note strong {
    color: var(--navy);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.pricing-card {
    background: var(--white);
    border: 3px solid var(--light-gray);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
}

.pricing-card.enhanced {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-badge.special {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--navy) 100%);
    box-shadow: 0 4px 15px rgba(74, 123, 167, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.price-savings {
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--success);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-weight: 600;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    line-height: 1.6;
}

.feature-icon {
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

.pricing-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-note {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
}

.note-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.note-content {
    line-height: 1.7;
    color: var(--text-dark);
}

.note-content strong {
    color: var(--navy);
    display: block;
    margin-bottom: 0.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--navy);
}

.cta .btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-4px);
}

.cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

/* ============================================
   PROGRAMS PAGE
   ============================================ */

.programs-hero {
    min-height: auto;
    padding: 8.5rem 0 4.5rem;
}

.programs-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2.5rem;
    align-items: start;
}

.programs-hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.programs-hero-text p {
    color: var(--gray);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 60ch;
}

.programs-hero-panel {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: var(--shadow-md);
}

.programs-hero-panel h3 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.programs-hero-panel ul {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.programs-hero-panel li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-dark);
}

.programs-hero-panel li::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent-blue);
    position: absolute;
    left: 0;
    top: 0.55em;
}

.programs-section {
    padding: 5.5rem 0;
    background: var(--white);
}

.programs-subjects {
    background: var(--off-white);
}

.grade-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.grade-card {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 14px;
    padding: 1.8rem;
}

.grade-card-level {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 0.55rem;
}

.grade-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.grade-card ul {
    display: grid;
    gap: 0.65rem;
}

.grade-card li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--text-dark);
}

.grade-card li::before {
    content: "•";
    color: var(--accent-blue);
    position: absolute;
    left: 0;
    top: 0;
}

.subject-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.subject-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.3rem;
    transition: all var(--transition-normal);
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.subject-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.subject-card p {
    color: var(--gray);
    font-size: 0.94rem;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.path-card {
    border: 1px solid var(--light-gray);
    border-radius: 14px;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.path-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.path-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}


.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-links h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
    font-size: 0.9375rem;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-text {
        padding: 0;
    }

    .hero-program {
        max-width: 760px;
    }

    .programs-hero-content {
        grid-template-columns: 1fr;
    }

    .path-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .programs-teaser-grid {
        grid-template-columns: 1fr;
    }

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

    .dashboard-blurb-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0.25rem 1.5rem;
    }

    .nav.collapsed .nav-container {
        padding: 0.2rem 0.85rem;
    }

    .logo {
        gap: 0.45rem;
        font-size: 1.2rem;
    }

    .logo img {
        width: 68px;
    }
    
    .nav-links {
        right: 1.25rem;
        width: calc(100% - 2.5rem);
    }

    .nav-cta {
        padding: 0.56rem 1rem;
    }
    
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-logo-watermark {
        left: 50%;
        width: min(90vw, 620px);
        height: min(90vw, 620px);
        top: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.09;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .hero-text {
        padding: 0;
    }

    .hero-program {
        padding: 1.5rem;
    }

    
    .hero-buttons {
        flex-direction: column;
    }

    .hero-guarantee-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        max-width: 100%;
    }

    .hero-guarantee-badge {
        width: 82px;
        height: 82px;
    }

    .credentials-layout {
        grid-template-columns: 1fr;
    }

    .credentials-panel {
        padding: 1.5rem 1.25rem 1.35rem;
    }

    .credentials-expertise h3 {
        font-size: 1.22rem;
    }

    .credentials-block h4 {
        font-size: 0.82rem;
    }

    .credentials-subjects {
        gap: 0.45rem;
    }

    .credential-chip {
        font-size: 0.75rem;
        padding: 0.3rem 0.62rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }

    .guarantee-letter-card {
        padding: 2rem 1.5rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .timeline-number {
        margin-bottom: 1rem;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-notes {
        grid-template-columns: 1fr;
    }

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

/* ============================================
   PERFORMANCE MODES
   ============================================ */

/* Light mode for slower devices - DISABLES ALL HEAVY RENDERING */
body.light-mode {
    /* Disable all animations globally */
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

body.light-mode .vignette-overlay {
    display: none; /* Remove vignette overlay */
}

body.light-mode .animate-on-scroll,
body.light-mode .animate-in,
body.light-mode .premium-reveal {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
}

body.light-mode .hero-program:hover,
body.light-mode .highlight-card:hover,
body.light-mode .comparison-card:hover,
body.light-mode .assessment-card:hover,
body.light-mode .reward-card:hover,
body.light-mode .guarantee-letter-card:hover,
body.light-mode .btn:hover {
    transform: none !important;
    box-shadow: var(--shadow-sm) !important;
}

body.light-mode .nav {
    backdrop-filter: none; /* Disable backdrop blur */
    background: rgba(255, 255, 255, 0.98);
}

body.light-mode .hero-program {
    backdrop-filter: none; /* Disable backdrop blur */
    background: white;
}

body.light-mode .hero {
    transform: none !important; /* Disable parallax */
}

/* Disable gradient animations */
body.light-mode .hero-gradient,
body.light-mode .hero-background::after {
    animation: none !important;
}

/* Keep hero fully visible in light mode (no fade effect for performance) */
body.light-mode .hero {
    opacity: 1 !important;
    transition: none !important;
}

/* Simplify shadows for performance */
body.light-mode * {
    box-shadow: none !important;
}

body.light-mode .video-container,
body.light-mode .comparison-card,
body.light-mode .timeline-content {
    box-shadow: var(--shadow-sm) !important; /* Only basic shadows on key elements */
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .loading-screen,
    .vignette-overlay,
    .nav,
    .cta,
    .footer {
        display: none;
    }
}
/* ============================================
   TAMI TUTOR - MODERN CSS (REGENERATED)
   Cleaned | Optimized | 3-Column Pricing Fixed
   ============================================ */

/* ================= ROOT VARIABLES ================= */

:root {
    --navy: #1F3F66;
    --deep-blue: #112D4A;
    --accent-blue: #5E84AE;
    --light-blue: #E8EFF7;
    --white: #FFFFFF;
    --off-white: #F7FAFC;
    --gray: #5F6E82;
    --light-gray: #E3EAF1;
    --text-dark: #2A3D52;
    --success: #10B981;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Crimson Pro', Georgia, serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.20);

    --transition: 0.3s ease;
}

/* ================= BASE ================= */

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

body {
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

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

h1,h2,h3,h4 {
    font-family: var(--font-display);
    color: var(--navy);
}

a {
    text-decoration: none;
}

/* ================= BUTTONS ================= */

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--navy);
    color: white;
}

.btn-primary:hover {
    background: var(--deep-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: white;
}

.btn-large {
    width: 100%;
    text-align: center;
}

/* ================= PRICING SECTION ================= */

.pricing {
    padding: 6rem 0;
    background: var(--white);
}

/* 3 CARDS IN ONE ROW */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.pricing-card {
    background: white;
    border: 3px solid var(--light-gray);
    border-radius: 20px;
    padding: 2.5rem 2rem; /* tightened */
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
}

.pricing-card.enhanced {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, white 0%, var(--light-blue) 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.price-period {
    color: var(--gray);
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features h4 {
    margin-bottom: 1.2rem;
}

.pricing-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.pricing-features li {
    display: flex;
    gap: 0.8rem;
}

.feature-icon {
    color: var(--success);
    font-weight: bold;
}

/* BADGES */

.pricing-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--navy);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card {
    position: relative;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .btn-large {
        width: 100%;
    }
}
/* ============================================
   AFTER CONSULT SECTION
   ============================================ */

.after-consult {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.next-step-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.next-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.next-step-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.next-step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.next-step-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Guarantee Box */

.guarantee-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border-left: 6px solid var(--success);
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-content h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.guarantee-content p {
    color: var(--gray);
    line-height: 1.7;
}
/* ============================================
   CLEAN ENROLLMENT PROCESS SECTION
   ============================================ */

.after-consult {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.process-wrapper {
    max-width: 800px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.process-step p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.process-step {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.process-step:last-child {
    border-bottom: none;
}

.guarantee-clean {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--off-white);
    border-radius: 16px;
    border: 2px solid var(--success);
}

.guarantee-clean h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.guarantee-clean p {
    color: var(--gray);
    line-height: 1.8;
}
