:root {
    --bg: #f5f9fc;
    --surface: #ffffff;
    --surface-soft: #f0f6fa;
    --surface-deep: #091724;
    --text: #11263a;
    --muted: #61778c;
    --line: #dbe6ee;
    --brand: #12b8ec;
    --brand-2: #0a7ac8;
    --brand-3: #0a2238;
    --success: #0d9c79;
    --shadow: 0 18px 50px rgba(13, 35, 58, 0.08);
    --radius: 24px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.narrow { max-width: 880px; }
.page-shell { overflow: hidden; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(17, 38, 58, 0.08);
}
.nav-wrap { display: flex; align-items: center; gap: 1.2rem; min-height: 92px; }
.brand { display: inline-flex; align-items: center; gap: .9rem; }
.brand-mark { width: 58px; height: 58px; flex: 0 0 auto; }
.brand-lockup { display: inline-flex; flex-direction: column; gap: .28rem; }
.brand-name { font-size: 1.28rem; font-weight: 800; line-height: 1; color: #10283f; }
.brand-tagline { font-size: .65rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; color: #6f8294; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: .2rem; margin-left: auto; }
.main-nav a { padding: .8rem .95rem; border-radius: 999px; font-size: .95rem; font-weight: 600; color: #20405d; }
.main-nav a:hover { background: rgba(18,184,236,.08); color: #103252; }
.main-nav .nav-cta { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 10px 22px rgba(10, 122, 200, .18); }
.main-nav .nav-cta:hover { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.nav-toggle, .nav-toggle-btn { display: none; }

.hero {
    padding: 3.5rem 0 4rem;
    background:
        radial-gradient(circle at 12% 0%, rgba(18,184,236,.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 3rem; align-items: center; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .52rem .92rem;
    border-radius: 999px;
    background: rgba(18,184,236,.08);
    color: #0d5f8c;
    border: 1px solid rgba(18,184,236,.16);
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero h1, .page-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.8rem, 5vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #0d2236;
}
.page-hero h1 { font-size: clamp(2.3rem, 4vw, 3.6rem); }
.lead, .page-hero p, .section-lead {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}
.hero-actions, .section-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 12px 24px rgba(10, 122, 200, .18); }
.btn-secondary { background: #fff; color: #123352; border-color: var(--line); }
.btn-light { background: #fff; color: #103252; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }

.hero-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.kpi-card, .stat-card, .feature-card, .role-card, .quote-card, .value-card, .timeline-card, .module-card, .contact-card, .form-card {
    background: var(--surface);
    border: 1px solid rgba(17, 38, 58, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.kpi-card { padding: 1.15rem; }
.kpi-card strong { display: block; font-size: 1.4rem; margin-bottom: .25rem; color: #0c2437; }
.kpi-card span { color: var(--muted); line-height: 1.55; font-size: .93rem; }

.hero-visual {
    position: relative;
    background: linear-gradient(180deg, #0c1f31 0%, #0f2940 100%);
    border-radius: 32px;
    padding: 1rem;
    box-shadow: 0 24px 60px rgba(9, 23, 36, .18);
}
.hero-visual img { width: 100%; height: auto; border-radius: 26px; display: block; }
.hero-badge {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    padding: .8rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    color: #dce8f0;
    border: 1px solid rgba(255,255,255,.1);
    max-width: 260px;
}
.hero-badge strong { display: block; color: #fff; margin-bottom: .25rem; }

.page-hero {
    padding: 4.4rem 0 2rem;
    background:
        radial-gradient(circle at 8% 0%, rgba(18,184,236,.11), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}
.page-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.page-hero-aside {
    padding: 1rem 1.15rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(17, 38, 58, 0.08);
    min-width: 280px;
    box-shadow: var(--shadow);
}
.page-hero-aside strong { display: block; margin-bottom: .35rem; }
.page-hero-aside span { color: var(--muted); line-height: 1.55; font-size: .95rem; }

.section { padding: 4.5rem 0; }
.section-muted { background: #eef5f9; border-top: 1px solid rgba(17, 38, 58, 0.06); border-bottom: 1px solid rgba(17, 38, 58, 0.06); }
.section-dark {
    background: linear-gradient(180deg, #0c1f31 0%, #0a1826 100%);
    color: #ebf2f8;
}
.section-dark .section-heading h2,
.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark .stat-card strong,
.section-dark .stat-card span,
.section-dark .feature-card p,
.section-dark .feature-card h3,
.section-dark .quote-card p,
.section-dark .quote-card h3 { color: inherit; }
.section-heading { margin-bottom: 2rem; }
.section-heading.centered { max-width: 900px; margin: 0 auto 2rem; text-align: center; }
.section-heading h2, .split-content h2 {
    margin: 0 0 .8rem;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.08;
    color: #0c2236;
}
.section-dark .section-heading h2 { color: #fff; }
.section-heading p, .split-content p { color: var(--muted); line-height: 1.8; }

.grid-2, .split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.role-card, .feature-card, .module-card, .value-card, .timeline-card, .stat-card, .contact-card, .form-card, .quote-card { padding: 1.5rem; }
.role-card h3, .feature-card h3, .module-card h3, .value-card h3, .timeline-card h3, .quote-card h3 { margin: 0 0 .75rem; font-size: 1.15rem; color: #0d2437; }
.role-card p, .feature-card p, .module-card p, .value-card p, .timeline-card p, .quote-card p, .contact-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(18,184,236,.16), rgba(10,122,200,.08));
    color: #0d6d9f;
    font-weight: 800;
}

.pill-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.pill {
    display: inline-flex;
    padding: .75rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(17, 38, 58, 0.08);
    color: #20405d;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(17, 38, 58, 0.05);
}

.visual-card {
    background: #fff;
    border: 1px solid rgba(17, 38, 58, 0.08);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 1rem;
}
.visual-card img { width: 100%; height: auto; border-radius: 22px; display: block; }

.metric-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.stat-card {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.09);
}
.stat-card strong {
    display: block;
    font-size: 2.2rem;
    margin-bottom: .3rem;
    color: #fff;
}
.stat-card span { color: rgba(235, 242, 248, .76); line-height: 1.6; }

.split-content ul, .feature-list {
    margin: 1.3rem 0 0;
    padding-left: 1.15rem;
    color: var(--muted);
    line-height: 1.95;
}
.info-stack { display: grid; gap: 1rem; }
.value-card strong { display: block; font-size: .84rem; text-transform: uppercase; letter-spacing: .16em; color: #0b6f9b; margin-bottom: .75rem; }

.quote-card blockquote {
    margin: 0 0 1rem;
    font-size: 1.06rem;
    line-height: 1.8;
    color: #16334f;
}
.quote-author { font-size: .95rem; color: var(--muted); }
.logo-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .9rem;
    margin-top: 2rem;
}
.logo-pill {
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    font-weight: 700;
    color: #28506f;
    border: 1px solid rgba(17, 38, 58, 0.08);
}

.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.timeline-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(18,184,236,.12);
    color: #0c6f9f;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-banner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border-radius: 32px;
    background: linear-gradient(135deg, #0e6ea4 0%, #0c2034 100%);
    color: #ebf2f8;
    box-shadow: 0 24px 60px rgba(10, 32, 52, .16);
}
.cta-banner h2 { color: #fff; margin: 0 0 .75rem; }
.cta-banner p { color: rgba(235, 242, 248, .76); margin: 0; line-height: 1.8; }
.cta-banner .section-actions { justify-content: flex-end; margin-top: 0; }

.form-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.5rem; align-items: start; }
.contact-points { display: grid; gap: 1rem; margin-top: 1.25rem; }
.contact-points div { display: grid; gap: .25rem; }
.contact-points strong { color: #0d2236; }
.contact-form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: .45rem; }
label { font-weight: 600; color: #153550; }
input, textarea {
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(17, 38, 58, 0.14);
    background: #fff;
    color: var(--text);
    font: inherit;
}
input:focus, textarea:focus {
    outline: none;
    border-color: rgba(18,184,236,.5);
    box-shadow: 0 0 0 4px rgba(18,184,236,.12);
}
.validation-summary, span.field-validation-error, span.input-validation-error { color: #d24a4a; font-size: .92rem; }
.success-box {
    padding: 1.2rem;
    border-radius: 20px;
    background: rgba(13, 156, 121, .08);
    border: 1px solid rgba(13, 156, 121, .18);
}

.site-footer {
    margin-top: 2rem;
    padding: 3.5rem 0 1rem;
    background: #0c1c2d;
    color: rgba(235, 242, 248, .82);
}
.footer-top { display: grid; grid-template-columns: 1.4fr .8fr .8fr .8fr; gap: 2rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.footer-mark { width: 60px; height: 60px; }
.footer-copy { color: rgba(235, 242, 248, .72); line-height: 1.8; max-width: 430px; }
.footer-contact-list { display: grid; gap: .35rem; }
.site-footer h4 { margin: 0 0 .85rem; color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.site-footer li, .site-footer a { color: rgba(235, 242, 248, .72); }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); color: rgba(235, 242, 248, .58); }

@media (max-width: 1100px) {
    .hero-grid, .grid-2, .split-layout, .form-layout, .footer-top, .cta-banner, .page-hero-grid { grid-template-columns: 1fr; }
    .grid-4, .timeline-grid, .metric-band { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .logo-strip { grid-template-columns: repeat(3, 1fr); }
    .cta-banner .section-actions { justify-content: flex-start; margin-top: 1rem; }
}

@media (max-width: 860px) {
    .nav-toggle-btn {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        border-radius: 14px;
        border: 1px solid rgba(17, 38, 58, 0.12);
        margin-left: auto;
        padding: 0 12px;
        cursor: pointer;
    }
    .nav-toggle-btn span { display: block; height: 2px; border-radius: 20px; background: #16334f; }
    .main-nav {
        position: absolute;
        top: 92px;
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: .2rem;
        background: rgba(255,255,255,.98);
        border: 1px solid rgba(17, 38, 58, 0.08);
        border-radius: 22px;
        padding: .85rem;
        box-shadow: var(--shadow);
    }
    .nav-toggle:checked ~ .main-nav { display: flex; }
    .main-nav a { border-radius: 16px; }
    .hero { padding-top: 2.6rem; }
    .hero-kpis, .grid-4, .timeline-grid, .metric-band, .grid-3, .logo-strip { grid-template-columns: 1fr; }
    .brand-tagline { white-space: normal; max-width: 220px; line-height: 1.35; }
}
