@font-face {
  font-family: "Hellix";
  src: url("/fonts/Hellix-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellix";
  src: url("/fonts/Hellix-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellix";
  src: url("/fonts/Hellix-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellix";
  src: url("/fonts/Hellix-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellix";
  src: url("/fonts/Hellix-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #050608;
  --ink-soft: #0b0d11;
  --panel: #101319;
  --panel-2: #151922;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --white: #f8f9fb;
  --muted: #a9b0bd;
  --muted-2: #777f8c;
  --red: #e62931;
  --red-bright: #ff3d46;
  --red-dark: #a70e18;
  --green: #47d7a0;
  --max: 1220px;
  --radius: 22px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 3%, rgba(230, 41, 49, 0.11), transparent 28%),
    var(--ink);
  color: var(--white);
  font-family: "Hellix", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

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

::selection {
  background: var(--red);
  color: white;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 10px;
  background: white;
  color: black;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(5, 6, 8, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(5, 6, 8, 0.92);
}

.nav-shell {
  width: min(calc(100% - 48px), 1360px);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 0 0 5px rgba(230, 41, 49, 0.09);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.brand-name {
  font-size: 15px;
  letter-spacing: 0.1px;
}

.brand-name::after {
  content: ".";
  color: var(--red-bright);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links > a:not(.button) {
  position: relative;
  color: #c8cdd5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--red);
  transition: right 0.2s ease;
}

.nav-links > a:not(.button):hover,
.nav-links > a:not(.button):focus-visible {
  color: white;
}

.nav-links > a:not(.button):hover::after,
.nav-links > a:not(.button):focus-visible::after {
  right: 0;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--red-bright), #c7121d);
  color: white;
  box-shadow: 0 12px 32px rgba(230, 41, 49, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #ff5058, var(--red));
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: white;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.button-small {
  min-height: 42px;
  padding-inline: 19px;
  border-radius: 10px;
}

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

.section {
  position: relative;
  padding: 120px 0;
}

.section-tight {
  padding: 86px 0;
}

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

.section-header {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.display-title,
.section-title {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -2px;
}

.display-title {
  max-width: 720px;
  font-size: clamp(58px, 6.6vw, 104px);
  font-weight: 800;
}

.display-title .accent,
.section-title .accent {
  color: var(--red);
}

.section-title {
  font-size: clamp(42px, 4.8vw, 70px);
  font-weight: 700;
}

.section-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero {
  min-height: 860px;
  padding: 166px 0 80px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: 58px;
  align-items: center;
}

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

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c2c8d2;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.7;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.proof-number {
  display: block;
  color: var(--white);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.7px;
}

.proof-label {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -2;
  border-radius: 50%;
}

.hero-visual::before {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(230, 41, 49, 0.18), transparent 66%);
  filter: blur(10px);
}

.hero-visual::after {
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.015),
    0 0 0 84px rgba(255, 255, 255, 0.01);
}

.map-frame {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 1 / 1;
  padding: 34px;
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(230, 41, 49, 0.06), transparent 52%),
    repeating-radial-gradient(circle at center, transparent 0 49px, rgba(255, 255, 255, 0.04) 50px 51px);
}

.namibia-map {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 20px 55px rgba(230, 41, 49, 0.18));
}

.map-outline {
  fill: rgba(230, 41, 49, 0.075);
  stroke: rgba(255, 82, 90, 0.82);
  stroke-width: 2.2;
  stroke-linejoin: round;
}

.map-inner {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.map-link {
  fill: none;
  stroke: rgba(255, 75, 84, 0.32);
  stroke-width: 1.6;
  stroke-dasharray: 5 8;
}

.map-node {
  fill: var(--red-bright);
  filter: drop-shadow(0 0 7px var(--red));
}

.map-node-ring {
  fill: none;
  stroke: rgba(255, 82, 90, 0.5);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: pulse-ring 2.8s ease-out infinite;
}

.map-scan {
  fill: url("#scanGradient");
  opacity: 0.5;
  animation: scan 5s ease-in-out infinite;
}

.visual-label {
  position: absolute;
  z-index: 3;
  min-width: 170px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(12, 15, 20, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.visual-label strong {
  display: block;
  font-size: 13px;
}

.visual-label span {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 10px;
}

.visual-label::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 12px rgba(255, 61, 70, 0.75);
}

.label-one {
  top: 0;
  right: 0;
}

.label-two {
  left: -10px;
  bottom: 0;
}

.trust-bar {
  position: relative;
  z-index: 5;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.trust-inner {
  min-height: 102px;
  display: grid;
  grid-template-columns: 1.1fr repeat(6, auto);
  align-items: center;
  gap: 26px;
}

.trust-intro {
  color: var(--muted);
  font-size: 13px;
}

.trust-badge {
  min-width: 94px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d5d9df;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
}

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

.service-group {
  position: relative;
  min-height: 510px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.045), transparent 42%),
    var(--panel);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.service-group:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 41, 49, 0.42);
}

.service-group::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.015);
}

.group-number {
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.group-icon {
  width: 48px;
  height: 48px;
  margin: 26px 0 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 41, 49, 0.28);
  border-radius: 15px;
  background: rgba(230, 41, 49, 0.08);
  color: var(--red-bright);
}

.group-icon svg {
  width: 23px;
  height: 23px;
}

.service-group h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.service-group > p {
  margin: 15px 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.service-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: #d8dce2;
  font-size: 14px;
}

.service-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(230, 41, 49, 0.45);
}

.outcomes {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018), transparent);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 76px;
  align-items: start;
}

.outcome-intro {
  position: sticky;
  top: 120px;
}

.outcome-list {
  display: grid;
  gap: 16px;
}

.outcome-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.outcome-card .index {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 41, 49, 0.3);
  border-radius: 50%;
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 800;
}

