:root {
  --navy: #0b2e5c;
  --navy-deep: #061c38;
  --navy-ink: #031326;
  --blue: #2f72b7;
  --blue-light: #d8eafb;
  --blue-pale: #eef6fc;
  --orange: #d96d32;
  --orange-dark: #b9511d;
  --ink: #132033;
  --grey: #5d6978;
  --muted: #8793a3;
  --line: #dce4ed;
  --surface: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(4, 28, 56, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.025em;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--navy-deep);
  background: var(--white);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
}

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

.shell {
  width: min(100% - 76px, 1240px);
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

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

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 114, 183, 0.35), transparent 29%),
    var(--navy-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: #9cc6ef;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--navy-deep);
  font-size: clamp(36px, 4.5vw, 58px);
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--grey);
  font-size: 18px;
}

.section-dark .section-heading h2 {
  color: var(--white);
}

.section-dark .section-heading p {
  color: #b6c5d6;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

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

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-outline {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button-outline:hover {
  border-color: var(--blue);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--blue);
}

/* Navigation */
.site-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.site-nav-inner {
  display: flex;
  width: min(100% - 76px, 1240px);
  min-height: 88px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.site-logo {
  color: var(--white);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-menu a {
  position: relative;
  color: #d9e4ef;
  font-size: 13.5px;
  font-weight: 650;
  text-decoration: none;
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
  color: var(--white);
}

.site-menu a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -33px;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
}

.site-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 10px;
  color: var(--navy-deep);
  background: var(--white);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.site-cta span {
  display: grid;
  width: 27px;
  height: 27px;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
  place-items: center;
}

.mobile-menu {
  display: none;
  position: relative;
  color: var(--white);
}

.mobile-menu summary {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  top: 52px;
  right: 0;
  display: grid;
  width: min(300px, calc(100vw - 44px));
  padding: 15px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.mobile-menu-panel a {
  padding: 10px 12px;
  color: var(--navy-deep);
  border-radius: 7px;
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a[aria-current="page"] {
  background: var(--blue-pale);
}

/* Shared heroes */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 76%, rgba(47, 114, 183, 0.28), transparent 31%),
    linear-gradient(135deg, var(--navy-ink), var(--navy-deep) 54%, #0b376d);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to right, transparent, black 45%, black);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  padding-top: 150px;
  padding-bottom: 74px;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: 76px;
}

.hero-copy h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(55px, 6.3vw, 88px);
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 660px;
  margin-bottom: 32px;
  color: #c9d6e4;
  font-size: clamp(18px, 2vw, 21px);
}

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

.hero-assurance {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 11px;
  color: #9eb1c6;
  font-size: 13px;
  font-weight: 700;
}

.hero-assurance span {
  width: 9px;
  height: 9px;
  background: #67c293;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(103, 194, 147, 0.13);
}

.proof-rail {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.proof-grid {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 114px;
  padding: 24px 27px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-deep);
  font-size: 25px;
}

.proof-item span {
  color: var(--grey);
  font-size: 13px;
}

/* Partners hero network */
.network-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: 620px;
  min-height: 520px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 48%, rgba(217, 109, 50, 0.17), transparent 23%),
    radial-gradient(circle at 84% 11%, rgba(47, 114, 183, 0.27), transparent 30%),
    linear-gradient(145deg, rgba(3, 19, 38, 0.84), rgba(7, 38, 75, 0.72));
  box-shadow:
    inset 0 0 90px rgba(47, 114, 183, 0.12),
    0 30px 80px rgba(1, 12, 26, 0.25);
  justify-self: end;
}

