/* SmartAIRevenue — Light Metric Dashboard Theme */
:root {
    --white: #FFFFFF;
    --surface: #F8FAFC;
    --navy: #1E3A5F;
    --navy-dark: #152A45;
    --navy-light: #E8EEF4;
    --navy-muted: rgba(30, 58, 95, 0.1);
    --gold: #CA8A04;
    --gold-light: #FEF9C3;
    --gold-dark: #A16207;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --border: #E2E8F0;
    --text: #334155;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
    --shadow-lg: 0 12px 40px rgba(30, 58, 95, 0.12);
    --font: 'Inter', sans-serif;
    --max-width: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 9999;
    padding: 0.75rem 1rem; background: var(--navy); color: white;
}
.skip-link:focus { left: 0; }

.trust-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.92);
    padding: 0.6rem 0;
    font-size: 0.8125rem;
    text-align: center;
}
.trust-bar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; }
.trust-bar span::before { content: '▸ '; color: var(--gold); }

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 72px; gap: 1rem;
}
.logo {
    display: flex; align-items: center; gap: 0.625rem;
    font-weight: 800; font-size: 1.125rem; color: var(--navy);
}
.logo-icon { color: var(--navy); display: flex; }
.main-nav { display: flex; align-items: center; gap: 1.25rem; }
.main-nav a { color: var(--navy); font-weight: 500; font-size: 0.9375rem; }
.main-nav a.active { color: var(--gold-dark); }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.5rem; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.9375rem; border: 2px solid transparent;
    cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-primary:hover {
    background: var(--gold-dark); color: white; border-color: var(--gold-dark);
    transform: translateY(-1px); box-shadow: var(--shadow-lg);
}
.btn-outline { background: transparent; border-color: var(--border); color: var(--navy); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(165deg, var(--white) 0%, var(--navy-light) 100%);
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15; margin-bottom: 1.25rem; color: var(--navy);
    font-weight: 800;
}
.hero h1 span { color: var(--gold-dark); }
.hero-lead { font-size: 1.0625rem; color: var(--gray); margin-bottom: 1.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-meta { font-size: 0.875rem; color: var(--gray-light); }
.hero-img {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 2px solid var(--navy-muted);
}
.hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.metric-callout { padding: 2.5rem 0; background: var(--surface); }
.callout-box {
    display: flex; gap: 2rem; align-items: flex-start;
    padding: 2rem; background: var(--white);
    border-radius: var(--radius); border-left: 4px solid var(--gold);
    box-shadow: var(--shadow);
}
.callout-box h2 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--navy); }

.stats-section { padding: 3rem 0; background: var(--navy); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stat-card {
    text-align: center; padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.08); border-radius: var(--radius);
    border: 1px solid rgba(202, 138, 4, 0.3);
}
.stat-num {
    font-size: 2rem; font-weight: 800; color: var(--gold);
    display: flex; align-items: center; justify-content: center; gap: 0.25rem;
}
.stat-num .metric-icon { font-size: 1rem; opacity: 0.8; }
.stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

.section { padding: 4rem 0; }
.section-alt { background: var(--navy-light); }
.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(--navy); font-weight: 800; }
.section-header p { color: var(--gray); }

.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.dash-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.dash-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dash-card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.dash-card-body { padding: 1.5rem; }
.dash-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--gold-dark); background: var(--gold-light);
    padding: 0.25rem 0.625rem; border-radius: 4px; margin-bottom: 0.75rem;
}
.dash-card-body h3 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--navy); }
.dash-card-body p { font-size: 0.9375rem; color: var(--gray); }

.method-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.method-step {
    text-align: center; padding: 1.25rem 0.75rem;
    background: var(--white); border-radius: var(--radius);
    border-top: 3px solid var(--gold); box-shadow: var(--shadow);
}
.step-num {
    width: 36px; height: 36px; margin: 0 auto 0.75rem;
    background: var(--navy); color: var(--gold); 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(--navy); }
.method-step p { font-size: 0.8125rem; color: var(--gray); }

.program-list { display: grid; gap: 0.75rem; max-width: 800px; margin: 0 auto; }
.program-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.125rem 1.5rem; background: var(--white);
    border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.program-item h3 { font-size: 0.9375rem; color: var(--navy); font-weight: 600; }
.program-item span { color: var(--gold-dark); font-weight: 700; font-size: 0.875rem; }

.faq-mini { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--navy); }
.faq-item p { color: var(--gray); font-size: 0.9375rem; }

.disclaimer-box {
    background: var(--gold-light); border: 1px solid rgba(202, 138, 4, 0.35);
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
    font-size: 0.9rem; color: var(--navy-dark); margin: 2rem 0;
}

