/* ============================================================
   SAUBER & GLANZ Gebaeudereinigung
   Visual system: editorial parchment, black ink, cobalt links
   ============================================================ */

:root {
  --color-parchment-white: #f6fcfe;
  --color-midnight-ink: #08263d;
  --color-arctic-frost: #ffffff;
  --color-slate-gray: #5b7282;
  --color-vivid-cobalt: #0065b3;
  --color-parchment-deep: #e8f7fb;
  --color-line: rgba(8, 38, 61, .22);
  --color-frost-line: rgba(255, 255, 255, .28);
  --color-danger: #b42318;

  --font-copernicus: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-helvetica: "Manrope", "Segoe UI", Arial, sans-serif;

  --page-max-width: 1200px;
  --section-y: 100px;
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-36: 36px;
  --spacing-40: 40px;
  --spacing-60: 60px;
  --spacing-80: 80px;
  --spacing-100: 100px;
  --spacing-120: 120px;

  --radius-misc: 40px;
  --radius-avatar: 50%;
  --radius-inputs: 0;
  --radius-buttons: 0;
  --radius-default: 0;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  font-family: var(--font-copernicus);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-midnight-ink);
  background: var(--color-parchment-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

ul {
  list-style: none;
  padding: 0;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--color-vivid-cobalt);
  color: var(--color-arctic-frost);
}

:focus-visible {
  outline: 2px solid var(--color-vivid-cobalt);
  outline-offset: 4px;
  border-radius: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 300;
  background: var(--color-arctic-frost);
  color: var(--color-midnight-ink);
  padding: 12px 16px;
  border: 1px solid var(--color-midnight-ink);
  transition: top .2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: 100%;
  max-width: var(--page-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--mist {
  background: var(--color-parchment-deep);
}

.section--tight {
  padding-block: 60px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-copernicus);
  color: var(--color-midnight-ink);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.h-xl {
  font-size: 80px;
  line-height: .95;
}

.h-l {
  font-size: 56px;
  line-height: 1.04;
}

.h-m {
  font-size: 40px;
  line-height: 1.08;
}

h3 {
  font-size: 25px;
  line-height: 1.21;
}

h4 {
  font-size: 18px;
  line-height: 1.27;
}

p {
  text-wrap: pretty;
}

.lead {
  font-size: 18px;
  line-height: 1.35;
  color: var(--color-midnight-ink);
}

strong {
  color: var(--color-midnight-ink);
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-helvetica);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-vivid-cobalt);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  flex: none;
  background: currentColor;
  display: none;
}

.eyebrow--center {
  justify-content: center;
}

.section-head {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 50px;
  text-align: center;
}

.section-head h2 {
  margin-top: 16px;
}

.section-head p {
  margin-top: 18px;
  color: var(--color-slate-gray);
}

.section-head--left {
  margin-inline: 0;
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--radius-buttons);
  font-family: var(--font-helvetica);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform .22s var(--ease), background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  flex: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary,
.btn--dark {
  color: var(--color-arctic-frost);
  background: var(--color-midnight-ink);
  border: 1px solid var(--color-midnight-ink);
}

.btn--primary:hover,
.btn--dark:hover {
  transform: translateY(-2px);
  color: var(--color-arctic-frost);
  background: var(--color-vivid-cobalt);
  border-color: var(--color-vivid-cobalt);
}

.btn--ghost,
.btn--ghost-light {
  min-height: 0;
  padding: 0 0 3px;
  color: var(--color-vivid-cobalt);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
}

.btn--ghost:hover,
.btn--ghost-light:hover {
  transform: translateY(-2px);
  color: var(--color-midnight-ink);
}

.btn--lg {
  min-height: 52px;
  padding: 13px 30px;
  font-size: 15px;
}

.btn--block {
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  pointer-events: none;
}

.header-inner {
  max-width: none;
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  padding-block: 12px;
  border-bottom: 1px solid var(--color-frost-line);
  background: rgba(8, 38, 61, .86);
  color: var(--color-arctic-frost);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}

.site-header.scrolled .header-inner {
  background: rgba(8, 38, 61, .96);
  border-color: rgba(255, 255, 255, .18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  margin-right: 0;
  min-width: 0;
}

.brand__mark {
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 0;
  filter: none;
}

.brand__text {
  display: none;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-copernicus);
  font-size: 18px;
  font-weight: 700;
  color: currentColor;
  white-space: nowrap;
  letter-spacing: 0;
}

.brand__tag {
  margin-top: 4px;
  font-family: var(--font-helvetica);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .68);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav {
  justify-self: center;
}

.main-nav a {
  display: block;
  padding: 3px 0;
  border-bottom: 0;
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-helvetica);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  transition: color .2s var(--ease);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--color-arctic-frost);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.header-contact {
  min-height: 44px;
  padding: 10px 18px;
  gap: 8px;
  font-size: 15px;
  white-space: nowrap;
}

.header-contact svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.header-contact--call {
  display: none;
}

.header-actions .btn--primary {
  color: var(--color-midnight-ink);
  background: var(--color-arctic-frost);
  border-color: var(--color-arctic-frost);
}

.header-actions .btn--primary:hover {
  color: var(--color-arctic-frost);
  background: var(--color-vivid-cobalt);
  border-color: var(--color-vivid-cobalt);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  flex: none;
  border: 1px solid var(--color-frost-line);
  border-radius: 0;
  position: relative;
}

.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--color-arctic-frost);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 108px 24px 32px;
  color: var(--color-arctic-frost);
  background: var(--color-midnight-ink);
  transform: translateX(100%);
  transition: transform .42s var(--ease);
  overflow-y: auto;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu a.m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: var(--color-arctic-frost);
  border-bottom: 1px solid var(--color-frost-line);
  font-size: 30px;
  line-height: 1.15;
}

.mobile-menu a.m-link[aria-current="page"] {
  color: var(--color-vivid-cobalt);
}

.mobile-menu a.m-link::after {
  content: ">";
  font-family: var(--font-helvetica);
  font-size: 15px;
  color: currentColor;
}

.mobile-menu .m-actions {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.mobile-menu .btn--ghost {
  color: var(--color-arctic-frost);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 118px;
  padding-bottom: 54px;
  color: var(--color-arctic-frost);
  background: var(--color-midnight-ink);
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .72fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100svh - 172px);
  min-width: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  min-width: 0;
}

.hero .eyebrow {
  color: var(--color-arctic-frost);
}

.hero .eyebrow::before {
  background: var(--color-vivid-cobalt);
}

.hero h1 {
  margin-top: 24px;
  color: var(--color-arctic-frost);
}

.hero h1 .accent,
.hero__statement .accent {
  color: var(--color-arctic-frost);
}

.hero__statement {
  max-width: 640px;
  margin-top: 22px;
  font-size: 30px;
  line-height: 1.2;
  color: var(--color-arctic-frost);
}

.hero .lead {
  max-width: 610px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .74);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.hero .btn--primary {
  color: var(--color-midnight-ink);
  background: var(--color-arctic-frost);
  border-color: var(--color-arctic-frost);
}

