
@font-face {
  font-family: "Inter";
  src: url("./fonts/inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/inter/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/inter/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/inter/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/inter/Inter-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #004A83;
  --brand-2: #0B65AD;
  --accent: #FF3C22;
  --violet: #7C3AED;
  --cyan: #06B6D4;
  --green: #16A34A;
  --amber: #F59E0B;
  --ink: #101828;
  --ink-2: #25364B;
  --muted: #667085;
  --line: #E3EAF2;
  --line-strong: #CFD9E6;
  --surface: #FFFFFF;
  --surface-soft: #F7FAFE;
  --surface-blue: #EEF7FF;
  --shadow-soft: 0 18px 50px rgba(16, 24, 40, .08);
  --shadow-card: 0 22px 70px rgba(0, 74, 131, .12);
  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 9px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FB 55%, #FFFFFF 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .25;
  background-image:
    linear-gradient(rgba(0, 74, 131, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 74, 131, .025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

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

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 999;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(227, 234, 242, .75);
  background: rgba(255, 255, 255, .83);
  backdrop-filter: saturate(170%) blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 8px 0;
}

.logo-link img {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  font-size: 14px;
  color: #344054;
}

.nav-links a {
  display: inline-block;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  padding: 9px 13px;
  border-radius: 999px;
}
.nav-links span {
  display: inline-block;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  padding: 9px 13px;
  border-radius: 999px;
}
.nav-links a:hover {
  color: var(--brand);
  background: #F2F7FC;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--brand);
  background: var(--brand);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 74, 131, .16);
}
.nav-mail:hover {
  color: #fff;
  border-color: var(--brand-2);
  background: var(--brand-2);
}
.nav-mail:focus-visible {
  outline: 3px solid rgba(255, 60, 34, .35);
  outline-offset: 3px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 99px;
}

.hero {
  position: relative;
  padding: 96px 0 76px;
  overflow: hidden;
}

.hero-grid {
  display: block;
  max-width: 1120px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid rgba(0, 74, 131, .15);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 28px rgba(16, 24, 40, .06);
  padding: 8px 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .01em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  box-shadow: 0 0 0 5px rgba(255, 60, 34, .12);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.045em;
}

h1 {
  margin-top: 22px;
  max-width: 1120px;
  font-size: clamp(46px, 6.25vw, 84px);
  color: #0B1F33;
}

.hero h1 {
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(90deg, var(--brand) 0%, var(--violet) 54%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.typewriter-slot {
  display: inline-grid;
  min-width: 6.2em;
  text-align: left;
  white-space: nowrap;
}

.typewriter-slot > * {
  grid-area: 1 / 1;
}

.typewriter-measure {
  visibility: hidden;
}

.typewriter-word {
  display: inline;
}

.typewriter-caret {
  display: inline-block;
  width: .08em;
  height: .82em;
  margin-left: .07em;
  background: var(--accent);
  transform: translateY(.08em);
  animation: caret-blink 1.1s steps(2, start) infinite;
}

@keyframes caret-blink {
  50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .typewriter-caret {
    display: none;
    animation: none;
  }
}

@media (min-width: 1041px) {
  .hero h1 .gradient-text {
    white-space: nowrap;
  }
}

.lead {
  margin: 24px 0 0;
  max-width: 700px;
  color: #475467;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.hero .lead {
  max-width: 820px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 850;
  font-size: 15px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover { transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(135deg, var(--brand), #0A64B4 45%, var(--violet));
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 74, 131, .24);
}
.button.primary:hover { color: #fff; box-shadow: 0 22px 55px rgba(0, 74, 131, .30); }
.button.secondary {
  background: #fff;
  color: #182B44;
  border-color: var(--line-strong);
  box-shadow: 0 14px 32px rgba(16, 24, 40, .07);
}

.contact-card .button.primary[type="submit"] {
  min-height: auto;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(0, 74, 131, .16);
  padding: 10px 16px;
}
.contact-card .button.primary[type="submit"]:hover {
  color: #fff;
  border-color: var(--brand-2);
  background: var(--brand-2);
  box-shadow: 0 10px 24px rgba(0, 74, 131, .18);
}
.contact-card .button.primary[type="submit"]:focus-visible {
  outline: 3px solid rgba(255, 60, 34, .35);
  outline-offset: 3px;
}

.hero-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  max-width: 780px;
  margin-inline: auto;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(207, 217, 230, .9);
  background: rgba(255, 255, 255, .72);
  border-radius: 999px;
  padding: 9px 12px;
  color: #344054;
  font-weight: 760;
  font-size: 13px;
}

.chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--brand);
}
.chip:nth-child(2) .chip-dot { background: var(--accent); }
.chip:nth-child(3) .chip-dot { background: var(--violet); }
.chip:nth-child(4) .chip-dot { background: var(--cyan); }
.chip:nth-child(5) .chip-dot { background: var(--green); }

.audience-strip {
  padding: 26px 0 74px;
}

.audience-box {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  border-radius: 13px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, .05);
  padding: 18px;
}

.audience-label {
  color: var(--muted);
  font-weight: 850;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-left: 8px;
}

.audience-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.audience-items span {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: #344054;
  font-weight: 780;
  font-size: 14px;
}

section { padding: 84px 0; }

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-weight: 850;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.section-heading h2 {
  color: #0B1F33;
  font-size: clamp(34px, 4.4vw, 58px);
  max-width: 760px;
}
.section-heading p {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 16px;
}

.products {
  background:
    radial-gradient(circle at 20% 14%, rgba(6, 182, 212, .045), transparent 22rem),
    radial-gradient(circle at 84% 22%, rgba(255, 60, 34, .04), transparent 22rem);
}

.products .section-heading {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: end;
}

.products .section-heading > div {
  grid-column: span 8;
}

.products .section-heading > p {
  grid-column: span 4;
  max-width: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card.wide { grid-column: span 8; }

.product-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--card-color, var(--brand));
  box-shadow: 0 18px 35px color-mix(in srgb, var(--card-color, var(--brand)) 28%, transparent);
}

.product-card h3 {
  position: relative;
  z-index: 1;
  color: #0B1F33;
  font-size: 26px;
  margin-top: 24px;
}
.product-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 560px;
}
.tag-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 22px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: #344054;
  border-radius: 0;
  padding: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 1px;
  background: var(--brand);
}

