:root {
  --midnight-dark: #05142b;
  --midnight: #132662;
  --logo-midnight: #213162;
  --azure: #005fff;
  --azure-soft: #d6e5ff;
  --teal-neon: #3ce4ff;
  --teal: #59d1c7;
  --raspberry: #d91c59;
  --ink: #14213d;
  --muted: #657089;
  --line: #dce3ef;
  --surface: #f6f9fd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 20, 43, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  hyphens: none;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

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

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

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

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

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(19, 38, 98, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  padding: 5px 0;
}

.brand img {
  width: 160px;
  max-height: 54px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  color: var(--midnight);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--midnight-dark);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--azure);
}

.site-nav .nav-cta {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--midnight);
  border-radius: 999px;
  color: var(--midnight);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  background: var(--midnight);
  color: var(--white);
}

.site-nav .nav-cta.active::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(19, 38, 98, 0.14);
  border-radius: 50%;
  background: var(--white);
  color: var(--midnight);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--midnight-dark);
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 28%, rgba(60, 228, 255, 0.55), transparent 24%),
    radial-gradient(circle at 82% 42%, rgba(217, 28, 89, 0.42), transparent 22%),
    linear-gradient(90deg, rgba(5, 20, 43, 0.92) 0%, rgba(5, 20, 43, 0.7) 42%, rgba(5, 20, 43, 0.12) 100%);
}

.hero::after,
.page-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  width: clamp(760px, 82vw, 1280px);
  aspect-ratio: 64 / 49;
  right: clamp(-560px, -30vw, -190px);
  top: 50%;
  transform: translateY(-50%);
  background: url("assets/brand/circle.svg") center / contain no-repeat;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.page-hero::after,
.contact-hero::after {
  opacity: 0.82;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 160px 0 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-neon);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  color: var(--midnight-dark);
  line-height: 0.98;
  letter-spacing: 0;
  hyphens: none;
  overflow-wrap: normal;
  word-break: keep-all;
}

.title-accent {
  color: var(--azure);
}

.hero .title-accent,
.numbers .title-accent,
.case-route .title-accent,
.cta-band .title-accent {
  color: var(--teal-neon);
}

.hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--teal-neon);
  color: var(--midnight-dark);
}

.button.primary:hover {
  background: var(--white);
}

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

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

.intro-grid,
.split,
.pilot-grid,
.contact-grid,
.contact-layout,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.split-copy h2,
.pilot-copy h2,
.page-hero h1,
.contact-hero h1,
.contact-aside h2 {
  font-size: clamp(2.3rem, 5vw, 5.4rem);
  font-weight: 800;
}

.intro-text {
  font-size: 1.08rem;
  color: var(--muted);
}

.statement {
  margin: 24px 0 0;
  color: var(--midnight);
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
}

.numbers {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--midnight-dark) 0%, #081a3a 58%, var(--midnight) 100%);
  color: var(--white);
}

.numbers h2,
.numbers .metric strong {
  color: var(--white);
}

.numbers::before {
  content: "";
  position: absolute;
  width: clamp(820px, 78vw, 1280px);
  aspect-ratio: 64 / 49;
  left: clamp(-570px, -29vw, -250px);
  top: clamp(-230px, -12vw, -120px);
  background: url("assets/brand/circle.svg") center / contain no-repeat;
  opacity: 0.72;
}

.numbers::after {
  content: "";
  position: absolute;
  width: clamp(620px, 52vw, 900px);
  aspect-ratio: 64 / 49;
  right: clamp(-430px, -20vw, -170px);
  bottom: clamp(-210px, -12vw, -130px);
  background: url("assets/brand/circle.svg") center / contain no-repeat;
  opacity: 0.34;
}

.numbers-inner {
  position: relative;
  z-index: 1;
}

.numbers-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: 42px;
}

.numbers-intro h2 {
  max-width: 780px;
  font-size: clamp(2.6rem, 4.8vw, 5.2rem);
  font-weight: 800;
}

