/* ============================================
   NAVIGATOR KIDS AI - DESIGN SYSTEM
   styles.css - Master Stylesheet
   ============================================ */

/* =========================================
   1. CSS VARIABLES (Design Tokens)
   ========================================= */
:root {
    /* -------- Colors -------- */
    /* Primary Palette */
    --color-cream: #F9F7F2;
    --color-cream-dark: #F0EDE5;
    --color-terracotta: #E07A5F;
    --color-terracotta-dark: #C96A52;
    --color-terracotta-light: #E99480;
    --color-sage: #81B29A;
    --color-sage-dark: #6A9B82;
    --color-sage-light: #A8D0BA;
    --color-navy: #3D405B;
    --color-navy-light: #4A4E69;
    --color-gold: #F2CC8F;
    --color-gold-light: #F7DDB0;

    /* Specific Result Page Colors */
    --color-rose: #FDE8E4;
    
    /* Neutral */
    --color-white: #FFFFFF;
    --color-text: #4A4E69;
    --color-text-light: #6B6E8A;
    --color-text-muted: #8E91A8;
    --color-border: rgba(61, 64, 91, 0.1);
    --color-border-dark: rgba(61, 64, 91, 0.2);
    
    /* Profile Colors */
    --color-profile-1: #81B29A; /* Intense Feeler - Sage */
    --color-profile-2: #E07A5F; /* Reluctant Starter - Terracotta */
    --color-profile-3: #F2CC8F; /* Deep Diver - Gold */
    --color-profile-4: #9B8AB8; /* Sensitive Observer - Purple */
    --color-profile-5: #7EB8D8; /* Bold Explorer - Blue */
    --color-profile-6: #E8A87C; /* Big Picture Thinker - Peach */
    
    /* Status Colors */
    --color-success: #22C55E;
    --color-success-light: #DCFCE7;
    --color-warning: #F59E0B;
    --color-warning-light: #FEF3C7;
    --color-error: #EF4444;
    --color-error-light: #FEE2E2;
    
    /* -------- Typography -------- */
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* -------- Layout & Spacing -------- */
    --container-width: 1140px;
    --nav-height: 72px;
    --section-padding: 5rem;
    
    /* -------- Effects -------- */
    --shadow-sm: 0 2px 8px rgba(61, 64, 91, 0.06);
    --shadow-md: 0 4px 20px rgba(61, 64, 91, 0.08);
    --shadow-lg: 0 8px 40px rgba(61, 64, 91, 0.12);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    
    --transition-base: 200ms ease;
}

/* =========================================
   2. RESET & BASE
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* NOTE: This kills bullets globally, we restore them for articles in Section 27 */
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* =========================================
   3. UTILITY CLASSES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-sage);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* =========================================
   4. BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(224, 122, 95, 0.35);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(224, 122, 95, 0.45);
}

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

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

.btn-large {
    padding: 1.25rem 2.75rem;
    font-size: 1.1rem;
}

.btn-arrow::after {
    content: '→';
    transition: transform 0.2s ease;
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* =========================================
   18. HOME PAGE SPECIFIC STYLES
   ========================================= */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

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

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-shape-1 {
    width: 350px;
    height: 350px;
    background: var(--color-sage-light);
    top: -100px;
    left: -100px;
}

.hero-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--color-gold-light);
    bottom: -50px;
    right: -50px;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--color-terracotta);
    opacity: 0.2;
    top: 60%;
    left: 10%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-sage);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-sage);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    margin-bottom: 1.25rem;
    color: var(--color-navy);
}

.hero h1 span {
    color: var(--color-terracotta);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-cta-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Trust Bar */
.trust-bar {
    background: var(--color-white);
    border-top: 1px solid rgba(61, 64, 91, 0.06);
    border-bottom: 1px solid rgba(61, 64, 91, 0.06);
    padding: 1.25rem 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: var(--color-sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--color-sage);
}

/* Premium Advocacy Section */
.advocacy-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

.advocacy-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: var(--color-navy);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .advocacy-wrapper {
        grid-template-columns: 1fr 0.8fr;
        padding: 4rem;
    }
}

.advocacy-content h2 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.advocacy-label {
    color: var(--color-sage);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.advocacy-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.advocacy-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.advocacy-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-heading);
    line-height: 1;
    margin: 1rem 0 0.5rem;
}