.hero .btn--primary:hover {
  color: var(--color-arctic-frost);
  background: var(--color-vivid-cobalt);
  border-color: var(--color-vivid-cobalt);
}

.hero .btn--ghost {
  color: var(--color-arctic-frost);
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 44px;
  border: 0;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(0, 101, 179, .16);
  border-radius: 8px;
  font-family: var(--font-helvetica);
  font-size: 14px;
  line-height: 1.35;
}

.hero__trust-item:last-child {
  border-right: 1px solid rgba(0, 101, 179, .16);
}

.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-vivid-cobalt);
  flex: none;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__figure {
  position: relative;
  min-height: 560px;
}

.hero__image {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-misc);
  border: 1px solid var(--color-frost-line);
  background: #111111;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image--primary {
  top: 0;
  right: 0;
  width: 74%;
  height: 76%;
}

.hero__image--primary img {
  object-position: 58% 42%;
}

.hero__image--secondary {
  left: 0;
  bottom: 28px;
  width: 52%;
  height: 36%;
  transform: rotate(-5deg);
}

.hero__image--secondary img {
  object-position: 48% 55%;
}

.hero__note {
  position: absolute;
  right: 6%;
  bottom: 0;
  max-width: 250px;
  padding: 18px;
  color: var(--color-midnight-ink);
  background: var(--color-parchment-white);
  border: 1px solid rgba(0, 101, 179, .18);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(8, 38, 61, .08);
  font-size: 18px;
  line-height: 1.22;
}

.hero__note b {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-helvetica);
  font-size: 11px;
  line-height: 1.3;
  color: var(--color-vivid-cobalt);
}

.page-hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
  color: var(--color-arctic-frost);
  background: var(--color-midnight-ink);
  overflow: hidden;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.page-hero h1 {
  margin: 18px 0;
  color: var(--color-arctic-frost);
}

.page-hero .lead {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .74);
}

.page-hero .eyebrow {
  color: var(--color-arctic-frost);
}

.page-hero .eyebrow::before {
  background: var(--color-vivid-cobalt);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .58);
  font-family: var(--font-helvetica);
  font-size: 15px;
  line-height: 1.5;
}

.breadcrumb a:hover,
.breadcrumb span[aria-current] {
  color: var(--color-arctic-frost);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  border: 0;
}

.value-card,
.service-card,
.info-card {
  position: relative;
  min-width: 0;
  background: rgba(255, 255, 255, .66);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(8, 38, 61, .035);
  transition: color .25s var(--ease), background-color .25s var(--ease);
}

.value-card:hover,
.service-card:hover,
.info-card:hover {
  color: var(--color-arctic-frost);
  background: var(--color-midnight-ink);
}

.value-card__icon,
.service-card__icon,
.info-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--color-vivid-cobalt);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.value-card__icon svg,
.service-card__icon svg,
.info-card__icon svg {
  width: 21px;
  height: 21px;
}

.value-card h3,
.service-card h3,
.info-card h3 {
  margin-bottom: 14px;
  color: currentColor;
}

.value-card p,
.service-card p,
.info-card p {
  color: var(--color-slate-gray);
  font-size: 15px;
  line-height: 1.5;
}

.value-card:hover p,
.service-card:hover p,
.info-card:hover p {
  color: rgba(255, 255, 255, .72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  border: 0;
}

.service-card {
  min-height: 270px;
}

.service-card h3 {
  overflow-wrap: break-word;
  hyphens: auto;
}

.service-card:hover .service-card__icon,
.value-card:hover .value-card__icon,
.info-card:hover .info-card__icon {
  color: var(--color-arctic-frost);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
  min-width: 0;
}

.split__media img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-misc);
  border: 1px solid var(--color-line);
}

.split__media--frame {
  padding: 0;
  border-radius: var(--radius-misc);
  background: transparent;
}

.split__media--frame img {
  min-height: 360px;
}

.split__badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 18px 22px;
  color: var(--color-arctic-frost);
  background: var(--color-midnight-ink);
  border: 1px solid var(--color-midnight-ink);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(8, 38, 61, .12);
  text-align: left;
}

.split__badge b {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--color-arctic-frost);
}

.split__badge span {
  font-family: var(--font-helvetica);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, .68);
}

.split__content h2 {
  margin: 18px 0 20px;
}

.split__content .lead + p,
.split__content p + p {
  margin-top: 18px;
  color: var(--color-slate-gray);
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  border-top: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 0;
  color: var(--color-midnight-ink);
  font-family: var(--font-helvetica);
  font-size: 15px;
  line-height: 1.5;
}

.check-list li svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 2px;
  color: var(--color-vivid-cobalt);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  border: 0;
}

.step {
  position: relative;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 14px 34px rgba(8, 38, 61, .035);
}

.step__num {
  display: block;
  margin-bottom: 22px;
  color: var(--color-vivid-cobalt);
  font-family: var(--font-helvetica);
  font-size: 15px;
  line-height: 1.5;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  color: var(--color-slate-gray);
  font-size: 15px;
  line-height: 1.5;
}

.cta-band {
  position: relative;
  color: rgba(255, 255, 255, .76);
  background: var(--color-midnight-ink);
  overflow: hidden;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr auto;
  gap: 40px;
  align-items: center;
}

.cta-band h2 {
  color: var(--color-arctic-frost);
  margin: 18px 0 18px;
}

.cta-band .lead {
  color: rgba(255, 255, 255, .72);
}

.cta-band .eyebrow {
  color: var(--color-arctic-frost);
}

.cta-band .eyebrow::before {
  background: var(--color-vivid-cobalt);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.cta-band .btn--primary {
  color: var(--color-midnight-ink);
  background: var(--color-arctic-frost);
  border-color: var(--color-arctic-frost);
}

.cta-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-arctic-frost);
  font-family: var(--font-helvetica);
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid currentColor;
}

.cta-band__phone svg {
  width: 18px;
  height: 18px;
  color: var(--color-vivid-cobalt);
}

.site-footer {
  padding-top: 72px;
  color: rgba(255, 255, 255, .64);
  background: var(--color-midnight-ink);
  border-top: 1px solid var(--color-frost-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand .brand__name,
.footer-col h4 {
  color: var(--color-arctic-frost);
}

.footer-brand .brand__text {
  display: flex;
}

.footer-brand .brand__mark {
  width: 58px;
  height: 58px;
}

.footer-brand .brand__tag {
  color: rgba(255, 255, 255, .62);
}

.footer-brand p {
  max-width: 34ch;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.5;
}

.footer-col h4 {
  margin-bottom: 16px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a,
.footer-contact a,
.footer-contact span {
  font-family: var(--font-helvetica);
  font-size: 15px;
  line-height: 1.5;
}

.footer-col a:hover,
.footer-contact a:hover {
  color: var(--color-arctic-frost);
  border-bottom: 1px solid currentColor;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--color-vivid-cobalt);
  flex: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding-block: 24px;
  border-top: 1px solid var(--color-frost-line);
  font-family: var(--font-helvetica);
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--color-arctic-frost);
  border-bottom: 1px solid currentColor;
}

.form-card {
  background: rgba(255, 255, 255, .66);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 14px 34px rgba(8, 38, 61, .035);
}

.form-intro {
  margin-bottom: 30px;
  color: var(--color-slate-gray);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--color-midnight-ink);
  font-size: 15px;
  line-height: 1.3;
}

