:root {
  --navy: #081632;
  --navy-2: #10234d;
  --navy-3: #172d60;
  --blue: #2f6fff;
  --blue-soft: #dfe9ff;
  --accent: #f3c520;
  --ink: #12182b;
  --muted: #697188;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: #dfe4ee;
  --shadow: 0 20px 60px rgba(8, 22, 50, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 110px 0;
}
.section-dark {
  background: var(--navy);
  color: #fff;
}
.section-soft {
  background: var(--soft);
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -50px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 9999;
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: 0.25s ease;
}
.site-header.scrolled {
  padding: 9px 0;
  background: rgba(8, 22, 50, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-shell {
  height: 64px;
  padding: 0 12px 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 35px rgba(1, 9, 27, 0.18);
}
.brand {
  display: inline-flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
}
.brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
  max-width: 185px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.main-nav > a:not(.button) {
  position: relative;
}
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--blue);
  transition: 0.25s;
}
.main-nav > a:not(.button):hover::after {
  right: 0;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 11px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #121212;
  font-weight: 850;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(243, 197, 32, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(243, 197, 32, 0.28);
}
.button-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
}
.button-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.button-full {
  width: 100%;
  border: 0;
}

.hero {
  min-height: 850px;
  padding: 150px 0 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(47, 111, 255, 0.22),
      transparent 31%
    ),
    linear-gradient(145deg, #07142e 0%, #0a1733 58%, #101f46 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow,
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 850;
  color: var(--blue);
  margin: 0 0 18px;
}
.hero .eyebrow {
  color: #cbd7ff;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero h1 {
  font-size: clamp(38px, 5.1vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 26px;
  max-width: 800px;
}
.hero h1 span {
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: #cdd7ed;
  max-width: 710px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.risk-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 650px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  color: #dbe4f7;
  font-size: 14px;
}
.risk-note p {
  margin: 0;
}
.risk-icon {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--blue);
  font-weight: 900;
  color: white;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 480px;
  margin-bottom: 24px;
}
.avatar-stack {
  display: flex;
  flex: none;
}
.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--navy);
  margin-left: -12px;
}
.avatar-stack img:first-child {
  margin-left: 0;
}
.hero-trust p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #b9c5de;
}

.hero-visual {
  height: 660px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-carousel {
  flex: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 95%;
  height: 720px;
  transform: rotate(-1deg);
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
.carousel-col {
  min-width: 0;
  overflow: hidden;
}
.carousel-col-alt {
  --stagger: 70px;
}
.carousel-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: carousel-scroll-a 34s linear infinite;
  will-change: transform;
}
.carousel-col-alt .carousel-track {
  animation-name: carousel-scroll-b;
  animation-duration: 42s;
  animation-direction: reverse;
}
@keyframes carousel-scroll-a {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--cycle-shift, -1064px));
  }
}
@keyframes carousel-scroll-b {
  from {
    transform: translateY(calc(var(--stagger, 0px) * -1));
  }
  to {
    transform: translateY(
      calc(var(--cycle-shift, -1054px) - var(--stagger, 0px))
    );
  }
}
.carousel-card {
  position: relative;
  flex: none;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.carousel-card img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}
.carousel-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(8, 22, 50, 0.78);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}
.microproof {
  margin-top: 70px;
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 3;
}
.microproof span {
  padding: 20px 24px;
  text-align: center;
  color: #d9e1f1;
  font-size: 14px;
  font-weight: 750;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.microproof span:last-child {
  border-right: 0;
}

.section-heading {
  margin-bottom: 48px;
}
.section-heading h2 {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 0;
}
.section-heading > p {
  color: var(--muted);
  font-size: 17px;
  max-width: 660px;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
}
.split-heading > p {
  margin-bottom: 6px;
}
.center {
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}
.center > p {
  margin: 18px auto 0;
}
.center .kicker {
  margin-bottom: 16px;
}

.credibility {
  border-bottom: 1px solid var(--line);
}
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: 0 12px 32px rgba(8, 22, 50, 0.05);
}
.credibility-item {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--line);
}
.credibility-item:last-child {
  border-right: 0;
}
.credibility-item strong {
  font-size: 20px;
}

