:root {
  --bg: #050814;
  --surface: #101722;
  --surface-soft: rgba(16, 23, 34, 0.72);
  --surface-lift: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f6f2e9;
  --muted: #b5b9b6;
  --soft: #7d8580;
  --green: #16d17a;
  --green-soft: rgba(22, 209, 122, 0.14);
  --green-line: rgba(22, 209, 122, 0.38);
  --font-heading: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--muted);
  background:
    radial-gradient(circle at 14% 10%, rgba(22, 209, 122, 0.07), transparent 390px),
    radial-gradient(circle at 82% 18%, rgba(248, 250, 252, 0.045), transparent 450px),
    radial-gradient(circle at 46% 88%, rgba(22, 209, 122, 0.035), transparent 520px),
    linear-gradient(180deg, #050814 0%, #070b14 46%, #050814 100%);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1px, transparent 0);
  background-size: 18px 18px;
}

body.drawer-open {
  overflow: hidden;
}

body.loader-active {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 20px;
  align-content: center;
  background: #050814;
  opacity: 1;
  visibility: visible;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-skip .page-loader {
  display: none;
}

.loader-logo {
  display: block;
  width: 48px;
  height: 48px;
  animation: loaderPulse 900ms var(--ease) infinite alternate;
}

@keyframes loaderPulse {
  0% { opacity: 0.6; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}

.loader-line {
  overflow: hidden;
  width: min(220px, 58vw);
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: translateX(-100%);
  animation: loaderLine 700ms var(--ease) forwards;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.container {
  width: min(100% - 96px, var(--container));
  margin-inline: auto;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(5, 8, 20, 0.54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 36px;
  width: auto;
}

.brand-logo--footer {
  height: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  opacity: 0.68;
  transition: opacity 240ms ease, color 240ms ease;
}

.nav-links a::after,
.footer-links a::after,
.section-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(22, 209, 122, 0));
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 260ms var(--ease), opacity 220ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.footer-links a:hover::after,
.section-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.nav-button,
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 22px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: transform 280ms var(--ease), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease, color 260ms ease;
}

.nav-button {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 14px;
}

.nav-button svg,
.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.nav-primary,
.button.primary {
  color: #04120b;
  border-color: var(--green);
  background: linear-gradient(180deg, #32e892, var(--green));
  box-shadow: 0 16px 38px rgba(22, 209, 122, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.nav-button:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 209, 122, 0.24);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22), 0 0 28px rgba(22, 209, 122, 0.065);
}

.nav-primary:hover,
.button.primary:hover {
  background: #35e593;
  border-color: #35e593;
  box-shadow: 0 0 0 4px rgba(22, 209, 122, 0.08), 0 22px 52px rgba(22, 209, 122, 0.18);
}

.button.secondary:hover,
.nav-button:not(.nav-primary):hover {
  border-color: rgba(22, 209, 122, 0.26);
  background: rgba(255, 255, 255, 0.058);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18), 0 0 24px rgba(22, 209, 122, 0.06);
}

.button-xl {
  min-height: 62px;
  padding-inline: 30px;
}

.menu-button,
.drawer-close {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: transparent;
}

.menu-button span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.drawer-close svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.drawer-backdrop,
.mobile-drawer {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  --globe-glow-x: 78%;
  --globe-glow-y: 45%;
  --card-glow-x: 54%;
  --card-glow-y: 48%;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
  opacity: 0.42;
}

.hero-glow {
  position: absolute;
  inset: -8%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(circle at var(--globe-glow-x) var(--globe-glow-y), rgba(22, 209, 122, 0.12) 0%, rgba(22, 209, 122, 0.045) 34%, transparent 62%),
    radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(22, 209, 122, 0.07) 0%, rgba(22, 209, 122, 0.026) 30%, transparent 54%),
    radial-gradient(circle at 46% 18%, rgba(255, 255, 255, 0.035), transparent 24%);
  transform: translate3d(0, 0, 0);
  will-change: opacity;
}

.hero-copy {
  position: relative;
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: 44px;
  padding: 134px 0 82px;
}