.outcome-card h3 {
  margin: 1px 0 7px;
  font-size: 20px;
}

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

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

.sector-pill {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cavap-shell {
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(230, 41, 49, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.cavap-top {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

.cavap-name {
  margin: 0 0 8px;
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.cavap-top h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.cavap-top p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.phase-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.phase-track::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.1));
}

.phase {
  position: relative;
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5, 6, 8, 0.55);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.phase:hover {
  border-color: rgba(230, 41, 49, 0.45);
  background: rgba(230, 41, 49, 0.045);
}

.phase-no {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 800;
  box-shadow: 0 0 0 7px var(--panel);
}

.phase h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.phase p {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.55;
}

.phase-free {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 7px;
  border: 1px solid rgba(71, 215, 160, 0.3);
  border-radius: 999px;
  color: var(--green);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cavap-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
  padding: 22px 24px;
  border: 1px solid rgba(71, 215, 160, 0.2);
  border-radius: 15px;
  background: rgba(71, 215, 160, 0.045);
}

.cavap-note strong {
  color: var(--green);
}

.cavap-note span {
  color: #bac2cc;
  font-size: 13px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  min-height: 560px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(230, 41, 49, 0.08), transparent 46%),
    var(--panel);
  overflow: hidden;
}

.why-visual::before {
  content: "ICG";
  position: absolute;
  right: -20px;
  bottom: -88px;
  color: rgba(255, 255, 255, 0.023);
  font-size: 260px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -20px;
}

.why-kicker {
  color: var(--muted);
  font-size: 13px;
}

.why-statement {
  max-width: 450px;
  margin: 110px 0 0;
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -1.5px;
}

.why-statement span {
  color: var(--red-bright);
}

.why-seal {
  position: absolute;
  right: 34px;
  top: 34px;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 41, 49, 0.42);
  border-radius: 50%;
  color: var(--red-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
}

.why-seal::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(230, 41, 49, 0.32);
  border-radius: inherit;
}

.why-content .section-title {
  margin-bottom: 26px;
}

