:root {
  --bg: #e8f1f9;
  --bg-elevated: #ffffff;
  --bg-rgb: 232, 241, 249;
  --header-surface-rgb: 255, 255, 255;
  --surface: rgba(29, 43, 58, 0.05);
  --surface-strong: rgba(29, 43, 58, 0.09);
  --border: rgba(29, 43, 58, 0.12);
  --text: #1d2b3a;
  --text-rgb: 29, 43, 58;
  --muted: rgba(var(--text-rgb), 0.65);
  --faint: rgba(var(--text-rgb), 0.45);
  --accent: #2b5d8c;
  --accent-rgb: 43, 93, 140;
  --accent-2: #5aa3d4;
  --accent-2-rgb: 90, 163, 212;
  --accent-warm: #3d7499;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 22px 56px rgba(29, 43, 58, 0.1);
  --header-h: 72px;
  --header-h-scrolled: 64px;
  --strip-h: 44px;
  --max: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--strip-h) + var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: "Noto Serif", ui-serif, Georgia, "Times New Roman", Times, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Typography: Merriweather headings, Noto Serif body */
h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.page-hero__title,
.section__title,
.split-head__title,
.cta-final h2,
.mega__heading,
.mega__cta-title,
.footer__heading,
.contact-strip__title,
.consult-modal__title,
.service-card h3,
.pillar h3,
.stat__value,
.hero-card__kpi {
  font-family: "Merriweather", ui-serif, Georgia, "Times New Roman", Times, serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.028;
  mix-blend-mode: multiply;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--strip-h);
  border-bottom: 1px solid var(--border);
  background: rgba(var(--header-surface-rgb), 0.9);
  backdrop-filter: blur(14px);
}

.top-strip__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip__text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.55);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.45);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(var(--accent-rgb), 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0);
  }
}

.link-ghost {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.link-ghost:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  transform: translateY(-1px);
}

.site-header {
  position: fixed;
  top: var(--strip-h);
  left: 0;
  right: 0;
  z-index: 80;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), height 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(var(--header-surface-rgb), 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  height: var(--header-h-scrolled);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Merriweather", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo__img {
  display: block;
  height: 65px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.logo--footer .logo__img {
  height: 34px;
  max-width: min(200px, 50vw);
}

.logo__accent {
  color: var(--accent-2);
}

.nav {
  position: relative;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__mobile-head {
  display: none;
}

.nav__item--mega {
  position: static;
}

.nav__mega-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav__mega-btn:hover,
.nav__mega-btn:focus-visible {
  color: var(--text);
}

.nav__item--mega.is-open .nav__mega-btn {
  color: var(--text);
  background: var(--surface-strong);
  border-color: var(--border);
}

.nav__chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease-out);
}

.nav__item--mega.is-open .nav__chev {
  transform: rotate(225deg) translateY(-1px);
}

@media (min-width: 821px) {
  .nav__item--mega:hover .nav__mega-btn,
  .nav__item--mega:focus-within .nav__mega-btn {
    color: var(--text);
    background: var(--surface-strong);
    border-color: var(--border);
  }

  .nav__item--mega:hover .nav__chev,
  .nav__item--mega:focus-within .nav__chev {
    transform: rotate(225deg) translateY(-1px);
  }
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.55);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav__backdrop[hidden] {
  display: none;
}

.mega {
  position: fixed;
  left: 0;
  right: 0;
  /* top: calc(var(--strip-h) + var(--header-h) - 2px); */
  z-index: 75;
  padding: 0 20px 20px;
}
ul.mega__list a {
  color: var(--text) !important;
  font-size: 15px !important;
}
/* Header height drops to --header-h-scrolled when .is-scrolled; keep mega flush to bar bottom */
.site-header.is-scrolled .mega {
  top: calc(var(--strip-h) + var(--header-h-scrolled) - 45px);
}

.nav__mega-bridge {
  display: none;
}

