:root {
    --purple: #9333EA;
    --purple-dark: #7E22CE;
    --purple-light: #F3E8FF;
    --amber: #F59E0B;
    --amber-dark: #D97706;
    --amber-light: #FFFBEB;
    --dark: #1E1B4B;
    --gray: #64748B;
    --light: #FAF5FF;
    --white: #FFFFFF;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(147, 51, 234, 0.1);
    --font: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--dark);
    line-height: 1.65;
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-dark); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E9D5FF;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-weight: 800; font-size: 1.25rem; color: var(--dark);
}
.logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--amber));
    color: white; font-size: 1rem;
}
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a { color: var(--dark); font-weight: 600; font-size: 0.95rem; }
.main-nav a.active { color: var(--purple); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.5rem; border-radius: var(--radius);
    font-weight: 700; font-size: 0.95rem; border: 2px solid transparent;
    cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: white;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.35);
    color: white;
}
.btn-amber {
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    color: var(--dark);
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35); color: var(--dark); }
.btn-outline {
    background: transparent; border-color: var(--purple); color: var(--purple);
}
.btn-outline:hover { background: var(--purple); color: white; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Hero */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(160deg, var(--purple-light) 0%, var(--amber-light) 100%);
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 2px; height: 100%;
    background: linear-gradient(180deg, transparent, var(--purple) 20%, var(--amber) 80%, transparent);
    opacity: 0.15;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    position: relative;
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15; margin-bottom: 1.25rem; font-weight: 800;
}
.hero h1 span { color: var(--purple); }
.hero-lead { font-size: 1.125rem; color: var(--gray); margin-bottom: 1.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-img {
    border-radius: var(--radius); box-shadow: var(--shadow);
    overflow: hidden; border: 3px solid var(--purple-light);
}
.hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Trust bar */
.trust-bar {
    background: var(--dark); color: white; padding: 0.75rem 0;
    font-size: 0.875rem; text-align: center;
}
.trust-bar span { margin: 0 1rem; opacity: 0.9; }

/* Domain callout */
.domain-callout { padding: 2.5rem 0; background: var(--light); }
.callout-box {
    padding: 2rem; background: white; border-radius: var(--radius);
    border-left: 4px solid var(--purple); box-shadow: var(--shadow);
}
.callout-box h2 { font-size: 1.35rem; margin-bottom: 0.75rem; font-weight: 700; }

/* Stats */
.stats-section { padding: 3rem 0; }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.stat-card {
    text-align: center; padding: 1.5rem;
    background: white; border-radius: var(--radius);
    border: 1px solid #E9D5FF;
    position: relative;
}
.stat-card::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--amber));
    border-radius: 2px;
}
.stat-num {
    font-size: 2rem; font-weight: 800;
    color: var(--purple);
}
.stat-num .marker { color: var(--amber); font-size: 1.25rem; }
.stat-label { font-size: 0.875rem; color: var(--gray); margin-top: 0.5rem; }

/* Sections */
.section { padding: 4rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-header h2 { font-size: 2rem; margin-bottom: 0.75rem; font-weight: 800; }
.section-header p { color: var(--gray); }

/* Cards */
.cards-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.card {
    background: white; border-radius: var(--radius); overflow: hidden;
    border: 1px solid #E9D5FF; transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-body h3 { font-weight: 700; margin-bottom: 0.5rem; }
.card-body p { font-size: 0.95rem; color: var(--gray); }

/* PATH TIMELINE — unique vertical timeline */
.path-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}
.path-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--purple), var(--amber));
    border-radius: 2px;
}
.path-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}
.path-step:last-child { margin-bottom: 0; }
.path-step:nth-child(even) .path-step-content { grid-column: 1; text-align: right; }
.path-step:nth-child(even) .path-step-marker { grid-column: 2; }
.path-step:nth-child(even) .path-step-spacer { grid-column: 3; }
.path-step:nth-child(odd) .path-step-spacer { grid-column: 1; }
.path-step:nth-child(odd) .path-step-marker { grid-column: 2; }
.path-step:nth-child(odd) .path-step-content { grid-column: 3; }
.path-step-marker {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--purple), var(--amber));
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem;
    z-index: 2;
    box-shadow: 0 0 0 4px white, 0 4px 12px rgba(147, 51, 234, 0.3);
}
.path-step-content {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #E9D5FF;
    box-shadow: var(--shadow);
}
.path-step-content h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; color: var(--purple); }
.path-step-content p { font-size: 0.875rem; color: var(--gray); }