.eyebrow,
.section-heading p,
.platform-heading p {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: 82px;
  line-height: 0.95;
}

h1 span {
  display: block;
  color: var(--green);
}

.hero-title-line {
  color: var(--text);
}

h2 {
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.16;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: #d9d7ce;
  font-size: 18px;
  line-height: 1.62;
  font-weight: 500;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  margin: 14px 0 0;
  color: rgba(248, 250, 252, 0.58);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin: -10px 0 28px;
}

.hero-badges span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(248, 250, 252, 0.8);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-stats div {
  display: grid;
  gap: 6px;
}

.hero-stats strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.hero-stats span {
  color: rgba(248, 250, 252, 0.58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 570px;
  display: block;
}

.hero-globe {
  --globe-base-y: -50%;
  position: absolute;
  top: 50%;
  right: -16%;
  z-index: 1;
  width: clamp(520px, 42vw, 760px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  opacity: 1;
  transform: translateY(var(--globe-base-y));
  animation: globeFloat 7s ease-in-out infinite;
}

.hero-globe::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(22, 209, 122, 0.12) 0%,
      rgba(22, 209, 122, 0.04) 42%,
      transparent 72%
    );
}

.hero-globe img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  visibility: visible;
  filter:
    drop-shadow(0 0 28px rgba(22, 209, 122, 0.22))
    drop-shadow(0 0 80px rgba(22, 209, 122, 0.1));
}

.hero-globe.is-missing img {
  display: none;
}

.hero-globe-missing {
  position: relative;
  z-index: 2;
  width: min(82%, 390px);
  min-height: 250px;
  display: none;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(22, 209, 122, 0.18);
  border-radius: 50%;
  padding: 42px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(22, 209, 122, 0.12), transparent 58%),
    rgba(5, 8, 20, 0.48);
  box-shadow: inset 0 0 70px rgba(22, 209, 122, 0.055);
}

.hero-globe.is-missing .hero-globe-missing {
  display: grid;
}

.hero-globe-missing strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.hero-globe-missing span {
  color: rgba(248, 250, 252, 0.58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.growth-card {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  width: clamp(300px, 26vw, 360px);
  transform: translateY(-42%);
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 10%, rgba(22, 209, 122, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.032)),
    rgba(16, 23, 34, 0.88);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.42), 0 0 42px rgba(22, 209, 122, 0.075);
  backdrop-filter: blur(20px);
  transition: transform 280ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

.growth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.growth-card > * {
  position: relative;
  z-index: 1;
}

.growth-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.growth-kpis div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  overflow: hidden;
  min-height: 58px;
  padding: 11px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.growth-kpis div::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), rgba(22, 209, 122, 0.08));
}

.growth-kpis .status-dot {
  width: 6px;
  height: 6px;
  align-self: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(22, 209, 122, 0.42);
}

.growth-kpis strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1;
}

