@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #0c1a2e;
  --navy-dark: #050a18;
  --blue: #0066ff;
  --blue-soft: #1a56db;
  --teal: #00b4d8;
  --green: #00d084;
  --green-alt: #22c55e;
  --purple: #7c3aed;
  --orange: #f59e0b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --gradient: linear-gradient(90deg, #0066ff 0%, #00b4d8 45%, #00d084 100%);
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
  --radius: 14px;
  --radius-lg: 18px;
  --container: 1180px;
  --header-h: 76px;
  --font: "Inter", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

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

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-rule {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--gradient);
}

.section-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

.section-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}
.btn--outline {
  color: var(--navy);
  background: #fff;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.btn--blue { background: var(--blue); color: #fff; box-shadow: none; border-radius: 10px; }
.btn--white { background: #fff; color: var(--blue); border-radius: 10px; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo__image {
  width: min(220px, 42vw);
  height: auto;
  object-fit: contain;
  display: block;
}
.site-logo__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.site-logo__text {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.site-logo__text .lookup { color: var(--blue-soft); }
.site-logo__text .ads { color: var(--green-alt); }
.site-header .site-logo__icon {
  width: 55px;
  height: 55px;
}
.site-header .site-logo__text {
  font-size: 29px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav__item {
  position: relative;
}
.site-nav__link {
  display: inline-block;
}
.site-nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  position: relative;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue);
}
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.site-nav__cta {
  margin-left: 8px;
  padding: 10px 20px !important;
  color: #fff !important;
  background: var(--gradient) !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}
.site-nav__cta::after { display: none !important; }

.site-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 120;
  width: min(720px, calc(100vw - 32px));
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 10px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
    radial-gradient(circle at 10% 0%, rgba(96, 165, 250, 0.12), transparent 36%),
    radial-gradient(circle at 92% 100%, rgba(34, 197, 94, 0.1), transparent 36%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.site-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}
.site-nav__item--has-submenu:hover .site-submenu,
.site-nav__item--has-submenu:focus-within .site-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.site-submenu__item {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  min-height: 78px;
  padding: 13px !important;
  border: 1px solid #e8edf3;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-soft);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.site-submenu__item:hover,
.site-submenu__item:focus {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
}
.site-submenu__item::after {
  display: none;
}
.site-submenu__icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
}
.site-submenu__title,
.site-submenu__text {
  display: block;
}
.site-submenu__title {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}
.site-submenu__text {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.45;
}
.site-submenu__item--blue { border-color: #dbeafe; }
.site-submenu__item--blue .site-submenu__icon { background: #dbeafe; color: var(--blue); }
.site-submenu__item--blue:hover { border-color: rgba(0, 102, 255, 0.42); }
.site-submenu__item--green { border-color: #dcfce7; }
.site-submenu__item--green .site-submenu__icon { background: #dcfce7; color: var(--green-alt); }
.site-submenu__item--green:hover { border-color: rgba(34, 197, 94, 0.42); }
.site-submenu__item--purple { border-color: #ede9fe; }
.site-submenu__item--purple .site-submenu__icon { background: #ede9fe; color: var(--purple); }
.site-submenu__item--purple:hover { border-color: rgba(124, 58, 237, 0.38); }
.site-submenu__item--orange { border-color: #ffedd5; }
.site-submenu__item--orange .site-submenu__icon { background: #ffedd5; color: var(--orange); }
.site-submenu__item--orange:hover { border-color: rgba(245, 158, 11, 0.42); }
.site-submenu__item--teal { border-color: #ccfbf1; }
.site-submenu__item--teal .site-submenu__icon { background: #ccfbf1; color: #0d9488; }
.site-submenu__item--teal:hover { border-color: rgba(13, 148, 136, 0.36); }
.site-submenu__item--indigo { border-color: #e0e7ff; }
.site-submenu__item--indigo .site-submenu__icon { background: #e0e7ff; color: #4f46e5; }
.site-submenu__item--indigo:hover { border-color: rgba(79, 70, 229, 0.36); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
}

/* ── Home Hero ── */
.section { padding: 72px 0; position: relative; overflow: hidden; }
.section--hero {
  padding: 48px 0 80px;
  overflow-x: clip;
  overflow-y: visible;
  background: linear-gradient(165deg, #ffffff 0%, #f8fbff 42%, #fafffe 72%, #ffffff 100%);
}
.hero-grid { overflow: visible; position: relative; z-index: 1; }

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.25;
}
.hero-bg__grid {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 24%, rgba(96, 165, 250, 0.18), transparent 52%);
}
.hero-bg__grid--right {
  mask-image: radial-gradient(ellipse 75% 65% at 78% 28%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 78% 28%, #000 0%, transparent 72%);
  opacity: 1;
}
.hero-bg__grid--left {
  background: radial-gradient(circle at 18% 72%, rgba(52, 211, 153, 0.14), transparent 54%);
  mask-image: radial-gradient(ellipse 55% 50% at 18% 72%, #000 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse 55% 50% at 18% 72%, #000 0%, transparent 68%);
  opacity: 1;
}

.hero-bg__mesh,
.hero-connectors,
.network-visual__mesh,
.network-visual__lines,
.solutions-bg__mesh {
  display: none;
}
.hero-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero-bg__glow--blue {
  top: 4%;
  right: 4%;
  width: min(620px, 62vw);
  height: min(620px, 62vw);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, rgba(96, 165, 250, 0.1) 38%, rgba(96, 165, 250, 0.04) 58%, transparent 78%);
}
.hero-bg__glow--green {
  bottom: 2%;
  right: 12%;
  width: min(520px, 54vw);
  height: min(520px, 54vw);
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, rgba(52, 211, 153, 0.08) 40%, rgba(52, 211, 153, 0.03) 58%, transparent 78%);
}
.hero-bg__glow--teal {
  top: 38%;
  left: 32%;
  width: min(440px, 46vw);
  height: min(440px, 46vw);
  background: radial-gradient(circle, rgba(0, 180, 216, 0.14) 0%, rgba(0, 180, 216, 0.05) 45%, transparent 72%);
}
.hero-bg__glow--violet {
  top: 18%;
  left: -4%;
  width: min(380px, 40vw);
  height: min(380px, 40vw);
  background: radial-gradient(circle, rgba(129, 140, 248, 0.16) 0%, rgba(129, 140, 248, 0.06) 42%, transparent 72%);
}
.hero-bg__decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}
.hero-bg__mesh {
  position: absolute;
  left: -32px;
  bottom: -20px;
  width: min(460px, 50vw);
  height: auto;
  pointer-events: none;
}
.hero-bg__mesh--right {
  left: auto;
  right: -20px;
  bottom: auto;
  top: 8%;
  width: min(360px, 38vw);
  transform: scaleX(-1) rotate(-8deg);
  opacity: 0.75;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy__eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
}
.hero-copy__desc {
  margin: 0 0 28px;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 16px;
}
.hero-copy__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Dashboard mock */
.hero-visual {
  position: relative;
  min-height: 480px;
  padding-right: 24px;
  overflow: visible;
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 12%;
  width: 82%;
  height: 84%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.18) 0%, rgba(52, 211, 153, 0.08) 42%, transparent 72%);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.hero-visual__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 0 72px;
  overflow: visible;
}

.hero-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.82;
}
.hero-connectors path {
  stroke: #60a5fa;
  stroke-width: 1.5;
}

.dashboard {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.04),
    0 18px 48px rgba(37, 99, 235, 0.07),
    0 32px 64px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg);
}
.dashboard__layout { display: grid; grid-template-columns: 56px 1fr; min-height: 360px; }
.dashboard__sidebar {
  background: var(--navy);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.dashboard__sidebar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #94a3b8;
}
.dashboard__sidebar-icon.is-active { background: var(--blue); color: #fff; }
.dashboard__sidebar-icon svg { width: 18px; height: 18px; }
.dashboard__main { padding: 16px 18px; background: #f8fafc; }
.dashboard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.dashboard__metric {
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
}
.dashboard__metric-label { font-size: 10px; color: var(--text-muted); margin: 0 0 4px; }
.dashboard__metric-value { font-size: 14px; font-weight: 700; margin: 0; color: var(--navy); }
.dashboard__metric-trend { font-size: 10px; margin: 2px 0 0; }
.dashboard__metric-trend.up { color: var(--green); }
.dashboard__metric-trend.down { color: #ef4444; }
.dashboard__chart {
  height: 120px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px;
  margin-bottom: 12px;
  position: relative;
}
.dashboard__chart-title { font-size: 11px; font-weight: 600; color: var(--navy); margin: 0 0 8px; }
.chart-lines {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 70px;
}
.chart-lines svg { width: 100%; height: 100%; }
.dashboard__bottom { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 10px; }
.dashboard__table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  font-size: 10px;
}
.dashboard__table th { text-align: left; color: var(--text-muted); font-weight: 600; padding-bottom: 6px; }
.dashboard__table td { padding: 4px 0; color: var(--navy); }
.dashboard__donut {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.donut {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 55%, var(--blue) 55% 85%, #e2e8f0 85%);
  position: relative;
}
.donut::after {
  content: "";
  position: absolute;
  inset: 18px;
  background: #fff;
  border-radius: 50%;
}

@keyframes float-card-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes float-card-bob-analytics {
  0%, 100% { transform: translateX(-18%) translateY(0); }
  50% { transform: translateX(-18%) translateY(-7px); }
}

.float-card {
  position: absolute;
  z-index: 5;
  width: min(248px, 42vw);
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.float-card:hover {
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(147, 197, 253, 0.65);
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.08),
    0 20px 40px rgba(37, 99, 235, 0.12);
}

.float-card--acquisition {
  animation: float-card-bob 4.2s ease-in-out infinite;
}

.float-card--acquisition:hover {
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.08),
    0 20px 40px rgba(0, 102, 255, 0.16);
}

.float-card--monetization {
  animation: float-card-bob 4.6s ease-in-out 0.6s infinite;
}

.float-card--monetization:hover {
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.08),
    0 20px 40px rgba(34, 197, 94, 0.16);
}

.float-card--fraud {
  animation: float-card-bob 4.4s ease-in-out 1.2s infinite;
}

.float-card--fraud:hover {
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.08),
    0 20px 40px rgba(13, 148, 136, 0.16);
}

.float-card--analytics {
  animation: float-card-bob-analytics 4.8s ease-in-out 0.3s infinite;
}

.float-card--analytics:hover {
  transform: translateX(-18%) translateY(-10px) scale(1.03);
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.08),
    0 20px 40px rgba(0, 102, 255, 0.16);
}

.float-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.float-card:hover .float-card__icon {
  transform: scale(1.1);
}

.float-card:hover .float-card__title {
  color: var(--blue);
}

.float-card--monetization:hover .float-card__title {
  color: var(--green-alt);
}

.float-card--fraud:hover .float-card__title {
  color: #0d9488;
}

.float-card__icon--solid-blue { background: var(--blue); }
.float-card__icon--solid-green { background: var(--green-alt); }
.float-card__icon--solid-teal { background: #0d9488; }

.float-card__body { min-width: 0; }

.float-card__title {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  transition: color 0.3s ease;
}

.float-card__text {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-muted);
}

.float-card--acquisition {
  top: 0;
  right: -8px;
}

.float-card--monetization {
  top: 34%;
  right: -132px;
}

.float-card--fraud {
  bottom: 26%;
  right: -118px;
}

.float-card--analytics {
  bottom: 0;
  left: 42%;
  transform: translateX(-18%);
}

@media (prefers-reduced-motion: reduce) {
  .float-card,
  .float-card--analytics {
    animation: none;
  }

  .float-card:hover {
    transform: none;
  }

  .float-card--analytics:hover {
    transform: translateX(-18%);
  }
}

@media (max-width: 1280px) {
  .float-card--monetization { right: -72px; }
  .float-card--fraud { right: -64px; }
  .float-card--acquisition { right: 0; }
}

@media (max-width: 1100px) and (min-width: 1025px) {
  .float-card--monetization,
  .float-card--fraud { right: -24px; }
  .float-card { width: min(220px, 38vw); }
}

/* ── About ── */
#about.section {
  overflow: visible;
}

.section-eyebrow--about {
  color: #38bdf8;
  letter-spacing: 0.18em;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 32px 40px;
  align-items: center;
  margin-bottom: 48px;
}

.about-hero-copy {
  max-width: 460px;
  align-self: start;
}

.about-hero-copy .section-title {
  font-size: clamp(30px, 3.4vw, 42px);
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-hero-rule {
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  margin-bottom: 22px;
}

.about-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  max-width: 420px;
}

.about-hero-banner {
  width: 100%;
  align-self: center;
}

.about-hero-banner img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin-left: auto;
}

.network-visual {
  position: relative;
  width: calc(100% + clamp(40px, 7vw, 112px));
  max-width: none;
  min-height: clamp(340px, 30vw, 400px);
  margin-right: calc(-1 * clamp(40px, 7vw, 112px));
  align-self: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.network-visual__bg {
  position: absolute;
  inset: -10% -8% -12% -6%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
  mask-image: radial-gradient(
    ellipse 92% 86% at 50% 48%,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.72) 62%,
    rgba(0, 0, 0, 0.28) 78%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 92% 86% at 50% 48%,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.72) 62%,
    rgba(0, 0, 0, 0.28) 78%,
    transparent 100%
  );
}

.network-visual__grid {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 48%, rgba(96, 165, 250, 0.16), transparent 58%);
}

.network-visual__grid--full {
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 88% 82% at 50% 48%, #000 0%, #000 48%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 88% 82% at 50% 48%, #000 0%, #000 48%, transparent 100%);
}

.network-visual__grid--corner {
  background: radial-gradient(circle at 82% 22%, rgba(52, 211, 153, 0.12), transparent 58%);
  mask-image: radial-gradient(ellipse 72% 64% at 82% 22%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 72% 64% at 82% 22%, #000 0%, transparent 78%);
  opacity: 0.55;
}

.network-visual__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}

.network-visual__glow--blue {
  top: 52%;
  left: 50%;
  width: min(380px, 72%);
  height: min(380px, 96%);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.22) 0%,
    rgba(96, 165, 250, 0.09) 42%,
    rgba(96, 165, 250, 0.03) 62%,
    transparent 78%
  );
}

