:root {
  --ink: #102331;
  --ink-soft: #445565;
  --paper: #fbfaf7;
  --paper-strong: #ffffff;
  --line: #dce5e7;
  --teal: #0b8f8a;
  --blue: #0d4f6f;
  --blue-deep: #0a2d42;
  --coral: #d85f45;
  --gold: #c99b38;
  --mint: #d8f2ee;
  --rose: #fff0ec;
  --sky: #e9f4fb;
  --shadow: 0 24px 60px rgba(10, 45, 66, 0.16);
  --shadow-strong: 0 30px 76px rgba(10, 45, 66, 0.22);
  --card-shadow: 0 18px 46px rgba(16, 35, 49, 0.09);
  --text-shadow: 0 18px 42px rgba(3, 20, 31, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfaf7 0%, #f3f7f5 42%, #fbfaf7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 7.2rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(216, 95, 69, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(13, 79, 111, 0.14);
  box-shadow: 0 14px 40px rgba(10, 45, 66, 0.12);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--coral), var(--gold));
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  min-width: max-content;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(9.5rem, 15vw, 13.5rem);
  height: auto;
  max-height: 3.4rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(10, 45, 66, 0.12));
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #fff;
  background: var(--teal);
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1.22rem;
}

.brand small {
  margin-top: 0.16rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(0.8rem, 2.5vw, 2.2rem);
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a {
  position: relative;
  isolation: isolate;
  padding: 0.46rem 0.58rem;
  color: var(--blue-deep);
  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: -0.12rem -0.2rem;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(216, 242, 238, 0.92), rgba(233, 244, 251, 0.92));
  border: 1px solid rgba(13, 79, 111, 0.1);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.45rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: none;
}

.partner-logo img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(10, 45, 66, 0.12));
  transition: transform 180ms ease, filter 180ms ease;
}

.partner-logo:hover img {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 10px 18px rgba(10, 45, 66, 0.18));
}

.tremigos-logo img {
  max-width: 7.6rem;
}

.spearhead-logo img {
  max-width: 8.2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: 82vh;
  padding: 8rem clamp(1rem, 6vw, 5rem) 4rem;
  color: #fff;
  background-image: url("assets/simultane.jpg");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 14% 34%, rgba(121, 223, 216, 0.28), transparent 28%),
    radial-gradient(circle at 42% 22%, rgba(216, 95, 69, 0.16), transparent 26%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px);
  opacity: 0.62;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 24, 37, 0.76) 0%, rgba(5, 24, 37, 0.84) 38%, rgba(5, 24, 37, 0.84) 62%, rgba(5, 24, 37, 0.76) 100%),
    linear-gradient(0deg, rgba(5, 24, 37, 0.42), rgba(5, 24, 37, 0.04));
  backdrop-filter: saturate(1.18) contrast(1.08);
}

.hero-centered {
  justify-items: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  isolation: isolate;
  max-width: 940px;
  padding:
    clamp(0.4rem, 1.5vw, 1rem)
    clamp(1.2rem, 3vw, 2rem)
    clamp(0.2rem, 1vw, 0.8rem);
}