@media (min-width: 821px) {
  .nav__mega-bridge {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--strip-h) + var(--header-h) - 8px);
    height: 16px;
    z-index: 74;
    pointer-events: none;
  }

  .nav__item--mega:hover .nav__mega-bridge,
  .nav__item--mega:focus-within .nav__mega-bridge {
    pointer-events: auto;
  }

  .site-header.is-scrolled .nav__mega-bridge {
    top: calc(var(--strip-h) + var(--header-h-scrolled) - 8px);
  }

  .nav__item--mega .mega {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s var(--ease-out), visibility 0.22s var(--ease-out);
  }

  .nav__item--mega:hover .mega,
  .nav__item--mega:focus-within .mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.mega__inner {
  max-width: var(--max);
  margin: 0 auto;
  background: #fafafa;
  color: #0f172a;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 28px 70px rgba(29, 43, 58, 0.12);
  overflow: hidden;
}

.mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(240px, 300px);
  gap: 0;
  align-items: stretch;
}

.mega__grid--resources {
  /* Resources menu currently has 2 list columns + 1 CTA (the first column is intentionally removed in markup). */
  grid-template-columns: 1fr 1fr minmax(240px, 320px);
}

.mega__col {
  padding: 28px 26px 32px;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.mega__col:last-of-type {
  border-right: none;
}

.mega__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.mega__icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
}

.mega__icon--snow {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
}

.mega__icon--star {
  background: linear-gradient(135deg, #1d2b3a, var(--accent));
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.mega__icon--book {
  background: linear-gradient(135deg, #0f172a, #334155);
  border-radius: 4px 4px 5px 5px;
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.12);
}

.mega__icon--support {
  background: linear-gradient(135deg, #059669, #0d9488);
  border-radius: 6px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.mega__icon--tools {
  background: conic-gradient(from 45deg, var(--accent), var(--accent-2), #7eb8e0, var(--accent));
  border-radius: 6px;
}

.mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.mega__link {
  display: block;
  padding: 10px 10px;
  margin-inline: -10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  transition: background 0.2s, color 0.2s;
}

.mega__link:hover,
.mega__link:focus-visible {
  background: rgba(99, 102, 241, 0.1);
  color: #1d4ed8;
}

.mega__link.is-active {
  background: rgba(99, 102, 241, 0.14);
  color: #1e40af;
}

.mega__cta {
  padding: 26px 22px 28px;
  background: linear-gradient(180deg, #f0f9ff 0%, #e8f2fc 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(15, 23, 42, 0.06);
}

.mega__cta-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.mega__cta-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.mega__cta-text {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
}

.btn--dark {
  background: #0f172a;
  color: #f8fafc;
  border-color: #0f172a;
  box-shadow: none;
}

.btn--dark:hover {
  background: #1e293b;
  border-color: #1e293b;
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.page .page-hero {
  padding: 48px 0 56px;
}

.page-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--faint);
  margin: 0 0 12px;
}

.page-hero__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 16px;
}

.page-hero__lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 24px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.page-section--muted {
  background: rgba(var(--accent-rgb), 0.06);
}

.page-section__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 1.2vw + 1rem, 2rem);
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.page-section__intro {
  color: var(--muted);
  max-width: 70ch;
  margin: 0 0 28px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.step-card__num {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent-2);
  margin-bottom: 8px;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}

.bullet-block h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-family: "Syne", sans-serif;
}

.bullet-block ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 15px;
}

.bullet-block li {
  margin-bottom: 8px;
}

.anchor-target {
  scroll-margin-top: calc(var(--strip-h) + var(--header-h) + 16px);
}

.nav__list a:not(.btn) {
  font-size: 14px;
  color: var(--muted);
  position: relative;
  padding-block: 4px;
}

.nav__list a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav__list a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.nav__toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav.is-open .nav__toggle-bar:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav.is-open .nav__toggle-bar:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn--sm {
  padding: 10px 16px;
  font-size: 14px;
}

.btn--primary {
  background: linear-gradient(120deg, var(--accent), #1d4a6e 52%, var(--accent-2));
  color: #fff;
  box-shadow: 0 16px 40px rgba(var(--accent-rgb), 0.38);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(var(--accent-rgb), 0.48);
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
  background: var(--surface);
}

.btn--ghost:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  transform: translateY(-2px);
}

main {
  padding-top: calc(var(--strip-h) + var(--header-h));
}

.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  width: min(560px, 70vw);
  height: min(560px, 70vw);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite alternate;
}

