:root {
    --blue: #18A7D2;
    --blue-dark: #118FB6;
    --blue-accessible: #06769A;
    --blue-accessible-hover: #055E7A;
    --deep: #0A3E4A;
    --deep-2: #12313A;
    --green: #3B8063;
    --green-soft: #E9F3EE;
    --aqua: #EAF7FA;
    --system: #F3F6F7;
    --white: #FFFFFF;
    --ink: #18333B;
    --muted: #5D747B;
    --line: #D6E4E7;
    --danger: #A13B45;
    --danger-soft: #FFF0F1;
    --success: #2F7157;
    --shadow-sm: 0 8px 24px rgba(10, 62, 74, .08);
    --shadow-lg: 0 24px 60px rgba(10, 62, 74, .15);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 26px;
    --container: 1180px;
    --header-height: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: var(--deep); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--blue-accessible); }

button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
    color: var(--deep);
    line-height: 1.12;
    letter-spacing: -.025em;
}

h1 { font-size: clamp(2.7rem, 6vw, 5.55rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }

p { margin-bottom: 1.2rem; }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.container--narrow { width: min(calc(100% - 40px), 860px); }

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    padding: 12px 18px;
    color: var(--white);
    background: var(--deep);
    border-radius: var(--radius-sm);
    transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--blue-accessible);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: var(--green);
}

.eyebrow--light { color: #A7E7F5; }
.eyebrow--light::before { background: #71B995; }

.lead {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 22px;
    border: 2px solid var(--blue-accessible);
    border-radius: 9px;
    color: var(--white);
    background: var(--blue-accessible);
    box-shadow: none;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button:hover {
    color: var(--white);
    background: var(--blue-accessible-hover);
    border-color: var(--blue-accessible-hover);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(24, 167, 210, .35);
    outline-offset: 3px;
}

.button--outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, .65);
}

.button--outline:hover { background: rgba(255, 255, 255, .10); border-color: var(--white); }

.button--light {
    color: var(--deep);
    background: var(--white);
    border-color: var(--white);
}

.button--light:hover { color: var(--deep); background: var(--aqua); border-color: var(--aqua); }

.button--ghost {
    color: var(--deep);
    background: var(--white);
    border-color: var(--line);
}

.button--ghost:hover { color: var(--deep); background: var(--aqua); border-color: var(--blue); }
.button--small { min-height: 44px; padding: 10px 16px; font-size: .9rem; }
.button--wide { width: 100%; }

.topbar {
    color: #D9F4FA;
    background: var(--deep);
    font-size: .78rem;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    gap: 24px;
}

.topbar p { margin: 0; }
.topbar a { color: var(--white); font-weight: 700; text-decoration: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(214, 228, 231, .9);
    backdrop-filter: blur(12px);
    transition: box-shadow .2s ease;
}

.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(10, 62, 74, .08); }

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 28px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 205px; height: auto; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav > a:not(.button) {
    position: relative;
    padding: 28px 0;
    color: var(--deep);
    font-size: .91rem;
    font-weight: 650;
    text-decoration: none;
}

.main-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 3px;
    background: var(--blue);
    transition: right .2s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a.is-active::after { right: 0; }
.main-nav > a.is-active { color: var(--blue-accessible); }

.menu-toggle {
    display: none;
    width: 48px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--deep);
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--deep);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .65;
    background-image: url("/assets/img/system-pattern.svg");
    background-size: 120px 120px;
    mask-image: linear-gradient(to right, transparent, black 45%, black);
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
    align-items: center;
    gap: clamp(38px, 7vw, 84px);
    min-height: 690px;
    padding-block: 86px;
}

.hero h1 { max-width: 760px; margin-bottom: 25px; color: var(--white); }
.hero__copy > p:not(.eyebrow) {
    max-width: 700px;
    color: #D9EEF2;
    font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__visual { position: relative; }
.hero__visual::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 12px;
    left: -24px;
    bottom: -22px;
    border-radius: 999px;
    background: var(--green);
}
.hero__visual img { width: 100%; filter: drop-shadow(0 26px 50px rgba(0, 0, 0, .20)); }

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #DDF4F8;
    background: rgba(255, 255, 255, .06);
    font-size: .78rem;
    font-weight: 650;
}

.hero__trust span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6DBC94;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    color: var(--white);
    background: var(--deep);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -140px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.03), 0 0 0 140px rgba(255,255,255,.02);
}