.hero-content::before {
  content: "VIRTUS";
  position: absolute;
  left: -0.32rem;
  top: -4.1rem;
  z-index: -1;
  color: rgba(255, 255, 255, 0.055);
  font-size: 8.8rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.hero-content::after {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  background:
    linear-gradient(180deg, #79dfd8, var(--gold), var(--coral)) left center / 6px 100% no-repeat,
    linear-gradient(180deg, #79dfd8, var(--gold), var(--coral)) right center / 6px 100% no-repeat;
  border-radius: var(--radius);
  filter: drop-shadow(0 18px 28px rgba(121, 223, 216, 0.2));
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.28rem 0.62rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(216, 242, 238, 0.65);
  border: 1px solid rgba(11, 143, 138, 0.14);
  border-radius: 999px;
}

.hero .eyebrow {
  color: #79dfd8;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(121, 223, 216, 0.08));
  border-color: rgba(121, 223, 216, 0.42);
  box-shadow: 0 14px 34px rgba(3, 20, 31, 0.22);
  backdrop-filter: blur(10px);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: 7rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow:
    0 3px 0 rgba(255, 255, 255, 0.08),
    var(--text-shadow);
}

.hero h1 {
  position: relative;
  display: inline-block;
  max-width: 900px;
  padding: 0.08em 0.02em 0.16em;
  color: transparent;
  background:
    linear-gradient(180deg, #fff 0%, #e9f4fb 42%, #79dfd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 7.8rem;
  font-weight: 900;
  line-height: 1.08;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.1),
    0 22px 54px rgba(3, 20, 31, 0.64);
}

.hero h1::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.02em;
  bottom: -0.18em;
  height: 0.11em;
  background:
    linear-gradient(90deg, var(--teal), #79dfd8 34%, var(--gold) 68%, var(--coral));
  border-radius: 999px;
  box-shadow:
    0 0 0 7px rgba(121, 223, 216, 0.08),
    0 18px 42px rgba(3, 20, 31, 0.34);
}

h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 3.9rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading h2,
.feature-copy h2,
.split h2,
.contact-copy h2 {
  max-width: 1140px;
  font-size: 4.45rem;
  line-height: 1.02;
  font-weight: 900;
  text-wrap: balance;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue) 48%, var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 20px 44px rgba(10, 45, 66, 0.1);
}

h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  position: relative;
  max-width: 880px;
  margin: 2.1rem auto 0;
  padding: 1.18rem 1.32rem 1.2rem 1.5rem;
  color: rgba(255, 255, 255, 0.93);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(121, 223, 216, 0.08)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.065) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-left: 0;
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 1.38rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.44;
  text-shadow: 0 10px 24px rgba(3, 20, 31, 0.36);
  box-shadow:
    0 22px 54px rgba(3, 20, 31, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), #79dfd8, var(--gold), var(--coral));
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: -0.42rem;
  width: 5.5rem;
  height: 0.82rem;
  background: linear-gradient(90deg, rgba(121, 223, 216, 0.42), rgba(216, 95, 69, 0.42));
  border-radius: 999px;
  filter: blur(10px);
}

.hero-disciplines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-disciplines span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.56rem 0.82rem;
  color: #d8f2ee;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(216, 95, 69, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(3, 20, 31, 0.2);
}

.hero-disciplines span:nth-child(2) {
  color: #fff0ec;
}

.hero-disciplines span:nth-child(3) {
  color: #f5dfaa;
}

.hero-disciplines span:nth-child(4) {
  color: #e9f4fb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.92rem 1.22rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  box-shadow: 0 14px 30px rgba(10, 45, 66, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 360ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(10, 45, 66, 0.22);
}

.button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #b94431);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

.intro-band {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1rem, 5vw, 4rem) 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--paper-strong) 42%);
  border-bottom: 1px solid rgba(13, 79, 111, 0.08);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1180px;
  margin: -2.4rem auto 0;
  background: var(--paper-strong);
  border: 1px solid rgba(13, 79, 111, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.intro-grid > div {
  position: relative;
  min-height: 9rem;
  padding: 1.55rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(233, 244, 251, 0.72));
  border-right: 1px solid rgba(13, 79, 111, 0.1);
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease;
}

.intro-grid > div:last-child {
  border-right: 0;
}

.intro-grid > div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.intro-grid > div:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(216, 242, 238, 0.74));
}

.metric {
  display: block;
  color: var(--blue-deep);
  font-size: 2.36rem;
  font-weight: 850;
  line-height: 1;
}

.intro-grid p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
}

.section,
.feature-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
}

.section-heading {
  position: relative;
  max-width: 1140px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 5.6rem;
  height: 4px;
  margin-top: 1.2rem;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--gold));
  border-radius: 999px;
}