.hero__orb--1 {
  top: -120px;
  right: -80px;
  background: radial-gradient(circle at 30% 30%, var(--accent), transparent 60%);
}

.hero__orb--2 {
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle at 70% 60%, var(--accent-2), transparent 55%);
  animation-delay: -4s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(40px, -30px, 0) scale(1.08);
  }
}

.hero__grid {
  position: absolute;
  inset: -40% -20%;
  background-image: linear-gradient(rgba(var(--text-rgb), 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--text-rgb), 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 65%);
  opacity: 0.35;
  transform: rotate(-6deg);
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
  margin: 0 0 20px;
}

.hero__title .line {
  display: block;
}

.hero__title .line--accent {
  background: linear-gradient(110deg, var(--text) 6%, var(--accent) 42%, var(--accent-2) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--faint);
  margin: 0 0 14px;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--faint);
  font-size: 14px;
}

.hero__meta li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.hero__visual {
  position: relative;
}

.hero-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: var(--bg-elevated);
}

.hero-card img {
  width: 100%;
  height: clamp(320px, 48vw, 460px);
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}

.hero-card:hover img {
  transform: scale(1.06);
}

.hero-card__caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(var(--header-surface-rgb), 0.92), var(--bg-elevated));
}

.hero-card__kpi {
  font-family: "Syne", sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-card__label {
  font-size: 13px;
  color: var(--muted);
  align-self: center;
}

.floating-badge {
  position: absolute;
  right: 12px;
  top: 18%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(var(--header-surface-rgb), 0.94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  max-width: 200px;
}

.floating-badge__title {
  display: block;
  font-weight: 700;
  font-size: 14px;
}

.floating-badge__sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.band {
  border-block: 1px solid var(--border);
  background: rgba(var(--accent-rgb), 0.05);
}

.band--tight {
  padding-block: 18px;
}

.trust-row__label {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--faint);
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(var(--text-rgb), 0.38);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 88px 0;
}

.section--pad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section--dark {
  background: radial-gradient(120% 80% at 10% 0%, rgba(var(--accent-rgb), 0.1), transparent 55%),
    linear-gradient(180deg, #dbe8f4, #cfdfea);
  border-block: 1px solid var(--border);
}

.section__intro {
  max-width: 720px;
  margin-bottom: 40px;
}

.section__intro--on-dark .muted {
  color: rgba(var(--text-rgb), 0.55);
}

.section__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.15;
}

.split-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.split-head__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 2.4vw + 1rem, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
}

.split-head__title .block {
  display: block;
}

.split-head__title .block--muted {
  color: rgba(var(--text-rgb), 0.45);
}