.advocacy-features {
    text-align: left;
    margin: 1.5rem 0;
    display: inline-block;
}

.advocacy-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.advocacy-feature i {
    color: var(--color-sage);
}

.btn-glow {
    background: var(--color-terracotta);
    color: white;
    box-shadow: 0 0 20px rgba(224, 122, 95, 0.4);
    width: 100%;
}

.btn-glow:hover {
    background: var(--color-terracotta-dark);
    box-shadow: 0 0 30px rgba(224, 122, 95, 0.6);
    transform: translateY(-2px);
}

/* Profiles Section */
.profiles-section {
    padding: var(--section-padding) 0;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.profile-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-sage);
}

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

.profile-card:nth-child(2) { border-color: var(--color-terracotta); }
.profile-card:nth-child(3) { border-color: var(--color-gold); }
.profile-card:nth-child(4) { border-color: #9B8AB8; }
.profile-card:nth-child(5) { border-color: #7EB8D8; }
.profile-card:nth-child(6) { border-color: #E8A87C; }

.profile-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.profile-card:nth-child(1) .profile-icon { background: rgba(129, 178, 154, 0.15); }
.profile-card:nth-child(2) .profile-icon { background: rgba(224, 122, 95, 0.15); }
.profile-card:nth-child(3) .profile-icon { background: rgba(242, 204, 143, 0.25); }
.profile-card:nth-child(4) .profile-icon { background: rgba(155, 138, 184, 0.15); }
.profile-card:nth-child(5) .profile-icon { background: rgba(126, 184, 216, 0.15); }
.profile-card:nth-child(6) .profile-icon { background: rgba(232, 168, 124, 0.2); }

.profile-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.profile-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.profile-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.profile-trait {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    background: var(--color-cream);
    border-radius: var(--radius-full);
    color: var(--color-text-light);
}

/* How It Works */
.how-it-works {
    background: var(--color-white);
    padding: var(--section-padding) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -1.5rem;
    width: calc(100% - 70px);
    height: 2px;
    background: linear-gradient(90deg, var(--color-sage-light) 0%, transparent 100%);
    transform: translateX(100%);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--color-cream);
    border: 3px solid var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    max-width: 280px;
    margin: 0 auto;
}

.steps-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Free Kit (Teaser) */
.free-kit {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.free-kit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.free-kit-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    margin-bottom: 1rem;
}

.free-kit-text p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.free-kit-features {
    margin-bottom: 2rem;
}

.free-kit-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.free-kit-feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.75rem;
    margin-top: 2px;
}

.free-kit-visual {
    position: relative;
}

.free-kit-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    transform: rotate(2deg);
}

.free-kit-card::before {
    content: 'FREE';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-terracotta);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.free-kit-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.free-kit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.free-kit-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Lead Magnet Capture */
.lead-capture-section {
    padding: var(--section-padding) 0;
    background: var(--color-white);
    border-top: 1px solid rgba(61, 64, 91, 0.05);
}

.lead-magnet-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.lead-visual {
    background: var(--color-cream);
    border: 2px solid var(--color-navy);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.lead-visual::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: var(--color-sage);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.lead-form-container {
    padding: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-navy);
}

.form-btn {
    width: 100%;
    background: var(--color-navy);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem;
    }
    
    .lead-magnet-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lead-visual {
        order: -1;
    }

    .nav-links { display: none; }
    .nav-toggle { display: block; }

    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .step:not(:last-child)::after { display: none; }

    .advocacy-wrapper {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        text-align: center;
    }
    
    .advocacy-features { text-align: left; }

    .free-kit-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .free-kit-visual { order: -1; }
    .free-kit-card { transform: rotate(0); }

    .trust-items {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn { width: 100%; }
}

/* =========================================
   17. RESULT PAGE SPECIFIC (Previously Added)
   ========================================= */
.result-hero {
    background: linear-gradient(135deg, var(--color-rose) 0%, #FFF5F5 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.result-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-terracotta);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.symptom-card {
    background: #FFF5F5;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 4px solid var(--color-terracotta);
}

/* =========================================
   19. IEP HUB SPECIFIC STYLES
   ========================================= */
/* Hero Section (IEP Specific) */
.iep-hero {
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-cream);
}

.iep-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-navy);
    margin-bottom: 20px;
}