.field .req {
  color: var(--color-vivid-cobalt);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--color-midnight-ink);
  border-radius: var(--radius-inputs);
  background: transparent;
  padding: 10px 0;
  transition: border-color .2s var(--ease);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-vivid-cobalt);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-slate-gray);
}

.consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
  padding: 16px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(0, 101, 179, .14);
  border-radius: 8px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-vivid-cobalt);
  flex: none;
}

.consent label {
  font-size: 14px;
  line-height: 1.5;
}

.consent label a {
  color: var(--color-vivid-cobalt);
  border-bottom: 1px solid currentColor;
}

.form-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.form-note {
  color: var(--color-slate-gray);
  font-family: var(--font-helvetica);
  font-size: 14px;
  line-height: 1.5;
}

.field-error {
  display: none;
  color: var(--color-danger);
  font-family: var(--font-helvetica);
  font-size: 13px;
  line-height: 1.4;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--color-danger);
}

.field.invalid .field-error {
  display: block;
}

.consent.invalid {
  border-color: var(--color-danger);
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  padding: 14px 0;
  color: var(--color-midnight-ink);
  border-top: 1px solid var(--color-vivid-cobalt);
  border-bottom: 1px solid var(--color-vivid-cobalt);
}

.form-status.show {
  display: block;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: start;
}

.aside-card {
  position: sticky;
  top: 104px;
  padding: 30px;
  color: rgba(255, 255, 255, .7);
  background: var(--color-midnight-ink);
  border: 1px solid var(--color-midnight-ink);
  border-radius: 8px;
}

.aside-card h3 {
  color: var(--color-arctic-frost);
  margin: 14px 0 18px;
}

.aside-card .eyebrow {
  color: var(--color-arctic-frost);
}

.aside-card .eyebrow::before {
  background: var(--color-vivid-cobalt);
}

.aside-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--color-arctic-frost);
  font-family: var(--font-helvetica);
  font-size: 20px;
  line-height: 1.3;
  border-bottom: 1px solid currentColor;
}

.aside-phone svg {
  width: 19px;
  height: 19px;
  color: var(--color-vivid-cobalt);
  flex: none;
}

.aside-list,
.aside-check {
  display: grid;
  gap: 14px;
}

.aside-list li,
.aside-check li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-helvetica);
  font-size: 15px;
  line-height: 1.5;
}

.aside-list svg,
.aside-check svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--color-vivid-cobalt);
  flex: none;
}

.aside-card hr {
  border: 0;
  border-top: 1px solid var(--color-frost-line);
  margin: 24px 0;
}

.aside-check li {
  color: var(--color-arctic-frost);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: stretch;
  border: 0;
}

.info-card a:hover {
  color: var(--color-vivid-cobalt);
  border-bottom: 1px solid currentColor;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-misc);
  border: 1px solid var(--color-line);
  line-height: 0;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: 0;
}

.prose {
  max-width: 860px;
  color: var(--color-midnight-ink);
}

.prose h2 {
  margin: 42px 0 18px;
  font-size: 40px;
  line-height: 1.15;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 32px 0 12px;
  font-size: 25px;
}

.prose p {
  margin-bottom: 16px;
}

.prose a {
  color: var(--color-vivid-cobalt);
  border-bottom: 1px solid currentColor;
  word-break: break-word;
}

.prose ul {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.prose ul li {
  position: relative;
  padding-left: 22px;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--color-vivid-cobalt);
}

.prose .doc-card {
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, .66);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 38, 61, .035);
}

.prose .doc-card p {
  margin-bottom: 4px;
}

.prose .muted {
  color: var(--color-slate-gray);
  font-family: var(--font-helvetica);
  font-size: 14px;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--d, 0) * 80ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

.hero__content > * {
  animation: fadeUp .66s var(--ease) both;
}

.hero__content > *:nth-child(1) { animation-delay: .04s; }
.hero__content > *:nth-child(2) { animation-delay: .11s; }
.hero__content > *:nth-child(3) { animation-delay: .18s; }
.hero__content > *:nth-child(4) { animation-delay: .25s; }
.hero__content > *:nth-child(5) { animation-delay: .32s; }
.hero__content > *:nth-child(6) { animation-delay: .39s; }
.hero__content > *:nth-child(7) { animation-delay: .46s; }
.hero__visual { animation: fadeUp .8s var(--ease) .16s both; }

@media (max-width: 1120px) {
  .header-inner {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .header-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
  }

  .header-contact--mail {
    display: none;
  }

  .header-contact--call {
    display: inline-flex;
  }

  .hero {
    min-height: 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__content {
    max-width: 820px;
  }

  .hero__visual {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .h-xl { font-size: 60px; }
  .h-l { font-size: 44px; }
  .h-m { font-size: 34px; }

  .value-grid,
  .service-grid,
  .steps,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid[style] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .split__media img,
  .split__media--frame img {
    min-height: 300px;
  }

  .form-layout {
    grid-template-columns: 1fr;
  }

  .aside-card {
    position: static;
  }
}

@media (min-width: 921px) {
  .service-grid .service-card:last-child:nth-child(3n + 1) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15.5px;
  }

  .container {
    padding-inline: 18px;
  }

  .section {
    padding-block: 66px;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    min-height: 70px;
    gap: 14px;
  }

  .brand {
    flex: 1 1 auto;
    margin-right: 0;
    min-width: 0;
  }

  .brand__name {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .burger {
    margin-left: auto;
  }

  .brand__mark {
    width: 50px;
    height: 50px;
  }

  .brand__tag {
    display: none;
  }

  .hero {
    padding-top: 106px;
    padding-bottom: 52px;
  }

  .h-xl { font-size: 46px; }
  .h-l { font-size: 36px; }
  .h-m { font-size: 30px; }

  .hero__statement {
    max-width: 100%;
    font-size: 23px;
    overflow-wrap: break-word;
  }

  .hero__content {
    width: 100%;
    max-width: calc(100vw - 36px);
    overflow: visible;
  }

  .hero h1,
  .hero .lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero__cta,
  .cta-actions {
    width: 100%;
    gap: 18px;
  }

  .hero__cta .btn--primary,
  .cta-actions .btn--primary {
    width: 100%;
  }

  .value-grid,
  .service-grid,
  .steps,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__trust {
    display: none;
  }

  .hero__trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--color-frost-line);
  }

  .hero__trust-item:last-child {
    border-bottom: 0;
  }

  .hero__figure {
    min-height: 430px;
  }

  .hero__image--primary {
    width: 84%;
    height: 70%;
  }

  .hero__image--secondary {
    width: 58%;
    height: 34%;
    bottom: 44px;
  }

  .hero__note {
    right: 0;
    max-width: 230px;
  }

  .value-grid[style] {
    grid-template-columns: 1fr !important;
  }

  .page-hero {
    padding-top: 112px;
    padding-bottom: 58px;
  }

  .page-hero__inner,
  .section-head {
    text-align: left;
  }

  .breadcrumb {
    justify-content: flex-start;
  }

  .eyebrow--center {
    justify-content: flex-start;
  }

  .form-card {
    padding: 26px 18px;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand__name {
    font-size: 16px;
  }

  .h-xl {
    font-size: 38px;
  }

  .hero__figure {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .hero__note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 0;
  }

  .hero__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    transform: none;
    border-radius: 24px;
  }

  .hero__image--primary {
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
  }

  .hero__image--secondary {
    display: none;
  }
}

