:root {
    --orange: #F97316;
    --orange-dark: #EA580C;
    --blue: #2563EB;
    --blue-dark: #1D4ED8;
    --dark: #0F172A;
    --gray: #64748B;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.65;
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-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.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #E2E8F0;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
    color: var(--dark);
}
.logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background: linear-gradient(135deg, var(--orange), var(--blue));
    color: white; font-size: 1.1rem;
}
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a { color: var(--dark); font-weight: 500; font-size: 0.95rem; }
.main-nav a.active { color: var(--orange); }
.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: 600; font-size: 0.95rem; border: 2px solid transparent;
    cursor: pointer; transition: all 0.2s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white; border-color: transparent;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(249,115,22,0.35); color: white; }
.btn-secondary {
    background: var(--blue); color: white;
}
.btn-secondary:hover { background: var(--blue-dark); color: white; }
.btn-outline {
    background: transparent; border-color: var(--dark); color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: white; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Hero */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(160deg, #FFF7ED 0%, #EFF6FF 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero h1 {
    font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15; margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--orange); }
.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; }
.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 {
    display: flex; gap: 2rem; align-items: flex-start;
    padding: 2rem; background: white; border-radius: var(--radius);
    border-left: 4px solid var(--orange); box-shadow: var(--shadow);
}
.callout-box h2 { font-family: var(--font-head); font-size: 1.35rem; margin-bottom: 0.75rem; }

/* 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 #E2E8F0;
}
.stat-num {
    font-family: var(--font-head); font-size: 2rem; font-weight: 800;
    color: var(--blue); display: flex; align-items: center; justify-content: center; gap: 0.25rem;
}
.stat-num .arrow { color: var(--orange); font-size: 1.5rem; }
.stat-label { font-size: 0.875rem; color: var(--gray); margin-top: 0.5rem; }

/* Cards */
.section { padding: 4rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-header h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 0.75rem; }
.section-header p { color: var(--gray); }
.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 #E2E8F0; 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-family: var(--font-head); margin-bottom: 0.5rem; }
.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: white; border-radius: var(--radius);
    border-top: 3px solid var(--orange);
}
.step-num {
    width: 36px; height: 36px; margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--orange), var(--blue));
    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; }
.method-step p { font-size: 0.8rem; color: var(--gray); }

/* Programs preview */
.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 #E2E8F0;
}
.program-item h3 { font-size: 1rem; }
.program-item span { color: var(--orange); font-weight: 600; font-size: 0.875rem; }

/* FAQ mini */
.faq-mini { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E2E8F0; padding: 1.25rem 0; }
.faq-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.faq-item p { color: var(--gray); font-size: 0.95rem; }

/* Disclaimer box */
.disclaimer-box {
    background: #FFF7ED; border: 1px solid #FDBA74;
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
    font-size: 0.9rem; color: #9A3412; margin: 2rem 0;
}

/* CTA section */
.cta-section {
    padding: 4rem 0; text-align: center;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
}
.cta-section h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 1rem; }
.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(--orange); }

/* Page hero */
.page-hero {
    padding: 3rem 0; background: linear-gradient(160deg, #FFF7ED, #EFF6FF);
}
.page-hero h1 { font-family: var(--font-head); font-size: 2.25rem; margin-bottom: 0.75rem; }
.page-hero p { color: var(--gray); max-width: 640px; }

/* Content prose */
.prose { max-width: 800px; }
.prose h2 { font-family: var(--font-head); margin: 2rem 0 1rem; font-size: 1.5rem; }
.prose h3 { margin: 1.5rem 0 0.75rem; font-size: 1.15rem; }
.prose p { margin-bottom: 1rem; color: #334155; }
.prose ul { margin: 1rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.5rem; }

/* Programs page */
.program-card {
    display: grid; grid-template-columns: 280px 1fr; gap: 2rem;
    padding: 2rem 0; border-bottom: 1px solid #E2E8F0;
}
.program-card:last-child { border-bottom: none; }
.program-card img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.program-card h2 { font-family: var(--font-head); font-size: 1.35rem; margin-bottom: 0.75rem; }
.program-price { color: var(--orange); font-weight: 700; margin-top: 1rem; }

/* Services grid */
.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 #E2E8F0;
}
.service-card img { border-radius: var(--radius); margin-bottom: 1rem; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.service-card h3 { font-family: var(--font-head); margin-bottom: 0.75rem; }
.service-price { font-weight: 700; color: var(--blue); margin-top: 1rem; }

/* About layout */
.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: 500; 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; }

/* Legal pages */
.legal-content { padding: 3rem 0 4rem; }
.legal-content h1 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 1.5rem; }
.legal-content h2 { font-family: var(--font-head); font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.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-family: var(--font-head); font-size: 2.5rem; margin-bottom: 1rem; }
.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); 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: #93C5FD; }
.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); }
    .method-steps { grid-template-columns: repeat(2, 1fr); }
    .program-card { grid-template-columns: 1fr; }
    .main-nav {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: white; flex-direction: column; padding: 1rem;
        border-bottom: 1px solid #E2E8F0;
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }
}