/* Horizontal timeline preview (index) */
.path-preview {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 2rem 0;
    position: relative;
}
.path-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--amber));
    transform: translateY(-50%);
    z-index: 0;
}
.path-preview-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}
.path-preview-dot {
    width: 32px; height: 32px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--purple), var(--amber));
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem;
    box-shadow: 0 0 0 3px white;
}
.path-preview-item h4 { font-size: 0.8rem; font-weight: 700; margin-bottom: 0.25rem; }
.path-preview-item p { font-size: 0.7rem; color: var(--gray); }

/* Programs preview list */
.programs-preview { background: var(--light); }
.program-list { display: grid; gap: 1rem; max-width: 800px; margin: 0 auto; }
.program-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem; background: white; border-radius: var(--radius);
    border: 1px solid #E9D5FF;
    border-left: 4px solid var(--purple);
}
.program-item h3 { font-size: 1rem; font-weight: 600; }
.program-item span { color: var(--amber-dark); font-weight: 700; font-size: 0.875rem; }

/* FAQ */
.faq-mini { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E9D5FF; padding: 1.25rem 0; }
.faq-item h3 { font-size: 1rem; margin-bottom: 0.5rem; font-weight: 700; }
.faq-item p { color: var(--gray); font-size: 0.95rem; }

/* Disclaimer */
.disclaimer-box {
    background: var(--amber-light); border: 1px solid #FCD34D;
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
    font-size: 0.9rem; color: #92400E; margin: 2rem 0;
}

/* CTA */
.cta-section {
    padding: 4rem 0; text-align: center;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: white;
}
.cta-section h2 { font-size: 2rem; margin-bottom: 1rem; font-weight: 800; }
.cta-section p { opacity: 0.9; margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: var(--amber); color: var(--dark); }
.cta-section .btn-primary:hover { color: var(--dark); }

/* Page hero */
.page-hero {
    padding: 3rem 0;
    background: linear-gradient(160deg, var(--purple-light), var(--amber-light));
}
.page-hero h1 { font-size: 2.25rem; margin-bottom: 0.75rem; font-weight: 800; }
.page-hero p { color: var(--gray); max-width: 640px; }

/* Prose */
.prose { max-width: 800px; }
.prose h2 { font-weight: 700; margin: 2rem 0 1rem; font-size: 1.5rem; }
.prose h3 { margin: 1.5rem 0 0.75rem; font-size: 1.15rem; font-weight: 700; }
.prose p { margin-bottom: 1rem; color: #334155; }
.prose ul { margin: 1rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.5rem; }

/* Programs page — timeline modules */
.path-module {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #E9D5FF;
    position: relative;
}
.path-module:last-child { border-bottom: none; }
.path-module-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.path-module-num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--purple), var(--amber));
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.25);
    flex-shrink: 0;
}
.path-module-line {
    width: 3px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(180deg, var(--purple), var(--amber));
    margin-top: 0.5rem;
    border-radius: 2px;
}
.path-module:last-child .path-module-line { display: none; }
.path-module-body h2 {
    font-size: 1.35rem; margin-bottom: 0.75rem; font-weight: 700;
    color: var(--purple);
}
.path-module-body img {
    border-radius: var(--radius);
    margin-bottom: 1rem;
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    max-width: 480px;
}
.path-module-price {
    color: var(--amber-dark);
    font-weight: 700;
    margin-top: 1rem;
    font-size: 1rem;
}