.page-hero__inner { position: relative; z-index: 1; max-width: 920px; }
.page-hero h1 { margin-bottom: 24px; color: var(--white); font-size: clamp(2.7rem, 6vw, 5rem); }
.page-hero p:not(.eyebrow) { max-width: 780px; color: #D9EEF2; font-size: clamp(1.08rem, 1.8vw, 1.3rem); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.proof-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.proof-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.proof-item {
    min-height: 132px;
    padding: 30px 26px;
    border-right: 1px solid var(--line);
}
.proof-item:first-child { border-left: 1px solid var(--line); }
.proof-item strong { display: block; margin-bottom: 7px; color: var(--deep); font-size: .98rem; }
.proof-item span { color: var(--muted); font-size: .87rem; }
.proof-item__number { margin-bottom: 12px; color: var(--blue-accessible); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }

.section { padding: 108px 0; }
.section--compact { padding: 78px 0; }
.section--system { background: var(--system); }
.section--aqua { background: var(--aqua); }
.section--deep { color: var(--white); background: var(--deep); }
.section--deep h2, .section--deep h3 { color: var(--white); }
.section--deep p { color: #D9EEF2; }
.section--green { color: var(--white); background: var(--green); }
.section--green h2, .section--green h3 { color: var(--white); }
.section--green p { color: #ECF7F1; }

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 44px;
    margin-bottom: 50px;
}
.section-header > div:first-child { max-width: 820px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { margin-bottom: 0; color: var(--muted); }
.section--deep .section-header p { color: #CDE6EA; }

.insight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .78fr);
    gap: 60px;
    align-items: start;
}

.insight-quote {
    position: relative;
    margin: 0;
    padding: 42px 44px 42px 54px;
    color: var(--deep);
    background: var(--aqua);
    border-left: 8px solid var(--blue);
    font-size: clamp(1.45rem, 2.7vw, 2.25rem);
    font-weight: 700;
    line-height: 1.35;
}

.insight-quote::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: -9px;
    width: 110px;
    height: 9px;
    background: var(--green);
}