@media (max-device-width: 480px) {
  .container {
    max-width: 390px;
    margin-inline: 0;
    padding-inline: 18px;
  }

  .header-inner {
    width: 100%;
    max-width: 390px;
  }

  .hero__content,
  .hero__visual {
    width: 100%;
    max-width: 354px;
    margin-inline: 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__statement {
    font-size: 22px;
  }

  .hero__cta .btn--primary {
    width: 100%;
  }

  .hero__figure {
    min-height: 0;
  }
}

/* Full light mode ------------------------------------------------------- */
.skip-link,
.header-inner,
.site-header.scrolled .header-inner,
.hero,
.page-hero,
.cta-band,
.site-footer,
.aside-card,
.mobile-menu {
  color: var(--color-midnight-ink);
  background: var(--color-parchment-white);
}

.header-inner,
.site-header.scrolled .header-inner,
.site-footer,
.aside-card {
  border-color: var(--color-line);
}

.brand__tag,
.footer-brand .brand__tag,
.hero .lead,
.page-hero .lead,
.cta-band .lead,
.footer-brand p,
.aside-card,
.footer-col a,
.footer-contact a,
.footer-contact span,
.footer-bottom,
.mobile-menu a.m-link {
  color: var(--color-slate-gray);
}

.main-nav a {
  color: var(--color-midnight-ink);
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.footer-col a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--color-vivid-cobalt);
}

.brand__name,
.hero h1,
.hero h1 .accent,
.hero__statement,
.hero__statement .accent,
.page-hero h1,
.cta-band h2,
.footer-brand .brand__name,
.footer-col h4,
.aside-card h3,
.aside-check li {
  color: var(--color-midnight-ink);
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow,
.aside-card .eyebrow {
  color: var(--color-vivid-cobalt);
}

.btn--primary,
.btn--dark,
.hero .btn--primary,
.cta-band .btn--primary,
.mobile-menu .btn--primary {
  color: var(--color-arctic-frost);
  background: var(--color-vivid-cobalt);
  border-color: var(--color-vivid-cobalt);
  box-shadow: 0 14px 32px rgba(0, 101, 179, .18);
}

.btn--primary:hover,
.btn--dark:hover,
.hero .btn--primary:hover,
.cta-band .btn--primary:hover,
.mobile-menu .btn--primary:hover {
  color: var(--color-vivid-cobalt);
  background: var(--color-arctic-frost);
  border-color: var(--color-vivid-cobalt);
  box-shadow: 0 10px 24px rgba(0, 101, 179, .14);
}

.header-actions .btn--primary {
  color: var(--color-vivid-cobalt);
  background: var(--color-arctic-frost);
  border-color: rgba(0, 101, 179, .32);
  box-shadow: none;
}

.header-actions .btn--primary:hover {
  color: var(--color-arctic-frost);
  background: var(--color-vivid-cobalt);
  border-color: var(--color-vivid-cobalt);
  box-shadow: 0 10px 24px rgba(0, 101, 179, .16);
}

.hero .btn--ghost,
.mobile-menu .btn--ghost,
.cta-band__phone,
.aside-phone {
  color: var(--color-vivid-cobalt);
}

.hero__trust,
.mobile-menu a.m-link,
.footer-bottom,
.aside-card hr {
  border-color: var(--color-line);
}

.hero__trust-item {
  color: var(--color-midnight-ink);
  background: var(--color-arctic-frost);
  border-color: rgba(0, 101, 179, .16);
}

.hero__image {
  border-color: var(--color-line);
  background: var(--color-parchment-deep);
}

.hero__note {
  background: var(--color-arctic-frost);
}

.breadcrumb {
  color: var(--color-slate-gray);
}

.breadcrumb a:hover,
.breadcrumb span[aria-current] {
  color: var(--color-vivid-cobalt);
}

.value-card:hover,
.service-card:hover,
.info-card:hover {
  color: var(--color-midnight-ink);
  background: var(--color-arctic-frost);
}

.value-card,
.service-card,
.info-card,
.step,
.form-card,
.prose .doc-card {
  border-color: rgba(0, 101, 179, .14);
}

.value-card:hover p,
.service-card:hover p,
.info-card:hover p {
  color: var(--color-slate-gray);
}

.value-card:hover .value-card__icon,
.service-card:hover .service-card__icon,
.info-card:hover .info-card__icon {
  color: var(--color-vivid-cobalt);
}

.split__badge {
  color: var(--color-midnight-ink);
  background: var(--color-arctic-frost);
  border-color: rgba(0, 101, 179, .18);
}

.split__badge b {
  color: var(--color-midnight-ink);
}

.split__badge span {
  color: var(--color-slate-gray);
}

.burger {
  border-color: var(--color-line);
}

.burger span {
  background: var(--color-midnight-ink);
}

.footer-contact svg,
.aside-list svg,
.aside-check svg,
.aside-phone svg,
.cta-band__phone svg {
  color: var(--color-vivid-cobalt);
}

/* Modern blue-white refresh -------------------------------------------- */
:root {
  --color-parchment-white: #f6fcfe;
  --color-parchment-deep: #e8f7fb;
  --color-midnight-ink: #08263d;
  --color-slate-gray: #5b7282;
  --color-line: rgba(0, 101, 179, .16);
  --radius-misc: 28px;
  --radius-inputs: 18px;
  --radius-buttons: 999px;
  --radius-default: 24px;
}

body {
  font-family: var(--font-helvetica);
  line-height: 1.55;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 101, 179, .08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--color-parchment-white) 100%);
}

h1,
h2,
h3,
h4,
.brand__name {
  font-family: var(--font-helvetica);
  font-weight: 800;
  letter-spacing: 0;
}

.h-xl {
  font-size: clamp(56px, 8vw, 112px);
  line-height: .92;
}

.h-l {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.h-m {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
}

h3 {
  font-size: 22px;
}

.lead {
  font-size: 19px;
  line-height: 1.55;
}

.site-header {
  padding-top: 0;
  pointer-events: auto;
  background: rgba(247, 251, 255, .55);
  border-bottom: 1px solid rgba(0, 101, 179, .12);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .82);
  border-bottom-color: rgba(0, 101, 179, .16);
  box-shadow: 0 12px 34px rgba(0, 101, 179, .08);
}