.network-visual__glow--green {
  top: 2%;
  right: -12%;
  width: 52%;
  height: 52%;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.14) 0%,
    rgba(52, 211, 153, 0.05) 45%,
    rgba(52, 211, 153, 0.02) 62%,
    transparent 78%
  );
}

.network-visual__glow--teal {
  bottom: -14%;
  left: 2%;
  width: 48%;
  height: 48%;
  background: radial-gradient(
    circle,
    rgba(0, 180, 216, 0.12) 0%,
    rgba(0, 180, 216, 0.04) 48%,
    transparent 76%
  );
}

.network-visual__orbits,
.network-visual__decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-visual__mesh {
  position: absolute;
  left: -12%;
  bottom: -14%;
  width: 58%;
  height: auto;
}

.network-visual__mesh--right {
  left: auto;
  right: -10%;
  bottom: auto;
  top: 0;
  width: 52%;
  transform: scaleX(-1) rotate(-6deg);
}

.network-visual__map,
.network-visual__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 94% 90% at 50% 50%,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.55) 78%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 94% 90% at 50% 50%,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.55) 78%,
    transparent 100%
  );
}

.network-visual__map { z-index: 1; opacity: 0.62; }
.network-visual__lines { z-index: 2; opacity: 0.88; }

.network-hub {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 88px;
  height: 88px;
  cursor: pointer;
}