.contrast-list { display: grid; gap: 14px; }
.contrast-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    background: var(--white);
}
.contrast-item__mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
    font-weight: 800;
}
.contrast-item strong { display: block; color: var(--deep); }
.contrast-item span { color: var(--muted); font-size: .9rem; }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 7px solid var(--blue);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:nth-child(2) { border-top-color: var(--green); }
.service-card:nth-child(3) { border-top-color: var(--deep); }
.service-card:nth-child(4) { border-top-color: #6EAFC0; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card__role { margin-bottom: 14px; color: var(--blue-accessible); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 14px; }
.service-card p { color: var(--muted); font-size: .94rem; }
.service-card ul { padding-left: 19px; margin: auto 0 24px; color: var(--muted); font-size: .9rem; }
.service-card li + li { margin-top: 7px; }
.service-card a { align-self: flex-start; font-weight: 750; }

.portfolio-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: 260px;
    background: var(--white);
    border: 1px solid var(--line);
}
.portfolio-card__code {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 20px;
    color: var(--white);
    background: var(--deep);
}
.portfolio-card:nth-child(2) .portfolio-card__code { background: var(--green); }
.portfolio-card:nth-child(3) .portfolio-card__code { background: var(--blue-accessible); }
.portfolio-card:nth-child(4) .portfolio-card__code { background: #356674; }
.portfolio-card__code strong { font-size: 2rem; }
.portfolio-card__code span { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.portfolio-card__content { padding: 30px 32px; }
.portfolio-card__content h3 { margin-bottom: 12px; }
.portfolio-card__content p { color: var(--muted); }
.portfolio-card__content ul { padding-left: 20px; color: var(--muted); }

.care-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: 60px;
    align-items: center;
}
.care-banner__statement {
    padding: 32px 36px;
    color: var(--white);
    background: var(--blue-accessible);
    border-left: 8px solid #7AC59E;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 750;
    line-height: 1.3;
}
.care-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }
.care-item { padding: 20px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.care-item strong { display: block; margin-bottom: 5px; color: var(--white); }
.care-item span { color: #CBE3E7; font-size: .88rem; }
.care-metric {
    padding: 38px;
    color: var(--deep);
    background: var(--white);
}
.care-metric__number { display: block; color: var(--green); font-size: 4.5rem; font-weight: 800; line-height: 1; }
.care-metric h3 { margin: 15px 0 10px; }
.care-metric p { color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: process; }
.process-step {
    position: relative;
    min-height: 285px;
    padding: 30px 25px;
    background: var(--white);
    border: 1px solid var(--line);
    border-right: 0;
    counter-increment: process;
}
.process-step:last-child { border-right: 1px solid var(--line); }
.process-step::before {
    content: "0" counter(process);
    display: block;
    margin-bottom: 30px;
    color: var(--blue-accessible);
    font-size: 1.55rem;
    font-weight: 800;
}
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: -8px;
    top: 58px;
    width: 14px;
    height: 14px;
    border-top: 3px solid var(--blue-accessible);
    border-right: 3px solid var(--blue-accessible);
    background: var(--white);
    transform: rotate(45deg);
}
.process-step h3 { font-size: 1.1rem; }
.process-step p { color: var(--muted); font-size: .88rem; }

.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sector-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
}
.sector-card__index { display: block; margin-bottom: 30px; color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.sector-card h3 { margin-bottom: 12px; }
.sector-card p { color: var(--muted); font-size: .9rem; }

.trust-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr); gap: 54px; align-items: start; }
.trust-card {
    padding: 38px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.trust-card__label { color: var(--blue-accessible); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.trust-card dl { margin: 26px 0 0; }
.trust-card dl > div { display: grid; grid-template-columns: 145px 1fr; gap: 18px; padding: 15px 0; border-top: 1px solid var(--line); }
.trust-card dt { color: var(--deep); font-weight: 750; }
.trust-card dd { margin: 0; color: var(--muted); }

.truth-list { display: grid; gap: 14px; }
.truth-item { display: grid; grid-template-columns: 28px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.truth-item svg { width: 24px; color: var(--green); }
.truth-item strong { display: block; color: var(--deep); }
.truth-item span { color: var(--muted); font-size: .9rem; }

.cta-band {
    padding: 54px 0;
    color: var(--white);
    background: var(--blue-accessible);
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { margin-bottom: 9px; color: var(--white); font-size: clamp(1.7rem, 3vw, 2.6rem); }
.cta-band p { margin-bottom: 0; color: #E8F8FC; }

.contact-wrap { padding: 100px 0; background: var(--system); }
.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(520px, 1.25fr);
    gap: 58px;
    align-items: start;
}
.contact-panel__intro { position: sticky; top: 130px; }
.contact-panel__intro h2 { margin-bottom: 22px; }
.contact-panel__intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.contact-panel__promise { margin-top: 30px; padding: 24px; background: var(--aqua); border-left: 6px solid var(--green); }
.contact-panel__promise strong, .contact-panel__promise span { display: block; }
.contact-panel__promise strong { color: var(--deep); }
.contact-panel__promise span { margin-top: 7px; color: var(--muted); font-size: .9rem; }
.contact-panel__form-wrap { padding: 34px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { margin-bottom: 22px; }
.field label, .fieldset legend { display: block; margin-bottom: 8px; color: var(--deep); font-size: .88rem; font-weight: 700; }
.field input, .field select, .field textarea {
    width: 100%;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #B9CDD1;
    border-radius: 7px;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.field input, .field select { min-height: 50px; padding: 11px 13px; }
.field textarea { min-height: 150px; padding: 13px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--blue); }
.field small { display: block; margin-top: 6px; color: var(--muted); font-size: .76rem; }
.fieldset { padding: 0; border: 0; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.check-grid label { display: flex; align-items: flex-start; gap: 8px; padding: 11px 12px; margin: 0; border: 1px solid var(--line); background: var(--system); font-weight: 550; }
.check-grid input, .consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 4px 0 22px; color: var(--muted); font-size: .82rem; }
.consent a { font-weight: 700; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .78rem; text-align: center; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-alert { margin-bottom: 24px; padding: 18px 20px; border-left: 6px solid; }
.form-alert ul { margin: 8px 0 0; padding-left: 20px; }
.form-alert--error { color: #702B33; background: var(--danger-soft); border-color: var(--danger); }
.form-alert--success { color: #20563F; background: var(--green-soft); border-color: var(--success); }

.contact-directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.contact-card { padding: 26px; background: var(--white); border-top: 6px solid var(--blue); box-shadow: var(--shadow-sm); }
.contact-card:nth-child(2) { border-top-color: var(--green); }
.contact-card:nth-child(3) { border-top-color: var(--deep); }
.contact-card span { display: block; margin-bottom: 8px; color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-card a { word-break: break-word; font-weight: 750; }
.contact-card p { margin: 8px 0 0; color: var(--muted); font-size: .84rem; }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 31px; top: 24px; bottom: 24px; width: 3px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 25px; padding: 0 0 28px; }
.timeline-item__index { z-index: 1; display: grid; place-items: center; width: 64px; height: 64px; color: var(--white); background: var(--blue-accessible); border: 8px solid var(--white); border-radius: 50%; font-weight: 800; }
.timeline-item:nth-child(3n+2) .timeline-item__index { background: var(--green); }
.timeline-item:nth-child(3n) .timeline-item__index { background: var(--deep); }
.timeline-item__content { padding: 19px 24px 22px; background: var(--white); border: 1px solid var(--line); }
.timeline-item__content h3 { margin-bottom: 8px; }
.timeline-item__content p { margin-bottom: 0; color: var(--muted); }

.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.policy-card { padding: 28px; background: var(--white); border: 1px solid var(--line); }
.policy-card__number { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--white); background: var(--green); font-weight: 800; }
.policy-card h3 { margin-bottom: 10px; }
.policy-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.claim-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.claim-column { padding: 30px; border: 1px solid var(--line); }
.claim-column--yes { background: var(--green-soft); border-top: 7px solid var(--green); }
.claim-column--no { background: var(--danger-soft); border-top: 7px solid var(--danger); }
.claim-column h3 { margin-bottom: 24px; }
.claim-list { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.claim-list li { padding: 14px 0; border-top: 1px solid rgba(10,62,74,.12); }
.claim-list strong { display: block; color: var(--deep); font-size: .84rem; }
.claim-list span { color: var(--muted); font-size: .9rem; }

.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 22px 64px 22px 24px; color: var(--deep); font-weight: 750; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 24px; top: 50%; color: var(--blue-accessible); font-size: 1.7rem; font-weight: 400; transform: translateY(-50%); }
.faq-item[open] summary::after { content: "−"; }
.faq-item__answer { padding: 0 24px 24px; color: var(--muted); }
.faq-item__answer p:last-child { margin-bottom: 0; }

.legal-copy { color: var(--muted); }
.legal-copy h2 { margin-top: 48px; font-size: 1.65rem; }
.legal-copy h3 { margin-top: 32px; font-size: 1.2rem; }
.legal-copy ul { padding-left: 22px; }
.legal-copy li + li { margin-top: 7px; }
.legal-highlight { margin: 32px 0; padding: 26px; background: var(--aqua); border-left: 7px solid var(--blue); color: var(--deep); }

.thank-you {
    min-height: 650px;
    display: grid;
    place-items: center;
    padding: 80px 0;
    background: var(--aqua);
}
.thank-you__card { max-width: 760px; padding: 56px; text-align: center; background: var(--white); box-shadow: var(--shadow-lg); }
.thank-you__mark { display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 24px; color: var(--white); background: var(--green); border-radius: 50%; font-size: 2.2rem; font-weight: 800; }
.thank-you h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.thank-you p { color: var(--muted); font-size: 1.05rem; }
.thank-you__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

.site-footer {
    color: #D7EBEF;
    background: var(--deep);
    border-top: 8px solid var(--blue);
}
.site-footer__grid { display: grid; grid-template-columns: 1.25fr .9fr .55fr; gap: 70px; padding: 72px 0 58px; }
.site-footer__brand img { width: 245px; height: auto; margin-bottom: 28px; }
.site-footer__brand p { max-width: 510px; color: #C4DDE1; }
.site-footer h2 { margin-bottom: 22px; color: var(--white); font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-list { padding: 0; margin: 0; list-style: none; }
.footer-list li + li { margin-top: 14px; }
.footer-list a { color: var(--white); font-size: .9rem; font-weight: 650; text-decoration: none; }
.footer-list a:hover { color: #9EE1F1; }
.footer-list span { display: block; margin-top: 2px; color: #8FB3BB; font-size: .72rem; }
.site-footer__legal { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0 34px; border-top: 1px solid rgba(255,255,255,.13); }
.site-footer__legal p { max-width: 760px; margin: 0; color: #94B6BE; font-size: .72rem; }
.site-footer__legal p:last-child { text-align: right; white-space: nowrap; }

.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--white);
    background: var(--green);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(10,62,74,.25);
    transition: transform .2s ease, background .2s ease;
}
.whatsapp-float:hover { color: var(--white); background: #2F6D54; transform: translateY(-4px); }
.whatsapp-float svg { width: 27px; fill: currentColor; }

.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    :root { --header-height: 76px; }
    .topbar { display: none; }
    .site-header__inner { flex-wrap: wrap; padding-block: 10px; }
    .menu-toggle { display: none; }
    .main-nav { display: flex; flex-wrap: wrap; width: 100%; gap: 8px 18px; padding-bottom: 8px; }
    .main-nav > a:not(.button) { padding: 8px 2px; }
    .main-nav > a:not(.button)::after { bottom: 2px; }

    .js .site-header__inner { flex-wrap: nowrap; padding-block: 0; }
    .js .menu-toggle { display: block; }
    .js .main-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        display: grid;
        width: auto;
        gap: 0;
        padding: 18px 20px 28px;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: 0 24px 40px rgba(10,62,74,.16);
        transform: translateY(-120%);
        visibility: hidden;
        transition: transform .25s ease, visibility .25s ease;
    }
    .js .main-nav.is-open { transform: translateY(0); visibility: visible; }
    .js .main-nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); }
    .js .main-nav > a:not(.button)::after { display: none; }
    .js .main-nav .button { margin-top: 16px; }
    .js .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
    .js .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
    .js .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

    .hero__grid { grid-template-columns: 1fr; min-height: auto; padding-block: 78px 90px; }
    .hero__copy { max-width: 820px; }
    .hero__visual { max-width: 720px; margin-inline: auto; }
    .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .proof-item:nth-child(2) { border-right: 0; }
    .proof-item:nth-child(n+3) { border-top: 1px solid var(--line); }
    .insight-grid, .care-banner, .trust-grid, .contact-panel { grid-template-columns: 1fr; }
    .contact-panel__intro { position: static; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .process-step { border-right: 1px solid var(--line); }
    .process-step::after { display: none; }
    .sector-grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .container, .container--narrow { width: min(calc(100% - 28px), var(--container)); }
    .brand img { width: 172px; }
    .section { padding: 76px 0; }
    .section--compact { padding: 60px 0; }
    .hero__grid { padding-block: 66px 76px; gap: 50px; }
    .hero h1 { font-size: clamp(2.65rem, 14vw, 4.4rem); }
    .hero__actions, .page-hero__actions { display: grid; }
    .hero__actions .button, .page-hero__actions .button { width: 100%; }
    .hero__visual::before { left: 0; width: 120px; }
    .page-hero { padding: 68px 0 64px; }
    .proof-strip__grid, .card-grid, .card-grid--2, .card-grid--3, .sector-grid, .contact-directory, .policy-grid, .claim-grid, .form-grid, .check-grid { grid-template-columns: 1fr; }
    .proof-item, .proof-item:first-child { border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
    .proof-item:first-child { border-top: 0; }
    .section-header { display: block; }
    .section-header .button { margin-top: 24px; }
    .insight-quote { padding: 30px 24px 34px 30px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step { min-height: 0; }
    .care-list { grid-template-columns: 1fr; }
    .portfolio-card { grid-template-columns: 84px 1fr; }
    .portfolio-card__code { padding: 22px 14px; }
    .portfolio-card__content { padding: 24px 22px; }
    .contact-panel__form-wrap { padding: 24px 18px; }
    .trust-card { padding: 26px 22px; }
    .trust-card dl > div { grid-template-columns: 1fr; gap: 4px; }
    .cta-band__inner { display: block; }
    .cta-band .button { width: 100%; margin-top: 24px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 42px; }
    .site-footer__brand { grid-column: auto; }
    .site-footer__legal { display: block; }
    .site-footer__legal p:last-child { margin-top: 14px; text-align: left; white-space: normal; }
    .thank-you__card { padding: 38px 22px; }
    .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
    .topbar, .site-header, .whatsapp-float, .site-footer, .button { display: none !important; }
    body { color: #000; }
    .section, .page-hero { padding: 30px 0; background: #fff !important; color: #000 !important; }
    h1, h2, h3, p { color: #000 !important; }
}