.section-heading > p:not(.eyebrow) {
  margin: 1.25rem 0 0;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 1.34rem;
  font-style: italic;
  line-height: 1.42;
}

.section-heading > p:not(.eyebrow),
.feature-copy > p:not(.eyebrow),
.section-lead {
  position: relative;
  max-width: 1060px;
  padding: 1rem 1.15rem 1.05rem 1.35rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(216, 242, 238, 0.5)),
    linear-gradient(90deg, rgba(216, 95, 69, 0.1), transparent);
  border: 1px solid rgba(13, 79, 111, 0.12);
  border-left: 5px solid var(--coral);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 35, 49, 0.08);
}

.section-lead {
  margin: 1.3rem 0 0;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 1.34rem;
  font-style: italic;
  line-height: 1.42;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.4rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 16rem;
  padding: 1.38rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 1), rgba(248, 251, 251, 0.98) 56%, rgba(233, 244, 251, 0.92));
  border: 1px solid rgba(13, 79, 111, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--coral));
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 38%),
    linear-gradient(315deg, rgba(216, 242, 238, 0.34), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 143, 138, 0.32);
  box-shadow: 0 28px 66px rgba(16, 35, 49, 0.17);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(13, 79, 111, 0.2);
}

.service-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.service-card h3 {
  font-size: 1.28rem;
  font-weight: 900;
}