.cta-section {
    padding: 4rem 0; text-align: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: white;
}
.cta-section h2 { font-size: 2rem; margin-bottom: 1rem; font-weight: 800; }
.cta-section p { opacity: 0.92; margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.cta-section .btn-primary:hover { background: var(--gold-dark); color: white; }

.page-hero {
    padding: 3rem 0; background: linear-gradient(165deg, var(--white), var(--navy-light));
}
.page-hero h1 { font-size: 2.25rem; margin-bottom: 0.75rem; color: var(--navy); font-weight: 800; }
.page-hero p { color: var(--gray); max-width: 640px; }

.prose { max-width: 800px; }
.prose h2 { margin: 2rem 0 1rem; font-size: 1.5rem; color: var(--navy); }
.prose h3 { margin: 1.5rem 0 0.75rem; font-size: 1.125rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 1rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.5rem; }

.program-card {
    display: grid; grid-template-columns: 280px 1fr; gap: 2rem;
    padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.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 var(--border); }
.program-card h2 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--navy); }
.program-card .module-label {
    display: inline-block; font-weight: 700; color: var(--gold-dark);
    font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}
.program-price { color: var(--gold-dark); 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(--navy); font-weight: 800; }
.page-header p { color: var(--gray); 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(--navy); font-weight: 700; }
.content-block p { margin-bottom: 1rem; }
.programs-intro { max-width: 800px; margin-bottom: 2rem; line-height: 1.7; }
.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 var(--border); }
.content-image figcaption { font-size: 0.875rem; color: var(--gray); margin-top: 0.5rem; }
.cta-block { text-align: center; margin-top: 3rem; padding: 2rem; background: var(--gold-light, #FEF9C3); border-radius: var(--radius); border: 1px solid var(--border); }
.service-row { display: grid; grid-template-columns: 240px 1fr; gap: 1.75rem; align-items: start; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.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 var(--border); max-width: 800px; }
.service-price { color: var(--gold-dark); font-weight: 700; margin-top: 0.75rem; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
    padding: 2rem; background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--border); box-shadow: var(--shadow);
}
.service-card img { border-radius: var(--radius-sm); margin-bottom: 1rem; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.service-card h3 { margin-bottom: 0.75rem; color: var(--navy); }
.service-price { font-weight: 700; color: var(--gold-dark); margin-top: 1rem; }

.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: 2px solid var(--navy-muted); }

.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.875rem; color: var(--navy); }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; margin-bottom: 1rem;
    background: 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;
}
.contact-form input[type="checkbox"] { width: auto; margin-top: 0.2rem; accent-color: var(--navy); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-msg { padding: 1rem; border-radius: var(--radius-sm); 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%; border: 1px solid var(--border); }

.faq-full .faq-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.faq-full h2 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--navy); }

.legal-content { padding: 3rem 0 4rem; }
.legal-content h1 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--navy); font-weight: 800; }

.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(--navy); font-weight: 800; }
.error-page p { color: var(--gray); margin-bottom: 2rem; }
.error-code { font-size: 5rem; font-weight: 800; color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 0.5rem; }

.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: var(--navy); 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: var(--max-width); 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(--gold); }
.cookie-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-btns .btn-outline { border-color: rgba(255,255,255,0.4); color: white; }

.site-footer {
    background: var(--navy-dark); color: rgba(255,255,255,0.85);
    padding: 3rem 0 1.5rem; margin-top: auto; position: relative; overflow: hidden;
}
.footer-metric { position: absolute; top: 1rem; right: 2rem; opacity: 0.15; width: 120px; }
.footer-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand strong { color: white; font-size: 1.125rem; display: block; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.875rem; opacity: 0.8; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-legal a { color: rgba(255,255,255,0.75); font-size: 0.875rem; }
.footer-links a:hover, .footer-legal a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.8125rem; margin-bottom: 0.35rem; }
.footer-contact a { color: var(--gold); }
.footer-host { opacity: 0.6; margin-top: 0.5rem; }
.footer-disclaimer {
    font-size: 0.8125rem; opacity: 0.75; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem;
}
.footer-copy { font-size: 0.8125rem; opacity: 0.6; text-align: center; }

.consent-panel {
    margin-top: 2rem; padding: 1.5rem;
    background: var(--navy-light); border-radius: var(--radius);
}

@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; }
    .service-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .main-nav {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 1rem;
        border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .site-header .container { position: relative; }
}
@media (max-width: 600px) {
    .stats-grid, .footer-grid { grid-template-columns: 1fr; }
    .method-steps { grid-template-columns: 1fr; }
}