.header-inner,
.site-header.scrolled .header-inner {
  width: 100%;
  max-width: var(--page-max-width);
  min-height: 72px;
  margin-inline: auto;
  padding: 12px 24px;
  color: var(--color-midnight-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.brand__mark {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.brand__name {
  font-size: 18px;
}

.brand__tag {
  color: var(--color-slate-gray);
}

.main-nav ul {
  gap: 2px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.main-nav a {
  position: relative;
  padding: 8px 14px;
  border: 0;
  border-radius: 0;
  color: var(--color-midnight-ink);
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--color-midnight-ink);
  background: transparent;
  box-shadow: none;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  gap: 12px;
}

.header-actions .btn--primary {
  padding-inline: 20px;
}

.btn {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-z: 0deg;
  --tilt-lift: 0px;
  --tilt-scale: 1;
  min-height: 50px;
  padding-inline: 24px;
  border: 1px solid transparent;
  font-weight: 700;
  box-shadow: none;
  transform-origin: center;
  backface-visibility: hidden;
  transform:
    perspective(720px)
    translateY(var(--tilt-lift))
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    rotateZ(var(--tilt-z))
    scale(var(--tilt-scale));
  transition: transform .16s var(--ease), background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.btn--primary,
.btn--dark,
.hero .btn--primary,
.cta-band .btn--primary,
.mobile-menu .btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0065b3 0%, #48a6dc 100%);
  border-color: rgba(0, 101, 179, .32);
  box-shadow: 0 18px 38px rgba(0, 101, 179, .22);
}

.btn--primary:hover,
.btn--dark:hover,
.hero .btn--primary:hover,
.cta-band .btn--primary:hover,
.mobile-menu .btn--primary:hover {
  --tilt-lift: -2px;
  --tilt-scale: 1.006;
  color: #ffffff;
  background: linear-gradient(135deg, #0065b3 0%, #70ceea 100%);
  border-color: rgba(0, 101, 179, .32);
  box-shadow: 0 18px 36px rgba(0, 101, 179, .22);
}

.btn--primary.is-tilting,
.btn--dark.is-tilting {
  transition: transform .08s linear, background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.btn--ghost,
.btn--ghost-light,
.hero .btn--ghost {
  color: var(--color-vivid-cobalt);
  border-bottom: 0;
  background: rgba(255, 255, 255, .72);
  border-color: rgba(0, 101, 179, .22);
}

.btn--ghost:hover,
.btn--ghost-light:hover {
  color: #ffffff;
  background: var(--color-vivid-cobalt);
  border-color: var(--color-vivid-cobalt);
}

.burger {
  border-radius: 0;
  background: rgba(255, 255, 255, .55);
  border-color: rgba(0, 101, 179, .18);
}

.hero--home {
  position: relative;
  min-height: 100svh;
  padding-top: 132px;
  padding-bottom: 64px;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background-color: #042740;
  background-image: url("../images/hero-home-generated.png");
  background-position: center right;
  background-size: cover;
}

.hero--home::before,
.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero--home::before {
  background:
    linear-gradient(90deg, rgba(4, 39, 64, .86) 0%, rgba(4, 39, 64, .66) 48%, rgba(4, 39, 64, .28) 100%),
    linear-gradient(180deg, rgba(4, 39, 64, .20) 0%, rgba(4, 39, 64, .34) 100%);
}

.hero--home::after {
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 101, 179, .28), transparent 18rem),
    linear-gradient(90deg, rgba(0, 101, 179, .18) 0%, rgba(0, 101, 179, 0) 56%);
  mix-blend-mode: screen;
  opacity: .7;
}

.hero--home .hero__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 780px);
  justify-content: start;
  gap: 0;
  min-height: calc(100svh - 196px);
  align-items: center;
}

.hero--home .hero__content {
  max-width: 780px;
  transform: translateY(-22px);
}

@media (min-width: 1180px) {
  .hero--home .hero__content {
    transform: translate(-18px, -22px);
  }
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 14px;
  color: #ffffff;
  background: rgba(4, 39, 64, .50);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 101, 179, .10);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero__rating svg {
  width: 18px;
  height: 18px;
}

.hero__brand-line {
  display: flex;
  align-items: center;
  margin-top: 28px;
}

.hero__brand-line img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  box-shadow: 0 22px 44px rgba(0, 101, 179, .28);
}

.hero--home .eyebrow {
  margin-top: 28px;
  color: #ffffff;
  font-weight: 700;
}

.hero--home h1 {
  margin-top: 18px;
  color: #ffffff;
}

.hero--home .h-xl {
  font-size: clamp(54px, 6.2vw, 84px);
}

.hero__statement {
  max-width: 720px;
  font-family: var(--font-helvetica);
  font-size: clamp(26px, 2.7vw, 40px);
  font-weight: 700;
  line-height: 1.1;
}

.hero--home .hero__statement {
  color: #ffffff;
}

.hero--home .hero__statement .accent {
  color: #70ceea;
}

.hero--home .lead {
  max-width: 640px;
  color: rgba(255, 255, 255, .82);
  font-size: 18.5px;
}

.hero__cta {
  gap: 16px;
  margin-top: 26px;
}

.hero__trust {
  max-width: 780px;
}

.hero__trust-item {
  color: var(--color-midnight-ink);
  background: rgba(255, 255, 255, .82);
  border-color: rgba(0, 101, 179, .14);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 101, 179, .08);
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.proof-strip {
  position: relative;
  padding-block: 38px;
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 101, 179, .18), transparent 24rem),
    linear-gradient(135deg, #042740 0%, #074d78 56%, #0b608d 100%);
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.proof-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, .11) 46.1% 46.22%, transparent 46.34%),
    linear-gradient(150deg, transparent 0 72%, rgba(255, 255, 255, .08) 72.1% 72.22%, transparent 72.36%);
  opacity: .7;
}

.proof-strip__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-strip__item {
  min-width: 0;
  padding: 20px 22px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 18px 38px rgba(8, 38, 61, .12);
  backdrop-filter: blur(12px);
}

.proof-strip__item strong {
  display: block;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: .95;
}

.proof-strip__item span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.section {
  position: relative;
  padding-block: 112px;
  overflow: hidden;
}

.section::after {
  content: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section--mist {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--color-parchment-deep) 100%);
}

.section-head {
  max-width: 820px;
  margin-bottom: 56px;
}

.section-head h2 {
  margin-top: 14px;
}

.eyebrow {
  font-weight: 800;
}

.eyebrow::before {
  height: 2px;
  border-radius: 999px;
}

.eyebrow::before,
.hero .eyebrow::before,
.page-hero .eyebrow::before,
.cta-band .eyebrow::before,
.aside-card .eyebrow::before {
  content: none;
  display: none;
}

