:root {
    --teal: #14B8A6;
    --teal-dark: #0D9488;
    --magenta: #D946EF;
    --magenta-dark: #C026D3;
    --dark: #0B1120;
    --dark-card: #111827;
    --dark-elevated: #1E293B;
    --gray: #94A3B8;
    --gray-light: #CBD5E1;
    --white: #F8FAFC;
    --radius: 12px;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
    --font: 'Space Grotesk', sans-serif;
    --gradient: linear-gradient(135deg, var(--teal), var(--magenta));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--gray-light);
    line-height: 1.65;
    background: var(--dark);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--magenta); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* Flow SVG decorations */
.flow-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; opacity: 0.5; }
.flow-bg svg { width: 100%; height: 100%; }
.flow-header { opacity: 0.25; }
.flow-footer { opacity: 0.2; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(11, 17, 32, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}
.header-inner {
    position: relative;
    display: flex; align-items: center; justify-content: space-between;
    min-height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-weight: 700; font-size: 1.25rem;
    color: var(--white);
}
.logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--gradient);
    color: white;
}
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a { color: var(--gray-light); font-weight: 500; font-size: 0.95rem; }
.main-nav a.active { color: var(--teal); }
.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(--white); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.5rem; border-radius: var(--radius);
    font-family: var(--font); font-weight: 600; font-size: 0.95rem;
    border: 2px solid transparent; cursor: pointer; transition: all 0.2s;
}
.btn-primary {
    background: var(--gradient); color: white;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 70, 239, 0.35);
    color: white;
}
.btn-outline {
    background: transparent; border-color: var(--teal); color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--dark); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Hero */
.hero {
    position: relative;
    padding: 4rem 0 5rem;
    background: radial-gradient(ellipse at 20% 50%, rgba(20, 184, 166, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(217, 70, 239, 0.1) 0%, transparent 50%),
                var(--dark);
    overflow: hidden;
}
.hero .flow-deco { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; opacity: 0.4; }
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15; margin-bottom: 1.25rem; color: var(--white);
}
.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.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: 1px solid rgba(20, 184, 166, 0.3);
}
.hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Trust bar */
.trust-bar {
    background: var(--dark-elevated); color: var(--gray);
    padding: 0.75rem 0; font-size: 0.875rem; text-align: center;
    border-bottom: 1px solid rgba(20, 184, 166, 0.15);
}
.trust-bar span { margin: 0 1rem; }

/* Domain callout */
.domain-callout { padding: 2.5rem 0; }
.callout-box {
    padding: 2rem; background: var(--dark-card); border-radius: var(--radius);
    border-left: 4px solid var(--magenta);
    box-shadow: var(--shadow);
}
.callout-box h2 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--white); }

/* 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: var(--dark-card); border-radius: var(--radius);
    border: 1px solid rgba(20, 184, 166, 0.2);
}
.stat-num {
    font-size: 2rem; font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 0.875rem; color: var(--gray); margin-top: 0.5rem; }

/* Cards */
.section { padding: 4rem 0; }
.section-alt { background: var(--dark-card); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-header h2 { font-size: 2rem; margin-bottom: 0.75rem; color: var(--white); }
.section-header p { color: var(--gray); }
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.card {
    background: var(--dark-card); border-radius: var(--radius);
    overflow: hidden; border: 1px solid rgba(20, 184, 166, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(217, 70, 239, 0.15);
    border-color: rgba(217, 70, 239, 0.3);
}
.card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-body h3 { margin-bottom: 0.5rem; color: var(--white); }
.card-body p { font-size: 0.95rem; color: var(--gray); }

/* Method steps */
.method-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.method-step {
    text-align: center; padding: 1.25rem 0.75rem;
    background: var(--dark-card); border-radius: var(--radius);
    border-top: 3px solid var(--teal);
}
.step-num {
    width: 36px; height: 36px; margin: 0 auto 0.75rem;
    background: var(--gradient); color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.875rem;
}
.method-step h3 { font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--white); }
.method-step p { font-size: 0.8rem; color: var(--gray); }

/* Programs preview */
.programs-preview { background: var(--dark-card); }
.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: var(--dark-elevated);
    border-radius: var(--radius); border: 1px solid rgba(20, 184, 166, 0.15);
}
.program-item h3 { font-size: 1rem; color: var(--white); }
.program-item span { color: var(--magenta); font-weight: 600; font-size: 0.875rem; }

/* FAQ mini */
.faq-mini { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(20, 184, 166, 0.15); padding: 1.25rem 0; }
.faq-item h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--white); }
.faq-item p { color: var(--gray); font-size: 0.95rem; }

/* Disclaimer */
.disclaimer-box {
    background: rgba(217, 70, 239, 0.08);
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
    font-size: 0.9rem; color: var(--gray-light); margin: 2rem 0;
}

/* CTA section */
.cta-section {
    padding: 4rem 0; text-align: center;
    background: var(--gradient); color: white;
    position: relative; overflow: hidden;
}
.cta-section h2 { font-size: 2rem; margin-bottom: 1rem; }
.cta-section p { opacity: 0.95; margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: var(--dark); border: 2px solid white; }
.cta-section .btn-primary:hover { background: var(--dark-card); }

/* Page hero */
.page-hero {
    padding: 3rem 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 60%), var(--dark);
    border-bottom: 1px solid rgba(20, 184, 166, 0.15);
}
.page-hero h1 { font-size: 2.25rem; margin-bottom: 0.75rem; color: var(--white); }
.page-hero p { color: var(--gray); max-width: 640px; }