.why-content > p {
  color: var(--muted);
  font-size: 17px;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.why-point {
  min-height: 142px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.why-point strong {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
}

.why-point span {
  color: var(--muted-2);
  font-size: 12px;
}

.process-grid {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  counter-increment: process;
  position: relative;
  min-height: 300px;
  padding: 30px;
  border-top: 2px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.process-card::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 70px;
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.process-card h3 {
  margin: 0 0 11px;
  font-size: 22px;
}

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

.contact-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 78px;
  padding: 62px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 100%, rgba(230, 41, 49, 0.11), transparent 32%),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-copy .section-title {
  margin-bottom: 24px;
}

.contact-copy > p {
  color: var(--muted);
  font-size: 16px;
}

.contact-method {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-method span {
  display: block;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-method a {
  display: inline-block;
  margin-top: 9px;
  color: white;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  letter-spacing: -0.8px;
  text-decoration-color: var(--red);
  text-underline-offset: 6px;
}

.contact-address {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #cbd0d8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: #0b0e13;
  color: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 148px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(230, 41, 49, 0.8);
  box-shadow: 0 0 0 4px rgba(230, 41, 49, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #5f6671;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-actions .button {
  min-width: 190px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted-2);
  font-size: 11px;
}

.form-status {
  min-height: 20px;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #ff7a82;
}

.site-footer {
  margin-top: 110px;
  padding: 64px 0 26px;
  border-top: 1px solid var(--line);
  background: #030405;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 50px;
  padding-bottom: 46px;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-column h3 {
  margin: 4px 0 18px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 10px 0;
  color: #c1c7d0;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: white;
}

.footer-email {
  color: var(--red-bright) !important;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #666e79;
  font-size: 10px;
}

.footer-bottom strong {
  color: #929aa6;
  font-weight: 600;
}

.legal-hero {
  padding: 176px 0 70px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -2.5px;
}

.legal-updated {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 90px;
  align-items: start;
  padding: 84px 0 20px;
}

.legal-aside {
  position: sticky;
  top: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  font-size: 12px;
}

.legal-aside strong {
  display: block;
  margin-bottom: 8px;
  color: white;
}

.legal-aside a {
  color: var(--red-bright);
}

.legal-content {
  color: #b8bec8;
  font-size: 16px;
}

.legal-content h2 {
  margin: 54px 0 16px;
  color: white;
  font-size: 26px;
  line-height: 1.2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 28px 0 12px;
  color: #e5e8ec;
  font-size: 18px;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-content li {
  margin: 8px 0;
}

.legal-content a {
  color: white;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px;
  text-align: center;
}

.error-code {
  margin: 0;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(150px, 30vw, 360px);
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -20px;
}

.error-page h1 {
  margin: -10px 0 16px;
  font-size: clamp(38px, 5vw, 64px);
}

.error-page p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s !important;
}

.delay-2 {
  transition-delay: 0.16s !important;
}

.delay-3 {
  transition-delay: 0.24s !important;
}

@keyframes pulse-ring {
  0% {
    opacity: 0.75;
    transform: scale(0.6);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(2.7);
  }
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-110px);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 0.5;
  }
  50% {
    transform: translateY(230px);
  }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 30px;
  }

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

  .trust-inner {
    grid-template-columns: repeat(3, 1fr);
    padding-block: 24px;
  }

  .trust-intro {
    grid-column: 1 / -1;
  }

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

  .phase-track::before {
    display: none;
  }

  .contact-shell {
    gap: 44px;
    padding: 46px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    min-height: calc(100vh - 78px);
    padding: 50px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 6, 8, 0.985);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .nav-links.open {
    transform: none;
  }

  .nav-links > a:not(.button) {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .nav-links .button {
    margin-top: 28px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 142px;
  }

  .hero-grid,
  .outcomes-grid,
  .why-grid,
  .contact-shell,
  .cavap-top {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 20px;
  }

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

  .service-group {
    min-height: auto;
  }

  .outcome-intro {
    position: static;
  }

  .why-grid {
    gap: 48px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .legal-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-name {
    font-size: 14px;
  }

  .site-header .nav-links {
    inset-block-start: 70px;
    min-height: calc(100vh - 70px);
  }

  .section {
    padding: 88px 0;
  }

  .section-tight {
    padding: 68px 0;
  }

  .section-header {
    margin-bottom: 38px;
  }

  .display-title,
  .section-title {
    letter-spacing: -1.3px;
  }

  .display-title {
    font-size: clamp(48px, 14vw, 66px);
  }

  .section-title {
    font-size: 42px;
  }

  .section-copy {
    font-size: 16px;
  }

  .hero {
    padding-top: 126px;
    padding-bottom: 50px;
  }

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

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    gap: 24px 14px;
  }

  .proof-number {
    font-size: 20px;
  }

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

  .map-frame {
    width: 108%;
    margin-left: -4%;
    padding: 12px;
  }

  .visual-label {
    min-width: 144px;
    padding: 11px 12px;
  }

  .label-one {
    right: 18px;
    top: 48px;
  }

  .label-two {
    left: 18px;
    bottom: 54px;
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-badge {
    min-width: 0;
  }

  .service-group {
    padding: 28px;
  }

  .outcome-card {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 22px;
  }

  .outcome-card .index {
    width: 42px;
    height: 42px;
  }

  .cavap-shell {
    padding: 28px 20px;
  }

  .phase-track {
    grid-template-columns: 1fr;
  }

  .phase {
    min-height: auto;
  }

  .cavap-note {
    display: block;
  }

  .cavap-note span {
    display: block;
    margin-top: 8px;
  }

  .why-visual {
    min-height: 470px;
    padding: 26px;
  }

  .why-seal {
    width: 92px;
    height: 92px;
    right: 24px;
    top: 24px;
  }

  .why-statement {
    margin-top: 128px;
  }

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

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

  .process-card {
    min-height: auto;
  }

  .process-card::before {
    margin-bottom: 44px;
  }

  .contact-shell {
    padding: 28px 20px;
    border-radius: 20px;
  }

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

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

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

  .legal-hero {
    padding-top: 136px;
  }

  .legal-hero h1 {
    font-size: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