.numbers-intro > p {
  margin: 0 0 8px;
  padding: 22px 0 22px 28px;
  border-left: 3px solid var(--teal-neon);
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  font-weight: 500;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.metric > * {
  position: relative;
  z-index: 1;
}

.metric::after {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 64 / 49;
  right: -112px;
  top: -56px;
  background: url("assets/brand/circle.svg") center / contain no-repeat;
  opacity: 0.28;
}

.metric-featured {
  background:
    radial-gradient(circle at 92% 12%, rgba(60, 228, 255, 0.26), transparent 34%),
    rgba(0, 95, 255, 0.18);
  border-color: rgba(60, 228, 255, 0.32);
}

.metric strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(2.6rem, 5.2vw, 5.3rem);
  line-height: 0.95;
}

.metric > span:not(.metric-icon) {
  display: block;
  max-width: 190px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 800;
}

.metric-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.metric-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--teal-neon);
}

.metric-icon svg,
.service-icon svg,
.case-stat-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-section {
  background: var(--surface);
}

.split {
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal-neon);
  box-shadow: 0 0 0 5px rgba(60, 228, 255, 0.15);
}

.sector-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.sector-cloud span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--midnight);
  font-size: 0.82rem;
  font-weight: 800;
}

.case-route {
  position: relative;
  overflow: hidden;
  background: var(--midnight);
  color: var(--white);
}

.case-route.section-pad {
  padding: 74px 0;
}

.case-route::after {
  content: "";
  position: absolute;
  width: clamp(720px, 72vw, 1180px);
  aspect-ratio: 64 / 49;
  right: clamp(-580px, -32vw, -220px);
  top: 50%;
  transform: translateY(-50%);
  background: url("assets/brand/circle.svg") center / contain no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

.case-route-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.case-route h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.25rem, 3.8vw, 4.5rem);
  font-weight: 800;
}

.case-route-copy p:not(.eyebrow) {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.case-route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.case-route-links a {
  min-height: 58px;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.case-route-links a:hover {
  border-color: rgba(60, 228, 255, 0.5);
  background: rgba(0, 95, 255, 0.28);
}

.case-route-links span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(60, 228, 255, 0.14);
  color: var(--teal-neon);
}

.case-route-links svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-route-links strong {
  color: var(--white);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1rem;
}

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

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

.pillar,
.service-card,
.case-card,
.contact-panel,
.contact-form,
.contact-aside,
.pilot-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(5, 20, 43, 0.06);
}

.pillar {
  padding: 30px;
}

.pillar-icon,
.service-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--azure-soft);
  color: var(--azure);
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
}

.pillar h3,
.service-card h2,
.difference-list h3,
.case-card h2,
.pilot-columns h3 {
  margin-top: 26px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.pillar p,
.service-card p,
.difference-list p,
.case-card p,
.pilot-columns p {
  color: var(--muted);
}

.certification-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.certification-strip p {
  max-width: 520px;
  margin: 0;
  color: var(--midnight);
  font-weight: 800;
}

.certification-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.certification-strip span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--azure);
  font-size: 0.78rem;
  font-weight: 800;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background: var(--midnight);
  color: var(--white);
}

.cta-band h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 6.2rem);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  column-gap: clamp(32px, 8vw, 120px);
  row-gap: 0;
  align-items: end;
}

.cta-content .eyebrow,
.cta-content h2 {
  grid-column: 1;
}

.cta-content .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: end;
}

.site-footer {
  padding: 36px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid img {
  width: 170px;
}

.footer-grid p {
  margin: 0 0 4px;
  color: var(--midnight);
  font-weight: 800;
}

.footer-grid a {
  color: var(--azure);
  font-weight: 700;
}

.page-hero,
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 164px 0 88px;
  background:
    radial-gradient(circle at 82% 20%, rgba(60, 228, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--midnight-dark), var(--midnight));
  color: var(--white);
}

.page-hero h1,
.contact-hero h1 {
  color: var(--white);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
}

.page-hero p:not(.eyebrow),
.contact-hero p:not(.eyebrow) {
  max-width: 650px;
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.13rem;
}

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

.service-card strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--azure);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.04rem;
}

.pilot {
  overflow: hidden;
  background: var(--surface);
}

.pilot-grid {
  align-items: center;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--midnight);
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--midnight);
  font-weight: 800;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--azure);
}

