@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-mono-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #06131f;
  --ink-deep: #030b11;
  --ink-soft: #102534;
  --cyan: #08aeea;
  --cyan-bright: #25c7f7;
  --cyan-dark: #006f98;
  --paper: #f4f8fa;
  --paper-blue: #e8f6fb;
  --white: #ffffff;
  --line: #d6e1e6;
  --muted: #5d707d;
  --danger: #ff8d8d;
  --success: #62e6b3;
  --shadow: 0 28px 80px rgba(6, 19, 31, 0.14);
  --shell: 1440px;
  --header-height: 82px;
}

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

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", Arial, Helvetica, sans-serif;
  margin: 0;
  min-width: 300px;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.shell {
  margin-inline: auto;
  max-width: var(--shell);
  width: calc(100% - clamp(36px, 10vw, 152px));
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--cyan-bright);
  border-radius: 0 0 8px 8px;
  color: var(--ink);
  font-weight: 800;
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  top: 0;
  transform: translateY(-120%);
  transition: transform 160ms ease;
  z-index: 100;
}

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

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 480ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal][data-reveal-delay="1"] {
  transition-delay: 80ms;
}

.js [data-reveal][data-reveal-delay="2"] {
  transition-delay: 160ms;
}

.js [data-reveal][data-reveal-delay="3"] {
  transition-delay: 240ms;
}

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

/* Header */
.site-header {
  background: rgba(6, 19, 31, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  min-height: var(--header-height);
  position: sticky;
  top: 0;
  transition:
    background 200ms ease,
    box-shadow 200ms ease,
    min-height 200ms ease;
  z-index: 50;
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    backdrop-filter: blur(14px);
    background: rgba(6, 19, 31, 0.86);
  }
}

