:root {
    --ink: #0a2233;
    --ink-2: #12384c;
    --paper: #f4f5f0;
    --white: #ffffff;
    --muted: #687985;
    --line: rgba(10, 34, 51, .14);
    --accent: #ff6b3d;
    --accent-dark: #dd4f24;
    --blue: #1688c9;
    --cyan: #52d7d0;
    --radius: 22px;
    --container: min(1180px, calc(100% - 40px));
    --shadow: 0 24px 80px rgba(4, 29, 45, .12);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

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

.skip-link {
    position: fixed;
    z-index: 999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.page-wipe {
    position: fixed;
    z-index: 1000;
    inset: 0;
    pointer-events: none;
    background: var(--ink);
    transform: scaleY(0);
    transform-origin: bottom;
}

body.is-leaving .page-wipe {
    animation: wipe-in .42s cubic-bezier(.7, 0, .25, 1) forwards;
}

@keyframes wipe-in {
    to { transform: scaleY(1); }
}

.utility-bar {
    color: rgba(255, 255, 255, .78);
    background: #061925;
    font-size: 12px;
}

.utility-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    gap: 28px;
}

.utility-location {
    white-space: nowrap;
    transition: color .2s ease;
}

.utility-location::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 9px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
}

.utility-location:hover,
.utility-phones a:hover {
    color: var(--white);
}

.utility-phones {
    display: flex;
    align-items: center;
    gap: 12px;
}

.utility-phones span {
    color: rgba(255, 255, 255, .48);
}

.utility-phones span:not(:first-child) {
    margin-left: 8px;
}

.brand-row {
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 106px;
    gap: 30px;
}

.brand {
    display: block;
    line-height: 0;
}

.brand img {
    display: block;
    width: 220px;
    aspect-ratio: 2.365 / 1;
    object-fit: cover;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    border-left: 1px solid var(--line);
}

.brand-copy strong {
    font-size: 18px;
    letter-spacing: -.02em;
}

.brand-copy span {
    max-width: 480px;
    color: var(--muted);
    font-size: 13px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 13px;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.action-strip {
    position: relative;
    z-index: 4;
    color: var(--white);
    background: var(--ink);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.action-link {
    display: flex;
    align-items: center;
    min-height: 78px;
    padding: 16px 24px;
    gap: 16px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    transition: background .25s ease, transform .25s ease;
}

.action-link:first-child {
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.action-link:hover {
    background: rgba(255, 255, 255, .08);
}

.action-primary {
    color: #132433;
    background: var(--cyan);
}

.action-primary:hover {
    background: #73e5df;
}

.action-icon {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-weight: 800;
}

.action-link > span:last-child {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .035em;
}

.action-link small {
    margin-bottom: 4px;
    opacity: .62;
    font-size: 10px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: .01em;
}

.main-nav {
    position: sticky;
    z-index: 20;
    top: 0;
    background: rgba(244, 245, 240, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 58px;
}

.nav-inner > a,
.nav-services > a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 25px;
    color: #526572;
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease;
}

.nav-inner > a::after,
.nav-services > a::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 0;
    left: 24px;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.nav-inner a:hover,
.nav-inner a.is-active {
    color: var(--ink);
}

.nav-inner > a:hover::after,
.nav-inner > a.is-active::after,
.nav-services > a:hover::after,
.nav-services > a.is-active::after {
    transform: scaleX(1);
}

.nav-services {
    position: relative;
    display: flex;
}

.nav-services > a span {
    margin-left: 8px;
}

.services-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% - 1px);
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    width: 620px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}

.services-menu a {
    padding: 10px 12px;
    color: #526572;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.25;
}

.services-menu a:hover {
    color: var(--ink);
    background: var(--paper);
}

.nav-services:hover .services-menu,
.nav-services:focus-within .services-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 72% 45%, rgba(40, 180, 198, .2), transparent 27%),
        linear-gradient(135deg, #071c2a 0%, #0b2a3d 62%, #102535 100%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, transparent, #000 55%, transparent);
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    min-height: 650px;
    padding-block: 84px 116px;
    gap: 48px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.eyebrow > span {
    width: 26px;
    height: 2px;
    background: currentColor;
}

.eyebrow.dark {
    color: var(--blue);
}

.eyebrow.light {
    color: var(--cyan);
}

.hero h1,
.inner-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(48px, 5.7vw, 82px);
    font-weight: 750;
    line-height: .98;
    letter-spacing: -.055em;
}