.feature-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.68fr) minmax(16rem, 0.42fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.feature-section::before {
  content: "";
  position: absolute;
  left: clamp(1rem, 4vw, 2rem);
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(2rem, 5vw, 4rem);
  z-index: 0;
  height: 34%;
  background:
    linear-gradient(90deg, rgba(216, 95, 69, 0.08), rgba(201, 155, 56, 0.08), rgba(11, 143, 138, 0.1)),
    repeating-linear-gradient(135deg, rgba(13, 79, 111, 0.07) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(13, 79, 111, 0.08);
  border-radius: var(--radius);
  opacity: 0.9;
  pointer-events: none;
}

.feature-copy {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.feature-copy h2 {
  max-width: 1040px;
}

.feature-copy p:not(.eyebrow) {
  max-width: 980px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 1.32rem;
  font-style: italic;
  line-height: 1.42;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.85rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: checklist;
}

.check-list li {
  --accent: var(--teal);
  --accent-rgb: 11, 143, 138;
  position: relative;
  isolation: isolate;
  min-height: 6.1rem;
  padding: 1.05rem 1.05rem 1.08rem 3.45rem;
  color: var(--blue-deep);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.84)),
    linear-gradient(115deg, rgba(var(--accent-rgb), 0.18), transparent 48%),
    repeating-linear-gradient(135deg, rgba(13, 79, 111, 0.055) 0 1px, transparent 1px 16px);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: var(--radius);
  box-shadow:
    0 18px 40px rgba(16, 35, 49, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
  counter-increment: checklist;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.26;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.check-list li:nth-child(2) {
  --accent: var(--coral);
  --accent-rgb: 216, 95, 69;
}

.check-list li:nth-child(3) {
  --accent: var(--blue);
  --accent-rgb: 13, 79, 111;
}

.check-list li:nth-child(4) {
  --accent: var(--gold);
  --accent-rgb: 201, 155, 56;
}

.check-list li:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.46);
  box-shadow:
    0 30px 70px rgba(16, 35, 49, 0.16),
    0 0 0 4px rgba(var(--accent-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 1.02rem;
  top: 1rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    linear-gradient(135deg, var(--accent), var(--blue-deep));
  border-radius: 50%;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow:
    0 0 0 6px rgba(var(--accent-rgb), 0.12),
    0 14px 28px rgba(var(--accent-rgb), 0.28);
}

.check-list li::after {
  content: "0" counter(checklist);
  position: absolute;
  right: -0.22rem;
  bottom: -0.98rem;
  z-index: 0;
  color: rgba(var(--accent-rgb), 0.13);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.85rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  --step: var(--blue);
  --step-rgb: 13, 79, 111;
  position: relative;
  isolation: isolate;
  min-height: 13.6rem;
  padding: 4.5rem 1.12rem 1.18rem;
  background:
    linear-gradient(180deg, rgba(var(--step-rgb), 0.14) 0 0.34rem, transparent 0.34rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 251, 0.9)),
    linear-gradient(315deg, rgba(var(--step-rgb), 0.16), transparent 52%),
    repeating-linear-gradient(135deg, rgba(13, 79, 111, 0.05) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(var(--step-rgb), 0.22);
  border-radius: var(--radius);
  box-shadow:
    0 20px 46px rgba(16, 35, 49, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  counter-increment: process;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.process-list li:nth-child(2) {
  --step: var(--teal);
  --step-rgb: 11, 143, 138;
}

.process-list li:nth-child(3) {
  --step: var(--coral);
  --step-rgb: 216, 95, 69;
}

.process-list li:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--step-rgb), 0.42);
  box-shadow:
    0 34px 76px rgba(16, 35, 49, 0.17),
    0 0 0 4px rgba(var(--step-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.process-list li::after {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  right: -0.42rem;
  bottom: -0.86rem;
  z-index: 0;
  color: rgba(var(--step-rgb), 0.13);
  font-size: 6.2rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  pointer-events: none;
}

.process-list li::before {
  content: counter(process);
  position: absolute;
  left: 1.12rem;
  top: 1.16rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(135deg, var(--step), var(--blue-deep));
  border-radius: 50%;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow:
    0 0 0 7px rgba(var(--step-rgb), 0.12),
    0 14px 30px rgba(var(--step-rgb), 0.28);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 0.58rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.process-list strong {
  color: var(--step);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.14;
}

.feature-media {
  position: relative;
  z-index: 1;
  margin: 0;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: contrast(1.08) saturate(1.06);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.wide-image {
  width: 100%;
  border-block: 1px solid var(--line);
  background: var(--blue-deep);
}

.wide-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.08);
}

.muted {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(236, 243, 240, 1), rgba(233, 244, 251, 0.88) 52%, rgba(255, 240, 236, 0.72));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 6rem);
  max-width: 1180px;
  margin: 0 auto;
}

.text-stack {
  display: grid;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.text-stack p {
  position: relative;
  margin: 0;
  padding: 1.18rem 1.18rem 1.18rem 1.38rem;
  color: var(--blue-deep);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(233, 244, 251, 0.72)),
    linear-gradient(90deg, rgba(11, 143, 138, 0.08), transparent);
  border: 1px solid rgba(13, 79, 111, 0.12);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 35, 49, 0.09);
  font-size: 1.08rem;
  font-weight: 650;
}

.trust-note {
  padding: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(216, 242, 238, 0.66));
  border: 1px solid rgba(13, 79, 111, 0.16);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(16, 35, 49, 0.08);
}

.trust-note strong {
  display: block;
  color: var(--blue-deep);
  margin-bottom: 0.35rem;
}

.trust-note p {
  color: var(--ink-soft);
}

.references-section {
  position: relative;
  max-width: none;
  padding-inline: 0;
  background:
    linear-gradient(135deg, rgba(7, 28, 42, 0.98), rgba(10, 45, 66, 0.96) 46%, rgba(8, 68, 72, 0.94)),
    linear-gradient(116deg, rgba(121, 223, 216, 0.16) 0%, transparent 28%, rgba(216, 95, 69, 0.14) 52%, transparent 76%, rgba(201, 155, 56, 0.14) 100%),
    repeating-linear-gradient(128deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 21px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.references-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 76%, transparent);
  opacity: 0.42;
}

.references-section::after {
  content: "";
  position: absolute;
  inset: -18% -8%;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 18%, rgba(121, 223, 216, 0.16) 18% 19%, transparent 19% 38%, rgba(255, 255, 255, 0.1) 38% 39%, transparent 39% 62%, rgba(216, 95, 69, 0.14) 62% 63%, transparent 63% 100%),
    repeating-linear-gradient(112deg, transparent 0 4.8rem, rgba(255, 255, 255, 0.055) 4.8rem 4.9rem, transparent 4.9rem 9.6rem);
  opacity: 0.82;
  transform: translate3d(-2%, 0, 0) rotate(-2deg);
  animation: reference-flow 18s ease-in-out infinite alternate;
}