.iep-hero .subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-body {
    text-align: left;
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-body p { margin-bottom: 20px; }
.hero-body p:last-child { margin-bottom: 0; }

/* Importance Section */
.iep-importance {
    padding: 60px 0;
}

.iep-importance h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.benefit-list {
    margin-top: 30px;
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--color-terracotta);
}

.benefit-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.benefit-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Toolkit Grid */
.iep-toolkit {
    padding: 60px 0 100px;
    background-color: var(--color-cream-dark);
}

.iep-toolkit h2 {
    text-align: center;
    margin-bottom: 10px;
}

.toolkit-intro {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text-light);
}

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

.toolkit-category {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toolkit-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.toolkit-category h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-terracotta);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-cream);
    padding-bottom: 15px;
}

.resource-links li { margin-bottom: 20px; }

.resource-links a {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 5px;
}

.resource-links a:hover { color: var(--color-terracotta); }

.link-desc {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-body { padding: 25px; }
    .toolkit-grid { grid-template-columns: 1fr; }
}

/* =========================================
   20. IEP SUB-PAGE COMPONENTS
   ========================================= */
.iep-content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 60px;
}

.iep-content-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-cream);
    padding-bottom: 10px;
}

.iep-content-page p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-navy);
}

/* Breadcrumbs (Navigation) */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.breadcrumb a {
    font-weight: 600;
    color: var(--color-terracotta);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Callout Boxes */
.legal-box, .alert-box, .ai-tip-box {
    padding: 25px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    border-left: 5px solid;
}

.legal-box {
    background-color: #F0F4F8;
    border-color: var(--color-navy);
}

.alert-box {
    background-color: #FFF5F5;
    border-color: var(--color-terracotta);
}

.ai-tip-box {
    background-color: #F0F9F4;
    border-color: var(--color-sage);
}

.tag-ai, .tag-new {
    display: inline-block;
    background: var(--color-sage);
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Comparison Tables */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
}

.comparison-table th, 
.comparison-table td {
    padding: 15px 20px;
    border: 1px solid var(--color-border);
    text-align: left;
}

.comparison-table th {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-heading);
}

.comparison-table tr:nth-child(even) {
    background-color: var(--color-cream);
}

/* Checklists */
.checklist-items {
    list-style: none;
    margin: 20px 0;
}

.checklist-items li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--color-cream);
    border-radius: var(--radius-md);
}

.checklist-items input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-terracotta);
    margin-top: 4px;
}

/* Tactic Cards */
.tactic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tactic-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.school-says {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid var(--color-border);
}

.counter-move {
    margin-top: 15px;
    background: #F0F4F8;
    padding: 15px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

/* Link Blocks */
.link-block {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: var(--color-cream);
    border-radius: var(--radius-md);
}

.link-block .btn-primary,
.link-block .btn-secondary {
    margin: 5px;
}

/* =========================================
   21. RESOURCE / BLOG POST TEMPLATE
   ========================================= */
.article-page {
    padding: 60px 0 100px;
    background-color: var(--color-cream);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.breadcrumbs {
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.breadcrumbs a {
    font-weight: 600;
    color: var(--color-terracotta);
}

.breadcrumbs span {
    margin: 0 8px;
    color: var(--color-border);
}

.article-content {
    background: var(--color-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.article-category {
    display: inline-block;
    background: var(--color-sage-light);
    color: var(--color-navy);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-navy);
}

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

.article-byline {
    font-size: 0.95rem;
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
    margin-top: 20px;
}

.article-trust-bar {
    background: #F0F9F4;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin: 30px 0 40px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-sage-dark);
    border-left: 4px solid var(--color-sage);
}

.article-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--color-navy);
}

.article-body h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--color-navy);
}

.article-body h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-terracotta);
}

.callout-box {
    background: var(--color-cream);
    border: 2px solid var(--color-navy);
    border-radius: var(--radius-md);
    padding: 30px;
    margin: 40px 0;
}

.callout-box h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.callout-box p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

.article-disclaimer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.article-cta {
    margin-top: 60px;
    background: var(--color-navy);
    color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
}

.article-cta h3 { color: var(--color-white); margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.8); margin-bottom: 25px; }

.article-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    border: 1px solid var(--color-border);
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-cream);
    padding-bottom: 10px;
}

.sidebar-widget p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.related-links li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.related-links li:last-child { border: none; }