.capability-band {
  padding: 0 0 84px;
}

.band-card {
  overflow: hidden;
  border-radius: 17px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255,60,34,.18), transparent 18rem),
    radial-gradient(circle at 82% 14%, rgba(124,58,237,.16), transparent 21rem),
    linear-gradient(135deg, #062947, #0B3864 48%, #0B1F33);
  color: #fff;
  box-shadow: 0 26px 80px rgba(0, 41, 75, .22);
  padding: 34px;
}

.band-grid {
  display: grid;
  grid-template-columns: .8fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.band-card h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}
.band-card p {
  color: #C9DCEC;
  margin: 18px 0 0;
  max-width: 500px;
}
.stats-bar {
  padding: 28px 34px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.stat-item {
  position: relative;
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 4px 26px 4px 0;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,.16);
  padding-left: 28px;
}
.stat-item::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: none;
  margin-bottom: 16px;
}
.stat-item strong {
  display: block;
  color: #fff;
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 850;
  line-height: 1;
}
.stat-item span {
  display: block;
  color: #B9D7EC;
  margin-top: 9px;
  font-size: 15px;
  font-weight: 650;
}
.mini-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mini-point {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 18px;
}
.mini-point strong {
  display: block;
  font-size: 16px;
  letter-spacing: -.01em;
}
.mini-point span {
  display: block;
  color: #B9D7EC;
  margin-top: 6px;
  font-size: 13px;
}

.network-section {
  background: linear-gradient(180deg, #fff, #F6FAFF 55%, #fff);
  border-block: 1px solid rgba(227,234,242,.74);
}

.network-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.map-card, .contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.map-card {
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,60,34,.09), transparent 17rem),
    radial-gradient(circle at 85% 18%, rgba(6,182,212,.10), transparent 18rem),
    #fff;
}

.map-shell {
  min-height: 510px;
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238,247,255,.78), rgba(255,255,255,.86)),
    #F9FCFF;
  border: 1px solid var(--line);
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.map-shell.uploaded-map-shell {
  min-height: 0;
}

.contact-section {
  background:
    radial-gradient(circle at 10% 22%, rgba(124,58,237,.045), transparent 24rem),
    radial-gradient(circle at 86% 42%, rgba(255,60,34,.035), transparent 26rem);
}

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

