/* ============================================
   Education Section — Light Theme Overrides
   Scoped to body[data-section="ed"]
   ============================================ */

/* --- Body & Scrollbar --- */

body[data-section="ed"] {
    scrollbar-color: rgba(37, 99, 235, 0.2) #f8fafc;
}

body[data-section="ed"] ::-webkit-scrollbar-track {
    background: #f8fafc;
}

body[data-section="ed"] ::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.2);
}

body[data-section="ed"] ::-webkit-scrollbar-thumb:hover {
    background: rgba(37, 99, 235, 0.35);
}

body[data-section="ed"] ::selection {
    background: rgba(37, 99, 235, 0.15);
    color: #2563eb;
}

/* --- Typography — remove cyberpunk styling --- */

body[data-section="ed"] h1,
body[data-section="ed"] h2 {
    text-transform: none;
    letter-spacing: -0.01em;
    font-weight: 800;
}

body[data-section="ed"] h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

body[data-section="ed"] h3,
body[data-section="ed"] h4 {
    font-family: var(--font-display);
}

body[data-section="ed"] a:hover {
    color: #2563eb;
}

/* --- Neon Text — remove glow, use solid color --- */

body[data-section="ed"] .neon-text,
body[data-section="ed"] .neon-text-magenta,
body[data-section="ed"] .neon-text-orange {
    text-shadow: none;
}

body[data-section="ed"] .gradient-text {
    background: linear-gradient(90deg, #2563eb, #0d9488);
    -webkit-background-clip: text;
    background-clip: text;
}

/* --- Header — Light theme --- */

body[data-section="ed"] .site-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #e2e8f0;
}

body[data-section="ed"] .site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: #e2e8f0;
}

body[data-section="ed"] .nav-brand {
    color: #0f172a;
    text-shadow: none;
}

body[data-section="ed"] .nav-link {
    color: #334155;
}

body[data-section="ed"] .nav-link:hover,
body[data-section="ed"] .nav-link.active {
    color: #2563eb;
}

body[data-section="ed"] .nav-link::after {
    background: #2563eb;
    box-shadow: none;
}

body[data-section="ed"] .hamburger span {
    background: #0f172a;
}

/* Mobile nav dropdown — light theme */
@media (max-width: 767px) {
    body[data-section="ed"] .nav-links {
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid #e2e8f0;
    }

    body[data-section="ed"] .nav-links .nav-link {
        color: #0f172a;
    }

    body[data-section="ed"] .nav-links .nav-link.active,
    body[data-section="ed"] .nav-links .nav-link:hover {
        color: #2563eb;
        text-shadow: none;
        border-left-color: #2563eb;
        background: rgba(37, 99, 235, 0.04);
    }
}

/* --- Particle Canvas — hide in education section --- */

body[data-section="ed"] #particle-canvas,
body[data-section="landing"] #particle-canvas {
    display: none;
}

/* --- Music Player padding — remove when hidden --- */

body[data-section="ed"] .section {
    padding: var(--space-2xl) 0;
}

body[data-section="ed"] .section-header {
    margin-bottom: var(--space-xl);
}

body:not([data-section="ee"]) #page-content {
    padding-bottom: 0;
}

body:not([data-section="ee"]) .site-footer {
    padding: var(--space-2xl) var(--space-xl) var(--space-2xl);
}

body:not([data-section="ee"]) .contact-widget {
    bottom: 16px;
}

body:not([data-section="ee"]) .back-to-top {
    bottom: 16px;
}

/* --- Cards — clean shadows instead of neon glow --- */