.value-grid,
.service-grid,
.steps,
.info-grid {
  gap: 22px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (min-width: 921px) {
  .service-grid .service-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }
}

@media (min-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-grid .service-card:nth-last-child(2):nth-child(4n + 1) {
    grid-column: 2;
  }

  .service-grid .service-card:last-child:nth-child(4n + 2) {
    grid-column: 3;
  }
}

@media (min-width: 921px) and (max-width: 1179px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid .service-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

.value-card,
.service-card,
.info-card,
.step,
.form-card,
.prose .doc-card,
.aside-card {
  border-color: rgba(0, 101, 179, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 70px rgba(0, 101, 179, .08);
}

.value-card,
.service-card,
.info-card,
.step {
  padding: 32px;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease), background-color .22s var(--ease);
}

.value-card:hover,
.service-card:hover,
.info-card:hover,
.step:hover {
  transform: translateY(-6px);
  color: var(--color-midnight-ink);
  background: #ffffff;
  border-color: rgba(0, 101, 179, .28);
  box-shadow: 0 28px 80px rgba(0, 101, 179, .13);
}

.value-card__icon,
.service-card__icon,
.info-card__icon {
  width: 56px;
  height: 56px;
  color: var(--color-vivid-cobalt);
  background: rgba(0, 101, 179, .08);
  border-color: transparent;
  border-radius: 18px;
}

.value-card p,
.service-card p,
.info-card p,
.step p {
  color: var(--color-slate-gray);
  font-size: 15.5px;
}

.split {
  gap: 72px;
}

.split__media img,
.split__media--frame img {
  border-color: rgba(0, 101, 179, .12);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 101, 179, .12);
}

.split__badge {
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 101, 179, .28), transparent 9rem),
    linear-gradient(135deg, #042740 0%, #074d78 100%);
  border-color: rgba(255, 255, 255, .22);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(4, 39, 64, .22);
}

.split__badge b,
.split__badge span {
  color: #ffffff;
}

.check-list li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(0, 101, 179, .10);
  border-radius: 16px;
  font-weight: 700;
}

.step__num {
  width: fit-content;
  padding: 7px 12px;
  color: #ffffff;
  background: #042740;
  border-radius: 999px;
  font-weight: 800;
}

.cta-band {
  color: var(--color-midnight-ink);
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 101, 179, .16), transparent 22rem),
    linear-gradient(135deg, #ffffff 0%, #e8f7fb 100%);
  border-top: 1px solid rgba(0, 101, 179, .10);
  border-bottom: 1px solid rgba(0, 101, 179, .10);
}

.cta-band h2,
.cta-band .lead,
.cta-band .eyebrow {
  color: var(--color-midnight-ink);
}

.cta-band .lead {
  color: var(--color-slate-gray);
}

.cta-actions {
  justify-content: flex-end;
}

.cta-band__phone,
.aside-phone {
  color: var(--color-vivid-cobalt);
  font-weight: 800;
  border-bottom: 0;
}

.page-hero {
  padding-top: 152px;
  padding-bottom: 96px;
  min-height: min(78svh, 760px);
  color: #ffffff;
  background-color: #042740;
  background-image:
    linear-gradient(90deg, rgba(4, 39, 64, .88) 0%, rgba(4, 39, 64, .68) 48%, rgba(4, 39, 64, .30) 100%),
    linear-gradient(180deg, rgba(4, 39, 64, .14) 0%, rgba(4, 39, 64, .38) 100%),
    var(--page-hero-image, url("../images/hero-home-generated.png"));
  background-position: center, center, center right;
  background-size: cover, cover, cover;
  border-bottom: 0;
}

.page-hero h1,
.page-hero .eyebrow {
  color: #ffffff;
}

.page-hero .lead,
.breadcrumb {
  color: rgba(255, 255, 255, .78);
}

.page-hero .lead {
  margin-inline: 0;
}

.page-hero__inner {
  max-width: 780px;
  margin-inline: 0 auto;
  text-align: left;
}

.breadcrumb {
  justify-content: flex-start;
}

.page-hero--about {
  --page-hero-image: url("../images/hero-about-generated.png");
}

.page-hero--services {
  --page-hero-image: url("../images/hero-services-generated.png");
}

.page-hero--offer {
  --page-hero-image: url("../images/hero-offer-generated.png");
}

.page-hero--contact {
  --page-hero-image: url("../images/hero-contact-generated.png");
}

.page-hero--jobs {
  --page-hero-image: url("../images/hero-jobs-generated.png");
}

.page-hero--legal {
  --page-hero-image: url("../images/hero-legal-generated.png");
}

.site-footer {
  color: var(--color-slate-gray);
  background: #ffffff;
  border-top: 1px solid rgba(0, 101, 179, .14);
}

.footer-brand .brand__name,
.footer-col h4 {
  color: var(--color-midnight-ink);
}

.footer-col a:hover,
.footer-contact a:hover {
  color: var(--color-vivid-cobalt);
}

.mobile-menu {
  color: var(--color-midnight-ink);
  background: #ffffff;
}

.home-page .site-header:not(.scrolled),
.hero-page .site-header:not(.scrolled) {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, .18);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-page .site-header:not(.scrolled) .header-inner,
.hero-page .site-header:not(.scrolled) .header-inner {
  color: #ffffff;
}

.home-page .site-header:not(.scrolled) .brand__mark,
.hero-page .site-header:not(.scrolled) .brand__mark {
  filter: none;
}

.home-page .site-header:not(.scrolled) .main-nav a,
.hero-page .site-header:not(.scrolled) .main-nav a {
  color: #ffffff;
}

.home-page .site-header:not(.scrolled) .main-nav a:hover,
.home-page .site-header:not(.scrolled) .main-nav a[aria-current="page"],
.hero-page .site-header:not(.scrolled) .main-nav a:hover,
.hero-page .site-header:not(.scrolled) .main-nav a[aria-current="page"] {
  color: #ffffff;
}

@media (max-width: 1120px) {
  .header-inner,
  .site-header.scrolled .header-inner {
    display: flex;
  }

  .main-nav ul {
    background: transparent;
    border: 0;
  }

  .hero--home .hero__grid {
    min-height: calc(100svh - 220px);
  }
}

