/* WordPush site styles. Colors follow the logo: navy, blue, teal, white. */

:root {
    --navy: #052648;
    --navy-deep: #03182e;
    --blue: #0079fe;
    --blue-deep: #0062d1;
    --teal: #00b7d4;
    --teal-line: #019be0;
    --paper: #ffffff;
    --mist: #f4f8fb;
    --fog: #e6eef4;
    --ink: #052648;
    --muted: #4d6174;
    --line: #d4e0ea;
    --danger: #9b1c1c;
    --danger-bg: #fde8e8;
    --ok: #0b6b3a;
    --ok-bg: #e6f6ec;
    --focus: #0079fe;
    --radius: 8px;
    --shadow: 0 10px 28px rgba(5, 38, 72, 0.08);
    --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
    --max: 1120px;
    --header-h: 5rem;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
}

img,
svg {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--blue);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--blue-deep);
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 0.75rem;
    top: -3rem;
    z-index: 100;
    background: var(--navy);
    color: #fff;
    padding: 0.5rem 0.85rem;
    border-radius: 4px;
}

.skip-link:focus {
    top: 0.75rem;
    color: #fff;
}

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

.wrap {
    width: min(var(--max), calc(100% - 2rem));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    border-top: 3px solid var(--teal);
}

.site-header.is-scrolled {
    box-shadow: 0 4px 16px rgba(5, 38, 72, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo img {
    display: block;
    height: 40px;
    width: auto;
}

/* Taller mark in the same header bar; nav type size stays put. */
.site-header .logo img {
    height: 80px;
    max-width: none;
}

.nav-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
    display: block;
    width: 1.15rem;
    height: 2px;
    background: var(--navy);
    margin: 0 auto;
    position: relative;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { top: 0; transform: rotate(-45deg); }

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav ul {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--blue);
}

.site-nav .btn-primary,
.site-nav .btn-primary:hover,
.site-nav .btn-primary:focus-visible {
    color: #fff;
}

.header-cta {
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.75rem;
    padding: 0.55rem 1.15rem;
    border-radius: 6px;
    font: inherit;
    font-weight: 650;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--blue-deep);
    border-color: var(--blue-deep);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--navy);
    color: #fff;
}

.hero {
    padding: 3rem 0 2.5rem;
    background:
        radial-gradient(circle at 88% 12%, rgba(0, 183, 212, 0.16), transparent 34%),
        radial-gradient(circle at 8% 88%, rgba(0, 121, 254, 0.08), transparent 32%),
        linear-gradient(180deg, #eef7fb 0%, #ffffff 74%);
}

.hero-grid {
    display: grid;
    gap: 2.25rem;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    color: #0e7a8a;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.page-intro h1 {
    font-family: var(--font-display);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--navy);
    margin: 0 0 0.85rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.15rem);
    max-width: 18ch;
}

.lede,
.section-copy > p,
.page-intro p {
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 40rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-visual {
    margin: 0;
}

.hero-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.strip {
    border-top: 1px solid #c5e8f0;
    border-bottom: 1px solid #c5e8f0;
    background: #e8f7fb;
    padding: 1.1rem 0;
}

.strip ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.strip li {
    color: var(--navy);
    font-weight: 650;
    font-size: 0.95rem;
}

.strip li span {
    display: block;
    color: var(--teal-line);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--mist);
}

.section-copy {
    max-width: 40rem;
    margin-bottom: 2rem;
}

.focus-grid {
    display: grid;
    gap: 2.25rem;
    align-items: center;
}

.focus-grid h2 {
    font-family: var(--font-display);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.15;
    font-size: clamp(1.7rem, 3.4vw, 2.35rem);
    color: var(--navy);
    margin: 0 0 0.85rem;
}

.focus-grid p {
    color: var(--muted);
    font-size: 1.08rem;
}

.focus-close {
    color: var(--navy) !important;
    font-weight: 650;
    font-size: 1.15rem !important;
}

.focus-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #dce6ee;
}

.focus-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.cards {
    display: grid;
    gap: 1rem;
}

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem 1.25rem 1.4rem;
    border-left: 4px solid var(--teal);
}

.card:nth-child(2) { border-left-color: var(--blue); }
.card:nth-child(3) { border-left-color: var(--navy); }
.card:nth-child(4) { border-left-color: var(--teal-line); }

.card:hover {
    border-color: #b9c9d6;
}

.icon-wrap {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    background: #e8f7fb;
    color: var(--navy);
}