.growth-kpis small {
  grid-column: 1 / -1;
  color: rgba(248, 250, 252, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.growth-top,
.growth-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.growth-top {
  margin-bottom: 14px;
}

.growth-top p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.growth-top span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--green);
  background: rgba(22, 209, 122, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.growth-main strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.growth-caption {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.growth-chart {
  width: 100%;
  height: 118px;
  margin-top: 10px;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}

.chart-area {
  fill: url(#chartFill);
  opacity: 0;
  animation: chartArea 1.6s var(--ease) 420ms forwards;
}

.chart-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(22, 209, 122, 0.44));
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}

.chart-line-shadow {
  stroke: rgba(22, 209, 122, 0.22);
  stroke-width: 8;
  filter: blur(2px);
}

.hero.is-visible .chart-line {
  animation: chartDraw 1.55s var(--ease) 250ms forwards;
}

.chart-labels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 6px;
  color: rgba(246, 242, 233, 0.78);
  font-size: 11px;
  font-weight: 800;
}

.chart-labels span:last-child {
  text-align: right;
}

.platforms,
.services,
.proof,
.final-cta {
  padding: 156px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 74px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 18px;
  text-align: center;
}

.section-heading.compact p,
.section-heading.centered p {
  margin-bottom: 20px;
}

.platform-heading {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}

.platform-heading h2 {
  position: relative;
  margin: 0;
  padding-bottom: 26px;
  color: #f8fafc;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.platform-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(52vw, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 209, 122, 0.62), transparent);
  transform: translateX(-50%);
}

.platform-heading span {
  display: block;
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(248, 250, 252, 0.72);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
}

.section-heading h2,
.cta-panel h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.04;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading.split h2 {
  max-width: 660px;
}

.section-link {
  position: relative;
  display: inline-flex;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 0;
  width: min(100%, 1120px);
  margin-inline: auto;
  padding: 18px 0;
  background: linear-gradient(90deg, transparent, rgba(16, 23, 34, 0.1), transparent);
}

.platform-card {
  position: relative;
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 8px 34px;
  isolation: isolate;
  transition: transform 280ms var(--ease), opacity 260ms ease, filter 260ms ease;
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 8px 18px;
  z-index: -1;
  border-radius: 999px;
  opacity: 0;
  background: radial-gradient(circle, rgba(22, 209, 122, 0.12), transparent 68%);
  filter: blur(10px);
  transition: opacity 260ms ease, transform 280ms var(--ease);
}

.platform-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateY(-50%);
}

.platform-logo {
  position: relative;
  width: 160px;
  height: 42px;
  display: grid;
  place-items: center;
}

.platform-logo img {
  position: absolute;
  max-width: 160px;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.55) contrast(0.9) drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
  opacity: 0.74;
  transition: opacity 260ms ease, transform 280ms var(--ease), filter 260ms ease;
}

.platform-logo .color {
  opacity: 0;
  filter: saturate(1.08) drop-shadow(0 0 14px rgba(22, 209, 122, 0.12)) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.service-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 8%, rgba(22, 209, 122, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    rgba(16, 23, 34, 0.58);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
}

.service-list {
  display: grid;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  transition: background 240ms ease, transform 260ms var(--ease), box-shadow 260ms ease, border-color 240ms ease;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(22, 209, 122, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 209, 122, 0.09), rgba(22, 209, 122, 0.035));
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-row h3 {
  font-size: 28px;
}

.service-row p {
  margin: 0;
  margin-top: 7px;
  color: rgba(248, 250, 252, 0.62);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.service-detail {
  display: grid;
  align-content: center;
  padding: 54px;
}

.service-detail > p {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-detail h3 {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
}

.service-detail ul {
  display: grid;
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 24px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(22, 209, 122, 0.32);
}

.service-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-platforms span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(248, 250, 252, 0.76);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 800;
}

.testimonial-carousel {
  --testimonial-gap: 18px;
  --testimonial-card-size: calc((100% - (var(--testimonial-gap) * 2)) / 3);
  position: relative;
  overflow: hidden;
  padding: 10px 0 18px;
  scroll-behavior: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: var(--testimonial-gap);
}

.testimonial-card {
  position: relative;
  flex: 0 0 var(--testimonial-card-size);
  width: var(--testimonial-card-size);
  min-height: 360px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 10%, rgba(22, 209, 122, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.02)),
    #0a1019;
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
  transition: transform 260ms var(--ease), border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, opacity 220ms ease;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 28px;
  color: rgba(22, 209, 122, 0.18);
  font-family: var(--font-heading);
  font-size: 112px;
  font-weight: 700;
  line-height: 1;
}

.stars {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.28;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-frame,
.avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.avatar-frame {
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(22, 209, 122, 0.22);
  border-radius: 50%;
  background: #0c131f;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), 0 0 0 4px rgba(22, 209, 122, 0.045);
}

.avatar {
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  visibility: visible;
}

.testimonial-author strong,
.testimonial-author small,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
}

.testimonial-author small {
  color: rgba(248, 250, 252, 0.66);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.testimonial-author span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -8px;
}

.testimonial-tags span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(22, 209, 122, 0.18);
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(126, 245, 181, 0.86);
  background: rgba(22, 209, 122, 0.045);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.faq {
  padding: 150px 0 132px;
  border-bottom: 0;
}

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

.faq-layout .section-heading {
  position: sticky;
  top: 124px;
  margin-bottom: 0;
}

.faq-layout .section-heading h2 {
  max-width: 440px;
}

.faq-intro {
  display: block;
  max-width: 390px;
  margin-top: 22px;
  color: rgba(248, 250, 252, 0.64);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.68;
}

.faq-help {
  display: grid;
  gap: 14px;
  max-width: 410px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(22, 209, 122, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(22, 209, 122, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.016));
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.18);
}