.related-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-navy);
}

.related-links a:hover {
    color: var(--color-terracotta);
}

@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-content {
        padding: 30px 20px;
    }

    .article-header h1 {
        font-size: 2rem;
    }
}

/* =========================================
   22. ABOUT PAGE STYLES
   ========================================= */
.about-hero {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--color-navy);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-mission {
    padding: 80px 0;
    background: var(--color-white);
}

.mission-content {
    max-width: 720px;
    margin: 0 auto;
}

.mission-content h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 40px;
}

.mission-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--color-text);
}

.mission-highlight {
    background: var(--color-cream);
    border-left: 5px solid var(--color-sage);
    padding: 30px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 40px 0;
}

.mission-highlight p {
    margin: 0;
    font-style: italic;
    font-weight: 500;
    color: var(--color-navy);
}

.about-beliefs {
    padding: 80px 0;
    background: var(--color-cream);
}

.about-beliefs h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 60px;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.belief-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

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

.belief-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.belief-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--color-navy);
}

.belief-card p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.about-approach {
    padding: 80px 0;
    background: var(--color-white);
}

.approach-content {
    max-width: 720px;
    margin: 0 auto;
}

.approach-content h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 50px;
}

.approach-content h3 {
    font-size: 1.5rem;
    color: var(--color-terracotta);
    margin-top: 40px;
    margin-bottom: 15px;
}

.approach-content p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-cta {
    padding: 100px 0;
    background: var(--color-navy);
    text-align: center;
    color: var(--color-white);
}

.about-cta h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .mission-highlight {
        padding: 20px;
    }
}

#header {
   opacity: 0;
   transition: opacity 0.15s ease;
}
#header.loaded {
   opacity: 1;
}

/* =========================================
   23. IEP HUB MISSING STYLES
   ========================================= */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.iep-callout {
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    margin: 60px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.iep-callout h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.iep-callout p {
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.iep-callout ul {
    text-align: left;
    display: inline-block;
    margin: 25px 0;
}

.iep-callout li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    list-style: none;
}

.iep-callout .btn {
    margin-top: 25px;
}

.iep-callout-primary {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    color: var(--color-white);
    border: 3px solid var(--color-sage);
}

.iep-callout-primary h2 {
    color: var(--color-white);
}

.iep-callout-primary p {
    color: rgba(255, 255, 255, 0.95);
}

.iep-callout-warning {
    background: var(--color-cream);
    border: 3px solid var(--color-terracotta);
}

.iep-callout-warning h2 {
    color: var(--color-navy);
}

.iep-callout-warning p {
    color: var(--color-text);
}

.dynamic-child-name {
    font-weight: 600;
    color: var(--color-terracotta);
}

@media (max-width: 768px) {
    .iep-callout {
        padding: 35px 25px;
        margin: 40px 20px;
    }
    
    .iep-callout h2 {
        font-size: 1.5rem;
    }
    
    .iep-callout ul {
        margin: 20px 0;
    }
}

/* =========================================
   24. STATE-SPECIFIC ARTICLE PAGES
   ========================================= */
.state-article {
    background: var(--color-white);
    padding: 60px 0 100px;
}

.state-article-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.state-badge {
    display: inline-block;
    background: var(--color-terracotta);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.email-capture-box {
    background: var(--color-cream);
    border: 3px solid var(--color-sage);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.email-capture-box h3 {
    font-size: 1.75rem;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.email-capture-box p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.email-capture-box ul {
    text-align: left;
    display: inline-block;
    margin: 20px 0;
}

.email-capture-box li {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.email-capture-box li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.email-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 25px auto 15px;
}

.email-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--color-border-dark);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-sage);
}

.email-form button {
    background: var(--color-terracotta);
    color: var(--color-white);
    border: none;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-form button:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
}

.email-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.battle-plan-cta {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 50px 0;
    text-align: center;
}

.battle-plan-cta h3 {
    color: var(--color-white);
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.battle-plan-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.battle-plan-cta ul {
    text-align: left;
    display: inline-block;
    margin: 20px 0 25px;
}

.battle-plan-cta li {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
}

.battle-plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin: 20px 0;
}

.faq-section {
    margin: 60px 0;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    background: var(--color-cream);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border-left: 4px solid var(--color-sage);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.7;
}

.related-resources {
    background: var(--color-cream-dark);
    padding: 40px;
    border-radius: var(--radius-md);
    margin: 50px 0;
}

.related-resources h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.related-resources ul {
    list-style: none;
}

.related-resources li {
    margin-bottom: 15px;
}

.related-resources a {
    font-weight: 600;
    color: var(--color-terracotta);
    font-size: 1.05rem;
}

.related-resources a:hover {
    text-decoration: underline;
}

.related-resources .link-desc {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .state-article-content {
        padding: 30px 20px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form button {
        width: 100%;
    }
    
    .email-capture-box {
        padding: 30px 20px;
    }
    
    .battle-plan-cta {
        padding: 30px 20px;
    }
}

/* =========================================
   25. IEP INDEX PAGE FIXES
   ========================================= */
.iep-content {
    background: var(--color-cream);
    padding-bottom: 80px;
}

.iep-hero .subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.iep-hero .hero-body {
    text-align: left;
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
    max-width: 900px;
    margin: 40px auto 0;
}

.iep-hero .hero-body p {
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.iep-hero .hero-body em {
    color: var(--color-text-muted);
    font-style: italic;
}

.iep-hero .hero-body strong {
    color: var(--color-navy);
    font-weight: 700;
}

.iep-importance {
    background: var(--color-white);
}

.iep-importance .content-wrapper {
    max-width: 900px;
}

.iep-importance h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.iep-importance > .content-wrapper > p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--color-text);
}

.benefit-list {
    margin-top: 30px;
    background: var(--color-cream);
    padding: 40px;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--color-terracotta);
    list-style: none;
}