body[data-section="ed"] .neon-card {
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

body[data-section="ed"] .neon-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

body[data-section="ed"] .neon-card .card-icon {
    filter: none;
}

body[data-section="ed"] .glass-panel {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
}

body[data-section="ed"] .gradient-border-card {
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

body[data-section="ed"] .gradient-border-card::before {
    display: none;
}

body[data-section="ed"] .neon-frame {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* --- Buttons — solid professional style --- */

body[data-section="ed"] .neon-btn {
    border: 2px solid #2563eb;
    color: #2563eb;
    text-shadow: none;
    box-shadow: none;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-md);
}

body[data-section="ed"] .neon-btn::after {
    display: none;
}

body[data-section="ed"] .neon-btn:hover {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

body[data-section="ed"] .neon-btn.btn-filled {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

body[data-section="ed"] .neon-btn.btn-filled:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

body[data-section="ed"] .neon-btn.btn-green {
    border-color: #059669;
    color: #059669;
    text-shadow: none;
    box-shadow: none;
}

body[data-section="ed"] .neon-btn.btn-green:hover {
    background: #059669;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* --- Tech Badge — professional --- */

body[data-section="ed"] .tech-badge {
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.25);
    background: rgba(37, 99, 235, 0.06);
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
}

/* --- Footer — light theme --- */

body[data-section="ed"] .site-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

body[data-section="ed"] .footer-logo {
    filter: none;
}

body[data-section="ed"] .footer-logo-glow {
    display: none;
}

body[data-section="ed"] .footer-links a {
    color: #475569;
    font-family: var(--font-body);
}

body[data-section="ed"] .footer-links a:hover {
    color: #2563eb;
}

body[data-section="ed"] .footer-copy {
    color: #475569;
    font-size: var(--text-sm);
}

/* --- Contact Widget — light theme --- */

body[data-section="ed"] .contact-fab {
    background: #ffffff;
    border-color: #2563eb;
    color: #2563eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body[data-section="ed"] .contact-fab:hover {
    background: #eff6ff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

body[data-section="ed"] .contact-panel {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

body[data-section="ed"] .contact-panel-header {
    border-bottom: 1px solid #e2e8f0;
}

body[data-section="ed"] .contact-panel-title {
    color: #2563eb;
    text-shadow: none;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-body);
}

body[data-section="ed"] .contact-panel-close:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

body[data-section="ed"] .contact-action-btn {
    color: #0f172a;
}

body[data-section="ed"] .contact-action-btn:hover {
    background: rgba(37, 99, 235, 0.06);
    color: #2563eb;
}

body[data-section="ed"] .contact-divider {
    background: #e2e8f0;
}

body[data-section="ed"] .contact-form-field input,
body[data-section="ed"] .contact-form-field textarea {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
}

body[data-section="ed"] .contact-form-field input::placeholder,
body[data-section="ed"] .contact-form-field textarea::placeholder {
    color: #94a3b8;
}

body[data-section="ed"] .contact-form-field input:focus,
body[data-section="ed"] .contact-form-field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

body[data-section="ed"] .contact-submit-btn {
    border-color: #2563eb;
    color: #2563eb;
    text-shadow: none;
    box-shadow: none;
}

body[data-section="ed"] .contact-submit-btn:hover {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* --- Back to Top — light theme --- */

body[data-section="ed"] .back-to-top {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #2563eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body[data-section="ed"] .back-to-top:hover {
    background: #eff6ff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

/* ============================================
   Education Section — Page-Specific Styles
   ============================================ */

/* --- Education Hero --- */

.ed-hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
    text-align: center;
    background: var(--gradient-hero);
}

.ed-hero h1 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.ed-hero .ed-subtitle {
    font-size: 1.375rem;
    color: #334155;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    line-height: 1.6;
}

.ed-hero .ed-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.ed-hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Product Grid --- */

.ed-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.ed-product-card {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.ed-product-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.ed-product-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.ed-product-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.ed-product-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.ed-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
}

.ed-feature-list li {
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
    font-size: var(--text-base);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.ed-feature-list li::before {
    content: '\2713';
    color: #059669;
    font-weight: 700;
    flex-shrink: 0;
}

/* --- Trust Section --- */

.ed-trust-section {
    padding: var(--space-3xl) 0;
    text-align: center;
    background: var(--bg-secondary);
}

.ed-trust-section h2 {
    margin-bottom: var(--space-xl);
}

/* Stats bar */
.ed-stats-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    padding: var(--space-xl) 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.ed-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ed-stat-number {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #2563eb;
}

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

.ed-trust-items {
    display: flex;
    gap: var(--space-2xl);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.ed-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.ed-trust-item svg {
    color: #059669;
    flex-shrink: 0;
}

/* --- How It Works (3-step) --- */

.ed-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.ed-step {
    text-align: center;
    padding: var(--space-xl);
}

.ed-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 800;
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.ed-step h3 {
    margin-bottom: var(--space-sm);
}

/* --- Compliance Section --- */

.ed-compliance {
    padding: var(--space-3xl) 0;
    background: #eff6ff;
}

.ed-compliance h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.ed-compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.ed-compliance-item {
    text-align: center;
    padding: var(--space-lg);
}

.ed-compliance-item h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

/* --- Pricing Section --- */

.ed-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 700px;
    margin: 0 auto;
}

.ed-pricing-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
}

.ed-pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.ed-pricing-card h3 {
    margin-bottom: var(--space-sm);
}

.ed-pricing-label {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

/* --- Features Grid (3-col) --- */

.ed-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.ed-feature-card {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.ed-feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.ed-feature-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

/* --- Institution CTA Section --- */

.ed-institution-cta {
    padding: var(--space-3xl) 0;
    text-align: center;
    background: var(--bg-secondary);
}

.ed-institution-cta h2 {
    margin-bottom: var(--space-md);
}

.ed-institution-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin: var(--space-xl) auto;
    max-width: 700px;
}

.ed-institution-features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.ed-institution-features li::before {
    content: '\2713';
    color: #059669;
    font-weight: 700;
}

/* --- Course Cards --- */

.ed-course-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 960px;
    margin: 0 auto;
}

.ed-course-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.ed-course-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.ed-course-card h4 {
    margin-bottom: var(--space-xs);
}

.ed-course-tag {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 999px;
    margin-bottom: var(--space-sm);
}

.ed-course-price {
    display: block;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.ed-course-free {
    color: #059669;
}

/* --- Compact Expandable Feature Cards --- */

.ed-feature-card-compact {
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg, 12px);
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    user-select: none;
}

.ed-feature-card-compact:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ed-feature-card-compact .ed-compact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.ed-feature-card-compact h3 {
    font-size: var(--text-base);
    margin: 0;
}

.ed-feature-card-compact .ed-compact-toggle {
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.ed-feature-card-compact.open .ed-compact-toggle {
    transform: rotate(180deg);
}

.ed-feature-card-compact p {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    opacity: 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
}

.ed-feature-card-compact.open p {
    max-height: 120px;
    opacity: 1;
    margin-top: var(--space-sm);
}

/* --- Inline Contact Form --- */

.ed-inline-contact {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.ed-inline-contact h3 {
    margin-bottom: var(--space-xs);
}

.ed-inline-contact p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.ed-inline-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.ed-inline-contact-grid .full-width {
    grid-column: 1 / -1;
}

.ed-inline-contact input,
.ed-inline-contact textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg, 12px);
    font-size: var(--text-base);
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: border-color var(--transition-base);
    box-sizing: border-box;
}

.ed-inline-contact input:focus,
.ed-inline-contact textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.ed-inline-contact textarea {
    resize: vertical;
    min-height: 80px;
}

.ed-inline-contact-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.ed-inline-contact .contact-status {
    font-size: var(--text-sm);
    color: #059669;
}

.ed-inline-contact .contact-status.error {
    color: #dc2626;
}

/* --- Eyebrow above hero H1 --- */
.ed-hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ed-accent, #2563eb);
    background: var(--ed-accent-bg, #eff6ff);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: var(--space-md);
}

/* --- Featured product card (full-width hero for Document Ally Pro) --- */
.ed-featured-card {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border: 1px solid #c7d2fe;
    border-radius: 16px;
    padding: var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.ed-featured-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6366f1;
    background: white;
    border: 1px solid #c7d2fe;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: var(--space-sm);
}
.ed-featured-card h2 {
    margin: 0 0 var(--space-xs);
    color: var(--ed-heading);
}
.ed-featured-tagline {
    font-size: 1.15rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: var(--space-md);
}
.ed-featured-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}
.ed-featured-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}
.ed-feature-list-two-col {
    columns: 2;
    column-gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}
@media (max-width: 640px) {
    .ed-feature-list-two-col { columns: 1; }
}

/* --- Product tag (Coming soon / New / Available now) --- */
.ed-product-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6366f1;
    background: #eef2ff;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: var(--space-sm);
}

/* --- Section heading (centered, above 3-product grid) --- */
.ed-section-heading {
    text-align: center;
    color: var(--ed-heading);
    margin-bottom: var(--space-xs);
}
.ed-section-subheading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
    color: var(--text-secondary);
}

/* --- Pro banner for free-tool page --- */
.ed-pro-banner {
    background: linear-gradient(90deg, #eff6ff, #eef2ff);
    border-bottom: 1px solid #c7d2fe;
    padding: var(--space-md) 0;
    text-align: center;
}
.ed-pro-banner p {
    margin: 0;
    color: #1e3a5f;
    font-size: 0.95rem;
}
.neon-link {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 8px;
}

/* --- Two-column roadmap inside featured card (Document Ally Pro page) --- */
.ed-roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin: var(--space-lg) 0 var(--space-md);
}
@media (max-width: 720px) {
    .ed-roadmap-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}
.ed-roadmap-heading {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 var(--space-sm);
    padding-bottom: 8px;
    border-bottom: 1px solid #c7d2fe;
}
.ed-roadmap-heading-ship  { color: #16a34a; }
.ed-roadmap-heading-roadmap { color: #6366f1; }
.ed-roadmap-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: var(--space-md);
}

/* --- Module list (WCAG 2.2 course page) --- */
.ed-module-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.ed-module-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--space-md);
    align-items: start;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: var(--space-md);
}
.ed-module-number {
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}
.ed-module-item h4 {
    margin: 0 0 4px;
    color: var(--ed-heading);
    font-size: 1.05rem;
}
.ed-module-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Outcome / larger feature list variant --- */
.ed-feature-list-large li {
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* ============================================
   Education Section — Responsive
   ============================================ */

@media (max-width: 960px) and (min-width: 768px) {
    .ed-course-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ed-product-grid,
    .ed-pricing,
    .ed-course-cards {
        grid-template-columns: 1fr;
    }

    .ed-steps,
    .ed-compliance-grid,
    .ed-features-grid {
        grid-template-columns: 1fr;
    }

    .ed-inline-contact-grid {
        grid-template-columns: 1fr;
    }

    .ed-trust-items {
        flex-direction: column;
        align-items: center;
    }

    .ed-stats-bar {
        gap: var(--space-lg);
    }

    .ed-stat-number {
        font-size: var(--text-xl);
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .ed-steps,
    .ed-compliance-grid,
    .ed-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Landing Page — Split Panel Styles
   ============================================ */

.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--nav-height));
    padding: var(--space-xl);
}

.landing-brand {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.landing-brand h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #e0e0ff;
    margin-bottom: var(--space-sm);
}

.landing-tagline {
    font-size: var(--text-base);
    color: rgba(224, 224, 255, 0.5);
    font-style: italic;
    line-height: 1.5;
}

.landing-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1000px;
    width: 100%;
}