.split-head__body p {
  color: var(--muted);
  font-size: 17px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar {
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
  min-height: 100%;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.pillar__icon {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.pillar h3 {
  font-family: "Syne", sans-serif;
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.muted {
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-card {
  margin: 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 12px 36px rgba(29, 43, 58, 0.06);
  min-height: 100%;
}

.quote-card blockquote {
  margin: 0 0 16px;
  font-size: 16px;
  color: rgba(var(--text-rgb), 0.9);
}

.quote-card figcaption {
  font-size: 13px;
  color: var(--faint);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.35s, transform 0.45s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
}

.service-card__media {
  position: relative;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card h3 {
  font-family: "Syne", sans-serif;
  margin: 18px 20px 8px;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0 20px 16px;
  color: var(--muted);
  font-size: 15px;
  flex: 1;
}

.text-link {
  margin: 0 20px 22px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-link::after {
  content: "→";
  transition: transform 0.25s var(--ease-out);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.cta-inline {
  margin-top: 32px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(var(--accent-rgb), 0.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(var(--header-surface-rgb), 0.75);
}

.cta-inline p {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
}

.global {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.global__stats {
  display: grid;
  gap: 14px;
}

.stat {
  padding: 22px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  display: grid;
  gap: 4px;
}

.stat__value {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat__label {
  font-size: 14px;
  color: var(--muted);
}

.faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.accordion {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}

.accordion__item + .accordion__item {
  border-top: 1px solid var(--border);
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.accordion__trigger::after {
  content: "+";
  font-family: "Syne", sans-serif;
  font-size: 22px;
  color: var(--accent-2);
  transition: transform 0.3s var(--ease-out);
}

.accordion__item.is-open .accordion__trigger::after {
  transform: rotate(45deg);
}

.accordion__panel {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
}

.accordion__panel[hidden] {
  display: none;
}

.cta-final {
  padding: 72px 0 96px;
}

.cta-final__inner {
  border-radius: calc(var(--radius-lg) + 6px);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(var(--accent-rgb), 0.22), rgba(var(--accent-2-rgb), 0.14));
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.cta-final h2 {
  font-family: "Syne", sans-serif;
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
  letter-spacing: -0.03em;
}

.cta-final p {
  margin: 0;
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.lead-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.lead-form input:focus {
  border-color: rgba(var(--accent-rgb), 0.65);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.2);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.25em;
  font-size: 13px;
  color: var(--accent-2);
}

.footer {
  position: relative;
  padding: 64px 0 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0e1620 0%, #152a3d 42%, #1d3d55 100%);
  color: rgba(255, 255, 255, 0.92);
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s, opacity 0.2s;
}

.footer a:hover {
  color: var(--accent-2);
}

.footer__mega {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: 40px;
  align-items: start;
}

.footer__brand {
  max-width: 46ch;
}

.footer__logo-link {
  display: inline-block;
}

.footer__logo-panel {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.footer__logo-img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer__tag {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.footer__contact-lines {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.footer__contact-lines li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer__line-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-2);
  opacity: 0.95;
}

.footer__social {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.footer__social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
}

.footer__social-link:hover {
  border-color: rgba(90, 163, 212, 0.55);
  color: #fff;
  background: rgba(43, 93, 140, 0.35);
}

.footer__heading {
  font-family: "Syne", sans-serif;
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__legal-muted {
  margin: 0;
  max-width: 52ch;
  text-align: right;
}

.footer__top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 70;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, #152a3d, #0e1620);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s var(--ease-out), border-color 0.2s, color 0.2s;
}

.footer__top:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 163, 212, 0.55);
  color: var(--accent-2);
}

@media (max-width: 1100px) {
  .footer__mega {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .footer__mega {
    grid-template-columns: 1fr;
  }

  .footer__legal-muted {
    text-align: left;
  }

  .footer {
    padding-bottom: 88px;
  }
}

@media (max-width: 1024px) {
  .hero__layout,
  .split-head,
  .global,
  .faq,
  .cta-final__inner {
    grid-template-columns: 1fr;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 16px;
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .logo__img {
    height: 36px;
    max-width: min(200px, 55vw);
  }

  .nav__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 4px 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
  }

  .nav__mobile-title {
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
  }

  .nav__close {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text);
    font-size: 26px;
    line-height: 1;
    display: grid;
    place-items: center;
  }

  .nav__close:hover {
    border-color: rgba(var(--accent-rgb), 0.35);
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__list {
    position: fixed;
    inset: calc(var(--strip-h) + var(--header-h) + 10px) 12px 12px 12px;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(var(--header-surface-rgb), 0.98);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.25s var(--ease-out);
  }

  .site-header.is-scrolled .nav__list {
    inset: calc(var(--strip-h) + var(--header-h-scrolled) + -44px) 12px 12px 12px;
}

  .nav__backdrop {
    z-index: 100;
  }

  .nav.is-open .nav__list {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list .btn {
    width: 100%;
    justify-content: center;
  }

  .top-strip__text {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  canvas.globe-strip__canvas {
    width: 100% !important;
}
  .top-strip__inner {
    justify-content: center;
    gap: 10px;
  }
  .top-strip__text {
    display: none;
  }
  .top-strip .link-ghost {
    font-weight: 700;
  }
}

@media (max-width: 1080px) {
  .mega__grid {
    grid-template-columns: 1fr;
  }

  .mega__col {
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .mega__cta {
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .bullet-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .is-scrolled ul#nav-menu {
    min-height: 426px;
}
  .nav__mega-bridge {
    display: none !important;
  }

  .mega {
    position: static;
    padding: 0;
    margin-top: 4px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__item--mega.is-open .mega {
    display: block;
  }

  .mega__inner {
    border-radius: var(--radius-md);
    box-shadow: none;
  }

  .nav.is-open .nav__list {
    max-height: min(78vh, 640px);
    overflow-y: auto;
  }

  .nav__item--mega {
    width: 100%;
  }

  .nav__mega-btn {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html,
  body {
    scroll-behavior: auto !important;
  }

  .nav__item--mega .mega {
    transition: none !important;
  }

  .marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}

/* —— Global “Let’s talk” strip (before footer) —— */
.contact-strip {
  padding: 56px 0 8px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.06), transparent);
}

.testimonials {
  padding: 44px 0 10px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(var(--accent-2-rgb), 0.08), transparent 60%);
}

.testimonials__inner {
  max-width: var(--max);
}

.testimonials__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.testimonials__kicker {
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(var(--accent-rgb), 0.92);
}

.testimonials__title {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 1.4vw + 1.1rem, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.testimonials__lede {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.testimonials__controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, #ffffff, #f2f7fb);
  box-shadow: 0 10px 26px rgba(29, 43, 58, 0.12);
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.testimonials__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(29, 43, 58, 0.14);
}

.testimonials__viewport {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #ffffff 0%, #f6fbff 55%, #eef5fb 100%);
  box-shadow: var(--shadow-soft);
}

.testimonials__track {
  display: flex;
  gap: 14px;
  padding: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonials__track::-webkit-scrollbar {
  height: 10px;
}
.testimonials__track::-webkit-scrollbar-thumb {
  background: rgba(var(--text-rgb), 0.14);
  border-radius: 999px;
}

.t-card {
  flex: 0 0 min(520px, 92%);
  scroll-snap-align: start;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 44px rgba(29, 43, 58, 0.10);
}

.t-card__stars {
  color: rgba(var(--accent-rgb), 0.95);
  letter-spacing: 0.12em;
  font-size: 14px;
  margin-bottom: 10px;
}

.t-card__quote {
  margin: 0 0 14px;
  color: rgba(var(--text-rgb), 0.9);
  font-size: 15.5px;
  line-height: 1.7;
}

.t-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 26px rgba(var(--accent-rgb), 0.22);
}

.t-card__name {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.t-card__role {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 820px) {
  .testimonials__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .testimonials__controls {
    width: 100%;
    justify-content: flex-end;
  }
  .t-card {
    flex-basis: 92%;
  }
}

.globe-strip {
  padding: 28px 0 28px;
  background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), 0.06));
}

.globe-strip__inner {
  max-width: var(--max);
}

.globe-strip__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #ffffff 0%, #f3f8fc 55%, #eef5fb 100%);
  box-shadow: var(--shadow-soft);
  /* Avoid clipping the globe on small screens when it tilts/spins. */
  overflow: visible;
}

.globe-strip__copy {
  padding: clamp(24px, 3.4vw, 42px);
}

.globe-strip__kicker {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(var(--accent-rgb), 0.9);
}

.globe-strip__title {
  margin: 0 0 12px;
  font-family: "Merriweather", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(1.7rem, 1.4vw + 1.1rem, 2.3rem);
  color: var(--text);
}

.globe-strip__lede {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 52ch;
}

.globe-strip__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(var(--text-rgb), 0.86);
}

.globe-strip__bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.globe-strip__bullets li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.14);
  margin-top: 0.35em;
  flex: 0 0 9px;
}

.globe-strip__visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  perspective: 900px;
  padding: clamp(12px, 2vw, 22px);
  border-left: 1px solid var(--border);
  background:
    radial-gradient(80% 70% at 60% 35%, rgba(var(--accent-2-rgb), 0.22), transparent 60%),
    radial-gradient(70% 65% at 30% 70%, rgba(var(--accent-rgb), 0.16), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.75));
}

.globe-strip__canvas {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 55px rgba(29, 43, 58, 0.22));
  opacity: 0.98;
}

.globe-strip__halo {
  position: absolute;
  z-index: 1;
  width: min(520px, 115%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 45%, rgba(var(--accent-2-rgb), 0.18), transparent 62%);
  opacity: 0.28;
  filter: blur(0px);
  pointer-events: none;
}

.globe-strip__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
}

.globe-strip__earth {
  width: min(360px, 88%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  position: relative;
  left: -10px;
  background-color: #0e2031;
  background-image: url("https://clouds.matteason.co.uk/images/2048x1024/earth.jpg");
  background-size: cover;
  background-repeat: repeat-x;
  background-position-x: var(--globe-bg-x, 50%);
  background-position-y: 50%;
  box-shadow:
    inset -22px -18px 38px rgba(0, 0, 0, 0.42),
    inset 18px 18px 46px rgba(255, 255, 255, 0.12),
    0 28px 62px rgba(29, 43, 58, 0.24);
  transform: rotateX(var(--globe-tilt-x, 0deg)) rotateY(var(--globe-tilt-y, 0deg));
  transform-origin: 50% 50%;
  transition: transform 120ms var(--ease-out);
  will-change: transform, background-position;
  position: relative;
  overflow: hidden;
}

.globe-strip__earth::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.24), transparent 42%),
    radial-gradient(circle at 70% 70%, rgba(var(--accent-2-rgb), 0.14), transparent 55%),
    radial-gradient(circle at 22% 72%, rgba(var(--accent-rgb), 0.12), transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.globe-strip__earth::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 28% 28%, transparent 52%, rgba(0, 0, 0, 0.45) 78%);
  pointer-events: none;
}

/* If the globe fails to load, reduce the “blurry” feel. */
.globe-strip__visual[data-globe-failed="true"] .globe-strip__halo {
  opacity: 0.45;
  filter: blur(0px);
}
.globe-strip__visual[data-globe-failed="true"] {
  background:
    radial-gradient(70% 60% at 55% 45%, rgba(var(--accent-2-rgb), 0.14), transparent 62%),
    radial-gradient(65% 60% at 30% 70%, rgba(var(--accent-rgb), 0.1), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.88));
}
.globe-strip__visual[data-globe-failed="true"] .globe-strip__canvas {
  opacity: 0;
}
.globe-strip__visual[data-globe-failed="true"] .globe-strip__fallback {
  display: grid;
}
.globe-strip__visual .globe-strip__canvas {
  opacity: 0;
}
.globe-strip__visual[data-globe-ready="true"] .globe-strip__canvas {
  opacity: 0.98;
}
.globe-strip__visual[data-globe-ready="true"] .globe-strip__fallback {
  display: none;
}


@media (max-width: 900px) {
  .globe-strip__grid {
    grid-template-columns: 1fr;
  }
  .globe-strip__visual {
    border-left: 0;
    border-top: 1px solid var(--border);
    min-height: 320px;
    padding: 18px 14px 20px;
  }
  .globe-strip__earth {
    width: min(300px, 92%);
    left: 0;
  }
}

@media (max-width: 520px) {
  .globe-strip {
    padding: 18px 0 18px;
  }
  .globe-strip__copy {
    padding: 20px 18px;
  }
  .globe-strip__visual {
    min-height: 340px;
    padding: 16px 12px 24px;
  }
  .globe-strip__earth {
    width: min(240px, 92%);
    left: 0;
    box-shadow:
      inset -18px -14px 32px rgba(0, 0, 0, 0.42),
      inset 14px 14px 38px rgba(255, 255, 255, 0.12),
      0 22px 44px rgba(29, 43, 58, 0.22);
  }
}

.contact-strip__inner {
  max-width: var(--max);
}

.contact-strip__panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #ffffff 0%, #f4f9fc 55%, #eef5fb 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.contact-strip__col {
  padding: clamp(28px, 4vw, 44px);
}

.contact-strip__col--info {
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.07), transparent);
}