.card:nth-child(2) .icon-wrap { background: #e7f1ff; }
.card:nth-child(3) .icon-wrap { background: #e8eef4; }
.card:nth-child(4) .icon-wrap { background: #e9f4ea; }

.card h3 {
    margin: 0.7rem 0 0.45rem;
    font-size: 1.2rem;
    color: var(--navy);
}

.card p {
    margin: 0;
    color: var(--muted);
}

.icon {
    width: 2rem;
    height: 2rem;
    color: var(--navy);
}

.process {
    display: grid;
    gap: 1.15rem;
}

.process-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.process-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    margin: 0;
    padding: 0.7rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
    color: var(--navy);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.process-tab:hover {
    background: var(--paper);
    border-color: #b9c9d6;
}

.process-tab.is-active {
    background: var(--paper);
    border-color: #b9c9d6;
    box-shadow: var(--shadow);
}

.process-tab-kicker {
    display: none;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0e7a8a;
}

.process-tab-title {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.process-mark {
    --fill: 25%;
    --accent: var(--blue);
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 50%;
    font-size: 0.92rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums lining-nums;
    letter-spacing: -0.03em;
    color: var(--navy);
    background:
        radial-gradient(circle closest-side, var(--paper) calc(100% - 5px), transparent calc(100% - 4px)),
        conic-gradient(from -90deg, var(--accent) var(--fill), var(--fog) 0);
}

.process-tab:nth-child(2) .process-mark { --fill: 50%; --accent: var(--teal); }
.process-tab:nth-child(3) .process-mark { --fill: 75%; --accent: var(--navy); }
.process-tab:nth-child(4) .process-mark { --fill: 100%; --accent: var(--teal-line); }

.process-tab.is-active .process-mark {
    background:
        radial-gradient(circle closest-side, #eef7fb calc(100% - 5px), transparent calc(100% - 4px)),
        conic-gradient(from -90deg, var(--accent) var(--fill), var(--line) 0);
    box-shadow: 0 6px 14px rgba(5, 38, 72, 0.1);
}

.process-viewport {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-height: 0;
}

.process-stage {
    display: grid;
}

.process-panel {
    --accent: var(--blue);
    --fill: 0.25;
    grid-area: 1 / 1;
    display: grid;
    gap: 1.25rem;
    align-items: center;
    padding: 1.4rem 1.25rem 4.1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(1.1rem);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.process-panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.process-panel:nth-child(2) { --accent: var(--teal); --fill: 0.5; }
.process-panel:nth-child(3) { --accent: var(--navy); --fill: 0.75; }
.process-panel:nth-child(4) { --accent: var(--teal-line); --fill: 1; }

.process-figure {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100%, 15.5rem);
    aspect-ratio: 1;
    margin: 0 auto;
}

.process-figure svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.process-ring-track {
    fill: none;
    stroke: var(--fog);
    stroke-width: 7;
}

.process-ring-arc {
    fill: none;
    stroke: var(--accent);
    stroke-width: 7;
    stroke-linecap: round;
    stroke-dasharray: 553;
    stroke-dashoffset: calc(553 * (1 - var(--fill)));
    transform: rotate(-90deg);
    transform-origin: 100px 100px;
    transition: stroke-dashoffset 0.7s ease;
}

.process-figure-num {
    position: relative;
    z-index: 1;
    font-family: var(--font);
    font-size: clamp(3.4rem, 9vw, 5.1rem);
    font-weight: 800;
    font-variant-numeric: tabular-nums lining-nums;
    letter-spacing: -0.07em;
    line-height: 0.8;
    color: var(--navy);
}

.process-figure-num::before {
    content: attr(data-n);
    position: absolute;
    left: 0.07em;
    top: 0.06em;
    z-index: -1;
    color: var(--accent);
    opacity: 0.38;
}

.process-kicker {
    display: inline-block;
    margin: 0 0 0.45rem;
    color: #0e7a8a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-body h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--navy);
}

.process-body > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 38rem;
}

.process-points {
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
}

.process-points li {
    position: relative;
    margin: 0;
    padding: 0.55rem 0 0.55rem 1.45rem;
    border-top: 1px solid var(--fog);
    color: var(--ink);
    font-size: 0.98rem;
}

.process-points li:last-child {
    padding-bottom: 0;
}

.process-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--accent);
}

.process-controls {
    position: absolute;
    right: 1rem;
    bottom: 1.05rem;
    z-index: 2;
    display: flex;
    gap: 0.4rem;
}

.process-controls button {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--navy);
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.process-controls button:hover,
.process-controls button:focus-visible {
    border-color: var(--blue);
    color: var(--blue);
}

.process-controls svg {
    width: 1.15rem;
    height: 1.15rem;
}

.process-controls[data-paused] [data-icon="pause"],
.process-controls:not([data-paused]) [data-icon="play"] {
    display: none;
}

.process-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--fog);
}

.process-progress span {
    display: block;
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--blue), var(--teal));
}

.process.is-playing .process-progress span {
    animation: process-progress 8s linear forwards;
}

.process.is-paused .process-progress span {
    animation-play-state: paused;
}

@keyframes process-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.why-grid {
    display: grid;
    gap: 1rem;
}