.hero h1 em,
.inner-hero h1 em,
.display-title em {
    color: var(--cyan);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero-lead {
    max-width: 650px;
    margin: 28px 0 34px;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    gap: 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-accent {
    color: var(--white);
    background: var(--accent);
    box-shadow: 0 12px 28px rgba(255, 107, 61, .22);
}

.button-accent:hover {
    background: var(--accent-dark);
    box-shadow: 0 16px 36px rgba(255, 107, 61, .3);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .04);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, .1);
}

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

.button-dark {
    color: var(--white);
    background: var(--ink);
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 54px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.hero-trust div {
    padding: 20px 18px 0 0;
}

.hero-trust strong,
.hero-trust span {
    display: block;
}

.hero-trust strong {
    margin-bottom: 4px;
    font-size: 18px;
}

.hero-trust span {
    color: rgba(255, 255, 255, .5);
    font-size: 11px;
    line-height: 1.35;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 500px;
}

.gauge {
    position: relative;
    display: grid;
    place-items: center;
    width: min(39vw, 470px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    background: rgba(255, 255, 255, .025);
    box-shadow: inset 0 0 80px rgba(58, 219, 215, .04), 0 0 80px rgba(0, 0, 0, .15);
}

.gauge::before,
.gauge::after,
.gauge-rings::before,
.gauge-rings::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
}

.gauge::before { inset: 8%; }
.gauge::after { inset: 20%; border-color: rgba(82, 215, 208, .24); }
.gauge-rings::before { inset: 2%; border: 5px dotted rgba(255, 255, 255, .1); }
.gauge-rings::after { inset: 30%; }

.gauge-ticks {
    position: absolute;
    inset: 11%;
    border-radius: 50%;
    background: repeating-conic-gradient(from -55deg, rgba(255,255,255,.38) 0 1deg, transparent 1deg 9deg);
    mask: radial-gradient(transparent 66%, #000 67%);
}

.gauge-needle {
    position: absolute;
    z-index: 3;
    bottom: 50%;
    left: calc(50% - 2px);
    width: 4px;
    height: 34%;
    border-radius: 4px;
    background: linear-gradient(to top, var(--accent), #ffab8f);
    box-shadow: 0 0 18px rgba(255, 107, 61, .55);
    transform: rotate(48deg);
    transform-origin: 50% 100%;
    animation: needle-settle 2.8s cubic-bezier(.55, 0, .25, 1) both;
}

.gauge-needle::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -8px;
    width: 20px;
    height: 20px;
    border: 4px solid var(--accent);
    border-radius: 50%;
    background: var(--ink);
}

@keyframes needle-settle {
    0% { transform: rotate(-46deg); }
    55% { transform: rotate(58deg); }
    75% { transform: rotate(42deg); }
    100% { transform: rotate(48deg); }
}

.gauge-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    text-align: center;
}

.gauge-center img {
    width: 84px;
    filter: drop-shadow(0 12px 22px rgba(0,0,0,.3));
}

.gauge-center strong {
    margin-top: -5px;
    color: var(--cyan);
    font-size: 13px;
    letter-spacing: .18em;
}

.gauge-center span {
    color: rgba(255, 255, 255, .5);
    font-size: 9px;
}

.floating-note {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 12px 17px;
    gap: 10px;
    color: var(--white);
    background: rgba(8, 32, 48, .76);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 700;
    animation: float 4s ease-in-out infinite;
}

.floating-note span {
    color: var(--cyan);
}

.note-one {
    top: 19%;
    right: -2%;
}

.note-two {
    bottom: 18%;
    left: -2%;
    animation-delay: -2s;
}

@keyframes float {
    50% { transform: translateY(-8px); }
}

.hero-marquee {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    padding: 15px 0;
    color: rgba(255, 255, 255, .35);
    background: rgba(0, 0, 0, .16);
    border-top: 1px solid rgba(255, 255, 255, .08);
    white-space: nowrap;
}

.hero-marquee div {
    width: max-content;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    animation: marquee 30s linear infinite;
}

.hero-marquee span {
    margin: 0 26px;
    color: var(--cyan);
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.section {
    padding-block: 110px;
}

.split-heading,
.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    align-items: end;
    gap: 70px;
}

.display-title {
    margin: 0;
    font-size: clamp(44px, 5.6vw, 76px);
    font-weight: 750;
    line-height: .98;
    letter-spacing: -.055em;
}

.display-title.light {
    color: var(--white);
}

.intro-copy {
    padding-bottom: 4px;
}

.intro-copy p,
.section-head > p,
.documents-intro > p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 17px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    gap: 20px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 76px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.advantage-card {
    min-height: 300px;
    padding: 30px;
    background: rgba(255,255,255,.35);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .25s ease, transform .25s ease;
}

.advantage-card:hover {
    position: relative;
    z-index: 2;
    background: var(--white);
    transform: translateY(-6px);
}

.card-number {
    display: block;
    margin-bottom: 80px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.advantage-card h3 {
    margin: 0 0 13px;
    font-size: 20px;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.advantage-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.services-preview {
    color: var(--white);
    background: var(--ink);
}

.services-preview .section-head > p {
    color: rgba(255, 255, 255, .58);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 66px;
    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}

.service-card {
    position: relative;
    min-height: 290px;
    padding: 27px;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    transition: background .25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0;
    transform: scale(.2);
    transition: opacity .35s ease, transform .35s ease;
}

.service-card:hover {
    background: rgba(255,255,255,.055);
}

.service-card:hover::before {
    opacity: .08;
    transform: scale(1);
}

.service-tag {
    display: inline-flex;
    padding: 5px 10px;
    color: var(--cyan);
    background: rgba(82, 215, 208, .08);
    border: 1px solid rgba(82, 215, 208, .24);
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.service-card h3 {
    max-width: 240px;
    margin: 72px 0 12px;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.service-card p {
    margin: 0;
    color: rgba(255,255,255,.5);
    font-size: 12px;
}

.service-arrow {
    position: absolute;
    top: 27px;
    right: 27px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.service-card:hover .service-arrow {
    color: var(--ink);
    background: var(--cyan);
    border-color: var(--cyan);
    transform: rotate(45deg);
}

.section-action {
    margin-top: 42px;
    text-align: center;
}

.process-section {
    background:
        linear-gradient(90deg, transparent 49.9%, rgba(10,34,51,.04) 50%, transparent 50.1%);
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 74px;
}

.process-line::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: var(--line);
}

.process-step {
    position: relative;
    padding: 0 36px 0 0;
}

.process-step > span {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 34px;
    color: var(--white);
    background: var(--blue);
    border: 8px solid var(--paper);
    border-radius: 50%;
    box-sizing: content-box;
    font-size: 10px;
    font-weight: 800;
}

.process-step h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.process-step p {
    max-width: 230px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.request-section,
.contact-request {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: #0b2e40;
}

.request-section::before,
.contact-request::before {
    content: "";
    position: absolute;
    top: -260px;
    left: -200px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(82,215,208,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(82,215,208,.025), 0 0 0 160px rgba(82,215,208,.015);
}

.request-layout {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: start;
    gap: 74px;
}

.request-copy > p {
    max-width: 440px;
    margin: 28px 0;
    color: rgba(255,255,255,.62);
}

.direct-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 50px;
}

.direct-contact span {
    margin-bottom: 5px;
    color: rgba(255,255,255,.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.direct-contact a {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.form-shell {
    padding: 38px;
    color: var(--ink);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 35px 90px rgba(0,0,0,.2);
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.order-form label:not(.consent):not(.honeypot) {
    display: block;
    margin-bottom: 18px;
}

.order-form label > span:first-child {
    display: block;
    margin-bottom: 7px;
    color: #526572;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.order-form label small {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.order-form input:not([type="checkbox"]),
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 14px 15px;
    color: var(--ink);
    background: #f5f7f7;
    border: 1px solid transparent;
    border-radius: 10px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    background: var(--white);
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(22,136,201,.1);
}

.order-form textarea {
    resize: vertical;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    gap: 24px;
}

.consent {
    display: flex;
    align-items: flex-start;
    max-width: 245px;
    gap: 9px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.3;
}

.consent input {
    flex: 0 0 auto;
    margin-top: 1px;
    accent-color: var(--blue);
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.form-message {
    margin-bottom: 20px;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 13px;
}

.form-message.success {
    color: #155f4d;
    background: #e4f8f1;
}

.form-message.error {
    color: #8d321b;
    background: #ffebe4;
}

.partners {
    padding: 34px 0;
    background: #071c2a;
    border-top: 1px solid rgba(255,255,255,.08);
}

.partners-row {
    display: grid;
    grid-template-columns: .7fr 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.partners-row > span {
    color: rgba(255,255,255,.36);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.partners-row a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
}

.partners-row small {
    color: rgba(255,255,255,.42);
    font-size: 10px;
    font-weight: 500;
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 86% 120%, rgba(82,215,208,.18), transparent 34%),
        var(--ink);
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(to left, #000, transparent 75%);
}

.inner-hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    align-items: end;
    gap: 80px;
}

.inner-hero p {
    margin: 0 0 10px;
    color: rgba(255,255,255,.62);
    font-size: 18px;
}

.service-detail-section {
    padding-top: 40px;
}

.service-detail {
    display: grid;
    grid-template-columns: 95px minmax(0, 1fr) 130px;
    align-items: start;
    padding: 58px 0;
    scroll-margin-top: 150px;
    border-bottom: 1px solid var(--line);
    gap: 28px;
}

.service-detail-number {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.service-detail-content h2 {
    max-width: 690px;
    margin: 20px 0 16px;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.service-detail-content p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
}

.service-detail-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    color: var(--blue);
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 800;
}

.service-detail-action span {
    transition: transform .2s ease;
}

.service-detail-action:hover span {
    transform: rotate(45deg);
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.inline-links a {
    padding: 9px 13px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.compact-cta {
    padding-top: 0;
}

.compact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 44px;
    gap: 40px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius);
}

.compact-cta-inner > div > span {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.compact-cta h2 {
    max-width: 650px;
    margin: 8px 0 0;
    font-size: 28px;
    line-height: 1.1;
}

.inner-hero-docs .inner-hero-layout {
    align-items: center;
}

.accreditation-stamp {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 250px;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    justify-self: end;
    text-align: center;
    border: 1px solid rgba(82,215,208,.5);
    border-radius: 50%;
}

.accreditation-stamp::before,
.accreditation-stamp::after {
    content: "";
    position: absolute;
    border: 1px dashed rgba(82,215,208,.22);
    border-radius: 50%;
}

.accreditation-stamp::before { inset: 12px; }
.accreditation-stamp::after { inset: -22px; }

.accreditation-stamp span,
.accreditation-stamp small {
    color: rgba(255,255,255,.5);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.accreditation-stamp strong {
    margin: 8px 0;
    color: var(--cyan);
    font-size: 38px;
    line-height: .95;
}

.accreditation-stamp small {
    max-width: 140px;
    text-transform: none;
    letter-spacing: 0;
}

.documents-intro {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
    gap: 70px;
}

.document-list {
    margin-top: 70px;
}

.document-row {
    display: grid;
    grid-template-columns: 55px 58px minmax(0, 1fr) 120px;
    align-items: center;
    min-height: 92px;
    padding: 14px 20px;
    border-top: 1px solid var(--line);
    gap: 18px;
    transition: background .2s ease, padding .2s ease;
}

.document-row:last-child {
    border-bottom: 1px solid var(--line);
}

.document-row:hover {
    padding-inline: 30px;
    background: var(--white);
}

.document-number {
    color: var(--muted);
    font-size: 11px;
}

.document-icon {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    color: var(--blue);
    background: rgba(22,136,201,.08);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 800;
}

.document-row strong {
    font-size: 17px;
}

.document-download {
    justify-self: end;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.document-download b {
    margin-left: 14px;
    color: var(--blue);
    font-size: 17px;
}

.verification-panel {
    padding: 65px 0;
    color: var(--white);
    background: var(--ink);
}

.verification-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr auto;
    align-items: center;
    gap: 55px;
}

.verification-layout .eyebrow {
    margin-bottom: 12px;
}

.verification-layout h2 {
    max-width: 530px;
    margin: 0;
    font-size: 32px;
    line-height: 1.08;
}

.verification-layout p {
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.customer-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: start;
    gap: 80px;
}

.customer-aside {
    position: sticky;
    top: 90px;
    padding: 34px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius);
}

.customer-aside > span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.customer-aside > strong {
    display: block;
    margin: 50px 0 35px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.15;
}

.customer-aside > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    color: var(--cyan);
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: 12px;
    font-weight: 800;
}

.customer-copy h2 {
    margin: 0 0 20px;
    font-size: 35px;
    letter-spacing: -.04em;
}

.customer-copy h2:not(:first-child) {
    margin-top: 55px;
}

.customer-copy p {
    color: var(--muted);
    font-size: 17px;
}

.customer-copy p a,
.customer-documents .section-head a {
    color: var(--blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.phone-callout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.phone-callout > div {
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.phone-callout > div + div {
    border-left: 1px solid var(--line);
}

.phone-callout span,
.quality-contact > span {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.phone-callout a {
    font-size: 16px;
    font-weight: 700;
}

.quality-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    padding: 20px 0;
    gap: 10px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quality-contact > span {
    flex-basis: 100%;
    margin-bottom: 0;
}

.quality-contact a {
    color: var(--blue);
    font-weight: 700;
}

.customer-documents {
    padding-top: 20px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    gap: 14px;
}

.download-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 26px;
    background: var(--white);
    border: 1px solid transparent;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(10,34,51,.035);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.download-card:hover {
    border-color: rgba(22,136,201,.3);
    box-shadow: 0 20px 50px rgba(10,34,51,.08);
    transform: translateY(-5px);
}

.download-card > span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.download-card h3 {
    max-width: 240px;
    margin: auto 0 18px;
    font-size: 20px;
    line-height: 1.15;
}

.download-card b {
    color: var(--muted);
    font-size: 11px;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.payment-card {
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 36px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(10,34,51,.05);
}

.payment-card-bank {
    grid-column: 1 / -1;
    min-height: auto;
}

.payment-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.payment-card-head span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.payment-card h2 {
    margin: 0;
    font-size: 34px;
    letter-spacing: -.04em;
}

.payment-card > p {
    max-width: 520px;
    color: var(--muted);
}

.qr-shell {
    display: grid;
    place-items: center;
    width: min(100%, 300px);
    margin: auto;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.qr-shell img {
    display: block;
    width: 100%;
}

.payment-card-online {
    color: var(--white);
    background: var(--ink);
}

.payment-card-online .payment-card-head {
    border-color: rgba(255,255,255,.14);
}

.payment-card-online > p {
    color: rgba(255,255,255,.58);
}

.payment-consent {
    display: flex;
    align-items: flex-start;
    margin: auto 0 22px;
    gap: 10px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
}

.payment-consent input {
    margin-top: 3px;
    accent-color: var(--cyan);
}

.payment-consent a {
    color: var(--cyan);
    text-decoration: underline;
}

.payment-card-online .button {
    width: 100%;
}

.button.is-disabled {
    opacity: .45;
    pointer-events: none;
    box-shadow: none;
}

.payment-card-online > small {
    margin-top: 12px;
    color: rgba(255,255,255,.36);
    text-align: center;
}

.document-mini-link {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    min-height: 78px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    gap: 15px;
}

.document-mini-link:last-child {
    border-bottom: 1px solid var(--line);
}

.document-mini-link span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--blue);
    background: rgba(22,136,201,.08);
    border-radius: 9px;
    font-size: 9px;
    font-weight: 800;
}

.document-mini-link b {
    color: var(--blue);
}

.payment-note {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    margin-top: 18px;
    padding: 26px 34px;
    gap: 30px;
    background: #fff5ec;
    border: 1px solid #ffdbc8;
    border-radius: 14px;
}

.payment-note strong {
    color: var(--accent-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.payment-note p {
    margin: 0;
    color: #785a4c;
    font-size: 13px;
}

.payment-note a {
    font-weight: 800;
    white-space: nowrap;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.office-card {
    display: flex;
    flex-direction: column;
    min-height: 620px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 14px 45px rgba(10,34,51,.05);
}

.office-card-accent {
    color: var(--white);
    background: var(--ink-2);
}

.office-city {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.office-city > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--blue);
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
}

.office-card-accent .office-city > span {
    color: var(--cyan);
}

.office-city small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.office-card-accent .office-city small {
    color: rgba(255,255,255,.45);
}

.office-city h2 {
    margin: 3px 0 0;
    font-size: 43px;
    letter-spacing: -.05em;
}

.office-card address {
    margin: 55px 0 40px;
    font-style: normal;
    font-size: 18px;
    font-weight: 700;
}

.office-card address span {
    color: var(--blue);
}

.office-card-accent address span {
    color: var(--cyan);
}

.office-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 7px;
}

.office-contacts a {
    font-size: 19px;
    font-weight: 700;
}

.office-contacts small {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
}

.office-card-accent .office-contacts small {
    color: rgba(255,255,255,.42);
}

.office-card .button {
    width: 100%;
    margin-top: auto;
}

.office-card-accent .button {
    color: var(--ink);
    background: var(--cyan);
}

.contact-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 20px;
    background: var(--white);
    border-radius: 14px;
}

.contact-facts > div {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-right: 1px solid var(--line);
}

.contact-facts > div:last-child {
    border-right: 0;
}

.contact-facts span {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-facts strong,
.contact-facts a {
    font-size: 14px;
    font-weight: 800;
}

.site-footer {
    padding: 75px 0 25px;
    color: rgba(255,255,255,.62);
    background: #061925;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .65fr 1fr 1fr;
    gap: 55px;
}

.footer-brand img {
    width: 210px;
    border-radius: 4px;
}

.footer-brand p {
    margin: 24px 0 6px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
}

.footer-brand span {
    font-size: 11px;
}

.footer-grid h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-grid a {
    font-size: 12px;
    transition: color .2s ease;
}

.footer-grid a:hover,
.footer-bottom a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 20px;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 10px;
}

.mobile-actions {
    display: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.3,1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1050px) {
    :root {
        --container: min(100% - 32px, 940px);
    }

    .utility-location {
        display: none;
    }

    .utility-grid {
        justify-content: center;
    }

    .action-link {
        padding-inline: 15px;
    }

    .action-icon {
        display: none;
    }

    .nav-inner > a,
    .nav-services > a {
        padding-inline: 17px;
    }

    .hero-layout {
        grid-template-columns: 1.05fr .95fr;
    }

    .gauge {
        width: min(42vw, 410px);
    }

    .advantage-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 780px) {
    :root {
        --container: calc(100% - 28px);
        --radius: 18px;
    }

    html {
        scroll-padding-top: 84px;
    }

    body {
        padding-bottom: 66px;
    }

    .utility-bar {
        display: none;
    }

    .brand-row {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 82px;
    }

    .brand img {
        width: 180px;
    }

    .brand-copy {
        display: none;
    }

    .js .menu-toggle {
        display: block;
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-link {
        min-height: 62px;
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .action-link > span:last-child {
        font-size: 12px;
    }

    .action-link small {
        font-size: 9px;
    }

    .js .main-nav {
        position: fixed;
        z-index: 50;
        top: 82px;
        right: 0;
        left: 0;
        max-height: calc(100dvh - 82px);
        overflow-y: auto;
        background: var(--paper);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .js .menu-open .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 18px 14px 30px;
    }

    .nav-inner > a,
    .nav-services > a {
        min-height: 52px;
        padding: 0 10px;
        border-bottom: 1px solid var(--line);
        font-size: 17px;
    }

    .nav-services {
        display: block;
    }

    .services-menu {
        position: static;
        display: none;
        grid-template-columns: 1fr;
        width: auto;
        padding: 8px 0 12px;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-services.is-open .services-menu {
        display: grid;
    }

    .services-menu a {
        padding: 8px 10px 8px 22px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 72px 130px;
    }

    .hero h1,
    .inner-hero h1 {
        font-size: clamp(42px, 13vw, 62px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .hero-trust div {
        display: grid;
        grid-template-columns: 120px 1fr;
        align-items: center;
        padding-block: 14px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .hero-visual {
        min-height: 390px;
    }

    .gauge {
        width: min(86vw, 390px);
    }

    .note-one {
        right: 0;
    }

    .note-two {
        left: 0;
    }

    .section {
        padding-block: 78px;
    }

    .split-heading,
    .section-head,
    .documents-intro,
    .inner-hero-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .display-title {
        font-size: clamp(42px, 12vw, 62px);
    }

    .advantage-grid,
    .service-grid,
    .process-line,
    .request-layout,
    .customer-layout,
    .payment-grid,
    .office-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card {
        min-height: 230px;
    }

    .card-number {
        margin-bottom: 45px;
    }

    .service-card {
        min-height: 250px;
    }

    .service-card h3 {
        margin-top: 55px;
    }

    .process-line {
        gap: 30px;
    }

    .process-line::before {
        top: 0;
        bottom: 0;
        left: 25px;
        width: 1px;
        height: auto;
    }

    .process-step {
        padding-left: 74px;
    }

    .process-step > span {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
    }

    .request-layout {
        gap: 45px;
    }

    .form-shell {
        padding: 24px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .form-footer .button {
        width: 100%;
    }

    .partners-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .inner-hero {
        padding: 72px 0;
    }

    .inner-hero-layout {
        align-items: start;
    }

    .inner-hero p {
        font-size: 16px;
    }

    .service-detail {
        grid-template-columns: 42px 1fr;
        padding: 42px 0;
        gap: 16px;
    }

    .service-detail-action {
        grid-column: 2;
        max-width: 120px;
        margin-top: 10px;
    }

    .compact-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px;
    }

    .accreditation-stamp {
        justify-self: start;
        width: 210px;
        margin: 15px 0 10px 22px;
    }

    .document-row {
        grid-template-columns: 44px 1fr auto;
        min-height: 100px;
        padding-inline: 8px;
    }

    .document-number {
        display: none;
    }

    .document-download {
        font-size: 0;
    }

    .verification-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .customer-aside {
        position: static;
    }

    .phone-callout {
        grid-template-columns: 1fr;
    }

    .phone-callout > div + div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        min-height: 190px;
    }

    .payment-card-bank {
        grid-column: auto;
    }

    .payment-card {
        min-height: 480px;
        padding: 25px;
    }

    .payment-note {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .office-card {
        min-height: 570px;
        padding: 27px;
    }

    .office-city h2 {
        font-size: 36px;
    }

    .contact-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-facts > div {
        border-bottom: 1px solid var(--line);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-actions {
        position: fixed;
        z-index: 40;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        min-height: 64px;
        color: var(--white);
        background: var(--ink);
        box-shadow: 0 -10px 35px rgba(0,0,0,.14);
    }

    .mobile-actions a {
        display: grid;
        place-items: center;
        font-size: 13px;
        font-weight: 800;
    }

    .mobile-actions a:last-child {
        color: var(--ink);
        background: var(--cyan);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