.contact-copy h2 {
  color: #0B1F33;
  font-size: clamp(34px, 4.6vw, 58px);
}
.contact-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -110px;
  top: -110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,74,131,.13), transparent 65%);
}
.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label {
  color: #24364B;
  font-weight: 850;
  font-size: 13px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #CCD8E5;
  background: #fff;
  color: var(--ink);
  min-height: 49px;
  border-radius: 8px;
  padding: 12px 13px;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
textarea {
  min-height: 136px;
  resize: vertical;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0,74,131,.10);
}
.form-note {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 13px;
  margin: 15px 0 0;
}
.form-status {
  color: var(--brand);
  font-weight: 850;
  font-size: 14px;
  min-height: 21px;
}
.submit-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.page-hero {
  padding: 64px 0 30px;
}
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 5vw, 70px);
}
.page-hero p {
  max-width: 720px;
  color: var(--muted);
  margin: 18px 0 0;
  font-size: 18px;
}

.legal-page {
  padding: 36px 0 84px;
}
.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, .66fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.legal-summary, .legal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.legal-summary {
  position: sticky;
  top: 100px;
  padding: 24px;
}
.legal-summary h2, .legal-content h2 {
  color: #0B1F33;
  font-size: 26px;
  margin-bottom: 16px;
}
.legal-summary p, .legal-content p, .legal-content li {
  color: var(--muted);
}
.legal-summary p { margin: 0 0 14px; }
.legal-summary strong, .legal-content strong {
  color: #0B1F33;
}
.legal-content {
  padding: 30px;
}
.legal-content h3 {
  color: #0B1F33;
  font-size: 20px;
  margin: 28px 0 10px;
  letter-spacing: -.02em;
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0 0 16px 20px; padding: 0; }
.legal-content li { margin: 6px 0; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #344054;
}
.footer-links a {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.consent-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 50px rgba(16, 24, 40, .12);
  padding: 16px 18px;
}

.consent-bar[hidden] {
  display: none;
}

.consent-copy {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.consent-copy strong {
  color: #0B1F33;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.consent-copy a {
  color: var(--brand);
  font-weight: 700;
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.consent-button {
  min-height: 40px;
  border-radius: 8px;
  padding: 9px 13px;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.consent-button.primary {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
}

.consent-button.primary:hover {
  border-color: var(--brand-2);
  background: var(--brand-2);
}

.consent-button.secondary {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #344054;
}

.consent-button.secondary:hover {
  color: var(--brand);
  border-color: rgba(0, 74, 131, .35);
}

@media (max-width: 1040px) {
  .band-grid,
  .network-layout,
  .contact-grid,
  .legal-shell {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat-item {
    padding: 20px 28px 20px 0;
  }
  .stat-item + .stat-item {
    border-left: 0;
    padding-left: 0;
  }
  .stat-item:nth-child(even) {
    border-left: 1px solid rgba(255,255,255,.16);
    padding-left: 28px;
  }
  .stat-item:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .product-card,
  .product-card.wide { grid-column: span 6; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 14px; }
  .products .section-heading { display: block; }
  .legal-summary { position: static; }
  .audience-box { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 68px; }
  .logo-link img { width: 166px; }
  .nav-links, .nav-mail { display: none; }
  .menu-button { display: inline-block; }

  .site-header[data-open="true"] .nav-links {
    display: grid;
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    padding: 12px;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow-card);
  }
  .site-header[data-open="true"] .nav-links a,
  .site-header[data-open="true"] .nav-links span {
    padding: 12px;
  }

  .hero { padding: 52px 0 42px; }
  .mini-points,
  .form-grid { grid-template-columns: 1fr; }
  .product-card,
  .product-card.wide { grid-column: 1 / -1; min-height: auto; }
  .audience-strip { padding-bottom: 54px; }
  section { padding: 60px 0; }
  .capability-band { padding-bottom: 60px; }
  .map-shell { min-height: 390px; }
  .footer-inner { display: grid; }
  .legal-content, .legal-summary { padding: 22px; }
  .consent-bar {
    display: grid;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .consent-actions {
    justify-content: stretch;
  }
  .consent-button {
    flex: 1;
  }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(42px, 12vw, 56px); }
  .lead { font-size: 17px; }
  .button { width: 100%; }
  .hero-actions { align-items: stretch; }
  .product-card { padding: 22px; border-radius: 13px; }
  .band-card { padding: 24px; border-radius: 13px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item,
  .stat-item:nth-child(even) {
    border-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .stat-item:nth-child(n+2) {
    border-top: 1px solid rgba(255,255,255,.16);
  }
}

.contact-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  max-width: 560px;
}
.contact-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  color: #344054;
  font-size: 13px;
  font-weight: 850;
  padding: 9px 12px;
}
.contact-benefits span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.form-note a {
  color: var(--brand);
  font-weight: 850;
}