/* Services */
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.service-card {
    padding: 2rem; background: white; border-radius: var(--radius);
    border: 1px solid #E9D5FF;
    border-top: 3px solid var(--purple);
}
.service-card img {
    border-radius: var(--radius); margin-bottom: 1rem;
    aspect-ratio: 16/9; object-fit: cover; width: 100%;
}
.service-card h3 { font-weight: 700; margin-bottom: 0.75rem; }
.service-price { font-weight: 700; color: var(--purple); margin-top: 1rem; }

/* About */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
}
.about-img img {
    border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%;
}

/* Contact */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-form label { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.9rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid #CBD5E1;
    border-radius: 8px; font-family: inherit; font-size: 1rem; margin-bottom: 1rem;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .checkbox-label {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.875rem; margin-bottom: 1rem;
}
.contact-form input[type="checkbox"] { width: auto; margin-top: 0.2rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-msg { padding: 1rem; border-radius: 8px; margin-bottom: 1rem; }
.form-msg.success { background: #DCFCE7; color: #166534; }
.form-msg.error { background: #FEE2E2; color: #991B1B; }
.contact-info img {
    border-radius: var(--radius); margin-top: 1.5rem;
    aspect-ratio: 16/10; object-fit: cover; width: 100%;
}

/* FAQ full */
.faq-full .faq-item { padding: 1.5rem 0; }
.faq-full h2 { font-size: 1.1rem; margin-bottom: 0.75rem; font-weight: 700; }

/* Legal */
.legal-content { padding: 3rem 0 4rem; }
.legal-content h1 { font-size: 2rem; margin-bottom: 1.5rem; font-weight: 800; }
.legal-content h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; font-weight: 700; }
.legal-content p, .legal-content li { margin-bottom: 0.75rem; color: #334155; line-height: 1.7; }
.legal-content ul { margin-left: 1.5rem; }

/* 404 */
.error-page {
    min-height: 60vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 4rem 1rem;
}
.error-page h1 { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 800; color: var(--purple); }
.error-page p { color: var(--gray); margin-bottom: 2rem; }

/* Footer */
.site-footer {
    background: var(--dark); color: #C4B5FD; padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand strong { color: white; font-size: 1.1rem; display: block; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.875rem; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-legal a { color: #C4B5FD; font-size: 0.875rem; }
.footer-links a:hover, .footer-legal a:hover { color: var(--amber); }
.footer-contact { font-size: 0.875rem; }
.footer-contact a { color: var(--amber); }
.footer-disclaimer {
    font-size: 0.8rem; opacity: 0.8; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem;
}
.footer-copy { font-size: 0.8rem; opacity: 0.6; text-align: center; }
.footer-host { margin-top: 0.5rem; opacity: 0.7; }

/* Cookie banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: var(--dark); color: white; padding: 1.25rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.cookie-inner p { font-size: 0.9rem; flex: 1; min-width: 200px; }
.cookie-inner a { color: var(--amber); }
.cookie-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-btns .btn-outline { border-color: #64748B; color: white; }

/* Responsive */
@media (max-width: 900px) {
    .hero-grid, .about-grid, .contact-grid, .cards-grid, .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .path-step {
        grid-template-columns: 48px 1fr;
        gap: 1rem;
    }
    .path-step:nth-child(even) .path-step-content,
    .path-step:nth-child(odd) .path-step-content {
        grid-column: 2; text-align: left;
    }
    .path-step:nth-child(even) .path-step-marker,
    .path-step:nth-child(odd) .path-step-marker { grid-column: 1; grid-row: 1; }
    .path-step-spacer { display: none; }
    .path-timeline::before { left: 24px; transform: none; }
    .path-module { grid-template-columns: 56px 1fr; gap: 1rem; }
    .path-preview { flex-wrap: wrap; justify-content: center; }
    .path-preview::before { display: none; }
    .main-nav {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: white; flex-direction: column; padding: 1rem;
        border-bottom: 1px solid #E9D5FF;
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