.logos-marquee {
  margin-top: 48px;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logos-scroll 28s linear infinite;
}
.logos-marquee:hover .logos-track {
  animation-play-state: paused;
}
.logo-item {
  flex: none;
  width: 150px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.42;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease;
}
.logo-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-1498px);
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 12px 36px rgba(8, 22, 50, 0.055);
  position: relative;
  overflow: hidden;
  min-height: 250px;
}
.feature-card h3 {
  font-size: 23px;
  letter-spacing: -0.03em;
  margin: 18px 0 10px;
}
.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  color: var(--blue);
}
.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-large {
  grid-row: span 2;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.feature-large img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  margin-top: auto;
  object-position: center 30%;
}
.feature-wide {
  grid-column: 2/4;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.feature-wide img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  margin-bottom: 22px;
}
.service-tab {
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 13px;
  min-height: 54px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s;
}
.service-tab.active {
  background: var(--navy);
  color: white;
  box-shadow: 0 10px 24px rgba(8, 22, 50, 0.14);
}
.service-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.service-copy {
  padding: 55px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-meta {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.service-copy h3 {
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.service-copy dl {
  margin: 0 0 28px;
}
.service-copy dl div {
  margin-bottom: 15px;
}
.service-copy dt,
.service-copy dd {
  display: inline;
  margin: 0;
}
.service-copy dt {
  font-weight: 850;
}
.service-copy dd {
  color: var(--muted);
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}
.chips span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #234b9f;
  font-size: 12px;
  font-weight: 800;
}
.service-media {
  position: relative;
  background: var(--navy);
  height: 600px;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.18s ease,
    transform 0.3s ease;
}
.service-media.switching img {
  opacity: 0.35;
  transform: scale(1.02);
}
.media-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 15px 18px;
  border-radius: 15px;
  background: rgba(8, 22, 50, 0.84);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.presence {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #10295b);
}
.presence::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(47, 111, 255, 0.18);
  filter: blur(90px);
  right: -180px;
  top: -190px;
}
.presence-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.presence-copy h2 {
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
.presence-copy > p {
  font-size: 18px;
  color: #cbd5e8;
  max-width: 520px;
}
.kicker-light {
  color: #95b5ff;
}
.presence-stats {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}
.presence-stats div {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}
.presence-stats strong {
  display: block;
  font-size: 25px;
}
.presence-stats span {
  color: #b8c6df;
  font-size: 12px;
}
.map-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.map-stage {
  position: relative;
  perspective: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.map-plane {
  position: relative;
  z-index: 1;
  width: 94%;
  transform: rotateX(48deg) rotateZ(var(--map-spin, -14deg));
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
}
.map-plane svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.map-extrusion {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}
.map-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-layer:nth-child(1) {
  transform: translateZ(-3px);
}
.map-layer:nth-child(1) use {
  fill: #12305f;
}
.map-layer:nth-child(2) {
  transform: translateZ(-6px);
}
.map-layer:nth-child(2) use {
  fill: #0f2a53;
}
.map-layer:nth-child(3) {
  transform: translateZ(-9px);
}
.map-layer:nth-child(3) use {
  fill: #0c2447;
}
.map-layer:nth-child(4) {
  transform: translateZ(-12px);
}
.map-layer:nth-child(4) use {
  fill: #091e3b;
}
.map-layer:nth-child(5) {
  transform: translateZ(-15px);
}
.map-layer:nth-child(5) use {
  fill: #06182f;
}
.map-top {
  position: relative;
}
.map-country {
  fill: #1a3c7c;
  stroke: #5b83d9;
  stroke-width: 1.1;
  outline: none;
  transition:
    fill 0.25s ease,
    stroke 0.25s ease,
    opacity 0.25s ease;
  cursor: pointer;
}
.map-country:focus-visible {
  outline: none;
  fill: var(--blue);
  stroke: #bcd0ff;
}
.map-plane
  svg:has(.map-country:hover, .map-country:focus-visible)
  .map-country {
  opacity: 0.5;
}
.map-country:hover,
.map-country:focus-visible {
  fill: var(--blue) !important;
  stroke: #bcd0ff !important;
  stroke-width: 1.7;
  opacity: 1 !important;
}
.map-pin circle {
  fill: var(--accent);
}
.map-pin .pin-halo {
  opacity: 0.22;
}
.map-pin-accent circle {
  fill: #ff5f6b;
}
.map-pin {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.map-card:hover .map-pin,
.map-card:focus-within .map-pin {
  opacity: 1;
}
.map-pins-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.map-pin-label {
  position: absolute;
  transform: translate(-50%, calc(-100% - 9px));
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.65),
    0 0 12px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.map-pin-label.is-accent {
  color: #ff8a93;
}
.map-card:hover .map-pin-label,
.map-card:focus-within .map-pin-label {
  opacity: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #b7c8ef;
  box-shadow: 0 16px 34px rgba(8, 22, 50, 0.08);
}
.pricing-index {
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.12em;
}
.pricing-card h3 {
  font-size: 25px;
  margin: 32px 0 12px;
}
.pricing-card p {
  color: var(--muted);
}
.pricing-card strong {
  margin-top: auto;
  padding-top: 20px;
  color: var(--navy);
}
.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.comparison-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 14px 40px rgba(8, 22, 50, 0.06);
}
.comparison table {
  width: 100%;
  border-collapse: collapse;
  min-width: 880px;
}
.comparison th,
.comparison td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.comparison tr:last-child th,
.comparison tr:last-child td {
  border-bottom: 0;
}
.comparison th:last-child,
.comparison td:last-child {
  border-right: 0;
}
.comparison thead th {
  font-size: 14px;
  background: #f9fbfe;
}
.comparison tbody th {
  width: 25%;
  font-size: 14px;
}
.comparison td {
  color: #586178;
  font-size: 14px;
}
.comparison .labor-col {
  background: #eaf0ff;
  color: #15366f;
}
.comparison thead .labor-col {
  background: var(--navy);
  color: white;
  font-size: 16px;
}

.testimonial-marquee {
  margin-top: 48px;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  animation: testimonials-scroll 46s linear infinite;
}
.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}
.testimonial-track.is-dragging {
  cursor: grabbing;
}
.testimonial-track.is-dragging .testimonial-card {
  pointer-events: none;
}
@keyframes testimonials-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-1696px);
  }
}
.testimonial-card {
  flex: none;
  width: 400px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 22, 50, 0.05);
}
.testimonial-quote {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  flex: none;
  -webkit-user-drag: none;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
}
.testimonial-author span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.faq .section-heading {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--soft);
  border-radius: var(--radius-lg);
  transition: background 0.2s ease;
}
.faq-item:hover {
  background: var(--blue-soft);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
}
.faq-plus {
  flex-shrink: 0;
  display: flex;
  color: var(--muted);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-plus {
  transform: rotate(180deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-answer > p {
  overflow: hidden;
  color: var(--muted);
  margin: 0;
  padding: 0 30px;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-answer > p {
  padding-bottom: 26px;
}

.contact {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(47, 111, 255, 0.24),
      transparent 26%
    ),
    var(--navy);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}
.contact-form-card {
  background: #fff;
  color: var(--ink);
  border-radius: 30px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 {
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
.contact-form-card > p:not(.kicker) {
  color: var(--muted);
  max-width: 670px;
}
.contact-form-card form {
  display: grid;
  gap: 15px;
  margin-top: 12px;
}
.form-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.form-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9deea;
  transition: background 0.2s ease;
}
.form-progress-dot.is-active {
  background: var(--blue);
}
.form-progress-label {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}
.form-step {
  display: grid;
  gap: 15px;
}
.form-step[hidden] {
  display: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}
.form-nav .button {
  flex: 1;
}
.button-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
  flex: 0 0 auto;
  min-width: 110px;
}
.button-ghost-dark:hover {
  background: var(--soft);
  box-shadow: none;
}
.contact-form-card label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 850;
  color: #3c465c;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid #d9deea;
  border-radius: 12px;
  background: #fbfcfe;
  padding: 13px 14px;
  outline: none;
  transition: 0.2s;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 111, 255, 0.1);
}
.contact-form-card textarea {
  resize: vertical;
}
.contact-trust {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
}
.trust-image {
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(47, 111, 255, 0.3),
    transparent 40%
  );
}
.trust-image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: center bottom;
}
.trust-copy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-copy span {
  padding: 18px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 850;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-copy span:last-child {
  border-right: 0;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 22, 50, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(90vh, 780px);
  overflow-y: auto;
  border-radius: 30px;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.3s ease;
}
.modal-overlay.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--soft);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.modal-close:hover {
  background: var(--line);
}
.modal-form-card {
  margin: 0;
}
body.modal-open {
  overflow: hidden;
}