.faq-help > p {
  margin: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-help h3 {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
}

.faq-help > span {
  color: rgba(248, 250, 252, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.faq-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.faq-help-actions .button {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 13px;
}

.faq-help small {
  color: rgba(248, 250, 252, 0.5);
  font-size: 12px;
  font-weight: 700;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(16, 23, 34, 0.46);
  transition: border-color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.faq-item.is-open {
  border-color: rgba(22, 209, 122, 0.3);
  background:
    radial-gradient(circle at 8% 0%, rgba(22, 209, 122, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.02)),
    rgba(16, 23, 34, 0.58);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.2), 0 0 30px rgba(22, 209, 122, 0.055);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 0;
  padding: 26px 28px;
  color: var(--text);
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: rgba(248, 250, 252, 0.66);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms var(--ease), color 220ms ease;
}

.faq-item.is-open .faq-question {
  color: var(--green);
}

.faq-item.is-open .faq-question svg {
  color: var(--green);
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0.72;
  transition: grid-template-rows 420ms var(--ease), opacity 300ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 640px;
  margin: 0;
  padding: 0 28px 28px;
  color: rgba(248, 250, 252, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.final-cta {
  padding-top: 140px;
  padding-bottom: 140px;
  border-bottom: 0;
}

.benefits {
  padding: 28px 0;
  border-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.stat-card {
  display: grid;
  gap: 10px;
  min-height: 166px;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(16, 23, 34, 0.34);
  transition: transform 280ms var(--ease), border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.stat-card strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.stat-card span {
  color: rgba(248, 250, 252, 0.64);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 46px;
  border: 1px solid rgba(22, 209, 122, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 28%, rgba(22, 209, 122, 0.13), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(22, 209, 122, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.024)),
    var(--surface);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 280ms var(--ease);
}

.cta-panel h2 {
  max-width: 640px;
  margin-bottom: 8px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.04;
}

.cta-panel h2 span {
  color: var(--green);
}

.cta-copy {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.footer {
  padding: 86px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.038);
  background:
    radial-gradient(circle at 12% 0%, rgba(22, 209, 122, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(16, 23, 34, 0.2), rgba(5, 8, 20, 0));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  align-items: start;
  gap: clamp(38px, 5vw, 78px);
  padding-bottom: 56px;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: rgba(248, 250, 252, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.footer-group {
  display: grid;
  gap: 18px;
}

.footer-group strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  position: relative;
  width: fit-content;
  color: rgba(248, 250, 252, 0.56);
  font-size: 13px;
  font-weight: 800;
  transition: color 220ms ease, transform 220ms var(--ease);
}

.footer-connect {
  grid-template-columns: repeat(2, max-content);
  gap: 14px 18px;
}

.footer-bottom {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.038);
  color: rgba(248, 250, 252, 0.42);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(220px, 42%);
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 209, 122, 0.34), transparent);
}

.privacy-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 96px 0;
}

.privacy-panel {
  max-width: 780px;
}

.privacy-panel .brand {
  margin-bottom: 56px;
}

.privacy-panel h1 {
  margin-bottom: 26px;
}

.privacy-panel p:not(.eyebrow) {
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.privacy-panel .button {
  margin-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes chartDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes chartArea {
  to {
    opacity: 1;
  }
}

@keyframes loaderLine {
  to {
    transform: translateX(100%);
  }
}

@keyframes globeFloat {
  0%,
  100% {
    transform: translateY(var(--globe-base-y));
  }

  50% {
    transform: translateY(calc(var(--globe-base-y) - 8px));
  }
}

@keyframes networkFlow {
  to {
    stroke-dashoffset: -44;
  }
}

@media (hover: hover) {
  .service-row:hover,
  .testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22, 209, 122, 0.22);
    background:
      radial-gradient(circle at 16% 8%, rgba(22, 209, 122, 0.16), transparent 38%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024)),
      #0a1019;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25), 0 0 34px rgba(22, 209, 122, 0.095);
    opacity: 1;
  }

  .service-row:hover {
    background: rgba(255, 255, 255, 0.038);
    box-shadow: inset 2px 0 0 rgba(22, 209, 122, 0.32), 0 18px 46px rgba(0, 0, 0, 0.12);
  }

  .platform-card:hover {
    transform: translateY(-5px);
    filter: brightness(1.06);
  }

  .platform-card:hover::before {
    opacity: 1;
    transform: scale(1.08);
  }

  .platform-card:hover .platform-logo .mono {
    opacity: 0;
    transform: translateY(-2px) scale(0.97);
  }

  .platform-card:hover .platform-logo .color {
    opacity: 1;
    transform: translateY(-2px) scale(1.045);
    filter: brightness(1.08) saturate(1.12) drop-shadow(0 0 16px rgba(22, 209, 122, 0.18)) drop-shadow(0 12px 20px rgba(0, 0, 0, 0.22));
  }

  .stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 209, 122, 0.18);
    background:
      radial-gradient(circle at 18% 0%, rgba(22, 209, 122, 0.09), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014)),
      rgba(16, 23, 34, 0.38);
    box-shadow: 0 24px 74px rgba(0, 0, 0, 0.22), 0 0 30px rgba(22, 209, 122, 0.06);
  }

  .growth-card:hover,
  .cta-panel:hover {
    border-color: rgba(22, 209, 122, 0.24);
    box-shadow: 0 34px 96px rgba(0, 0, 0, 0.34), 0 0 34px rgba(22, 209, 122, 0.075);
  }

  .faq-item:hover {
    border-color: rgba(22, 209, 122, 0.18);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16), 0 0 24px rgba(22, 209, 122, 0.045);
  }

  .footer-links a:hover {
    color: var(--green);
    transform: translateX(2px);
  }

}