/* Prose */
.prose { max-width: 800px; }
.prose h2 { margin: 2rem 0 1rem; font-size: 1.5rem; color: var(--white); }
.prose h3 { margin: 1.5rem 0 0.75rem; font-size: 1.15rem; color: var(--white); }
.prose p { margin-bottom: 1rem; color: var(--gray-light); }
.prose ul { margin: 1rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.5rem; color: var(--gray-light); }

/* Programs page */
.program-card {
    display: grid; grid-template-columns: 280px 1fr; gap: 2rem;
    padding: 2rem 0; border-bottom: 1px solid rgba(20, 184, 166, 0.15);
}
.program-card:not(:has(img)) { grid-template-columns: 1fr; }
.program-card:last-child { border-bottom: none; }
.program-card img {
    border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%;
    border: 1px solid rgba(20, 184, 166, 0.2);
}
.program-card h2 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--white); }
.program-price { color: var(--magenta); font-weight: 700; margin-top: 1rem; }

.page-header { padding: 3rem 0 1.5rem; }
.page-header h1 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.75rem; color: var(--white); font-weight: 700; }
.page-header p { color: var(--gray-light); max-width: 720px; line-height: 1.7; }
.content-block { max-width: 800px; margin-bottom: 2.5rem; }
.content-block h2 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--white); }
.content-block p { margin-bottom: 1rem; color: rgba(255,255,255,0.85); }
.programs-intro { max-width: 800px; margin-bottom: 2rem; line-height: 1.7; color: rgba(255,255,255,0.85); }
.content-image { margin: 2rem 0; max-width: 800px; }
.content-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); border: 1px solid rgba(20, 184, 166, 0.2); }
.content-image figcaption { font-size: 0.875rem; color: var(--gray-light); margin-top: 0.5rem; }
.cta-block { text-align: center; margin-top: 3rem; padding: 2rem; background: rgba(20, 184, 166, 0.08); border-radius: var(--radius); border: 1px solid rgba(20, 184, 166, 0.2); }
.service-row { display: grid; grid-template-columns: 240px 1fr; gap: 1.75rem; align-items: start; padding: 2rem 0; border-bottom: 1px solid rgba(20, 184, 166, 0.15); }
.service-row:last-child { border-bottom: none; }
.service-row img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.service-row-full { padding: 2rem 0; border-bottom: 1px solid rgba(20, 184, 166, 0.15); max-width: 800px; }
.service-price { color: var(--magenta); font-weight: 700; margin-top: 0.75rem; }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
    padding: 2rem; background: var(--dark-card); border-radius: var(--radius);
    border: 1px solid rgba(20, 184, 166, 0.15);
}
.service-card img {
    border-radius: var(--radius); margin-bottom: 1rem;
    aspect-ratio: 16/9; object-fit: cover; width: 100%;
}
.service-card h3 { margin-bottom: 0.75rem; color: var(--white); }
.service-price { font-weight: 700; color: var(--teal); 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%;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form label { display: block; font-weight: 500; margin-bottom: 0.35rem; font-size: 0.9rem; color: var(--gray-light); }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid rgba(20, 184, 166, 0.3); border-radius: 8px;
    font-family: inherit; font-size: 1rem; margin-bottom: 1rem;
    background: var(--dark-card); color: var(--white);
}
.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; color: var(--gray);
}
.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: rgba(20, 184, 166, 0.15); color: var(--teal); border: 1px solid var(--teal); }
.form-msg.error { background: rgba(217, 70, 239, 0.15); color: var(--magenta); border: 1px solid var(--magenta); }
.contact-info h2 { color: var(--white); margin-bottom: 1rem; }
.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; color: var(--white); }

/* Legal */
.legal-content { padding: 3rem 0 4rem; }
.legal-content h1 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--white); }
.legal-content h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--white); }
.legal-content p, .legal-content li { margin-bottom: 0.75rem; color: var(--gray-light); 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; color: var(--white); }
.error-page p { color: var(--gray); margin-bottom: 2rem; }

/* Cookie banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: var(--dark-elevated); color: var(--gray-light);
    padding: 1.25rem; border-top: 1px solid rgba(20, 184, 166, 0.3);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}
.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(--teal); }
.cookie-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-btns .btn-outline { border-color: var(--gray); color: var(--gray-light); }

/* Footer */
.site-footer {
    position: relative;
    background: var(--dark-card);
    border-top: 1px solid rgba(20, 184, 166, 0.2);
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand strong { color: var(--white); font-size: 1.1rem; }
.footer-brand p { font-size: 0.875rem; color: var(--gray); margin-top: 0.5rem; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-legal a { color: var(--gray); font-size: 0.9rem; }
.footer-contact { font-size: 0.875rem; color: var(--gray); }
.footer-contact p { margin-bottom: 0.35rem; }
.footer-host { margin-top: 0.75rem; opacity: 0.7; }
.footer-disclaimer {
    font-size: 0.8rem; color: var(--gray); padding: 1rem 0;
    border-top: 1px solid rgba(20, 184, 166, 0.15);
}
.footer-copy { font-size: 0.8rem; color: var(--gray); text-align: center; }

/* Responsive */
@media (max-width: 900px) {
    .hero-grid, .about-grid, .contact-grid, .cards-grid, .services-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .method-steps { grid-template-columns: repeat(2, 1fr); }
    .program-card { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 1fr; }
    .main-nav {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: var(--dark-elevated); flex-direction: column; padding: 1rem;
        border-bottom: 1px solid rgba(20, 184, 166, 0.2);
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }
}