.contact-strip__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.9rem, 2vw + 1rem, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  line-height: 1.1;
  color: var(--text);
}

.contact-strip__lede {
  margin: 0 0 28px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 42ch;
}

.contact-strip__channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-strip__channel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(var(--header-surface-rgb), 0.75);
}

.contact-strip__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-strip__dot--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.contact-strip__dot--accent-2 {
  background: var(--accent-2);
}

.contact-strip__dot--muted {
  background: linear-gradient(135deg, #3d8b6a, #2b5d8c);
}

.contact-strip__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px;
}

.contact-strip__channel a {
  font-weight: 600;
  color: var(--accent);
}

.contact-strip__channel a:hover {
  text-decoration: underline;
}

.contact-strip__value {
  font-weight: 600;
  color: var(--text);
}

.contact-strip__form {
  display: grid;
  gap: 16px;
}

.contact-strip__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-strip__field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-strip__field input,
.contact-strip__field textarea,
.contact-strip__select-wrap select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-strip__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-strip__field input:focus,
.contact-strip__field textarea:focus,
.contact-strip__select-wrap select:focus {
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.contact-strip__select-wrap {
  position: relative;
}

.contact-strip__select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(var(--text-rgb), 0.45);
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-strip__select-wrap select {
  appearance: none;
  padding-right: 40px;
}

.contact-strip__submit {
  margin-top: 4px;
}

.contact-strip__note {
  margin: 0;
  min-height: 1.25em;
  font-size: 13px;
  color: var(--accent);
}

@media (max-width: 900px) {
  .contact-strip__panel {
    grid-template-columns: 1fr;
  }

  .contact-strip__col--info {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .contact-strip__row {
    grid-template-columns: 1fr;
  }
}

/* —— Consultation modal (delayed) —— */
.consult-modal[hidden] {
  display: none !important;
}

.consult-modal:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.consult-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--text-rgb), 0.4);
  backdrop-filter: blur(4px);
}