@media (max-width: 920px) {
  .hero--home {
    background-position: 58% center;
  }

  .hero--home::before {
    background:
      linear-gradient(180deg, rgba(4, 39, 64, .84) 0%, rgba(4, 39, 64, .68) 58%, rgba(4, 39, 64, .44) 100%),
      linear-gradient(90deg, rgba(4, 39, 64, .34), rgba(4, 39, 64, .12));
  }

  .hero--home::after {
    background:
      radial-gradient(circle at 22% 24%, rgba(0, 101, 179, .24), transparent 17rem);
  }

  .proof-strip__grid,
  .value-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .header-inner,
  .site-header.scrolled .header-inner {
    min-height: 64px;
  }

  .hero--home {
    min-height: 100svh;
    padding-top: 116px;
    padding-bottom: 58px;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }

  .hero__rating {
    font-size: 13px;
    line-height: 1.35;
  }

  .hero--home .eyebrow {
    margin-top: 22px;
  }

  .hero--home .h-xl {
    font-size: clamp(38px, 10vw, 44px);
  }

  .hero__statement {
    font-size: 27px;
  }

  .hero--home .lead {
    font-size: 18px;
  }

  .hero__cta .btn,
  .cta-actions .btn,
  .cta-band__phone {
    width: 100%;
  }

  .proof-strip {
    padding-block: 22px;
  }

  .proof-strip__grid,
  .value-grid,
  .service-grid,
  .steps,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__item,
  .value-card,
  .service-card,
  .info-card,
  .step {
    border-radius: 20px;
  }

  .section {
    padding-block: 74px;
  }

  .cta-actions {
    justify-content: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .main-nav a::after {
    transition-duration: .55s !important;
  }

  .btn--primary:hover,
  .btn--dark:hover,
  .hero .btn--primary:hover,
  .cta-band .btn--primary:hover,
  .mobile-menu .btn--primary:hover {
    transition-duration: .22s !important;
  }

  .btn--primary.is-tilting,
  .btn--dark.is-tilting {
    transition-duration: .08s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Subpage hero and form refinement -------------------------------------- */
.page-hero {
  display: flex;
  align-items: center;
  min-height: min(86svh, 820px);
  padding-top: clamp(128px, 14vh, 170px);
  padding-bottom: clamp(70px, 9vh, 110px);
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(4, 39, 64, .90) 0%, rgba(4, 39, 64, .70) 48%, rgba(4, 39, 64, .30) 100%),
    radial-gradient(circle at 18% 30%, rgba(0, 101, 179, .26), transparent 20rem),
    linear-gradient(180deg, rgba(4, 39, 64, .12) 0%, rgba(4, 39, 64, .44) 100%),
    var(--page-hero-image, url("../images/hero-home-generated.png"));
  background-position: center, center, center, center right;
  background-size: cover, cover, cover, cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 39, 64, 0) 0%, rgba(4, 39, 64, .38) 100%);
}

.page-hero__inner {
  z-index: 1;
  display: grid;
  justify-items: start;
  align-content: center;
  width: 100%;
  max-width: var(--page-max-width);
  margin-inline: auto;
  text-align: left;
}

.page-hero__inner > * {
  max-width: 800px;
}

.page-hero h1 {
  max-width: 880px;
  margin: 18px 0 0;
  font-size: clamp(46px, 6.2vw, 82px);
  line-height: .96;
}

.page-hero .lead {
  max-width: 670px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 18.5px;
}

.page-hero .eyebrow {
  margin-top: 18px;
  color: #ffffff;
  font-weight: 800;
}

.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.page-hero .btn--ghost-light {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.page-hero .btn--ghost-light:hover {
  color: #ffffff;
  background: rgba(0, 101, 179, .94);
  border-color: rgba(0, 101, 179, .42);
  box-shadow: 0 18px 36px rgba(0, 101, 179, .20);
}

.breadcrumb {
  margin-bottom: 18px;
  font-weight: 700;
}

.form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border-color: rgba(0, 101, 179, .13);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(247, 251, 255, .92) 100%);
  box-shadow: 0 30px 90px rgba(0, 101, 179, .12);
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #0065b3 0%, #70ceea 100%);
}

.contact-form-card {
  max-width: 980px;
  margin-inline: auto;
}

.form-intro {
  margin-bottom: 28px;
  color: var(--color-slate-gray);
  font-weight: 600;
}

.form-intro--panel {
  margin-top: -4px;
  padding: 20px 22px;
  border: 1px solid rgba(0, 101, 179, .12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 94% 16%, rgba(0, 101, 179, .14), transparent 11rem),
    rgba(255, 255, 255, .76);
}

.form-intro--panel p {
  max-width: 68ch;
}

.form-intro__kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--color-vivid-cobalt);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.form-grid {
  gap: 20px;
}

.field {
  gap: 8px;
}

.field label {
  color: var(--color-midnight-ink);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 101, 179, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}

.field textarea {
  min-height: 136px;
  padding-block: 15px;
}

.field select {
  background-color: rgba(255, 255, 255, .92);
  background-position: right 16px center;
  padding-right: 44px;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(0, 101, 179, .30);
  background: #ffffff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(0, 101, 179, .62);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 101, 179, .12);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, .10);
}

.field-error {
  font-weight: 700;
}

.consent {
  margin-top: 4px;
  padding: 18px 20px;
  border-color: rgba(0, 101, 179, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
}

.consent input {
  width: 20px;
  height: 20px;
}

.form-status {
  padding: 16px 18px;
  color: var(--color-midnight-ink);
  border: 1px solid rgba(0, 101, 179, .18);
  border-radius: 18px;
  background: rgba(0, 101, 179, .07);
}

.form-foot {
  justify-content: space-between;
  padding-top: 4px;
}

.form-note {
  font-weight: 700;
}

@media (min-width: 1180px) {
  .page-hero__inner {
    transform: translateX(-18px);
  }
}

@media (max-width: 920px) {
  .page-hero {
    min-height: min(78svh, 700px);
    background-image:
      linear-gradient(180deg, rgba(4, 39, 64, .86) 0%, rgba(4, 39, 64, .70) 56%, rgba(4, 39, 64, .46) 100%),
      radial-gradient(circle at 22% 26%, rgba(0, 101, 179, .24), transparent 17rem),
      var(--page-hero-image, url("../images/hero-home-generated.png"));
    background-position: center, center, center;
  }

  .page-hero__inner {
    transform: none;
  }
}

@media (max-width: 680px) {
  .page-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 68px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1;
  }

  .page-hero .lead {
    font-size: 17px;
  }

  .page-hero__cta,
  .page-hero__cta .btn {
    width: 100%;
  }

  .form-card {
    padding: 24px;
    border-radius: 24px;
  }

  .form-grid {
    gap: 16px;
  }

  .form-intro--panel,
  .consent,
  .form-status,
  .field input,
  .field select,
  .field textarea {
    border-radius: 16px;
  }

  .form-foot .btn {
    width: 100%;
  }
}