@keyframes reference-flow {
  from {
    transform: translate3d(-2%, 0, 0) rotate(-2deg);
  }

  to {
    transform: translate3d(2%, -1.4%, 0) rotate(-2deg);
  }
}

.references-section > .section-heading,
.references-section > .reference-wall {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.references-section .eyebrow {
  color: #79dfd8;
  background: rgba(121, 223, 216, 0.1);
  border-color: rgba(121, 223, 216, 0.24);
}

.references-section .section-heading h2 {
  background: linear-gradient(135deg, #ffffff, #d8f2ee 46%, #f5dfaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 24px 54px rgba(3, 20, 31, 0.28);
}

.references-section .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(121, 223, 216, 0.08)),
    linear-gradient(90deg, rgba(216, 95, 69, 0.18), transparent);
  border-color: rgba(255, 255, 255, 0.16);
  border-left-color: var(--gold);
  box-shadow: 0 22px 52px rgba(3, 20, 31, 0.22);
}

.references-section .section-heading::after {
  background: linear-gradient(90deg, #79dfd8, var(--gold), var(--coral));
  box-shadow: 0 14px 30px rgba(121, 223, 216, 0.18);
}

.reference-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.2vw, 0.95rem);
  align-items: center;
  margin-top: 2.9rem;
  padding: 1.55rem clamp(1rem, 4vw, 1.6rem) 0;
}

.reference-wall::before {
  content: "";
  position: absolute;
  left: clamp(1rem, 4vw, 1.6rem);
  right: clamp(1rem, 4vw, 1.6rem);
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--coral), var(--gold));
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(11, 143, 138, 0.18);
}

.reference-logo {
  --float-y: 0rem;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 5.95rem;
  padding: 1.02rem 0.7rem 1.15rem;
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  overflow: visible;
  transform: translateY(var(--float-y));
  transition: transform 180ms ease, filter 180ms ease;
}