.site-header.is-scrolled {
  background: rgba(3, 11, 17, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.header-shell {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto 1fr;
  margin-inline: auto;
  min-height: inherit;
  padding: 8px 0;
  width: calc(100% - clamp(36px, 10vw, 152px));
  max-width: var(--shell);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-self: start;
  width: fit-content;
}

.brand-mark {
  align-items: center;
  display: flex;
  height: 50px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 78px;
}

.brand-mark img {
  filter: drop-shadow(0 0 10px rgba(37, 199, 247, 0.22));
  height: 138%;
  left: -22%;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: -14%;
  width: auto;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-size: 17px;
  font-weight: 880;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.brand-name small {
  color: var(--cyan-bright);
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  margin-top: 7px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  justify-content: center;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding-block: 12px;
  position: relative;
  transition: color 160ms ease;
}

.site-nav a::after {
  background: var(--cyan-bright);
  bottom: 5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav-cta {
  display: none;
}

.header-cta,
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 780;
  gap: 22px;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-cta {
  background: var(--cyan);
  color: var(--ink);
  justify-self: end;
  min-height: 43px;
  padding-inline: 17px;
}

.header-cta span:last-child,
.button span:last-child,
.text-link span,
.service-card a span,
.mobile-banner a span {
  transition: transform 180ms ease;
}

.header-cta:hover,
.button-primary:hover {
  background: var(--cyan-bright);
  transform: translateY(-2px);
}

.header-cta:hover span:last-child,
.button:hover span:last-child,
.text-link:hover span,
.service-card a:hover span,
.mobile-banner a:hover span {
  transform: translateX(4px);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle > span:not(.sr-only) {
  background: var(--white);
  border-radius: 2px;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 19px;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(8, 174, 234, 0.09), transparent 29%),
    var(--ink);
  color: var(--white);
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  position: relative;
}

.hero::before {
  background: var(--cyan);
  content: "";
  height: 2px;
  left: max(calc((100vw - var(--shell)) / 2), clamp(18px, 5vw, 76px));
  position: absolute;
  top: 0;
  width: clamp(110px, 12vw, 210px);
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: clamp(52px, 7vw, 110px);
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(62px, 8vw, 112px) 52px;
}

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

.eyebrow {
  align-items: center;
  color: var(--cyan-dark);
  display: flex;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 780;
  gap: 12px;
  letter-spacing: 0.15em;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 2px;
  width: 33px;
}

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

.hero h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(58px, 7.15vw, 108px);
  font-weight: 880;
  letter-spacing: -0.075em;
  line-height: 0.87;
  margin: 0;
  max-width: 730px;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--white);
  white-space: nowrap;
}

.hero h1 strong {
  color: var(--cyan-bright);
  font: inherit;
}

.hero-intro {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.68;
  margin: 38px 0 30px;
  max-width: 580px;
}

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

.button-primary {
  background: var(--cyan);
  color: var(--ink);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 23px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(52px, 7vh, 84px);
  padding-top: 20px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero-trust strong {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.45;
}

.hero-art {
  justify-self: end;
  max-width: 820px;
  min-width: 0;
  width: 100%;
}

.hero-art-label,
.hero-art-footer {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-art-label {
  margin-bottom: 12px;
}

.hero-art-footer {
  margin-top: 16px;
}

.hero-stage {
  aspect-ratio: 1.18;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 68% 48%, rgba(8, 174, 234, 0.22), transparent 42%),
    linear-gradient(145deg, #102c40 0%, #071722 58%, #040d14 100%);
  background-size: 34px 34px, 34px 34px, auto, auto;
  border: 1px solid rgba(37, 199, 247, 0.26);
  border-radius: 24px;
  box-shadow:
    18px 18px 0 rgba(8, 174, 234, 0.13),
    0 34px 90px rgba(0, 0, 0, 0.34);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(25px, 3vw, 42px);
  position: relative;
}

.hero-stage::before {
  background: var(--cyan-bright);
  box-shadow: 0 0 20px rgba(37, 199, 247, 0.65);
  content: "";
  height: 2px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 0;
}

.hero-stage::after {
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.09) 48%, transparent 58%);
  content: "";
  inset: 0;
  pointer-events: none;
  transform: translateX(-120%);
  animation: stage-sweep 8s ease-in-out 1.2s infinite;
  z-index: 3;
}

.hero-stage-glow {
  background: radial-gradient(circle, rgba(37, 199, 247, 0.18), transparent 66%);
  height: 65%;
  position: absolute;
  right: -12%;
  top: 18%;
  width: 70%;
  z-index: 0;
}

.hero-wordmark {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.hero-wordmark strong {
  color: var(--white);
  font-size: clamp(36px, 4.6vw, 74px);
  font-weight: 900;
  letter-spacing: 0.115em;
  line-height: 0.92;
  text-indent: 0.115em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
}

.hero-wordmark span {
  color: var(--cyan-bright);
  font-family: "Geist Mono", monospace;
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 800;
  letter-spacing: 0.4em;
  margin-top: 12px;
  text-indent: 0.4em;
  text-transform: uppercase;
}

.hero-car {
  align-self: center;
  flex: 1;
  height: auto;
  margin: -2% -10% -4%;
  min-height: 0;
  object-fit: contain;
  position: relative;
  width: 120%;
  z-index: 2;
}

.hero-stage-note {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  display: flex;
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding-top: 14px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

@keyframes stage-sweep {
  0%, 26% { transform: translateX(-120%); }
  45%, 100% { transform: translateX(120%); }
}

.promise-bar {
  align-items: center;
  background: var(--cyan);
  color: var(--ink);
  display: flex;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  gap: clamp(18px, 3vw, 42px);
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 64px;
  padding: 14px 22px;
  text-align: center;
  text-transform: uppercase;
}

.promise-bar i {
  background: var(--ink);
  border-radius: 50%;
  height: 5px;
  opacity: 0.6;
  width: 5px;
}

/* Shared content sections */
.section {
  padding-block: clamp(86px, 9vw, 142px);
}

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

.section-heading {
  align-items: end;
  display: grid;
  gap: 55px;
  grid-template-columns: 1fr minmax(280px, 390px);
  margin-bottom: clamp(52px, 6vw, 88px);
}

.section h2,
.consultation h2 {
  display: flex;
  flex-direction: column;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 860;
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin: 0;
  text-transform: uppercase;
}

.section h2 span {
  color: var(--cyan-dark);
}

.section-dark h2 span,
.consultation h2 span {
  color: var(--cyan-bright);
}

.section-heading > p,
.coverage-copy > p,
.standard-panel > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(6, 19, 31, 0.045);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card::before {
  background: var(--cyan);
  content: "";
  height: 3px;
  left: 30px;
  position: absolute;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
  width: 68px;
}

.service-number {
  align-items: center;
  background: var(--paper-blue);
  border-radius: 9px;
  color: var(--cyan-dark);
  display: flex;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  height: 36px;
  justify-content: center;
  width: 42px;
}

.service-card h3 {
  font-size: clamp(24px, 2vw, 31px);
  letter-spacing: -0.04em;
  margin: 42px 0 15px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 35px;
}

.service-card a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 780;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin-top: auto;
  min-height: 46px;
  padding-top: 12px;
  text-transform: uppercase;
}

.service-card a span {
  color: var(--cyan-dark);
  font-size: 15px;
}

@media (hover: hover) {
  .service-card:hover,
  .service-card:focus-within {
    border-color: rgba(8, 174, 234, 0.65);
    box-shadow: 0 20px 46px rgba(6, 19, 31, 0.1);
    transform: translateY(-4px);
  }

  .service-card:hover::before,
  .service-card:focus-within::before {
    transform: scaleX(1);
  }
}

.split-layout {
  display: grid;
  gap: clamp(65px, 9vw, 145px);
  grid-template-columns: minmax(290px, 0.82fr) 1fr;
}

.process-intro > p:last-child {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
  margin: 30px 0 0;
  max-width: 500px;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 26px;
  grid-template-columns: 50px 1fr;
  padding: 29px 0;
  position: relative;
}

.process-list li::after {
  background: var(--cyan-bright);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
  width: 100%;
}

.process-list li.is-visible::after {
  transform: scaleX(1);
}

.process-list li > span,
.standard-points > article > span {
  color: var(--cyan-bright);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  padding-top: 5px;
}

.process-list h3 {
  font-size: 21px;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.process-list p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.standard {
  background: var(--white);
}

.standard-panel {
  align-items: end;
  background: var(--paper-blue);
  border: 1px solid rgba(0, 111, 152, 0.08);
  border-radius: 22px;
  display: grid;
  gap: 65px;
  grid-template-columns: 1fr minmax(270px, 390px);
  padding: clamp(38px, 5vw, 74px);
  position: relative;
}

.standard-panel::after {
  border-right: 2px solid var(--cyan);
  border-top: 2px solid var(--cyan);
  content: "";
  height: 32px;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 32px;
}

.standard-points {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.standard-points article {
  border-right: 1px solid var(--line);
  padding: 34px 34px 0 0;
}

.standard-points article + article {
  padding-left: 34px;
}

.standard-points article:last-child {
  border-right: 0;
}

.standard-points h3 {
  font-size: 19px;
  letter-spacing: -0.03em;
  margin: 27px 0 10px;
}

.standard-points p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.coverage-layout {
  grid-template-columns: 0.85fr 1fr;
}

.coverage-copy {
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.coverage-copy > p {
  margin-top: 30px;
  max-width: 540px;
}

.text-link {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: flex;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 780;
  gap: 28px;
  letter-spacing: 0.07em;
  margin-top: 32px;
  min-height: 44px;
  padding-bottom: 5px;
  text-transform: uppercase;
  width: fit-content;
}

.area-list {
  border-top: 1px solid var(--line);
}

.area-list div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 48px 1fr;
  min-height: 79px;
  transition: color 180ms ease, padding 180ms ease;
}

.area-list div:hover {
  color: var(--cyan-dark);
  padding-left: 10px;
}

.area-list span {
  color: var(--cyan-dark);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
}

.area-list strong {
  font-size: clamp(18px, 1.9vw, 25px);
  letter-spacing: -0.03em;
}

/* Consultation and form */
.consultation {
  background:
    radial-gradient(circle at 16% 17%, rgba(8, 174, 234, 0.09), transparent 28%),
    var(--ink);
  color: var(--white);
  padding-block: clamp(82px, 9vw, 135px);
}

.consultation-layout {
  display: grid;
  gap: clamp(58px, 7vw, 110px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1fr);
}

.consultation-details {
  align-self: start;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.consultation-lead {
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.72;
  margin: 28px 0 0;
  max-width: 550px;
}

.contact-card {
  background: rgba(16, 37, 52, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  margin-top: 43px;
  padding: 24px;
}

.contact-card > span {
  color: var(--cyan-bright);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.contact-card a {
  font-size: 15px;
  margin-top: 8px;
  overflow-wrap: anywhere;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.contact-card a:hover {
  color: var(--cyan-bright);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.request-assurance {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: 38px;
  padding-top: 24px;
}

.request-assurance div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.request-assurance strong {
  font-size: 13px;
}

.request-assurance span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.55;
}

.form-column {
  min-width: 0;
}

.site-notice {
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.55;
  margin-bottom: 18px;
  padding: 18px 20px;
}

.site-notice-success {
  background: rgba(98, 230, 179, 0.1);
  border: 1px solid rgba(98, 230, 179, 0.42);
}

.site-notice-success strong {
  color: var(--success);
}

.site-notice-error {
  background: rgba(255, 141, 141, 0.1);
  border: 1px solid rgba(255, 141, 141, 0.42);
}

.site-notice-error strong {
  color: var(--danger);
}

.consultation-form {
  background: linear-gradient(145deg, rgba(16, 42, 59, 0.98), rgba(7, 22, 33, 0.98));
  border: 1px solid rgba(37, 199, 247, 0.23);
  border-radius: 24px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding: clamp(27px, 3.4vw, 46px);
  position: relative;
}

.consultation-form[aria-busy="true"]::after {
  background: rgba(6, 19, 31, 0.5);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 5;
}

.honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.form-card-heading {
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
}

.form-card-heading > div > span,
.form-card-heading > small {
  color: var(--cyan-bright);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-card-heading h3 {
  font-size: clamp(26px, 2.3vw, 34px);
  letter-spacing: -0.045em;
  margin: 8px 0 0;
}

.form-card-heading > small {
  background: rgba(37, 199, 247, 0.09);
  border: 1px solid rgba(37, 199, 247, 0.16);
  border-radius: 8px;
  padding: 9px 11px;
  white-space: nowrap;
}

.request-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0 0 34px;
  padding: 20px 0 0;
}

.request-progress li {
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  transition: border-color 180ms ease;
}

.request-progress li.is-current,
.request-progress li.is-complete {
  border-color: var(--cyan-bright);
}

.request-progress button {
  align-items: center;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  gap: 9px;
  min-height: 48px;
  padding: 9px 6px 0 0;
  text-align: left;
  width: 100%;
}

.request-progress button:not(:disabled) {
  cursor: pointer;
}

.request-progress li.is-current button,
.request-progress li.is-complete button {
  color: var(--white);
}

.request-progress button > span {
  color: var(--cyan-bright);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
}

.request-progress button strong {
  font-size: 12px;
}

.form-error-summary {
  background: rgba(255, 141, 141, 0.09);
  border: 1px solid rgba(255, 141, 141, 0.36);
  border-radius: 12px;
  margin-bottom: 24px;
  padding: 16px 18px;
}

.form-error-summary strong {
  color: var(--danger);
  font-size: 13px;
}

.form-error-summary ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.form-error-summary a {
  font-size: 12px;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  color: var(--danger);
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 12px;
  min-height: 0;
}

.form-status:empty {
  display: none;
}

.form-step {
  border: 0;
  margin: 0;
  padding: 0;
}

.js .form-step.is-entering {
  animation: step-in 230ms ease-out;
}

@keyframes step-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-heading {
  margin-bottom: 25px;
}

.step-heading > span {
  color: var(--cyan-bright);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-heading h4 {
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.045em;
  margin: 7px 0 8px;
  outline: 0;
}

.step-heading p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.service-choice-grid {
  display: grid;
  gap: 11px;
  grid-template-columns: 1fr 1fr;
}

.service-choice {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  cursor: pointer;
  display: grid;
  gap: 7px 11px;
  grid-template-columns: 19px 1fr;
  min-height: 110px;
  padding: 17px;
  position: relative;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.service-choice:hover,
.service-choice:focus-within {
  border-color: rgba(37, 199, 247, 0.55);
  transform: translateY(-1px);
}

.service-choice:has(input:checked) {
  background: rgba(8, 174, 234, 0.12);
  border-color: var(--cyan-bright);
}

.service-choice input,
.contact-choice input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.choice-indicator {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  height: 17px;
  margin-top: 1px;
  width: 17px;
}

.service-choice input:checked + .choice-indicator {
  border: 5px solid var(--cyan-bright);
}

.service-choice strong {
  font-size: 13px;
  line-height: 1.25;
}

.service-choice small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  grid-column: 2;
  line-height: 1.5;
}

.step-fields {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 22px;
  padding-top: 22px;
}

.form-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}

.form-grid > label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid > label > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 750;
}

.form-grid > label > span em {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  margin-left: 5px;
  text-transform: uppercase;
}

.field-help {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.45;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  background: #f6fafc;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--ink);
  outline: 0;
  padding: 0 14px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.form-grid input,
.form-grid select {
  min-height: 52px;
}

.form-grid textarea {
  line-height: 1.55;
  min-height: 98px;
  padding-block: 13px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #788a95;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--cyan-bright);
  box-shadow: 0 0 0 3px rgba(37, 199, 247, 0.18);
}

.form-grid [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px rgba(255, 141, 141, 0.14);
}

.full-width {
  grid-column: 1 / -1;
}

.field-error {
  color: var(--danger);
  font-size: 11px;
  line-height: 1.45;
  margin: 7px 0 0;
}

.flexible-choice {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  gap: 13px;
  grid-template-columns: 20px 1fr;
  margin-top: 18px;
  min-height: 74px;
  padding: 15px 17px;
  position: relative;
}

.flexible-choice input {
  height: 20px;
  opacity: 0;
  position: absolute;
  width: 20px;
}

.flexible-choice > span:first-of-type {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  color: transparent;
  display: flex;
  font-size: 12px;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.flexible-choice:has(input:checked) {
  border-color: rgba(37, 199, 247, 0.62);
}

.flexible-choice input:checked + span {
  background: var(--cyan-bright);
  border-color: var(--cyan-bright);
  color: var(--ink);
}

.flexible-choice:focus-within {
  box-shadow: 0 0 0 3px rgba(37, 199, 247, 0.18);
}

.flexible-choice > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flexible-choice strong {
  font-size: 12px;
}

.flexible-choice small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.45;
}

.contact-choice-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(3, 1fr);
}

.contact-choice {
  position: relative;
}

.contact-choice > span {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: 750;
  justify-content: center;
  min-height: 46px;
}

.contact-choice input:checked + span {
  background: var(--cyan-bright);
  border-color: var(--cyan-bright);
  color: var(--ink);
}

.contact-choice:focus-within > span {
  box-shadow: 0 0 0 3px rgba(37, 199, 247, 0.2);
}

.request-summary {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  margin-top: 22px;
  padding: 18px;
}

.summary-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.summary-heading > span {
  color: var(--cyan-bright);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-heading button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  min-height: 44px;
  padding: 5px 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.request-summary dl {
  display: grid;
  gap: 13px;
  grid-template-columns: 1fr 1fr;
  margin: 17px 0 0;
}

.request-summary dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.request-summary dd {
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
  overflow-wrap: anywhere;
}

.form-actions {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  margin-top: 28px;
  padding-top: 24px;
}

.form-back {
  align-items: center;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  gap: 9px;
  min-height: 44px;
  padding: 0;
}

.form-back:hover {
  color: var(--white);
}

.form-next,
.form-submit {
  border: 0;
  min-width: 190px;
}

.js .consultation-form:not(.is-final-step) .form-submit,
.js .consultation-form.is-final-step .form-next {
  display: none;
}

.no-js .request-progress,
.no-js .form-next,
.no-js .form-back,
.no-js .request-summary {
  display: none;
}

.no-js .form-step + .form-step {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 40px;
  padding-top: 40px;
}

.no-js .form-actions {
  grid-template-columns: 1fr;
}

.no-js .form-submit {
  justify-self: end;
}

.form-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.58;
  margin: 14px 0 0 auto;
  max-width: 530px;
  text-align: right;
}

.request-success {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.request-success > span {
  align-items: center;
  background: var(--success);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 24px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.request-success h4 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.05em;
  margin: 24px 0 10px;
}

.request-success p {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
  margin: 0 0 26px;
  max-width: 460px;
}

/* Banner and footer */
.brand-banner {
  align-items: center;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  min-height: 168px;
  padding: 18px clamp(20px, 6vw, 90px);
}

.desktop-banner {
  height: auto;
  max-width: 1022px;
  width: 100%;
}

.mobile-banner {
  display: none;
}

.site-footer {
  background: var(--ink-deep);
  color: var(--white);
  padding: 64px 0 30px;
}

.footer-layout {
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr auto;
}

.footer-brand .brand-mark {
  height: 58px;
  width: 90px;
}

.footer-layout > div:first-child > p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  margin: 24px 0 0;
}

.footer-links {
  display: flex;
  gap: clamp(55px, 8vw, 120px);
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links > div > span {
  color: var(--cyan-bright);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.11em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  min-height: 28px;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  margin-top: 55px;
  padding-top: 22px;
  text-transform: uppercase;
}

/* Responsive layout */
@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .consultation-layout {
    grid-template-columns: minmax(275px, 0.64fr) minmax(470px, 1fr);
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .js .header-shell {
    grid-template-columns: 1fr auto auto;
  }

  .js .menu-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
  }

  .js .site-nav {
    align-items: stretch;
    background: rgba(3, 11, 17, 0.99);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 20px clamp(18px, 5vw, 48px) 30px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .js .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .js .site-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    min-height: 52px;
    padding: 16px 4px;
  }

  .js .site-nav a::after {
    display: none;
  }

  .js .site-nav .mobile-nav-cta {
    align-items: center;
    background: var(--cyan);
    border: 0;
    border-radius: 9px;
    color: var(--ink);
    display: flex;
    font-weight: 800;
    justify-content: center;
    margin-top: 18px;
  }

  .no-js .header-shell {
    grid-template-columns: 1fr auto;
  }

  .no-js .site-nav {
    flex-wrap: wrap;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 730px;
  }

  .hero-art {
    justify-self: start;
    max-width: 760px;
  }

  .section-heading,
  .split-layout,
  .standard-panel,
  .consultation-layout {
    grid-template-columns: 1fr;
  }

  .standard-points {
    grid-template-columns: 1fr;
  }

  .standard-points article,
  .standard-points article + article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 28px 0;
  }

  .standard-points article:last-child {
    border-bottom: 0;
  }

  .coverage-copy,
  .consultation-details {
    position: static;
  }

  .consultation-details {
    display: grid;
    gap: 26px;
    grid-template-columns: 1fr 1fr;
  }

  .consultation-details > div:first-child,
  .request-assurance {
    grid-column: 1 / -1;
  }

  .contact-card,
  .request-assurance {
    margin-top: 0;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .shell,
  .header-shell {
    width: calc(100% - 36px);
  }

  .header-shell {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    height: 42px;
    width: 62px;
  }

  .brand-name strong {
    font-size: 13px;
  }

  .brand-name small {
    font-size: 8px;
    letter-spacing: 0.13em;
    margin-top: 5px;
  }

  .header-cta {
    font-size: 0;
    gap: 0;
    min-height: 44px;
    padding: 0;
    width: 44px;
  }

  .header-cta span:last-child {
    font-size: 18px;
  }

  .hero-layout {
    gap: 58px;
    padding-block: 58px 42px;
  }

  .hero h1 {
    font-size: clamp(40px, 13.4vw, 70px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-trust div {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-trust span {
    max-width: 62%;
    text-align: right;
  }

  .hero-stage {
    aspect-ratio: 1.03;
    border-radius: 16px;
    box-shadow: 10px 10px 0 rgba(8, 174, 234, 0.13);
    padding: 22px 18px;
  }

  .hero-wordmark strong {
    font-size: clamp(28px, 9vw, 46px);
  }

  .hero-wordmark span {
    font-size: 9px;
    letter-spacing: 0.26em;
    text-indent: 0.26em;
  }

  .hero-car {
    margin-inline: -9%;
    width: 118%;
  }

  .hero-stage-note {
    display: none;
  }

  .hero-art-label,
  .hero-art-footer {
    font-size: 9px;
  }

  .hero-art-label span:last-child,
  .hero-art-footer span:last-child {
    display: none;
  }

  .promise-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 18px;
    text-align: left;
  }

  .promise-bar i {
    display: none;
  }

  .section {
    padding-block: 82px;
  }

  .section h2,
  .consultation h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .section-heading {
    gap: 30px;
  }

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

  .service-card {
    min-height: 300px;
    padding: 26px;
  }

  .standard-panel {
    gap: 34px;
  }

  .consultation {
    padding-block: 78px;
  }

  .consultation-details {
    display: flex;
  }

  .request-assurance {
    grid-template-columns: 1fr;
  }

  .consultation-form {
    border-radius: 16px;
    padding: 25px 18px;
  }

  .form-card-heading {
    gap: 15px;
  }

  .form-card-heading > small {
    display: none;
  }

  .request-progress button {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .request-progress button strong {
    font-size: 10px;
  }

  .service-choice-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    font-size: 16px;
  }

  .request-summary dl {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .form-actions > span {
    display: none;
  }

  .form-next,
  .form-submit {
    grid-row: 1;
    width: 100%;
  }

  .form-back {
    justify-content: center;
    width: 100%;
  }

  .form-note {
    text-align: left;
  }

  .desktop-banner {
    display: none;
  }

  .brand-banner {
    min-height: 0;
    padding: 28px 18px;
  }

  .mobile-banner {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: 58px 1fr;
    max-width: 520px;
    width: 100%;
  }

  .mobile-banner > img {
    height: 58px;
    object-fit: contain;
    width: 58px;
  }

  .mobile-banner > div {
    display: flex;
    flex-direction: column;
  }

  .mobile-banner > div span,
  .mobile-banner > div small {
    color: rgba(255, 255, 255, 0.64);
    font-family: "Geist Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-banner > div strong {
    color: var(--cyan-bright);
    font-size: 16px;
    margin-block: 4px;
    text-transform: uppercase;
  }

  .mobile-banner > a {
    align-items: center;
    background: var(--cyan);
    border-radius: 8px;
    color: var(--ink);
    display: flex;
    font-size: 12px;
    font-weight: 800;
    grid-column: 1 / -1;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 16px;
    text-transform: uppercase;
  }

  .footer-links {
    flex-direction: column;
    gap: 38px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    display: none;
  }

  .contact-choice-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-delay: 0s !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .promise-bar,
  .consultation,
  .brand-banner {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