.network-hub__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.28);
}

.network-hub__ring--outer {
  inset: -18px;
  border-color: rgba(147, 197, 253, 0.35);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
  animation: network-pulse 3.5s ease-in-out infinite;
}

.network-hub__core {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.35s ease;
  animation: hub-core-glow 4s ease-in-out infinite;
}

.network-hub__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    filter 0.35s ease;
  animation: hub-logo-breathe 3.2s ease-in-out infinite;
}

.network-hub:hover .network-hub__core {
  transform: scale(1.08);
  animation-play-state: paused;
  filter: drop-shadow(0 10px 28px rgba(37, 99, 235, 0.28));
}

.network-hub:hover .network-hub__logo {
  animation-play-state: paused;
  transform: scale(1.16);
  filter: drop-shadow(0 4px 14px rgba(37, 99, 235, 0.35));
}

.network-hub:hover .network-hub__ring {
  border-color: rgba(59, 130, 246, 0.82);
  box-shadow: 0 0 34px rgba(59, 130, 246, 0.42);
}

.network-hub:hover .network-hub__ring--outer {
  animation-duration: 1.8s;
  border-color: rgba(96, 165, 250, 0.55);
  box-shadow: 0 0 48px rgba(59, 130, 246, 0.28);
}

.network-hub__ring {
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

@keyframes network-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.75; }
}

@keyframes hub-logo-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@keyframes hub-core-glow {
  0%, 100% {
    filter: drop-shadow(0 6px 18px rgba(37, 99, 235, 0.12));
  }
  50% {
    filter: drop-shadow(0 8px 24px rgba(37, 99, 235, 0.22));
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-hub__core,
  .network-hub__logo,
  .network-hub__ring--outer {
    animation: none;
  }

  .network-hub:hover .network-hub__core,
  .network-hub:hover .network-hub__logo {
    transform: none;
  }
}

.network-node {
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #bfdbfe;
  color: #3b82f6;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
  transform: translate(-50%, -50%);
}

.network-node--1 { top: 33%; left: 24%; }
.network-node--2 { top: 33%; left: 76%; }
.network-node--3 { top: 67%; left: 40%; }
.network-node--4 { top: 67%; left: 60%; }
.network-node--5 { top: 77%; left: 32%; }
.network-node--6 { top: 77%; left: 68%; }

.network-card {
  position: absolute;
  z-index: 5;
  width: min(236px, 46%);
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.09);
  border: 1px solid rgba(241, 245, 249, 0.95);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.network-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
}

.network-card__icon--blue {
  background: #dbeafe;
  color: var(--blue);
}

.network-card__icon--green {
  background: #dcfce7;
  color: var(--green-alt);
}

.network-card__icon--purple {
  background: #ede9fe;
  color: var(--purple);
}

.network-card__content { min-width: 0; }