.reference-logo::before {
  content: "";
  position: absolute;
  inset: 18% -4% 16%;
  z-index: -1;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 244, 251, 0.84)),
    linear-gradient(90deg, rgba(121, 223, 216, 0.22), transparent 46%, rgba(201, 155, 56, 0.18));
  box-shadow:
    0 16px 34px rgba(3, 20, 31, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  opacity: 0.96;
  transform: skewX(-8deg);
  transition: inset 180ms ease, opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.reference-logo:hover {
  transform: translateY(calc(var(--float-y) - 0.45rem)) scale(1.03);
  filter: drop-shadow(0 18px 28px rgba(3, 20, 31, 0.22));
}

.reference-logo:hover::before {
  inset: 12% -9% 12%;
  opacity: 1;
  transform: skewX(-8deg) scale(1.03);
  box-shadow:
    0 24px 52px rgba(3, 20, 31, 0.26),
    0 0 0 1px rgba(121, 223, 216, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.reference-logo-dark {
  background: transparent;
}

.reference-logo-dark::before {
  background:
    linear-gradient(135deg, rgba(4, 19, 30, 0.88), rgba(10, 45, 66, 0.82)),
    linear-gradient(90deg, rgba(121, 223, 216, 0.14), transparent 45%, rgba(216, 95, 69, 0.18));
  box-shadow:
    0 18px 38px rgba(3, 20, 31, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.reference-logo-unicef {
  background: transparent;
}

.reference-logo-unicef::before {
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.95), rgba(0, 122, 204, 0.86)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 46%);
}

.reference-logo img {
  width: auto;
  max-width: 86%;
  max-height: 3.15rem;
  object-fit: contain;
  filter: saturate(0.98) contrast(1.04);
  transition: transform 180ms ease, filter 180ms ease;
}

.reference-logo:hover img {
  transform: translateY(-0.3rem) scale(1.03);
  filter: saturate(1.04) contrast(1.08);
}

.reference-logo-dark img {
  filter: drop-shadow(0 10px 20px rgba(3, 20, 31, 0.22));
}

.reference-logo:nth-child(7n+2),
.reference-logo:nth-child(7n+5) {
  --float-y: 0.45rem;
}

.reference-logo:nth-child(7n+3),
.reference-logo:nth-child(7n+7) {
  --float-y: -0.3rem;
}

.contact-section {
  position: relative;
  max-width: none;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0 clamp(5rem, 8vw, 7rem);
  color: #fff;
  background:
    linear-gradient(112deg, rgba(5, 24, 37, 0.99) 0 47%, rgba(8, 51, 66, 0.97) 47% 100%),
    repeating-linear-gradient(132deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 26px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(124deg, transparent 0 74%, rgba(121, 223, 216, 0.11) 74% 75%, transparent 75% 100%),
    linear-gradient(68deg, transparent 0 84%, rgba(201, 155, 56, 0.12) 84% 85%, transparent 85% 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%, 100% 100%;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 6px;
  background: linear-gradient(90deg, #79dfd8, var(--gold), var(--coral));
  box-shadow: 0 16px 42px rgba(121, 223, 216, 0.2);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(33rem, 1.08fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.contact-copy h2 {
  max-width: 650px;
  color: transparent;
  background: linear-gradient(135deg, #fff 0%, #d8f2ee 52%, #f5dfaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 4.7rem;
  font-weight: 900;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 26px 56px rgba(3, 20, 31, 0.34);
}

.contact-copy {
  position: relative;
  min-width: 0;
}

.contact-copy .eyebrow {
  color: #79dfd8;
  background: rgba(121, 223, 216, 0.1);
  border-color: rgba(121, 223, 216, 0.24);
}

.contact-lead {
  max-width: 590px;
  margin: 1.55rem 0 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.77);
  border-left: 4px solid var(--gold);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.52;
}

.contact-routes {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-route {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) 2rem;
  gap: 0.85rem;
  align-items: center;
  min-height: 5rem;
  padding: 0.9rem 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: border-color 180ms ease, padding 180ms ease;
}

.contact-route:hover {
  padding-left: 0.55rem;
  border-bottom-color: rgba(121, 223, 216, 0.58);
}

.route-index {
  color: #79dfd8;
  font-size: 0.78rem;
  font-weight: 900;
}

.route-copy {
  display: grid;
  min-width: 0;
  gap: 0.12rem;
}

.route-copy small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.route-copy strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.96rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.route-action {
  color: var(--gold);
  font-size: 1.35rem;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-route:hover .route-action {
  color: #79dfd8;
  transform: translate(0.18rem, -0.18rem);
}

.contact-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.45rem;
}

.social-label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
}

.social-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.social-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.24rem;
  height: 2px;
  background: linear-gradient(90deg, #79dfd8, var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.social-links a:hover {
  color: #fff;
}

.social-links a:hover::after {
  transform: scaleX(1);
}

.quote-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.45rem, 3vw, 2.35rem);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 249, 0.98) 58%, rgba(233, 244, 251, 0.96)),
    repeating-linear-gradient(135deg, rgba(13, 79, 111, 0.04) 0 1px, transparent 1px 20px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow:
    0 50px 110px rgba(2, 16, 26, 0.46),
    0 0 0 9px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--teal), var(--blue), var(--coral), var(--gold));
}

.quote-heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 0 1.45rem 0.3rem;
  border-bottom: 1px solid rgba(13, 79, 111, 0.14);
}

.quote-kicker {
  margin: 0 0 0.45rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-heading h3 {
  max-width: 430px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 2rem;
  font-style: italic;
  line-height: 1.16;
  text-wrap: balance;
}

.response-promise {
  display: flex;
  align-items: center;
  flex: 0 0 10.5rem;
  gap: 0.5rem;
  margin: 0 0 0.15rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.35;
}

.response-promise span {
  flex: 0 0 auto;
  width: 0.58rem;
  height: 0.58rem;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(11, 143, 138, 0.11);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding-top: 1.45rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

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

.field-label {
  color: var(--blue-deep);
  font-size: 0.79rem;
  font-weight: 850;
  transition: color 160ms ease;
}

.field-label b {
  margin-right: 0.35rem;
  color: var(--teal);
  font-size: 0.68rem;
}

.contact-form label:focus-within .field-label {
  color: var(--teal);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.92rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(13, 79, 111, 0.16);
  border-bottom: 3px solid rgba(13, 79, 111, 0.16);
  border-radius: var(--radius);
  font: inherit;
  box-shadow:
    0 10px 24px rgba(16, 35, 49, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 251, 0.92));
  background-position:
    calc(100% - 1.15rem) 50%,
    calc(100% - 0.82rem) 50%,
    0 0;
  background-size:
    0.34rem 0.34rem,
    0.34rem 0.34rem,
    100% 100%;
  background-repeat: no-repeat;
}

.contact-form textarea {
  min-height: 8.3rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--teal);
  background: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 4px rgba(11, 143, 138, 0.12),
    0 18px 42px rgba(16, 35, 49, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 4rem;
  padding: 0.9rem 1.15rem 0.9rem 1.35rem;
  color: #fff;
  background:
    linear-gradient(105deg, var(--blue-deep), var(--blue) 54%, var(--teal));
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 880;
  box-shadow:
    0 20px 42px rgba(10, 45, 66, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.form-button span:last-child {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--blue-deep);
  background: #79dfd8;
  border-radius: 50%;
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 56px rgba(10, 45, 66, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.form-button:hover span:last-child {
  transform: translate(0.12rem, -0.12rem);
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-footer {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.15rem;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

.contact-form .form-honeypot {
  display: none;
}

.form-status {
  margin: 0;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.form-status:not(:empty) {
  padding: 0.72rem 0.84rem;
  color: var(--blue-deep);
  background: rgba(216, 242, 238, 0.68);
  border: 1px solid rgba(11, 143, 138, 0.16);
  border-radius: var(--radius);
  box-shadow: inset 4px 0 0 var(--teal);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, var(--blue-deep), #0f5166 52%, #173b46);
}

.site-footer p {
  margin: 0;
}

.error-page {
  min-height: 100vh;
  background:
    linear-gradient(130deg, rgba(10, 45, 66, 0.95), rgba(13, 79, 111, 0.86)),
    var(--blue-deep);
  color: #fff;
}

.error-layout {
  display: grid;
  align-content: center;
  min-height: 100vh;
  max-width: 760px;
  padding: clamp(2rem, 8vw, 5rem);
}

.error-brand {
  margin-bottom: clamp(2rem, 8vw, 4rem);
}

.error-layout h1 {
  font-size: 5.2rem;
}

.error-layout p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
  }

  h1 {
    font-size: 4.85rem;
  }

  h2,
  .contact-copy h2 {
    font-size: 3rem;
  }

  .section-heading h2,
  .feature-copy h2,
  .split h2,
  .contact-copy h2 {
    font-size: 3.75rem;
    line-height: 1;
  }

  .section-heading > p:not(.eyebrow),
  .feature-copy > p:not(.eyebrow),
  .section-lead {
    font-size: 1.2rem;
  }

  .metric {
    font-size: 2.08rem;
  }

  .nav-links {
    display: none;
  }

  .brand-logo {
    width: 8.8rem;
    max-height: 2.5rem;
  }

  .partner-logo {
    height: 2.15rem;
    padding: 0;
  }

  .tremigos-logo img {
    max-width: 5.6rem;
  }

  .spearhead-logo img {
    max-width: 6rem;
  }

  .hero {
    min-height: 76vh;
    background-position: center;
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-content::before {
    top: -3.1rem;
    font-size: 6.4rem;
  }

  .hero h1 {
    font-size: 5.45rem;
  }

  .hero-copy {
    max-width: 720px;
    font-size: 1.2rem;
  }

  .intro-grid,
  .service-grid,
  .feature-section,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    max-width: 760px;
  }

  .contact-copy {
    max-width: 680px;
  }

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

  .process-list li {
    min-height: auto;
    padding-top: 3.85rem;
  }

  .process-list li::after {
    font-size: 5.3rem;
  }

  .reference-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro-grid {
    margin-top: -1.7rem;
  }

  .intro-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(13, 79, 111, 0.1);
  }

  .intro-grid > div:last-child {
    border-bottom: 0;
  }

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

  .feature-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .header-tools {
    gap: 0.5rem;
  }

  .hero {
    min-height: 82vh;
    padding-top: 7rem;
  }

  .hero-content {
    padding-left: 1rem;
  }

  .hero-content::before {
    top: -2.1rem;
    font-size: 3.8rem;
  }

  h1 {
    font-size: 3.55rem;
  }

  .hero h1 {
    font-size: 3.58rem;
    line-height: 0.98;
  }

  h2,
  .contact-copy h2 {
    font-size: 2.34rem;
  }

  .section-heading h2,
  .feature-copy h2,
  .split h2,
  .contact-copy h2 {
    font-size: 2.58rem;
    line-height: 1.03;
  }

  .section-heading > p:not(.eyebrow),
  .feature-copy > p:not(.eyebrow),
  .section-lead {
    padding: 0.88rem 0.95rem 0.95rem 1rem;
    font-size: 1.08rem;
  }

  .hero-copy {
    margin-top: 1.75rem;
    padding: 1rem 1rem 1.02rem;
    font-size: 1.06rem;
  }

  .hero-disciplines {
    gap: 0.5rem;
  }

  .hero-disciplines span {
    min-height: 2.1rem;
    padding: 0.48rem 0.68rem;
    font-size: 0.74rem;
  }

  .metric {
    font-size: 1.88rem;
  }

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

  .button {
    width: 100%;
  }

  .social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-links a {
    text-align: center;
  }

  .contact-section {
    padding-top: 4.6rem;
  }

  .contact-section::after {
    width: 68%;
  }

  .contact-socials {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }

  .social-links a {
    text-align: left;
  }

  .quote-panel {
    padding: 1.25rem 1.1rem 1.35rem 1.3rem;
  }

  .quote-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

  .quote-heading h3 {
    font-size: 1.65rem;
  }

  .response-promise {
    flex-basis: auto;
  }

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

  .contact-form .field-wide {
    grid-column: auto;
  }

  .route-copy strong {
    font-size: 0.88rem;
  }

  .check-list li {
    min-height: auto;
    padding: 0.98rem 0.95rem 1rem 3.2rem;
  }

  .check-list li::after {
    font-size: 3.6rem;
  }

  .process-list li {
    padding: 3.8rem 0.98rem 1.02rem;
  }

  .process-list li::before {
    width: 2.35rem;
    height: 2.35rem;
  }

  .process-list li::after {
    font-size: 4.45rem;
  }

  .reference-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding-inline: 0;
  }

  .reference-logo {
    min-height: 5.4rem;
    padding: 0.85rem;
  }

  .reference-logo img {
    max-width: 86%;
    max-height: 2.75rem;
  }
}

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

  .references-section::after {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