.landing-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    min-height: 360px;
    text-decoration: none;
}

/* Left panel — Elliptical Explorer (dark/neon) */
.landing-panel-ee {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 100%);
    border: 1px solid rgba(0, 255, 255, 0.15);
}

.landing-panel-ee:hover {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.15),
        0 0 60px rgba(0, 255, 255, 0.05),
        inset 0 0 30px rgba(0, 255, 255, 0.03);
    transform: translateY(-4px);
}

.landing-panel-ee h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    font-size: clamp(1.3rem, 3vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.landing-panel-ee p {
    color: #cbd5e1;
    font-size: var(--text-base);
    margin-bottom: var(--space-xl);
    max-width: 300px;
}

.landing-panel-ee .landing-panel-cta {
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.4);
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    font-family: 'Orbitron', sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.landing-panel-ee:hover .landing-panel-cta {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

/* Right panel — Education Technology (light/professional) */
.landing-panel-ed {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 1px solid #e2e8f0;
}

.landing-panel-ed:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-4px);
}

.landing-panel-ed h2 {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #0f172a;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
}

.landing-panel-ed p {
    color: #334155;
    font-size: var(--text-base);
    margin-bottom: var(--space-xl);
    max-width: 300px;
}

.landing-panel-ed .landing-panel-cta {
    color: #2563eb;
    border: 1px solid #2563eb;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.landing-panel-ed:hover .landing-panel-cta {
    background: #2563eb;
    color: #ffffff;
}

/* Landing panel icon/image area */
.landing-panel-visual {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    opacity: 0.8;
}

.landing-panel-subtitle {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-xs);
    font-weight: 400;
}

/* Landing footer links */
.landing-footer {
    margin-top: var(--space-3xl);
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
}

.landing-footer a {
    font-size: var(--text-sm);
    color: rgba(224, 224, 255, 0.4);
    transition: color var(--transition-fast);
}

.landing-footer a:hover {
    color: rgba(224, 224, 255, 0.8);
}

.landing-footer .landing-dot {
    color: rgba(224, 224, 255, 0.2);
}

/* Landing responsive */
@media (max-width: 767px) {
    .landing-panels {
        grid-template-columns: 1fr;
    }

    .landing-panel {
        min-height: 280px;
    }

    .landing-brand {
        margin-bottom: var(--space-2xl);
    }
}