/* Mobile-first polish --------------------------------------------------- */
.burger {
  width: 44px;
  height: 44px;
  display: none;
  flex: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

.burger span {
  position: static;
  display: block;
  width: 24px;
  height: 2px;
  flex: none;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .25s var(--ease), background-color .25s var(--ease);
}

.burger.active span:nth-child(1),
body.menu-open .burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2),
body.menu-open .burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3),
body.menu-open .burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.menu-open .site-header,
body.menu-open.home-page .site-header:not(.scrolled),
body.menu-open.hero-page .site-header:not(.scrolled) {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: rgba(0, 101, 179, .12);
  box-shadow: 0 12px 34px rgba(0, 101, 179, .08);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

body.menu-open .site-header .header-inner,
body.menu-open.home-page .site-header:not(.scrolled) .header-inner,
body.menu-open.hero-page .site-header:not(.scrolled) .header-inner {
  color: var(--color-midnight-ink);
}

body.menu-open .site-header .brand__mark {
  filter: none !important;
}

body.menu-open .burger span {
  background: var(--color-midnight-ink);
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(4, 39, 64, .28);
  opacity: 1;
  animation: menuScrimIn .28s var(--ease) both;
}

@keyframes menuScrimIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1120px) {
  .burger {
    display: inline-flex;
    color: currentColor;
  }

  .mobile-menu {
    inset: 0 0 auto;
    top: 0;
    z-index: 99;
    display: block;
    height: auto;
    max-height: calc(100svh - 72px);
    margin-top: 72px;
    padding: 8px 24px 24px;
    color: var(--color-midnight-ink);
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 101, 179, .12);
    box-shadow: 0 28px 70px rgba(4, 39, 64, .14);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .35s var(--ease), visibility 0s linear .35s;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.menu-open .mobile-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .35s var(--ease), visibility 0s;
  }

  .mobile-menu a.m-link {
    min-height: 54px;
    padding: 15px 0;
    color: var(--color-midnight-ink);
    border-bottom: 1px solid rgba(0, 101, 179, .12);
    font-size: clamp(22px, 6vw, 30px);
    font-weight: 800;
    line-height: 1.12;
  }

  .mobile-menu a.m-link::after {
    content: "→";
    font-size: .7em;
    color: var(--color-vivid-cobalt);
    transform: translateX(0);
    transition: transform .22s var(--ease);
  }

  .mobile-menu a.m-link:hover::after {
    transform: translateX(4px);
  }

  .mobile-menu a.m-link[aria-current="page"] {
    color: var(--color-vivid-cobalt);
  }

  .mobile-menu .m-actions {
    gap: 12px;
    margin-top: 20px;
  }

  .mobile-menu .btn {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-y: 72px;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 16px;
    line-height: 1.55;
  }

  .container {
    max-width: none;
    padding-inline: clamp(18px, 5vw, 28px);
  }

  .header-inner,
  .site-header.scrolled .header-inner {
    min-height: 72px;
    padding: 10px clamp(18px, 5vw, 28px);
  }

  .brand__mark {
    width: 50px;
    height: 50px;
  }

  .home-page .site-header:not(.scrolled) .burger,
  .hero-page .site-header:not(.scrolled) .burger {
    color: #ffffff;
  }

  .site-header.scrolled .burger,
  body.menu-open .burger {
    color: var(--color-midnight-ink);
  }

  .hero--home {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 54px;
    background-position: 58% center;
  }

  .hero--home .hero__grid {
    min-height: min(620px, calc(100svh - 160px));
    align-items: center;
  }

  .hero--home .hero__content {
    max-width: 680px;
    padding-bottom: 10px;
  }

  .hero__rating {
    max-width: 100%;
    padding: 8px 12px;
    font-size: 12.5px;
  }

  .hero--home .h-xl {
    max-width: 100%;
    margin-top: 20px;
    font-size: clamp(30px, 8.4vw, 48px);
    line-height: 1.04;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .hero__statement {
    max-width: 100%;
    margin-top: 16px;
    font-size: clamp(18px, 5.6vw, 23px);
    font-weight: 600;
    line-height: 1.3;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero--home .lead,
  .page-hero .lead {
    max-width: 34rem;
    font-size: 16.5px;
    line-height: 1.55;
  }

  .hero--home .lead {
    margin-top: 32px;
  }

  .hero--home .hero__cta {
    margin-top: 44px;
  }

  .hero__cta,
  .page-hero__cta,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 390px;
    gap: 12px;
  }

  .hero__cta .btn,
  .page-hero__cta .btn,
  .cta-actions .btn,
  .cta-band__phone {
    width: 100%;
    min-height: 52px;
  }

  .page-hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 62px;
    background-position: center, center, center;
  }

  .page-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(38px, 11.5vw, 56px);
    line-height: 1;
  }

  .breadcrumb {
    display: none;
  }

  .section {
    padding-block: var(--section-y);
  }

  .section-head,
  .section-head--left {
    max-width: 100%;
    margin-bottom: 32px;
    text-align: left;
  }

  .eyebrow--center {
    justify-content: flex-start;
  }

  .h-l {
    font-size: clamp(32px, 9vw, 44px);
  }

  .h-m {
    font-size: clamp(28px, 7.5vw, 38px);
  }

  .proof-strip {
    padding-block: 20px;
  }

  .proof-strip__grid,
  .value-grid,
  .value-grid[style],
  .service-grid,
  .steps,
  .info-grid,
  .form-grid,
  .form-layout,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .proof-strip__grid {
    gap: 10px;
  }

  .proof-strip__item {
    padding: 16px 18px;
  }

  .value-card,
  .service-card,
  .info-card,
  .step {
    min-height: 0;
    padding: 24px;
    border-radius: 20px;
  }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .split__media img,
  .split__media--frame img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }

  .split__badge {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 14px 16px;
    border-radius: 16px;
  }

  .check-list {
    gap: 10px;
  }

  .check-list li {
    padding: 11px 12px;
    border-radius: 14px;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-actions {
    justify-content: stretch;
  }

  .form-card {
    padding: 24px;
    border-radius: 24px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 52px;
    font-size: 16px;
  }

  .form-foot {
    display: grid;
    justify-items: start;
  }

  .aside-card {
    position: static;
  }

  .map-frame iframe,
  .map-frame {
    min-height: 320px;
  }

  .site-footer {
    padding-top: 54px;
  }

  .footer-grid {
    gap: 30px;
    padding-bottom: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-inline: 18px;
  }

  .header-inner,
  .site-header.scrolled .header-inner {
    max-width: none;
    min-height: 66px;
    padding-inline: 18px;
  }

  .mobile-menu {
    max-height: calc(100svh - 66px);
    margin-top: 66px;
    padding-inline: 18px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .hero--home {
    padding-top: 104px;
    padding-bottom: 46px;
  }

  .hero--home .hero__grid {
    min-height: min(600px, calc(100svh - 170px));
  }

  .hero--home .lead,
  .page-hero .lead {
    font-size: 16px;
  }

  .hero__cta,
  .page-hero__cta,
  .cta-actions {
    max-width: none;
  }

  .page-hero {
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .page-hero h1 {
    max-width: 11ch;
    font-size: clamp(34px, 10.8vw, 44px);
  }

  .section {
    padding-block: 58px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .value-card,
  .service-card,
  .info-card,
  .step,
  .form-card,
  .aside-card {
    border-radius: 18px;
  }

  .value-card,
  .service-card,
  .info-card,
  .step {
    padding: 22px;
  }

  .form-card {
    padding: 20px;
  }

  .form-intro--panel {
    padding: 16px;
  }

  .consent {
    padding: 16px;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .hero--home .h-xl {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .mobile-menu a.m-link {
    min-height: 50px;
    font-size: 21px;
  }
}