@media (max-width: 1120px) {
  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 44px;
  }

  .platform-heading h2 {
    font-size: 44px;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: 44px;
  }

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

  .service-list {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-stats {
    max-width: 720px;
  }

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

  .hero-globe {
    right: 0;
    width: 520px;
  }

  .growth-card {
    width: min(380px, 48vw);
  }

  .faq-layout {
    grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
    gap: 42px;
  }

  .faq-layout .section-heading {
    position: static;
  }
}

@media (max-width: 1023px) {
  .container {
    width: min(100% - 56px, var(--container));
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 5px;
  }

  .drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    pointer-events: none;
    opacity: 0;
    background: rgba(0, 0, 0, 0.66);
    transition: opacity 180ms ease;
  }

  .drawer-backdrop.is-open {
    pointer-events: auto;
    opacity: 1;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    width: min(88vw, 350px);
    height: 100dvh;
    display: block;
    padding: 22px;
    border-left: 1px solid var(--line);
    background: #070b14;
    transform: translateX(104%);
    transition: transform 240ms var(--ease);
  }

  .mobile-drawer.is-open {
    transform: translateX(0);
  }

  .drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }

  .drawer-close {
    display: grid;
  }

  .drawer-links {
    display: grid;
    gap: 4px;
    padding: 24px 0;
  }

  .drawer-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
  }

  .drawer-actions {
    display: grid;
    gap: 12px;
  }

  .platform-grid {
    grid-template-columns: repeat(6, 1fr);
    row-gap: 28px;
  }

  .platform-card {
    grid-column: span 2;
  }

  .platform-logo {
    width: 150px;
  }

  .platform-logo img {
    max-width: 150px;
  }

  .platform-card:nth-child(3)::after,
  .platform-card:nth-child(5)::after {
    display: none;
  }

  .platform-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .testimonial-carousel {
    --testimonial-card-size: calc((100% - var(--testimonial-gap)) / 2);
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
}

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

  .nav {
    min-height: 76px;
  }

  .brand-logo {
    height: 28px;
  }

  .wordmark {
    gap: 10px;
    font-size: 22px;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    padding: 116px 0 64px;
  }

  h1 {
    font-size: 45px;
    line-height: 1.02;
  }

  h2 {
    font-size: 36px;
  }

  .platform-heading {
    margin-bottom: 34px;
  }

  .platform-heading h2 {
    font-size: 36px;
    letter-spacing: 0.06em;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 23px;
  }

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

  .hero-trust {
    margin-top: 12px;
    font-size: 12px;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .hero-stats div {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 14px;
  }

  .hero-stats strong {
    font-size: 28px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    justify-items: center;
  }

  .growth-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
  }

  .hero-globe {
    --globe-base-y: 0px;
    position: relative;
    top: auto;
    right: auto;
    width: min(105vw, 520px);
    justify-self: center;
  }

  .growth-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .growth-main strong {
    font-size: 38px;
  }

  .service-showcase,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    --testimonial-gap: 14px;
    --testimonial-card-size: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }

  .platform-card,
  .platform-card:nth-child(4) {
    grid-column: auto;
  }

  .platform-card {
    min-height: 98px;
    padding: 14px 12px;
  }

  .platform-card::after,
  .platform-card:nth-child(3)::after {
    display: block;
  }

  .platform-card:nth-child(2)::after,
  .platform-card:nth-child(4)::after,
  .platform-card:nth-child(5)::after {
    display: none;
  }

  .platform-logo {
    width: min(120px, 100%);
    height: 58px;
  }

  .platform-logo img {
    max-width: min(120px, 100%);
    max-height: 58px;
  }

  .service-showcase {
    border-color: rgba(255, 255, 255, 0.08);
  }

  .service-row {
    min-height: auto;
    padding: 22px;
  }

  .service-detail {
    padding: 34px 22px;
  }

  .service-detail h3 {
    font-size: 30px;
  }

  .platforms,
  .services,
  .proof,
  .faq,
  .final-cta {
    padding: 108px 0;
  }

  .section-heading,
  .section-heading.centered {
    margin-bottom: 48px;
  }

  .section-heading.split {
    display: block;
  }

  .section-link {
    display: inline-block;
    margin-top: 18px;
  }

  .testimonial-card p {
    font-size: 23px;
  }

  .testimonial-card {
    min-height: 338px;
    padding: 30px 26px;
  }

  .avatar-frame,
  .avatar {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .testimonial-card::before {
    right: 22px;
    font-size: 96px;
  }

  .faq-question {
    gap: 14px;
    padding: 22px 20px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 20px 22px;
    font-size: 15px;
  }

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

  .faq-intro {
    margin-top: 16px;
    font-size: 15px;
  }

  .faq-help {
    max-width: none;
    margin-top: 24px;
    padding: 22px 20px;
  }

  .faq-help-actions {
    display: grid;
  }

  .stat-card {
    min-height: 146px;
    padding: 26px 24px;
  }

  .stat-card strong {
    font-size: 54px;
  }

  .footer {
    padding: 54px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    text-align: left;
  }

  .cta-panel {
    padding: 34px 24px;
  }

  .cta-panel h2 {
    font-size: 36px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 39px;
  }

  .growth-chart {
    height: 116px;
  }

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

  .hero-globe-missing {
    min-height: 220px;
    padding: 34px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .chart-line {
    stroke-dashoffset: 0;
  }

  .chart-area {
    opacity: 1;
  }

  .testimonial-track {
    transform: none !important;
  }

  .hero-globe {
    animation: none;
    transform: translateY(var(--globe-base-y));
  }

  .hero {
    --globe-glow-x: 78%;
    --globe-glow-y: 45%;
    --card-glow-x: 54%;
    --card-glow-y: 48%;
  }

  .page-loader {
    display: none;
  }

  body.loader-active {
    overflow: auto;
  }
}