.network-card__label {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.network-card__label--blue { color: var(--navy); }
.network-card__label--green { color: var(--green-alt); }
.network-card__label--purple { color: var(--purple); }

.network-card__text {
  margin: 0;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.network-card--advertisers {
  top: 2%;
  left: 0;
}

.network-card--publishers {
  top: 2%;
  right: 0;
}

.network-card--users {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(268px, 54%);
}

.features-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 56px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-item__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: grid;
  place-items: center;
}
.feature-item__icon svg {
  width: 40px;
  height: 40px;
}
.feature-item__icon--blue { background: #dbeafe; color: var(--blue); }
.feature-item__icon--green { background: #dcfce7; color: var(--green-alt); }
.feature-item__icon--purple { background: #ede9fe; color: var(--purple); }
.feature-item__body { min-width: 0; flex: 1; }
.feature-item__title { margin: 0 0 10px; font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.feature-item__text { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.feature-item__rule { width: 44px; height: 3px; border-radius: 999px; margin-bottom: 12px; }
.feature-item__rule--blue { background: var(--blue); }
.feature-item__rule--green { background: var(--green-alt); }
.feature-item__rule--purple { background: var(--purple); }

.stats-section { text-align: center; margin-bottom: 48px; }
.stats-section .section-title {
  margin-bottom: 10px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.25;
}
.stats-section .gradient-rule {
  width: 56px;
  height: 3px;
  margin: 0 auto 20px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
}
.stat-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-block__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.stat-block__icon svg {
  width: 26px;
  height: 26px;
}
.stat-block__icon-click {
  width: 28px;
  height: 28px;
  display: block;
  color: #22c55e;
}
.stat-block__icon--blue { background: #dbeafe; color: var(--blue); }
.stat-block__icon--green { background: #dcfce7; color: var(--green-alt); }
.stat-block__icon--purple { background: #ede9fe; color: var(--purple); }
.stat-block__body {
  min-width: 0;
  text-align: left;
}
.stat-block__value {
  margin: 0 0 4px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}
.stat-block__value--green { color: var(--green-alt); }
.stat-block__value--purple { color: var(--purple); }
.stat-block__label {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Partners slider */
.partners-slider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 12px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.partners-slider__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  display: grid;
  place-items: center;
}
.partners-slider__track-wrap { flex: 1; overflow: hidden; }
.partners-slider__track {
  display: flex;
  gap: 32px;
  transition: transform 0.45s ease;
  align-items: center;
}
.partner-logo {
  flex: 0 0 auto;
  height: 45px;
  width: auto;
  max-width: 192px;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ── Solutions ── */
.section--solutions {
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 88% at 50% 18%, rgba(240, 247, 255, 0.48) 0%, rgba(248, 250, 252, 0.28) 48%, transparent 78%),
    radial-gradient(ellipse 80% 55% at 88% 18%, rgba(20, 184, 166, 0.04), transparent 64%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%);
}

.section--solutions .container {
  position: relative;
  z-index: 1;
}

.solutions-bg {
  position: absolute;
  inset: -8% -14% -10% -14%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  mask-image: radial-gradient(
    ellipse 90% 84% at 50% 48%,
    #000 0%,
    #000 36%,
    rgba(0, 0, 0, 0.78) 56%,
    rgba(0, 0, 0, 0.42) 72%,
    rgba(0, 0, 0, 0.14) 86%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 84% at 50% 48%,
    #000 0%,
    #000 36%,
    rgba(0, 0, 0, 0.78) 56%,
    rgba(0, 0, 0, 0.42) 72%,
    rgba(0, 0, 0, 0.14) 86%,
    transparent 100%
  );
}

.solutions-bg__grid {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 38%, rgba(96, 165, 250, 0.16), transparent 56%);
}

.solutions-bg__grid--left {
  mask-image: radial-gradient(ellipse 52% 48% at 18% 38%, #000 0%, #000 42%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 52% 48% at 18% 38%, #000 0%, #000 42%, transparent 78%);
  opacity: 0.5;
}

.solutions-bg__grid--right {
  background: radial-gradient(circle at 82% 62%, rgba(52, 211, 153, 0.12), transparent 56%);
  mask-image: radial-gradient(ellipse 54% 50% at 82% 62%, #000 0%, #000 42%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 54% 50% at 82% 62%, #000 0%, #000 42%, transparent 78%);
  opacity: 0.48;
}

.solutions-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}

.solutions-bg__glow--blue {
  top: 8%;
  left: -14%;
  width: min(520px, 52vw);
  height: min(520px, 52vw);
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(96, 165, 250, 0.09) 40%,
    rgba(96, 165, 250, 0.03) 58%,
    transparent 82%
  );
}

.solutions-bg__glow--green {
  bottom: 4%;
  right: -12%;
  width: min(560px, 56vw);
  height: min(560px, 56vw);
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.16) 0%,
    rgba(52, 211, 153, 0.07) 42%,
    rgba(52, 211, 153, 0.03) 58%,
    transparent 82%
  );
}

.solutions-bg__glow--orange {
  top: 18%;
  left: 42%;
  width: min(360px, 38vw);
  height: min(360px, 38vw);
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.12) 0%,
    rgba(251, 191, 36, 0.05) 45%,
    transparent 72%
  );
}

.solutions-bg__glow--violet {
  bottom: 22%;
  left: 28%;
  width: min(320px, 34vw);
  height: min(320px, 34vw);
  background: radial-gradient(
    circle,
    rgba(129, 140, 248, 0.14) 0%,
    rgba(129, 140, 248, 0.05) 42%,
    transparent 72%
  );
}

.solutions-bg__decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 92% 86% at 50% 50%,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.5) 76%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 92% 86% at 50% 50%,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.5) 76%,
    transparent 100%
  );
}

.solutions-bg__mesh {
  position: absolute;
  left: -10%;
  bottom: 10%;
  width: min(420px, 44vw);
  height: auto;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 88% 80% at 28% 72%, #000 0%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 88% 80% at 28% 72%, #000 0%, #000 45%, transparent 100%);
}