.network-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(151, 195, 236, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 195, 236, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.network-visual-head {
  position: relative;
  z-index: 6;
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.network-label {
  color: #92a9c0;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.network-status {
  display: inline-flex;
  min-height: 27px;
  padding: 5px 10px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #d9e8f6;
  background: rgba(140, 193, 242, 0.1);
  border: 1px solid rgba(140, 193, 242, 0.22);
  border-radius: 30px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.network-status i {
  width: 7px;
  height: 7px;
  background: #67c293;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(103, 194, 147, 0.11);
}

.network-map {
  position: relative;
  z-index: 2;
  height: 390px;
  margin-top: 4px;
}

.network-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(151, 195, 236, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.network-ring-one {
  width: 224px;
  height: 224px;
}

.network-ring-two {
  width: 322px;
  height: 322px;
}

.network-path {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 39%;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 109, 50, 0.95), rgba(140, 193, 242, 0.68));
  box-shadow: 0 0 10px rgba(140, 193, 242, 0.22);
  transform-origin: left center;
}

.network-path::after {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  background: #8cc1f2;
  border: 2px solid var(--navy-deep);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.path-india {
  transform: rotate(-40deg);
}

.path-brazil {
  transform: rotate(140deg);
}

.path-south-africa {
  transform: rotate(40deg);
}

.path-uk {
  transform: rotate(220deg);
}

.network-node {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 144px;
  min-height: 94px;
  padding: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(14, 56, 105, 0.96), rgba(7, 34, 69, 0.96));
  border: 1px solid rgba(151, 195, 236, 0.31);
  border-radius: 15px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.network-node::after {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 38px;
  height: 2px;
  background: #8cc1f2;
  border-radius: 0 0 4px 4px;
  content: "";
  transform: translateX(-50%);
}

.network-node strong,
.network-node span,
.network-node small {
  display: block;
  width: 100%;
  text-align: center;
}

.network-node span {
  margin-bottom: 4px;
  color: #8fb4da;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.network-node strong {
  color: var(--white);
  font-size: 14px;
  line-height: 1.15;
}

.network-node small {
  margin-top: 4px;
  color: #91a7bd;
  font-size: 10px;
  line-height: 1.2;
}

.network-node-central {
  top: 50%;
  left: 50%;
  width: 190px;
  min-height: 156px;
  padding: 18px 18px 16px;
  background: linear-gradient(145deg, #0b376d, #061c38);
  border: 1px solid rgba(217, 109, 50, 0.8);
  border-radius: 24px;
  box-shadow:
    0 0 0 11px rgba(217, 109, 50, 0.1),
    0 22px 58px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.network-node-central::after {
  width: 62px;
  height: 3px;
  background: var(--orange);
}

.network-node-central span {
  color: #aaccec;
}

.network-node-central img {
  display: block;
  width: 90px;
  height: 30px;
  max-width: none;
  margin: 4px auto 2px;
  object-fit: contain;
}

.network-node-central small {
  margin-top: 0;
  color: #b9cbe0;
}

.network-node-central em {
  display: block;
  margin-top: 10px;
  padding: 5px 9px;
  color: #f1d0bc;
  background: rgba(217, 109, 50, 0.12);
  border: 1px solid rgba(217, 109, 50, 0.27);
  border-radius: 20px;
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
}

.node-india {
  top: 7%;
  right: 2%;
}

.node-brazil {
  bottom: 7%;
  left: 2%;
}

.node-south-africa {
  right: 2%;
  bottom: 7%;
}

.node-uk {
  top: 7%;
  left: 2%;
}

.network-flow {
  position: relative;
  z-index: 6;
  display: grid;
  min-height: 38px;
  padding: 8px 12px;
  align-items: center;
  background: rgba(140, 193, 242, 0.07);
  border: 1px solid rgba(140, 193, 242, 0.16);
  border-radius: 12px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

.network-flow span {
  color: #b9cde1;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.network-flow i {
  color: var(--orange);
  font-size: 12px;
  font-style: normal;
}

/* Partner page */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-card {
  position: relative;
  overflow: hidden;
  min-height: 278px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.case-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(225deg, var(--blue-light) 0 50%, transparent 50%);
  content: "";
}

.case-number {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 52px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 10px;
  font-weight: 900;
  place-items: center;
}

.case-card h3 {
  margin-bottom: 13px;
  color: var(--navy-deep);
  font-size: 23px;
}

.case-card p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 15px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.partner-card {
  display: flex;
  min-height: 370px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  flex-direction: column;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.partner-card:hover {
  border-color: #a9c9e8;
  box-shadow: 0 20px 52px rgba(4, 28, 56, 0.1);
  transform: translateY(-4px);
}

.partner-card-top {
  display: flex;
  margin-bottom: 34px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.partner-initial {
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--navy);
  border-radius: 14px;
  font-size: 18px;
  font-weight: 900;
  place-items: center;
}

.region-badge {
  padding: 6px 10px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-card h3 {
  margin-bottom: 8px;
  color: var(--navy-deep);
  font-size: 27px;
}

.partner-focus {
  margin-bottom: 15px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-card p {
  color: var(--grey);
  font-size: 15.5px;
}

.partner-capabilities {
  display: flex;
  margin: auto 0 25px;
  flex-wrap: wrap;
  gap: 7px;
}

.partner-capabilities span {
  padding: 5px 9px;
  color: #365270;
  background: #f1f5f9;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 750;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
}

.delivery-step {
  min-height: 260px;
  padding: 31px;
  background: rgba(3, 19, 38, 0.6);
}

.delivery-step:first-child {
  border-radius: 17px 0 0 17px;
}

.delivery-step:last-child {
  border-radius: 0 17px 17px 0;
}

.delivery-step span {
  display: block;
  margin-bottom: 78px;
  color: #6f95bb;
  font-size: 12px;
  font-weight: 850;
}

.delivery-step h3 {
  margin-bottom: 11px;
  color: var(--white);
  font-size: 20px;
}

.delivery-step p {
  margin-bottom: 0;
  color: #aebed0;
  font-size: 14px;
}

.accountability {
  display: grid;
  margin-top: 30px;
  padding: 36px;
  background: linear-gradient(135deg, var(--orange), #bd5521);
  border-radius: var(--radius-md);
  grid-template-columns: 0.8fr 2fr;
  align-items: center;
  gap: 35px;
}

.accountability strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1.15;
}

.accountability p {
  margin: 0;
  color: #fff3eb;
  font-size: 17px;
}

.partnership-cta {
  display: grid;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  grid-template-columns: 1fr 1fr;
}

.partnership-cta > div {
  min-height: 330px;
  padding: 48px;
}

.partnership-cta > div + div {
  background:
    radial-gradient(circle at 90% 20%, rgba(47, 114, 183, 0.35), transparent 45%),
    #0a3567;
}

.partnership-cta .eyebrow {
  color: #98c5ee;
}

.partnership-cta h2 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 34px;
}

.partnership-cta p {
  margin-bottom: 28px;
  color: #b4c5d6;
}

/* Contact page */
.contact-hero {
  min-height: 680px;
}

.contact-hero .hero-grid {
  min-height: 680px;
}

.route-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.route-panel-head {
  padding: 24px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.route-panel-head span {
  color: #92a9c0;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-panel-head h2 {
  margin: 6px 0 0;
  color: var(--white);
  font-size: 22px;
}

.route-card {
  display: grid;
  padding: 22px 25px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 15px;
  transition: background 160ms ease;
}

.route-card:last-child {
  border-bottom: 0;
}

.route-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.route-number {
  display: grid;
  width: 38px;
  height: 38px;
  color: #a8d2f8;
  background: rgba(47, 114, 183, 0.22);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  place-items: center;
}

.route-card strong,
.route-card small {
  display: block;
}

.route-card strong {
  margin-bottom: 2px;
  font-size: 15px;
}

.route-card small {
  color: #9fb2c6;
  font-size: 12px;
}

.route-arrow {
  color: #89b9e4;
  font-size: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  align-items: start;
  gap: 60px;
}

.contact-intro {
  position: sticky;
  top: 35px;
}

.contact-intro h2 {
  margin-bottom: 18px;
  color: var(--navy-deep);
  font-size: clamp(38px, 4vw, 52px);
}

.contact-intro > p {
  margin-bottom: 34px;
  color: var(--grey);
  font-size: 17px;
}

.contact-detail {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 45px 1fr;
  gap: 15px;
}

.contact-detail-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 11px;
  font-size: 11px;
  font-weight: 900;
  place-items: center;
}

.contact-detail strong,
.contact-detail a,
.contact-detail span {
  display: block;
}

.contact-detail strong {
  margin-bottom: 2px;
  color: var(--navy-deep);
  font-size: 13px;
}

.contact-detail a {
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

.contact-detail span {
  color: var(--grey);
  font-size: 14px;
}

.contact-form {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-header {
  margin-bottom: 29px;
}

.contact-form-header h2 {
  margin-bottom: 8px;
  color: var(--navy-deep);
  font-size: 29px;
}

.contact-form-header p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 850;
}

.required {
  color: var(--orange-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd9e4;
  border-radius: 10px;
}

.field input,
.field select {
  min-height: 49px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 142px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 114, 183, 0.12);
  outline: 0;
}

.field-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.consent {
  display: grid;
  margin: 22px 0;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.consent label {
  color: var(--grey);
  font-size: 12px;
}

.consent a {
  color: var(--blue);
}

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

.submit-button {
  border: 0;
  cursor: pointer;
}

.form-security {
  color: var(--muted);
  font-size: 11px;
}

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

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

.signal-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.signal-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-card h3 {
  margin-bottom: 11px;
  color: var(--navy-deep);
  font-size: 21px;
}

.signal-card p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}

.faq-grid h2 {
  color: var(--white);
  font-size: clamp(36px, 4vw, 52px);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: #8ec1ee;
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 670px;
  padding: 0 45px 24px 0;
  color: #aec0d2;
}

/* Footer */
.site-footer {
  padding: 65px 0 28px;
  color: #94a4b9;
  background: #041426;
}

.site-footer-inner {
  width: min(100% - 76px, 1240px);
  margin-inline: auto;
}

.footer-cols {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: 2fr 1fr 1fr 1.35fr;
  gap: 44px;
}

.footer-logo {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.footer-tag {
  margin-bottom: 14px;
  color: #62758c;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cols p {
  max-width: 320px;
  margin: 0 0 10px;
  font-size: 13.5px;
}

.footer-cols h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0;
}

.footer-cols a {
  display: block;
  margin-bottom: 9px;
  color: #9dafc2;
  font-size: 13.5px;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: #9dafc2;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .site-menu,
  .site-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: 62px;
  }

  .network-visual {
    min-height: 520px;
  }

  .contact-layout {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 38px;
  }
}

@media (max-width: 900px) {
  .shell,
  .site-nav-inner,
  .site-footer-inner {
    width: min(100% - 44px, 1240px);
  }

  .section {
    padding: 82px 0;
  }

  .page-hero,
  .contact-hero {
    min-height: auto;
  }

  .hero-grid,
  .contact-hero .hero-grid {
    min-height: auto;
    padding-top: 145px;
    padding-bottom: 82px;
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(51px, 10vw, 74px);
  }

  .network-visual {
    min-height: 520px;
    justify-self: start;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .case-grid,
  .contact-signals {
    grid-template-columns: 1fr;
  }

  .case-number,
  .signal-card span {
    margin-bottom: 28px;
  }

  .delivery-step:first-child,
  .delivery-step:last-child {
    border-radius: 0;
  }

  .accountability,
  .contact-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .partnership-cta,
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .shell,
  .site-nav-inner,
  .site-footer-inner {
    width: min(100% - 36px, 1240px);
  }

  .site-nav-inner {
    min-height: 76px;
  }

  .hero-grid,
  .contact-hero .hero-grid {
    padding-top: 124px;
    padding-bottom: 70px;
  }

  .hero-copy h1 {
    font-size: 49px;
  }

  .hero-copy > p {
    font-size: 17px;
  }

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

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

  .network-visual {
    min-height: 0;
    padding: 18px;
    border-radius: 20px;
  }

  .network-visual-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .network-map {
    display: grid;
    height: auto;
    margin-top: 18px;
    grid-template-areas:
      "core core"
      "uk india"
      "brazil south-africa";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .network-ring,
  .network-path {
    display: none;
  }

  .network-node {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 102px;
    padding: 13px 10px;
    transform: none;
  }

  .network-node-central {
    min-height: 148px;
    grid-area: core;
  }

  .node-india {
    grid-area: india;
  }

  .node-uk {
    grid-area: uk;
  }

  .node-brazil {
    grid-area: brazil;
  }

  .node-south-africa {
    grid-area: south-africa;
  }

  .network-flow {
    margin-top: 16px;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .network-flow span {
    min-height: 34px;
    padding: 9px 6px;
    background: rgba(140, 193, 242, 0.07);
    border-radius: 7px;
  }

  .network-flow i {
    display: none;
  }

  .proof-grid,
  .partner-grid,
  .delivery-grid,
  .partnership-cta,
  .footer-cols,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

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

  .partner-capabilities {
    margin-top: 15px;
  }

  .delivery-step {
    min-height: auto;
  }

  .delivery-step span {
    margin-bottom: 45px;
  }

  .accountability {
    padding: 30px;
  }

  .partnership-cta > div,
  .contact-form {
    min-height: auto;
    padding: 31px 25px;
  }

  .route-card {
    padding: 20px;
  }

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

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

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

  .button,
  .partner-card {
    transition: none;
  }
}