.consult-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  padding: 28px 24px 22px;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, #ffffff 0%, #f2f8fc 100%);
  box-shadow: 0 28px 80px rgba(29, 43, 58, 0.18);
}

.consult-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(var(--header-surface-rgb), 0.9);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.consult-modal__close:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  background: var(--bg-elevated);
}

.consult-modal__title {
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 44px 8px 0;
  line-height: 1.2;
  color: var(--text);
}

.consult-modal__desc {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.consult-modal__form {
  display: grid;
  gap: 14px;
}

.consult-modal__field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.consult-modal__field input,
.consult-modal__field textarea,
.consult-modal__select-wrap select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.consult-modal__field textarea {
  resize: vertical;
  min-height: 110px;
}

.consult-modal__field input:focus,
.consult-modal__field textarea:focus,
.consult-modal__select-wrap select:focus {
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.consult-modal__select-wrap {
  position: relative;
}

.consult-modal__select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(var(--text-rgb), 0.45);
  transform: translateY(-50%);
  pointer-events: none;
}

.consult-modal__select-wrap select {
  appearance: none;
  padding-right: 40px;
}

.consult-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px;
}

.consult-modal__btn-primary {
  min-width: 120px;
}

.consult-modal__btn-secondary {
  border-color: var(--border);
}

.consult-modal__note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  min-height: 1.25em;
  font-size: 13px;
  color: var(--accent);
}