.solutions-bg__mesh--right {
  left: auto;
  right: -8%;
  bottom: auto;
  top: 12%;
  width: min(360px, 38vw);
  transform: scaleX(-1) rotate(-7deg);
  opacity: 0.72;
  mask-image: radial-gradient(ellipse 88% 80% at 72% 28%, #000 0%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 88% 80% at 72% 28%, #000 0%, #000 45%, transparent 100%);
}
.section-head--center { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head--center .gradient-rule { margin: 16px auto 20px; }
.solutions-tagline {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.solutions-tagline__acquire { color: var(--blue); }
.solutions-tagline__protect { color: var(--orange); }
.solutions-tagline__scale { color: var(--green-alt); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solutions-grid .solution-card:nth-child(4) { grid-column: 1 / 2; margin-left: auto; margin-right: 0; width: 100%; }
.solutions-grid .solution-card:nth-child(5) { grid-column: 2 / 3; margin-left: 0; margin-right: auto; width: 100%; }
.solutions-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px auto 0;
}

.solution-card {
  scroll-margin-top: calc(var(--header-h) + 24px);
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.solution-card--linked {
  cursor: pointer;
}
.solution-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
}
.solution-card__overlay-link:focus-visible {
  outline: 3px solid rgba(0, 102, 255, 0.35);
  outline-offset: 3px;
}
.solution-card__head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.solution-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.solution-card__icon svg,
.solution-card__icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.solution-card--blue .solution-card__icon-img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(98%) saturate(2577%) hue-rotate(211deg) brightness(99%) contrast(106%);
}
.solution-card__name { margin: 0; font-size: 18px; font-weight: 800; }
.solution-card__sub { margin: 2px 0 0; font-size: 12px; color: var(--text-muted); }
.solution-card__rule {
  width: 48px;
  height: 3px;
  border-radius: 999px;
  margin: 0 0 14px;
}
.solution-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.solution-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  margin-left: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.solution-card__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}
.solution-card__more {
  position: relative;
  z-index: 5;
  display: inline-block;
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.solution-card__more:hover {
  opacity: 0.75;
  text-decoration: underline;
}
.solution-card--blue .solution-card__more { color: var(--blue); }
.solution-card--green .solution-card__more { color: var(--green-alt); }
.solution-card--purple .solution-card__more { color: var(--purple); }
.solution-card--orange .solution-card__more { color: var(--orange); }
.solution-card--teal .solution-card__more { color: #0d9488; }
.solution-card--indigo .solution-card__more { color: #4f46e5; }
.solution-card--blue .solution-card__icon { background: #dbeafe; color: var(--blue); }
.solution-card--blue .solution-card__name-lookup { color: var(--text); }
.solution-card--blue .solution-card__name-accent { color: var(--blue); }
.solution-card--blue .solution-card__rule { background: var(--blue); }
.solution-card--blue .solution-card__check { background: var(--blue); }
.solution-card--green .solution-card__icon { background: #dcfce7; color: var(--green-alt); }
.solution-card--green .solution-card__rule { background: var(--green-alt); }
.solution-card--green .solution-card__check { background: var(--green-alt); }
.solution-card--purple .solution-card__icon { background: #ede9fe; color: var(--purple); }
.solution-card--purple .solution-card__name { color: var(--purple); }
.solution-card--purple .solution-card__rule { background: var(--purple); }
.solution-card--purple .solution-card__check { background: var(--purple); }
.solution-card--orange .solution-card__icon { background: #ffedd5; color: var(--orange); }
.solution-card--orange .solution-card__name { color: var(--orange); }
.solution-card--orange .solution-card__rule { background: var(--orange); }
.solution-card--orange .solution-card__check { background: var(--orange); }
.solution-card--teal .solution-card__icon { background: #ccfbf1; color: #0d9488; }
.solution-card--teal .solution-card__name { color: #0d9488; }
.solution-card--teal .solution-card__rule { background: #0d9488; }
.solution-card--teal .solution-card__check { background: #0d9488; }
.solution-card--indigo .solution-card__icon { background: #e0e7ff; color: #4f46e5; }
.solution-card--indigo .solution-card__name { color: #4f46e5; }
.solution-card--indigo .solution-card__rule { background: #4f46e5; }
.solution-card--indigo .solution-card__check { background: #4f46e5; }

.section--solutions {
  background:
    radial-gradient(ellipse 120% 88% at 50% 18%, rgba(240, 247, 255, 0.48) 0%, rgba(248, 250, 252, 0.28) 48%, transparent 78%),
    radial-gradient(ellipse 80% 55% at 88% 18%, rgba(20, 184, 166, 0.04), transparent 64%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%);
}
.solutions-head {
  max-width: 560px;
  margin: 0 0 28px;
  text-align: left;
}
.solutions-head .section-title {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.solutions-head .gradient-rule {
  display: none;
}
.solutions-head .section-desc {
  max-width: 620px;
  margin: 0;
}
.solutions-grid,
.solutions-row-2 {
  gap: 16px;
}
.solutions-row-2 {
  margin-top: 16px;
}
.solution-card {
  position: relative;
  min-height: 224px;
  padding: 24px 22px 22px;
  overflow: hidden;
  border-color: #e8edf3;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 90% 80%, rgba(96, 165, 250, 0.045), transparent 42%);
  opacity: 0.85;
}
.solution-card > * {
  position: relative;
  z-index: 1;
}
.solution-card__head {
  margin-bottom: 18px;
}
.solution-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}
.solution-card__name {
  font-size: 19px;
}
.solution-card__sub {
  font-size: 11px;
}
.solution-card__rule {
  width: 42px;
  height: 2px;
  margin: 0 0 18px;
}
.solution-card__list {
  max-width: 58%;
}
.solution-card__list li {
  gap: 9px;
  margin-bottom: 9px;
  margin-left: 0;
  font-size: 12px;
}
.solution-card__text {
  margin: 0 0 14px;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-muted);
}
.solution-card__check {
  width: 17px;
  height: 17px;
  font-size: 9px;
}
.solution-card__visual {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38%;
  min-width: 122px;
  height: 116px;
  color: var(--blue);
  pointer-events: none;
}
.solution-card__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.08));
}
.mini-kpi,
.lead-result,
.dashboard-mini {
  position: absolute;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  color: var(--navy);
  font-size: 8px;
  line-height: 1.2;
}
.mini-kpi {
  top: 0;
  left: 4px;
}
.mini-kpi strong,
.lead-result strong,
.dashboard-mini strong {
  display: block;
  font-size: 13px;
}
.solution-card__visual--ai svg,
.solution-card__visual--build svg {
  position: absolute;
  inset: 20px 0 0;
  width: 100%;
  height: 70px;
  color: #22c55e;
  opacity: 0.8;
}
.mini-chart {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78px;
  height: 54px;
  padding: 8px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  border-radius: 13px;
  background: #eef6ff;
  box-shadow: inset 0 0 0 1px #dbeafe;
}
.mini-chart span {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #60a5fa, #0066ff);
}
.mini-chart span:nth-child(1) { height: 20px; }
.mini-chart span:nth-child(2) { height: 30px; }
.mini-chart span:nth-child(3) { height: 40px; }
.mini-chart span:nth-child(4) { height: 27px; background: linear-gradient(180deg, #34d399, #0d9488); }
.solution-card__visual--programmatic {
  color: #0d9488;
}
.node {
  position: absolute;
  min-width: 46px;
  padding: 6px 8px;
  border: 1px solid #ccfbf1;
  border-radius: 999px;
  background: #fff;
  color: #0f766e;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 18px rgba(13, 148, 136, 0.08);
}
.node::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(13, 148, 136, 0.14);
  border-radius: inherit;
}
.node--center {
  left: 50%;
  top: 50%;
  min-width: 54px;
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #0d9488);
  transform: translate(-50%, -50%);
}
.node--top { left: 50%; top: 2px; transform: translateX(-50%); }
.node--left { left: 0; top: 48%; }
.node--right { right: 0; top: 48%; }
.node--bottom { left: 50%; bottom: 0; transform: translateX(-50%); }
.solution-card__visual--leads {
  color: var(--purple);
}
.lead-dots {
  position: absolute;
  top: 0;
  right: 2px;
  display: flex;
  gap: 7px;
}
.lead-dots span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ede9fe;
  box-shadow: inset 0 0 0 5px #c4b5fd;
}
.lead-funnel {
  position: absolute;
  right: 12px;
  top: 26px;
  width: 98px;
  height: 76px;
  background: linear-gradient(180deg, #ddd6fe, #a78bfa);
  clip-path: polygon(0 0, 100% 0, 64% 100%, 36% 100%);
  opacity: 0.9;
}
.lead-result {
  right: 0;
  bottom: 0;
}
.solution-card__visual--shield {
  color: var(--orange);
}
.shield-lock {
  position: absolute;
  left: 0;
  top: 28px;
  width: 76px;
  height: 76px;
  padding: 14px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.18);
}
.solution-card__visual--shield span {
  position: absolute;
  right: 0;
  padding: 6px 8px;
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.solution-card__visual--shield span:nth-child(2) { top: 8px; }
.solution-card__visual--shield span:nth-child(3) { top: 48px; }
.solution-card__visual--shield span:nth-child(4) { bottom: 2px; }
.solution-card__visual--studio {
  color: #0d9488;
}
.browser-card,
.phone-card {
  position: absolute;
  border: 1px solid #ccfbf1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.1);
}
.browser-card {
  left: 0;
  top: 16px;
  width: 102px;
  height: 78px;
  padding: 19px 10px 10px;
}
.browser-card span,
.phone-card span {
  position: absolute;
  left: 9px;
  top: 7px;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: #99f6e4;
}
.browser-card strong,
.phone-card strong {
  display: block;
  color: #0f766e;
  font-size: 9px;
  line-height: 1.25;
}
.browser-card em {
  display: block;
  width: 58px;
  height: 22px;
  margin-top: 9px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ccfbf1, #14b8a6);
}
.phone-card {
  right: 0;
  bottom: 0;
  width: 58px;
  height: 92px;
  padding: 22px 8px 8px;
}
.solution-card__visual--build {
  color: #4f46e5;
}
.dashboard-mini {
  top: 0;
  left: 0;
}
.dashboard-mini span {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 7px;
  border-radius: 999px;
  background: #c7d2fe;
}
.dashboard-mini em {
  display: block;
  color: #22c55e;
  font-style: normal;
}
.solution-card__visual--build svg {
  color: #4f46e5;
}
.solutions-cta {
  margin-top: 16px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1.4fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid #e2ebf5;
  border-radius: 18px;
  background: linear-gradient(90deg, #f1f7ff 0%, #f5faff 52%, #f1faf5 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.solutions-cta__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #dbeafe;
}
.solutions-cta__icon svg {
  width: 36px;
  height: 36px;
}
.solutions-cta h3 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.2;
}
.solutions-cta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}
.solutions-cta .btn {
  white-space: nowrap;
}
.solutions-cta .btn--blue {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.22);
}
.solutions-cta .btn--blue:hover {
  box-shadow: 0 14px 30px rgba(0, 102, 255, 0.28);
  transform: translateY(-1px);
}

/* ── Case Studies ── */
.section--case-studies {
  background:
    radial-gradient(ellipse 115% 82% at 50% 12%, rgba(240, 247, 255, 0.55) 0%, rgba(245, 255, 251, 0.28) 45%, transparent 78%),
    linear-gradient(180deg, #f8fbff 0%, #f5fffb 38%, #ffffff 100%);
}
.case-studies-head {
  margin-bottom: 40px;
}
.case-studies-head .section-desc {
  max-width: 560px;
  margin-inline: auto;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.case-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.case-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.case-card__head-text {
  min-width: 0;
  padding-top: 2px;
}
.case-card__icon {
  width: 67px;
  height: 67px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.case-card__icon svg,
.case-card__icon-img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  stroke-width: 1.5;
}
.case-card__tag {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}
.case-card__metric-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 0 22px;
}
.case-card__metric {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.case-card__metric-label {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}
.case-card__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 18px;
  border-top: 1px solid #e8edf3;
}
.case-card__stat {
  padding: 0 10px;
}
.case-card__stat:first-child {
  padding-left: 0;
}
.case-card__stat:last-child {
  padding-right: 0;
  border-left: 1px solid #e8edf3;
}
.case-card__stat-value {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.case-card__stat-label {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-muted);
}
.case-card--green .case-card__icon { background: #dcfce7; color: var(--green-alt); }
.case-card--green .case-card__tag, .case-card--green .case-card__metric, .case-card--green .case-card__stat-value { color: var(--green-alt); }
.case-card--purple .case-card__icon { background: #ede9fe; color: var(--purple); }
.case-card--purple .case-card__tag, .case-card--purple .case-card__metric, .case-card--purple .case-card__stat-value { color: var(--purple); }
.case-card--blue .case-card__icon { background: #dbeafe; color: var(--blue); }
.case-card--blue .case-card__tag, .case-card--blue .case-card__metric, .case-card--blue .case-card__stat-value { color: var(--blue); }

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef5ff 0%, #f3f9ff 100%);
  border: 1px solid #d7e6fb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
}
.cta-banner__icon {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background: #dbeafe;
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cta-banner__icon svg,
.cta-banner__icon-img {
  width: 26px;
  height: 26px;
  display: block;
  stroke-width: 1.5;
}
.cta-banner__content {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}
.cta-banner__title {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}
.cta-banner__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}
.section--case-studies .cta-banner .btn--blue {
  white-space: nowrap;
  padding-inline: 22px;
}

/* ── Testimonials ── */
.section--testimonials {
  background:
    radial-gradient(ellipse 115% 82% at 50% 12%, rgba(240, 247, 255, 0.55) 0%, rgba(245, 255, 251, 0.28) 45%, transparent 78%),
    linear-gradient(180deg, #f8fbff 0%, #f5fffb 38%, #ffffff 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.testimonial-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial-card__quote {
  margin-bottom: 12px;
  line-height: 1;
}
.testimonial-card__quote svg {
  width: 48px;
  height: auto;
  display: block;
  filter: none;
  opacity: 1;
}
.testimonial-card__quote svg path {
  fill: #a8d0f0;
  stroke: none;
  filter: none;
  opacity: 1;
}
.testimonial-card__text {
  margin: 0 0 20px;
  font-size: 14px;
  color: #334155;
  line-height: 1.65;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.testimonial-card__name { margin: 0; font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-card__role { margin: 2px 0 0; font-size: 12px; color: var(--text-muted); }

.mmp-bar {
  text-align: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.mmp-bar__label {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.mmp-bar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 28px;
  padding: 10px 0 4px;
}
.mmp-logo {
  flex: 0 0 auto;
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0.72;
  filter: grayscale(100%);
  transition:
    transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
    filter 0.28s ease,
    opacity 0.28s ease;
}

.mmp-logo:hover {
  opacity: 1;
  filter: grayscale(0%) saturate(1.12) drop-shadow(0 8px 14px rgba(37, 99, 235, 0.14));
  transform: scale(1.14) translateY(-6px);
}

/* ── CTV ── */
.ctv-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.ctv-visual {
  position: relative;
  padding: 4px 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.ctv-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.88) 28%, transparent 100%),
    linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0.82) 32%, transparent 100%),
    linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0.8) 38%, transparent 100%);
  background-size: 100% 16%, 100% 14%, 11% 100%;
  background-position: top center, bottom center, right center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.ctv-visual__image {
  display: block;
  width: 100%;
  max-width: 663px;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
  filter: contrast(1.08) saturate(1.05);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.why-card {
  padding: 22px 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.why-card__icon {
  width: 108px;
  height: 108px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.why-card__icon svg {
  width: 96px;
  height: 96px;
  display: block;
}
.why-card__icon--img {
  background: transparent;
  overflow: hidden;
}
.why-card__icon--img img {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.why-card__icon--wide {
  width: 172px;
  height: 108px;
  border-radius: 0;
}
.why-card__icon--wide img {
  width: 172px;
  height: 108px;
  border-radius: 0;
  object-fit: contain;
}
.why-card__title { margin: 0 0 8px; font-size: 18px; font-weight: 800; color: var(--navy); }
.why-card__text { margin: 0; font-size: 14.4px; color: var(--text-muted); line-height: 1.5; }

.how-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.how-step {
  text-align: center;
  width: 180px;
}
.how-step__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.how-step__icon svg {
  width: 42px;
  height: 42px;
  display: block;
}
.how-step__label { margin: 0; font-size: 16px; font-weight: 600; color: var(--navy); }
.how-arrow {
  color: #94a3b8;
  font-size: 30px;
  padding: 0 6px;
}

.ctv-cta {
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, #003da8 0%, #006d82 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 61, 168, 0.22);
}
.ctv-cta__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.ctv-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 58%);
  opacity: 0.5;
}
.ctv-cta::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: url("../assets/logo-icon-transparent.png") center / contain no-repeat;
  opacity: 0.22;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.ctv-cta__title { margin: 0 0 8px; font-size: 28px; font-weight: 800; }
.ctv-cta__text { margin: 0 0 20px; color: rgba(255, 255, 255, 0.9); font-size: 15px; }
.ctv-cta .btn--blue {
  background: #fff;
  color: var(--blue);
  display: inline-flex;
}
.ctv-cta .btn--blue:hover {
  background: #f8fbff;
  color: var(--blue);
}

.section--ctv {
  padding: 40px 0 64px;
  background:
    radial-gradient(ellipse 82% 58% at 75% 8%, rgba(20, 184, 166, 0.08), transparent 64%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 46%, #f8fbff 100%);
}
.section--ctv .ctv-hero {
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 0;
}
.ctv-hero__copy .section-eyebrow {
  color: var(--blue);
}
.ctv-hero__copy .section-title {
  max-width: 470px;
  font-size: clamp(38px, 4.7vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.ctv-hero__copy .gradient-rule {
  width: 54px;
  height: 3px;
  margin: 18px 0 22px;
}
.ctv-hero__copy .section-desc {
  max-width: 390px;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}
.ctv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.ctv-hero__actions .btn {
  min-width: 156px;
  justify-content: center;
  border-radius: 8px;
}
.ctv-hero__actions .btn--blue {
  background: var(--gradient);
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.16);
}
.section--ctv .ctv-visual {
  overflow: visible;
  padding: 0;
  border-radius: 0;
  margin-right: 0;
  margin-bottom: -34px;
  align-self: start;
}
.section--ctv .ctv-visual::before {
  display: none;
}
.section--ctv .ctv-visual__image {
  width: min(90.7%, 729px);
  max-width: none;
  margin: 0 0 0 auto;
  filter: none;
}
.ctv-steps-card {
  position: relative;
  z-index: 2;
  margin: 42px auto 16px;
  padding: 18px 28px 24px;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}
.ctv-steps-card__head {
  text-align: center;
  margin-bottom: 8px;
}
.ctv-steps-card__head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
}
.ctv-steps-card__head .gradient-rule {
  width: 38px;
  height: 2px;
  margin: 6px auto 0;
}
.ctv-steps {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr 80px 1fr;
  align-items: start;
  gap: 8px;
}
.ctv-step {
  text-align: center;
  min-width: 0;
}
.ctv-step__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.ctv-step__icon svg {
  width: 30px;
  height: 30px;
}
.ctv-step__icon--blue {
  color: var(--blue);
  background: #dbeafe;
}
.ctv-step__icon--green {
  color: #0d9488;
  background: #dcfce7;
}
.ctv-step h4 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}
.ctv-step p {
  margin: 0;
  color: #64748b;
  font-size: 11px;
  line-height: 1.45;
}
.ctv-step-connector {
  position: relative;
  height: 58px;
  margin-top: 0;
  display: flex;
  align-items: center;
}
.ctv-step-connector::before,
.ctv-step-connector::after {
  content: "";
  flex: 1;
  border-top: 2px dotted #60a5fa;
}
.ctv-step-connector span {
  width: 24px;
  height: 24px;
  margin: 0 7px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.section--ctv .ctv-cta {
  min-height: 116px;
  padding: 22px 78px 22px 32px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border-radius: 16px;
  background: linear-gradient(90deg, #031f5f 0%, #003da8 44%, #08c796 100%);
  box-shadow: 0 18px 38px rgba(0, 61, 168, 0.2);
}
.section--ctv .ctv-cta::before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 58%);
  background-size: 13px 13px, auto;
  background-position: 62% 50%, center;
  opacity: 0.45;
}
.section--ctv .ctv-cta::after {
  display: none;
}
.ctv-cta__icon {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #0066ff;
  background: rgba(0, 102, 255, 0.2);
}
.ctv-cta__icon svg {
  width: 42px;
  height: 42px;
}
.section--ctv .ctv-cta__content {
  max-width: none;
}
.section--ctv .ctv-cta__title {
  margin-bottom: 4px;
  font-size: 28px;
}
.section--ctv .ctv-cta__text {
  max-width: 360px;
  margin: 0;
}
.ctv-cta__button {
  position: relative;
  z-index: 1;
  min-width: 178px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}
.ctv-cta__button span {
  font-size: 28px;
  line-height: 1;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  color: #e2e8f0;
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(96, 165, 250, 0.08), transparent 42%);
  opacity: 0.7;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  position: relative;
}
.site-footer__logo {
  margin-bottom: 6px;
  gap: 12px;
}
.site-footer .site-logo__image {
  width: min(220px, 70vw);
  height: auto;
}
.site-footer .site-logo__icon {
  width: 55px;
  height: 55px;
}
.site-footer .site-logo__text {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.site-footer .site-logo__text .lookup { color: #60a5fa; }
.site-footer .site-logo__text .ads { color: var(--green-alt); }

.footer-brand__tagline {
  margin: 8px 0 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #64748b;
}
.footer-brand__desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  transition: background 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.footer-social__svg {
  width: 20px;
  height: 20px;
  display: block;
}
.footer-col__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.footer-col__rule {
  width: 32px;
  height: 3px;
  background: var(--green-alt);
  border-radius: 999px;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-links a::before { content: "›"; color: #64748b; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-alt);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.footer-contact-item__label { margin: 0 0 2px; font-size: 13px; font-weight: 700; color: #fff; }
.footer-contact-item__value { margin: 0; font-size: 13px; color: #94a3b8; }
.footer-contact-item__value a:hover { color: var(--green-alt); }
.footer-address {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
}
.footer-address:last-child { border-bottom: none; }
.footer-address__icon { color: var(--green-alt); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #64748b;
  position: relative;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .testimonial-slider__btn--prev,
  .testimonial-slider__btn--next { display: grid !important; place-items: center; }
  .hero-grid, .about-grid, .ctv-hero { grid-template-columns: 1fr; }
  .about-hero-copy { max-width: none; }
  .about-hero-desc { max-width: none; }
  .network-visual {
    width: 100%;
    min-height: clamp(380px, 52vw, 440px);
    max-width: 680px;
    margin: 0 auto;
    margin-right: auto;
  }
  .network-card {
    width: min(210px, 47%);
    padding: 12px 14px;
  }
  .network-card--users {
    width: min(250px, 90%);
  }
  .network-node { width: 26px; height: 26px; }
  .hero-visual { min-height: auto; padding-right: 0; }
  .hero-visual__stage {
    max-width: none;
    padding: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero-connectors { display: none; }
  .dashboard {
    grid-column: 1 / -1;
    transform: none;
  }
  .float-card {
    position: static;
    width: 100%;
    transform: none;
    animation: none;
  }

  .float-card:hover,
  .float-card--analytics:hover {
    transform: translateY(-4px) scale(1.01);
  }
  .features-bar { grid-template-columns: 1fr; padding: 28px 24px; }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 24px;
    gap: 16px;
  }
  .feature-item:last-child { border-bottom: none; padding-bottom: 0; }
  .feature-item__icon { width: 64px; height: 64px; border-radius: 14px; }
  .feature-item__icon svg { width: 36px; height: 36px; }
  .stats-row, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2n) { border-right: none; }
  .stat-block:nth-child(-n+2) { border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 12px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solutions-row-2 { grid-template-columns: 1fr; max-width: none; }
  .case-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner__content { flex-direction: column; }
  .how-flow { gap: 16px; }
  .how-arrow { display: none; }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    padding: 16px 24px 24px;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .site-nav.is-open { display: flex; }
  .site-nav__item {
    width: 100%;
  }
  .site-nav__link {
    display: block;
  }
  .site-submenu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 6px 0 10px;
    padding: 10px;
    border-radius: 16px;
    background: #f8fbff;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-submenu::before {
    display: none;
  }
  .site-submenu__item {
    min-height: auto;
    padding: 11px !important;
  }
  .site-submenu__icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }
  .site-submenu__title {
    font-size: 12px;
  }
  .site-submenu__text {
    font-size: 10.5px;
  }
  .nav-toggle { display: grid; place-items: center; }
  .site-header__inner { position: relative; }
  .section { padding: 56px 0; }
  .hero-visual__stage { grid-template-columns: 1fr; }
  .dashboard__metrics { grid-template-columns: repeat(2, 1fr); }
  .dashboard__bottom { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ctv-cta { padding: 32px 24px; }
  .ctv-cta__content { max-width: none; }
  .stats-row, .why-grid { grid-template-columns: 1fr; }
  .stat-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 12px;
  }
  .stat-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 8px; }
  .section--contact .contact-layout { grid-template-columns: 1fr; }
  .hero-visual__stage { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
  .solution-card__list {
    max-width: none;
  }

  .solution-card__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

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

  .solutions-cta p,
  .solutions-cta .btn {
    grid-column: 2;
  }

  .ctv-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .ctv-step-connector {
    display: none;
  }

  .section--ctv .ctv-cta {
    grid-template-columns: auto 1fr;
    padding-right: 32px;
  }

  .ctv-cta__button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .solutions-head {
    max-width: none;
  }

  .solutions-head .section-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .solutions-cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .solutions-cta p,
  .solutions-cta .btn {
    grid-column: auto;
  }

  .section--ctv {
    padding-top: 32px;
  }

  .section--ctv .ctv-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section--ctv .ctv-visual {
    margin-right: 0;
    margin-bottom: 0;
  }

  .ctv-hero__copy .section-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .ctv-hero__actions .btn {
    width: 100%;
  }

  .ctv-steps-card {
    margin-top: 24px;
    padding: 22px;
  }

  .ctv-steps {
    grid-template-columns: 1fr;
  }

  .section--ctv .ctv-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    text-align: center;
    justify-items: center;
  }

  .ctv-cta__button {
    grid-column: auto;
    justify-self: center;
    width: min(100%, 240px);
  }
}

/* ── Contact section ── */
.section--contact {
  background: var(--bg-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  max-width: 860px;
  margin: 0 auto 28px;
  align-items: start;
}

.contact-heading {
  margin: 0 0 8px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.contact-heading__blue { color: #1e40af; }
.contact-heading__green { color: var(--green-alt); }

.contact-heading-rule {
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: var(--gradient);
  margin-bottom: 22px;
}

.contact-intro__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #1e40af;
}

.contact-intro__text {
  margin: 0 0 26px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact-group {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-group__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.contact-group--advertisers .contact-group__icon {
  background: #dbeafe;
  color: var(--blue);
}

.contact-group--publishers .contact-group__icon {
  background: #dcfce7;
  color: #16a34a;
}

.contact-group__icon svg { width: 26px; height: 26px; }

.contact-group__body {
  flex: 1;
  border-left: 3px solid;
  padding-left: 16px;
  min-width: 0;
}

.contact-group--advertisers .contact-group__body { border-color: var(--blue); }
.contact-group--publishers .contact-group__body { border-color: var(--green-alt); }

.contact-group__label {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
}

.contact-group--advertisers .contact-group__label { color: var(--blue); }
.contact-group--publishers .contact-group__label { color: #16a34a; }

.contact-email {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 14.5px;
  color: #475569;
  transition: color 0.2s;
}

.contact-email:last-child { margin-bottom: 0; }
.contact-group--advertisers .contact-email:hover { color: var(--blue); }
.contact-group--publishers .contact-email:hover { color: #16a34a; }
.contact-email svg { width: 17px; height: 17px; flex-shrink: 0; }
.contact-group--advertisers .contact-email svg { color: var(--blue); }
.contact-group--publishers .contact-email svg { color: var(--green-alt); }

.grow-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  padding: 14px 18px;
  background: #eef4ff;
  border-radius: 12px;
}

.grow-banner__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.12);
}

.grow-banner__icon svg { width: 22px; height: 22px; }
.grow-banner__text {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: #1e40af;
}
.grow-banner__green { color: var(--green-alt); }
.grow-banner__rule {
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient);
}

.form-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 18px 14px;
}

.form-card__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #1e40af;
}

.form-card__rule {
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: var(--gradient);
  margin-bottom: 12px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field { margin: 0; }

.form-field label {
  display: block;
  margin-bottom: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: #1e40af;
}

.form-field label .required { color: #ef4444; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 7px 11px;
  font: inherit;
  font-size: 12px;
  color: var(--text);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
  font-size: 11.5px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239ca3af' d='M1.41 0 6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 30px;
  cursor: pointer;
  color: #9ca3af;
}

.form-field select:valid,
.form-field select option { color: var(--text); }

.form-field textarea {
  min-height: 58px;
  max-height: 58px;
  resize: none;
  line-height: 1.4;
}

.btn-submit {
  width: 100%;
  padding: 9px 14px;
  border: none;
  border-radius: 6px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: var(--gradient);
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(29, 78, 216, 0.2);
  transition: opacity 0.2s, transform 0.15s;
}

.btn-submit:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.form-message {
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  display: none;
}

.form-message.is-success {
  display: block;
  background: #dcfce7;
  color: #166534;
}

.form-message.is-error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

.contact-trust-bar.trust-bar {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #eef2f7;
  border-radius: 16px;
  padding: 14px 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 16px;
}

.trust-item + .trust-item {
  border-left: 1px solid #cbd5e1;
}

.trust-item__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.trust-item:nth-child(1) .trust-item__icon,
.trust-item:nth-child(3) .trust-item__icon {
  background: #dbeafe;
  color: var(--blue);
}

.trust-item:nth-child(2) .trust-item__icon {
  background: #dcfce7;
  color: #16a34a;
}

.trust-item__icon svg { width: 18px; height: 18px; }

.trust-item__title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.trust-item:nth-child(1) .trust-item__title,
.trust-item:nth-child(3) .trust-item__title { color: #1e40af; }

.trust-item:nth-child(2) .trust-item__title { color: #16a34a; }

.trust-item__desc {
  margin: 0;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.25;
}

@media (max-width: 900px) {
  .contact-heading { font-size: 32px; }
  .contact-trust-bar.trust-bar { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; }
  .trust-item + .trust-item {
    border-left: none;
    border-top: 1px solid #cbd5e1;
    padding-top: 12px;
  }
}