.why-item {
    padding: 0.85rem 1rem 0.95rem 1rem;
    border-left: 4px solid var(--teal);
    background: var(--mist);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.why-item:nth-child(2),
.why-item:nth-child(5) {
    border-left-color: var(--blue);
    background: #eef4ff;
}

.why-item:nth-child(3),
.why-item:nth-child(6) {
    border-left-color: var(--navy);
    background: #eef2f6;
}

.why-item h3 {
    margin: 0 0 0.3rem;
    font-size: 1.08rem;
}

.why-item p {
    margin: 0;
    color: var(--muted);
}

.about-grid {
    display: grid;
    gap: 2.25rem;
    align-items: center;
}

.about-grid .section-copy {
    max-width: none;
    margin-bottom: 1.1rem;
}

.about-block {
    max-width: none;
}

.about-block p {
    font-size: 1.12rem;
    color: var(--muted);
}

.about-block p + p {
    margin-top: 1rem;
}

.about-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #dce6ee;
}

.about-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

.contact-aside {
    background: var(--navy);
    color: #c5d3de;
    padding: 1.5rem 1.4rem;
    border-radius: var(--radius);
    border-top: 4px solid var(--teal);
}

.contact-aside h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    color: #fff;
}

.contact-aside p,
.contact-aside li {
    color: #c5d3de;
}

.contact-aside a {
    color: #7ec8ff;
}

.contact-aside a:hover {
    color: #fff;
}

.contact-aside ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-aside li + li {
    margin-top: 0.45rem;
}

.contact-form {
    display: grid;
    gap: 0.9rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.field {
    display: grid;
    gap: 0.35rem;
}

.field-row {
    display: grid;
    gap: 0.9rem;
}

label {
    font-weight: 650;
    color: var(--navy);
    font-size: 0.95rem;
}

.req {
    color: var(--blue);
}

.muted-label {
    font-weight: 500;
    color: var(--muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    width: 100%;
    font: inherit;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid #b9c9d6;
    border-radius: 6px;
    padding: 0.65rem 0.7rem;
}

textarea {
    min-height: 8rem;
    resize: vertical;
}

input:focus-visible,
textarea:focus-visible {
    border-color: var(--blue);
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.form-status {
    display: none;
    padding: 0.85rem 0.95rem;
    border-radius: 6px;
}

.form-status.is-visible { display: block; }
.form-status.is-ok { background: var(--ok-bg); color: var(--ok); }
.form-status.is-error { background: var(--danger-bg); color: var(--danger); }

.field.is-invalid input,
.field.is-invalid textarea {
    border-color: var(--danger);
}

.field-error {
    color: var(--danger);
    font-size: 0.88rem;
}

.site-footer {
    background: var(--mist);
    border-top: 1px solid var(--line);
    padding: 2.75rem 0 1.4rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-brand p,
.footer-contact li {
    color: var(--muted);
}

.footer-brand p {
    max-width: 28rem;
}

.footer-nav h2,
.footer-contact h2 {
    margin: 0 0 0.7rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a,
.footer-contact a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--blue);
}

.footer-nav li + li,
.footer-contact li + li {
    margin-top: 0.4rem;
}

.footer-base {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.6rem 1.25rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-base p {
    margin: 0;
}

.footer-base a {
    color: var(--navy);
    margin-right: 1rem;
    text-decoration: none;
    font-weight: 600;
}

.footer-base a:hover {
    color: var(--blue);
}

.page-intro {
    padding: 3rem 0 1rem;
}

.legal {
    padding-bottom: 4rem;
}

.legal h2 {
    margin-top: 2rem;
    font-size: 1.25rem;
}

.legal p,
.legal li {
    color: var(--muted);
    max-width: 46rem;
}

.error-page {
    min-height: calc(70vh - var(--header-h));
    display: grid;
    align-content: center;
    padding: 4rem 0;
}

.error-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 0.75rem;
}

@media (min-width: 640px) {
    .strip ul { grid-template-columns: repeat(4, 1fr); }
    .cards { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .field-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 880px) {
    .hero-grid { grid-template-columns: 1fr 1.05fr; gap: 3rem; }
    .about-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
    .focus-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1.3fr 0.8fr; align-items: start; }

    .process {
        grid-template-columns: 17.75rem 1fr;
        gap: 1.35rem;
        align-items: stretch;
    }

    .process-tabs {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        align-content: start;
    }

    .process-tab {
        padding: 0.9rem 0.85rem;
    }

    .process-tab-kicker {
        display: block;
        margin-bottom: 0.12rem;
    }

    .process-tab-title {
        font-size: 1rem;
    }

    .process-panel {
        grid-template-columns: minmax(13.5rem, 0.78fr) 1.22fr;
        gap: 1.75rem;
        padding: 1.75rem 1.75rem 4.25rem;
    }

    .process-figure {
        width: min(100%, 17rem);
    }
}

@media (min-width: 1100px) {
    .cards { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 879px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(var(--header-h) + 3px);
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 0.75rem 1rem 1.1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open { display: flex; }

    .site-nav ul {
        flex-direction: column;
        gap: 0.15rem;
    }

    .site-nav li a {
        display: block;
        padding: 0.65rem 0.2rem;
    }

    .header-cta { width: 100%; }
}

@media (max-width: 399px) {
    .hero-actions .btn { width: 100%; }
}