.benefit-list li {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
}

.benefit-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-list strong {
    color: var(--color-navy);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.benefit-list em {
    font-style: italic;
    color: var(--color-terracotta);
}

.iep-toolkit {
    background: var(--color-cream-dark);
    border-top: 1px solid var(--color-border);
}

.iep-toolkit .content-wrapper {
    max-width: 1100px;
}

.iep-toolkit h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
}

.toolkit-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: var(--color-text-light);
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.toolkit-category {
    background: var(--color-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toolkit-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.toolkit-category h3 {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-terracotta);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-cream);
    padding-bottom: 15px;
}

.resource-links {
    list-style: none;
}

.resource-links li {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-cream);
}

.resource-links li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.resource-links a {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.resource-links a:hover {
    color: var(--color-terracotta);
}

.link-desc {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.iep-callout {
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    margin: 60px auto;
    max-width: 900px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.iep-callout h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.iep-callout p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.iep-callout ul {
    text-align: left;
    display: inline-block;
    margin: 25px 0;
    list-style: none;
}

.iep-callout li {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.iep-callout .btn {
margin-top: 25px;
}

.iep-callout-primary {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    color: var(--color-white);
    border: 3px solid var(--color-sage);
}

.iep-callout-primary h2,
.iep-callout-primary p {
     color: var(--color-white);
}

.iep-callout-warning {
    background: var(--color-cream);
    border: 3px solid var(--color-terracotta);
}

.iep-callout-warning h2 {
    color: var(--color-navy);
}

.iep-callout-warning p {
    color: var(--color-text);
}

/* =========================================
   26. STATE PAGE SPECIFIC STYLES
   ========================================= */
.state-hero {
   background: var(--color-navy);
   padding: 80px 0 60px;
   text-align: center;
   color: var(--color-white);
   margin-bottom: 0;
}

.state-hero h1 {
   color: var(--color-white);
   font-size: clamp(2rem, 4vw, 3rem);
   margin-bottom: 20px;
}

.state-hero .subtitle {
   color: rgba(255, 255, 255, 0.85);
   font-size: 1.2rem;
   max-width: 800px;
   margin: 0 auto;
   line-height: 1.6;
}

.state-badge {
   display: inline-block;
   background: var(--color-terracotta);
   color: var(--color-white);
   font-size: 0.8rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   padding: 6px 14px;
   border-radius: 50px;
   margin-bottom: 20px;
}

.state-timelines {
   padding: 60px 0;
   background: var(--color-white);
}

.state-timelines h2 {
   text-align: center;
   font-size: 2rem;
   margin-bottom: 10px;
}

.state-timelines > .content-wrapper > p {
   text-align: center;
   margin-bottom: 40px;
   color: var(--color-text-light);
}

.timeline-table-wrapper {
   overflow-x: auto;
   background: var(--color-white);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-sm);
}

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

.state-timeline-table th {
   background: var(--color-cream-dark);
   color: var(--color-navy);
   padding: 18px 24px;
   text-align: left;
   font-weight: 800;
   border-bottom: 2px solid var(--color-border);
}

.state-timeline-table td {
   padding: 20px 24px;
   border-bottom: 1px solid var(--color-border);
   vertical-align: top;
   color: var(--color-text);
}

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

.state-timeline-table strong {
   color: var(--color-terracotta);
}

.state-rights {
   padding: 60px 0;
   background: var(--color-cream);
}

.state-rights h2 {
   text-align: center;
   font-size: 2rem;
   margin-bottom: 40px;
}

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

.right-card {
   background: var(--color-white);
   padding: 30px;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-sm);
   border-top: 5px solid var(--color-navy);
   transition: transform 0.2s ease;
}

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

.right-card.highlight-card {
   border-top-color: var(--color-terracotta);
   background: #FFF5F5;
}

.right-card h3 {
   font-size: 1.25rem;
   margin-bottom: 15px;
   color: var(--color-navy);
}

.right-card p {
   font-size: 0.95rem;
   margin-bottom: 15px;
   line-height: 1.6;
   color: var(--color-text);
}

.state-2e {
   padding: 60px 0;
   background: var(--color-white);
}

.state-2e h2 {
   text-align: center;
   margin-bottom: 30px;
}

.state-next-steps {
   padding: 60px 0 80px;
   background: var(--color-cream-dark);
   text-align: center;
}

.state-next-steps h2 {
   margin-bottom: 30px;
}

.link-block .btn {
   margin: 5px;
}

.small-text {
   display: block;
   margin-top: 20px;
   font-size: 0.9rem;
   color: var(--color-text-light);
}

.small-text a {
   color: var(--color-terracotta);
   text-decoration: underline;
}

/* =========================================
   27. TYPOGRAPHY RESTORE (FIXES BODY TEXT)
   ========================================= */
/* This section restores list bullets and paragraph margins specifically
   inside the article container, countering the global reset. */

.iep-article p {
    margin-bottom: 1.5rem; /* Adds breathing room between paragraphs */
}

.iep-article ul {
    list-style: disc; /* Restores standard bullet points */
    margin-left: 1.5rem; /* Indents the list */
    margin-bottom: 1.5rem;
}

.iep-article ol {
    list-style: decimal; /* Restores numbered lists */
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.iep-article li {
    margin-bottom: 0.5rem; /* Adds space between list items */
}

.iep-article h2 {
    margin-top: 2.5rem; /* Adds space above headings */
    margin-bottom: 1rem;
}

.iep-article h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.iep-article blockquote {
    border-left: 4px solid var(--color-terracotta);
    padding-left: 1rem;
    font-style: italic;
    margin: 1.5rem 0;
    color: var(--color-navy);
    background: #FFF5F5;
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Navbar Fix */
.navbar {
    background-color: var(--color-white);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed; /* Keeps nav at top while scrolling */
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

/* Container for Logo + Links */
.nav-content {
    display: flex; /* Forces horizontal alignment */
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Desktop Menu Links */
.nav-links {
    display: flex; /* Aligns individual links horizontally */
    gap: 2rem;
    align-items: center;
}

/* Footer Fix */
.footer {
    background-color: var(--color-navy); /* Changes background to your brand blue */
    color: var(--color-white);           /* Changes base text color to white */
    padding: 4rem 0 2rem;
    border-top: none;                    /* Optional: removes the border since the color is now high-contrast */
}

.footer-content {
    display: flex; /* This stops the stacking */
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap; /* Ensures it wraps on smaller screens */
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1.5; /* Gives the brand column a bit more room */
    min-width: 250px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: var(--color-gold);            /* Using gold for headers to maintain hierarchy/readability */
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);     /* Slightly faded white for links */
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-white);           /* Full white on hover */
    text-decoration: underline;
}

.footer-brand .logo {
    color: var(--color-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-disclaimer {
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.footer-disclaimer strong {
    color: var(--color-white);
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stacks only on mobile */
        gap: 2rem;
    }
}
/* =========================================
   END OF STYLESHEET
   ========================================= */