.pilot-panel {
  overflow: hidden;
}

.pilot-panel > img {
  width: 100%;
  min-height: 230px;
  object-fit: cover;
  background: var(--midnight-dark);
}

.pilot-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.pilot-columns > div {
  padding: 24px;
  background: var(--white);
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.difference-list article {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
}

.difference-list h3 {
  color: var(--azure);
}

.difference-list article:nth-child(2) h3,
.difference-list article:nth-child(5) h3 {
  color: var(--midnight);
}

.difference-list article:nth-child(3) h3,
.difference-list article:nth-child(6) h3 {
  color: var(--teal);
}

.execution-strip {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--midnight-dark);
  color: var(--white);
}

.execution-strip > * {
  margin: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.execution-strip p {
  color: var(--teal-neon);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.execution-strip strong,
.execution-strip span {
  display: block;
}

.execution-strip strong {
  color: var(--white);
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.execution-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.case-filters button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--midnight);
  font-weight: 800;
  cursor: pointer;
}

.case-filters button.active,
.case-filters button:hover {
  background: var(--midnight);
  color: var(--white);
}

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

.case-card {
  overflow: hidden;
}

.case-card[hidden] {
  display: none;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface);
}

.case-visual {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  aspect-ratio: 16 / 10;
  padding: 8px;
  background:
    linear-gradient(145deg, rgba(5, 20, 43, 0.96), rgba(19, 38, 98, 0.9));
  overflow: hidden;
}

.case-card .case-visual img {
  width: 100%;
  height: 100%;
  min-width: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  background: var(--midnight-dark);
}

.case-card > div {
  padding: 24px;
}

.case-client {
  margin: 0 0 8px;
  color: var(--azure);
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0 0;
}

.case-card dl div {
  min-width: 0;
  padding-top: 12px;
  border-top: 2px solid var(--teal);
}

.case-stat-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--azure-soft);
  color: var(--azure);
}

.case-stat-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.case-card dt {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--midnight);
}

.case-card dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-hero {
  min-height: 68vh;
  display: grid;
  align-items: end;
}

.contact-grid {
  position: relative;
  z-index: 1;
  align-items: end;
}

.contact-panel {
  padding: 34px;
  color: var(--midnight-dark);
}

.contact-panel span {
  color: var(--azure);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel a {
  display: block;
  margin: 14px 0 20px;
  color: var(--midnight);
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  word-break: break-word;
}

.contact-panel p {
  color: var(--muted);
}

.contact-section {
  background: var(--surface);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--midnight);
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 13px 14px;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-aside {
  padding: 34px;
}

@media (max-width: 1020px) {
  .metric-grid,
  .case-grid,
  .service-grid,
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding: 12px 20px;
  }

  .brand img {
    width: 158px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    border-top: 1px solid rgba(19, 38, 98, 0.08);
    background: rgba(255, 255, 255, 0.97);
  }

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

  .site-nav a {
    min-height: 46px;
    justify-content: flex-start;
    border-radius: 0;
  }

  .site-nav a.active::after {
    left: 0;
    right: auto;
    width: 28px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
    margin-top: 8px;
    border-radius: 999px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding: 130px 0 72px;
  }

  .intro-grid,
  .split,
  .pilot-grid,
  .case-route-grid,
  .contact-grid,
  .contact-layout,
  .page-hero-grid,
  .numbers-intro {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 70px 0;
  }

  .page-hero,
  .contact-hero {
    padding: 132px 0 70px;
  }

  .cta-content,
  .footer-grid {
    align-items: flex-start;
  }

  .footer-grid {
    flex-direction: column;
  }

  .cta-content {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .cta-content .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .case-grid,
  .service-grid,
  .pillar-grid,
  .metric-grid,
  .difference-list,
  .case-route-links,
  .execution-strip,
  .pilot-columns {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 128px;
  }

  .numbers-intro > p {
    padding: 0 0 0 20px;
  }

  .certification-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .certification-strip div {
    justify-content: flex-start;
  }

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

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }

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

  .case-card dl {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .contact-form,
  .contact-aside,
  .pillar,
  .service-card,
  .case-card > div {
    padding: 22px;
  }
}