.site-footer {
  padding: 70px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 55px;
}
.footer-brand img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand p {
  color: #aebbd4;
  max-width: 390px;
  margin: 22px 0;
}
.site-footer h3 {
  font-size: 13px;
  margin-bottom: 16px;
  color: #fff;
}
.site-footer a,
.site-footer span {
  display: block;
  color: #aebbd4;
  font-size: 13px;
  margin: 10px 0;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer .button {
  display: inline-flex;
  color: #111;
  margin-top: 10px;
}
.footer-contact-title {
  margin-top: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.thanks-page {
  min-height: 100vh;
  background: var(--navy);
  color: #fff;
}
.thanks-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  position: relative;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(47, 111, 255, 0.27),
      transparent 28%
    ),
    var(--navy);
}
.thanks-brand {
  position: absolute;
  top: 30px;
  left: 40px;
  background: white;
  border-radius: 999px;
  padding: 8px 18px;
  height: 56px;
}
.thanks-brand img {
  height: 36px;
}
.thanks-card {
  text-align: center;
  max-width: 620px;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  backdrop-filter: blur(16px);
}
.thanks-card h1 {
  font-size: 76px;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}
.thanks-card p {
  color: #c6d1e8;
  font-size: 18px;
}
.thanks-card .button {
  margin-top: 16px;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
  .hero-grid,
  .presence-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 135px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-sub,
  .risk-note,
  .hero-trust {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    height: 520px;
  }
  .hero-carousel {
    width: 100%;
    height: 600px;
  }
  .carousel-col-alt {
    --stagger: 50px;
  }
  .microproof {
    grid-template-columns: repeat(2, 1fr);
  }
  .microproof span:nth-child(2) {
    border-right: 0;
  }
  .microproof span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-large {
    grid-row: auto;
    grid-column: span 2;
  }
  .feature-wide {
    grid-column: span 2;
  }
  .service-stage {
    grid-template-columns: 1fr;
  }
  .service-media {
    min-height: 420px;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-trust {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2/4;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .section {
    padding: 78px 0;
  }
  .site-header {
    padding: 10px 0;
  }
  .nav-shell {
    height: 58px;
    padding-left: 14px;
  }
  .brand img {
    height: 32px;
    max-width: 150px;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(8, 22, 50, 0.24);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > a {
    padding: 12px;
  }
  .main-nav .button {
    margin-top: 8px;
  }
  .hero {
    min-height: auto;
    padding-top: 118px;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }
  .hero-visual {
    height: 380px;
  }
  .hero-carousel {
    width: 95%;
    height: 420px;
    grid-template-columns: 1fr;
  }
  .carousel-col-alt {
    display: none;
  }
  .microproof {
    margin-top: 44px;
  }
  .microproof span {
    padding: 16px 10px;
    font-size: 12px;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .credibility-grid {
    grid-template-columns: 1fr 1fr;
  }
  .credibility-item {
    min-height: 86px;
    border-bottom: 1px solid var(--line);
  }
  .credibility-item:nth-child(2) {
    border-right: 0;
  }
  .credibility-item:nth-child(n + 3) {
    border-bottom: 0;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .feature-large,
  .feature-wide {
    grid-column: auto;
  }
  .feature-wide {
    grid-template-columns: 1fr;
  }
  .feature-large {
    min-height: auto;
  }
  .feature-large img {
    margin-top: 28px;
  }
  .feature-wide img {
    height: 240px;
  }
  .service-tabs {
    display: flex;
    overflow: auto;
    scrollbar-width: none;
  }
  .service-tab {
    min-width: max-content;
  }
  .service-stage {
    border-radius: 24px;
  }
  .service-copy {
    padding: 30px 24px;
  }
  .service-copy h3 {
    font-size: 38px;
  }
  .service-media {
    min-height: 320px;
  }
  .presence-grid {
    gap: 38px;
  }
  .presence-stats {
    flex-direction: column;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .comparison-wrap {
    margin-inline: -14px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .faq-question {
    padding: 22px 22px;
    font-size: 16px;
  }
  .faq-answer > p {
    padding: 0 22px;
  }
  .contact-form-card {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .thanks-card {
    padding: 42px 24px;
  }
  .thanks-card h1 {
    font-size: 58px;
  }
  .thanks-brand {
    left: 20px;
    top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
