:root {
  --blue: #1C6FC2;
  --blue-dark: #175a9e;
  --navy: #16233b;
  --ink: #2f3a4d;
  --muted: #5a6577;
  --line: #e2e6ee;
  --charcoal: #161b26;
  --charcoal-2: #1e2534;
  --card-shadow: 0 2px 10px -4px rgba(23, 45, 82, 0.08);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

html, body { height: 100%; }

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background-color: #f4f6f9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ===== Full-screen first section ===== */
.hero-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: transparent;
  display: flex;
  flex-direction: column;
}

/* ===== Model C: ONE continuous city map behind the whole map region ===== */
/* The map region wraps every light block (hero + problem + calculator …). A single
   tall, cohesive map covers it with `cover`, so streets/rivers flow continuously
   from block to block — no repeat, no mirror, no seam, no zigzags. */
.mapregion {
  position: relative;
}

.sitemap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* One tall continuous image + flat page-tone veil. Width-fit (100% auto) so the
   street scale stays natural on a long page; excess height is cropped at the bottom. */
.sitemap__img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(244, 246, 249, 0.38), rgba(244, 246, 249, 0.38)),
    url("assets/map-bg-full.png") center top / 100% auto no-repeat;
}

/* Invisible traced streets; SVG box matches the width-fit image aspect so dots
   stay glued to the visible roads (same top-left origin and scale). */
.sitemap__roads {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 5724;
}
.sitemap__roads path {
  fill: none;
  stroke: none;
}

.map-dot {
  fill: rgba(23, 90, 158, var(--dot-alpha, 0.55));
  filter: drop-shadow(0 0 1.5px rgba(28, 111, 194, 0.4));
  opacity: 0;
}

/* Soft left-to-right fade lightening the map behind the text column */
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(248, 249, 251, 0.92) 0%,
    rgba(248, 249, 251, 0.7) 26%,
    rgba(248, 249, 251, 0.38) 50%,
    rgba(248, 249, 251, 0.12) 70%,
    rgba(248, 249, 251, 0) 88%
  );
  /* Long bottom dissolve — short fade left a hard “map window” edge at the seam */
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0,
    #000 calc(100% - 280px),
    rgba(0, 0, 0, 0.45) calc(100% - 140px),
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0,
    #000 calc(100% - 280px),
    rgba(0, 0, 0, 0.45) calc(100% - 140px),
    transparent 100%
  );
  pointer-events: none;
}

/* ===== Focus veils: soft light spots over the shared map =====
   Used on content sections to pull attention to text without killing the map.
   Edges always fade to transparent (vertical mask) so neighbouring blocks don't
   meet with a bright/hard seam. */
.section-veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 180px,
    #000 calc(100% - 180px),
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 180px,
    #000 calc(100% - 180px),
    transparent 100%
  );
}

/* Text column focus (text left / visual right) — same language as hero */
.section-veil--left {
  background: linear-gradient(
    90deg,
    rgba(248, 249, 251, 0.82) 0%,
    rgba(248, 249, 251, 0.55) 34%,
    rgba(248, 249, 251, 0.22) 58%,
    rgba(248, 249, 251, 0.06) 78%,
    rgba(248, 249, 251, 0) 94%
  );
}

/* Centered headline focus */
.section-veil--center {
  background:
    radial-gradient(
      ellipse 90% 70% at 50% 22%,
      rgba(248, 249, 251, 0.82) 0%,
      rgba(248, 249, 251, 0.45) 48%,
      rgba(248, 249, 251, 0.1) 72%,
      rgba(248, 249, 251, 0) 88%
    ),
    linear-gradient(
      180deg,
      rgba(248, 249, 251, 0.22) 0%,
      rgba(248, 249, 251, 0.08) 50%,
      rgba(248, 249, 251, 0) 85%
    );
}

/* Gentle full-section haze (rhythm between stronger focus spots) */
.section-veil--soft {
  background: linear-gradient(
    180deg,
    rgba(248, 249, 251, 0.28) 0%,
    rgba(248, 249, 251, 0.16) 45%,
    rgba(248, 249, 251, 0.06) 75%,
    rgba(248, 249, 251, 0) 100%
  );
}

/* Content always stacks above the focus veil */
.problem__inner,
.calculator__inner,
.detail__inner,
.showroom__inner,
.cases__inner,
.pricing__inner,
.impl__inner,
.segment__inner,
.faq__inner,
.teaser__inner {
  position: relative;
  z-index: 1;
}

/* Shared full-width container */
.nav__wrap,
.hero__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(24px, 4.5vw, 64px);
  padding-right: clamp(24px, 4.5vw, 64px);
}

/* ===== Header ===== */
.nav {
  position: relative; z-index: 5;
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 45, 82, 0.08);
}
.nav__wrap {
  display: flex; align-items: center;
  gap: 40px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; transform: translateY(-10px); }
.logo__img { display: block; height: 44px; width: auto; flex: none; }
.logo__tag {
  display: flex; align-items: center;
  height: 20px;
  transform: translateY(10px);
  font-size: 13px; font-weight: 500; color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 12px;
  white-space: nowrap;
}
.nav__links { margin-left: auto; display: flex; gap: 30px; }
.nav__links a {
  text-decoration: none; color: var(--navy);
  font-size: 15px; font-weight: 500;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--blue); }

.nav__waitlist {
  flex: none;
  margin-left: 24px;
  padding: 0;
  background: none;
  border: none;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.nav__waitlist:hover { color: var(--navy); }

.nav__cta { margin-left: 8px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: 999px; text-decoration: none;
  font-weight: 600; cursor: pointer; transition: .15s;
  white-space: nowrap;
  border: none;
  font-family: inherit;
}
.btn--primary {
  background: var(--blue); color: #fff;
  padding: 12px 24px; font-size: 15px;
  box-shadow: 0 10px 22px -8px rgba(28,111,194,.6);
}
.btn--primary:hover { background: var(--blue-dark); }
.btn--primary.pulse-cta { animation: ctaPulse 1.6s ease-out 3; }
@keyframes ctaPulse {
  0%   { box-shadow: 0 10px 22px -8px rgba(28,111,194,.6), 0 0 0 0 rgba(28,111,194,.55); }
  70%  { box-shadow: 0 10px 22px -8px rgba(28,111,194,.6), 0 0 0 14px rgba(28,111,194,0); }
  100% { box-shadow: 0 10px 22px -8px rgba(28,111,194,.6), 0 0 0 0 rgba(28,111,194,0); }
}
.nav__cta { padding: 12px 26px; }
.btn--lg { padding: 15px 24px; font-size: 14px; letter-spacing: 0.2px; }
.btn--ghost {
  background: #fff; color: var(--blue);
  border: 1.6px solid #bcd3ec;
}
.btn--muted {
  background: transparent; color: var(--muted);
  border: 1.6px solid var(--line);
  font: inherit;
}
.btn--muted:hover { color: var(--navy); border-color: #c8cedb; background: #f4f6f9; }
.btn--ghost:hover { border-color: var(--blue); }

.btn--link {
  background: transparent;
  color: var(--muted);
  padding: 6px 2px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
}

.btn--link:hover { color: var(--blue); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Hero content ===== */
.hero__inner {
  position: relative; z-index: 4;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  align-items: center;
  gap: clamp(24px, 4vw, 80px);
  padding-top: 20px;
  padding-bottom: 48px;
}
.hero__left { max-width: 580px; }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #eaeff6; color: #46536a;
  padding: 8px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0;
  margin-bottom: 20px;
}

/* Title */
.hero__title {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
}

.hero__title-accent {
  color: var(--blue);
}

/* Description */
.hero__desc {
  max-width: 480px;
  font-size: 15px;
  line-height: 1.6;
  color: #3c4657;
  margin-bottom: 22px;
}
.hero__desc strong { color: var(--navy); font-weight: 700; }

/* Hero form CTA */
.hero__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero__input-wrap {
  display: flex;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border: 1.6px solid var(--line);
  border-radius: 999px;
  padding: 5px 5px 5px 18px;
  box-shadow: 0 8px 24px -10px rgba(23, 45, 82, 0.15);
  transition: border-color .2s, box-shadow .2s;
}

.hero__input-wrap:focus-within {
  border-color: rgba(28, 111, 194, 0.45);
  box-shadow: 0 8px 28px -8px rgba(28, 111, 194, 0.2);
}

.hero__input-wrap.is-error {
  border-color: #d64545;
  animation: inputShake .35s ease;
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.hero__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: var(--navy);
  padding: 10px 8px 10px 0;
}

.hero__input::placeholder { color: #9aa3b2; }
.hero__input:focus { outline: none; }

.hero__submit {
  flex: none;
  padding: 11px 20px;
  font-size: 14px;
}

/* Social proof */
.social-proof {
  display: flex; align-items: center; gap: 16px;
  margin-top: 20px; flex-wrap: wrap;
}
.sp__stat {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.sp__stat svg { color: #22b04b; flex: none; }

/* ===== Visual / dashboard panel (variant A: unified dark board) ===== */
.hero__visual {
  position: relative;
  z-index: 4;
  justify-self: end;
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-margin-top: 80px;
}

.dash__panel {
  background: var(--charcoal);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 30px 60px -22px rgba(12, 16, 24, 0.55);
}
.dash__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.card {
  position: relative;
  background: var(--charcoal-2);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

/* Revenue + live stats */
.card--revenue {
  grid-column: span 5;
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.revenue__label { font-size: 27px; font-weight: 800; color: #fff; letter-spacing: -0.5px; line-height: 1; }
.revenue__cur { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.7); }
.revenue__sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* Live mini-stats inside the revenue card */
.stats__row {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 14px;
}
.stat__chip {
  min-width: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.stat__chip-label {
  font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.02em;
  line-height: 1.3;
}
.stat__chip-value {
  font-size: 16px; font-weight: 800; color: #6fb0f5;
  letter-spacing: -0.2px;
  transition: color .2s;
  white-space: nowrap;
}

/* Gauge — the headline metric, given the most room in the row */
.card--gauge {
  grid-column: span 7;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.card__title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; white-space: nowrap; }
.gauge { display: block; margin: 0 auto; width: 100%; max-width: 240px; height: auto; }
.gauge__score { font-size: 30px; font-weight: 800; color: rgba(255,255,255,0.55); margin-top: -4px; letter-spacing: -0.5px; }
.gauge__score b { color: #6fb0f5; }

/* Bottom row — interactive recommendation slots (share equal halves) */
.card--rec {
  grid-column: span 6;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 11px;
  font-size: 12.5px; line-height: 1.4; color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background .18s, transform .12s;
}
.card--rec:hover { background: #232b3d; }
.card--rec:active { transform: scale(0.985); }
.card--rec[hidden] { display: none; }
.card .accent { color: #6fb0f5; }
.rec__body strong { color: #fff; font-size: 14px; font-weight: 800; }
.rec__body { transition: opacity .16s ease; }
.rec__body.is-fading { opacity: 0; }

/* Recommendation checkbox icon — pulses gently to invite a click */
.rec__icon {
  position: relative;
  width: 32px; height: 32px; flex: none;
  border-radius: 50%;
  background: rgba(111, 176, 232, 0.16);
  border: 1.5px solid rgba(111, 176, 232, 0.4);
  display: flex; align-items: center; justify-content: center;
  transition: background .22s, border-color .22s;
  animation: recPulse 2.2s ease-in-out infinite;
}
.rec__check {
  stroke: #6fb0f5;
  opacity: 0.85;
  transform: scale(0.82);
  transition: opacity .2s, transform .28s cubic-bezier(.34,1.56,.64,1), stroke .22s;
}
.rec__icon.is-done {
  background: rgba(34, 176, 75, 0.9);
  border-color: transparent;
  animation: none;
  box-shadow: none;
}
.rec__icon.is-done .rec__check {
  stroke: #fff;
  opacity: 1;
  transform: scale(1);
}
@keyframes recPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(111, 176, 232, 0.38); }
  50% { box-shadow: 0 0 0 6px rgba(111, 176, 232, 0); }
}

/* Completion banner */
.card--done {
  grid-column: span 12;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  font-size: 12.5px; line-height: 1.4; color: rgba(255,255,255,0.7);
}
.card--done[hidden] { display: none; }
.card--done .rec__body strong { display: block; margin-top: 2px; }
.done__cta {
  margin-left: auto; flex: none;
  padding: 11px 20px; font-size: 13px;
  white-space: nowrap;
}

/* Feature strip — separate dark card, tight beneath the main panel */
.dash__features {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--charcoal);
  box-shadow: 0 14px 28px -16px rgba(12, 16, 24, 0.5);
}
.feat {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.72);
  white-space: nowrap;
}
.feat svg { color: #6fb0f5; flex: none; }
.feat__div {
  width: 1px; height: 16px; flex: none;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== Footer (architectural) ===== */
.site-footer {
  position: relative;
  z-index: 4;
  background: #f4f6f9;
  border-top: 1px solid rgba(23, 45, 82, 0.08);
}

/* --- A · Pre-footer (final capture) --- */
.prefooter {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 4.5vw, 64px) 0;
}
.prefooter__card {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px) clamp(26px, 4vw, 52px);
  background:
    radial-gradient(120% 160% at 90% 10%, rgba(111, 176, 232, 0.28) 0%, rgba(111, 176, 232, 0) 55%),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 30px 60px -30px rgba(28, 111, 194, 0.6);
}
.prefooter__title {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
  max-width: 620px;
}
.prefooter__note { font-size: 13.5px; color: rgba(255, 255, 255, 0.82); }
.prefooter__cta {
  flex: none;
  background: #fff; color: var(--blue);
  padding: 15px 26px; font-size: 15px;
  box-shadow: 0 14px 30px -12px rgba(12, 16, 24, 0.4);
}
.prefooter__cta:hover { background: #eef4fb; }

/* --- B · Main footer with faint map line-art --- */
.footmain {
  position: relative;
  overflow: hidden;
}
.footmain::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/map-bg.png") center / cover no-repeat;
  opacity: 0.05;
  filter: grayscale(1);
  pointer-events: none;
}
.footmain__inner {
  position: relative; z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) clamp(24px, 4.5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
}

.footcol__logo { transform: none; margin-bottom: 14px; }
.footcol__logo .logo__img { height: 64px; }
.footcol__slogan { font-size: 13.5px; line-height: 1.55; color: var(--muted); max-width: 260px; margin-bottom: 18px; }

.footsocial { display: flex; gap: 10px; margin-bottom: 20px; }
.footsocial__link {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  color: #64748b;
  transition: color .15s, border-color .15s, transform .15s;
}
.footsocial__link:hover { color: var(--blue); border-color: #bcd3ec; transform: translateY(-2px); }

.footcol__title {
  display: block;
  font-size: 12px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footcol__list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footcol__list a {
  font-size: 13.5px; font-weight: 500; color: #64748b;
  text-decoration: none;
  transition: color .15s;
  display: inline-flex; align-items: center; gap: 7px;
}
.footcol__list a:hover { color: var(--blue); }
.footcol__badge {
  font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--blue); background: rgba(28, 111, 194, 0.1);
  border-radius: 5px; padding: 2px 6px;
}
.footcol__list--contacts { margin-bottom: 18px; }
.footcol__list--contacts a { font-weight: 600; color: var(--navy); }
.footcol__list--contacts a:hover { color: var(--blue); }
.footcol__tg { padding: 10px 16px; font-size: 13.5px; }
.footcol__tg svg { color: var(--blue); }

/* --- Copyright bar --- */
.footbar {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(23, 45, 82, 0.08);
}
.footbar__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px clamp(24px, 4.5vw, 64px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.footbar__copy { font-size: 13px; color: var(--muted); }
.footbar__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footbar__legal a { font-size: 13px; color: #64748b; text-decoration: none; transition: color .15s; }
.footbar__legal a:hover { color: var(--blue); }

/* ===== Block 2 · Problem / Agitation ===== */
.problem {
  position: relative;
  z-index: 1;
  /* Transparent: the shared continuous map (behind the whole region) shows through,
     so streets/rivers flow straight down from the hero with no seam. */
  background: transparent;
}

.problem__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) clamp(24px, 4.5vw, 64px);
}

.problem__head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 4vw, 56px);
  text-align: center;
}

.problem__title {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.problem__title-accent { color: var(--blue); }

.problem__sub {
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.6;
  color: #3c4657;
  margin: 0 auto;
  max-width: 620px;
}
.problem__sub strong { color: var(--navy); font-weight: 700; }

.problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

/* ----- Left column: pains, calculator, CTA ----- */
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pain {
  display: flex; align-items: flex-start; gap: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 17px;
  box-shadow: var(--card-shadow);
}
.pain__mark {
  flex: none;
  width: 24px; height: 24px; margin-top: 1px;
  border-radius: 50%;
  background: rgba(214, 69, 69, 0.1);
  color: #d64545;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.pain__text { font-size: 14px; line-height: 1.5; color: var(--muted); }
.pain__text strong { color: var(--navy); font-weight: 700; }

.problem__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  font-size: 15px; font-weight: 700; color: var(--blue);
  text-decoration: none;
  transition: gap .16s, color .16s;
}
.problem__cta:hover { color: var(--blue-dark); gap: 12px; }


.problem__proof {
  display: flex; align-items: center; gap: 7px;
  margin: 14px 0 0;
  font-size: 12.5px; font-weight: 600; color: var(--muted);
}
.problem__proof svg { flex: none; color: var(--blue); }

/* ----- Right column: before/after reveal ----- */
.problem__visual { display: flex; flex-direction: column; gap: 14px; }

.reveal {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: 0 30px 60px -22px rgba(12, 16, 24, 0.55);
  aspect-ratio: 4 / 3;
  user-select: none;
  touch-action: pan-y;
}

.reveal__layer { position: absolute; inset: 0; }
.reveal__layer--after {
  /* Revealed on the RIGHT of the divider (matches the "С OnMap" caption);
     the "before" layer underneath shows through on the left ("Сейчас"). */
  clip-path: inset(0 0 0 var(--pos, 50%));
}

.mini-map {
  position: absolute; inset: 0;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  background:
    radial-gradient(90% 70% at 70% 0%, rgba(28, 111, 194, 0.1) 0%, rgba(28, 111, 194, 0) 60%),
    #171d2a;
}
.reveal__layer--before .mini-map { filter: grayscale(0.55) brightness(0.82); }

.mmap__bar {
  display: flex; align-items: center; gap: 9px;
  background: #232b3d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 11px;
  padding: 11px 14px;
  font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.82);
}
.mmap__search-ic { color: #6fb0f5; flex: none; }

.mmap__list { display: flex; flex-direction: column; gap: 8px; min-height: 0; }
.mmap__gap { text-align: center; color: rgba(255,255,255,0.28); font-size: 14px; letter-spacing: 3px; line-height: 0.6; }

.mres {
  display: flex; align-items: center; gap: 11px;
  background: #1e2534;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 10px 12px;
}
.mres__thumb {
  flex: none; width: 40px; height: 40px; border-radius: 9px;
  background: linear-gradient(135deg, #35507a, #283349);
}
.mres__thumb--empty {
  background: #262d3d;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.28);
}
.mres__thumb--photo {
  background: linear-gradient(135deg, #2f7be0, #1c6fc2 60%, #6fb0f5);
}
.mres__info { flex: 1; min-width: 0; }
.mres__name {
  font-size: 13.5px; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mres__tag {
  font-size: 9.5px; font-weight: 700; color: #22b04b;
  background: rgba(34, 176, 75, 0.14); border-radius: 5px;
  padding: 2px 6px; text-transform: uppercase; letter-spacing: 0.03em;
}
.mres__meta { font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.mres__rate { color: #f5a623; font-weight: 700; }
.mres__rate--hot { color: #ffc24d; }

.mres__pin {
  flex: none; width: 26px; height: 26px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.mres__pin--rival { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.mres__pin--dim { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.35); }
.mres__pin--hot { background: var(--blue); color: #fff; box-shadow: 0 4px 12px -2px rgba(28,111,194,0.7); }

.mres--you-dim { border-style: dashed; border-color: rgba(255,255,255,0.14); }
.mres--you-dim .mres__name { color: rgba(255,255,255,0.55); }
.mres--you-top {
  background: linear-gradient(135deg, rgba(28,111,194,0.22), rgba(30,37,52,0.9));
  border-color: rgba(111, 176, 232, 0.5);
  box-shadow: 0 8px 24px -10px rgba(28,111,194,0.6);
}

.mres__actions { display: flex; gap: 7px; margin-top: 8px; }
.mres__act {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700;
  padding: 4px 9px; border-radius: 999px;
}
.mres__act--call { background: rgba(34, 176, 75, 0.16); color: #4fd07a; }
.mres__act--route { background: rgba(111, 176, 232, 0.16); color: #6fb0f5; }

/* Incoming call/route bubbles — sit inline in the "your business" row,
   in one line with the rank pin, evenly spaced via the row's flex gap. */
.reveal__float {
  flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(0,0,0,0.5);
  animation: floatUp 3s ease-in-out infinite;
}
.reveal__float--call { background: #22b04b; animation-delay: .2s; }
.reveal__float--route { background: var(--blue); animation-delay: 1s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Divider handle */
.reveal__handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px; margin-left: -1px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
  pointer-events: none;
}
.reveal__grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.4);
}

.reveal__cap {
  position: absolute; bottom: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  color: #fff; backdrop-filter: blur(4px);
}
.reveal__cap--before { left: 14px; background: rgba(90, 101, 119, 0.7); }
.reveal__cap--after { right: 14px; background: rgba(28, 111, 194, 0.85); }

/* The real, accessible control sits on top, invisible, full-area */
.reveal__range {
  position: absolute; inset: 0;
  width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none; background: transparent;
}
.reveal__range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 44px; height: 100%; cursor: ew-resize;
}
.reveal__range::-moz-range-thumb {
  width: 44px; height: 240px; border: none; background: transparent; cursor: ew-resize;
}
.reveal__range:focus-visible + .reveal__cap,
.reveal:focus-within .reveal__grip { box-shadow: 0 0 0 3px rgba(111,176,232,0.6); }

.reveal__hint {
  text-align: center; font-size: 13px; color: var(--muted); line-height: 1.5;
}
.reveal__hint strong { color: var(--navy); font-weight: 700; }

/* ----- Block 3: full-width ROI calculator section ----- */
.calculator {
  position: relative;
  z-index: 1;
  /* Transparent: the shared continuous map flows through this block too. */
  background: transparent;
}
.calculator__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) clamp(24px, 4.5vw, 64px);
}
.calculator__head {
  max-width: 640px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  text-align: center;
}
.calculator__title {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.calculator__title-accent { color: var(--blue); }
.calculator__sub {
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.6;
  color: #3c4657;
  margin: 0 auto;
}

/* Calculator shell: dark panel + soft note as one visual unit */
.calc-shell {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -22px rgba(12, 16, 24, 0.55);
  border: 1px solid rgba(23, 45, 82, 0.08);
  background: #eef1f6;
}
.calc-shell .calc-panel {
  box-shadow: none;
  border-radius: 0;
}

/* Growth-potential calculator panel — two columns: inputs | result card */
.calc-panel {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 30px 60px -22px rgba(12, 16, 24, 0.55);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
}

.calc-shell__note {
  margin: 0;
  max-width: none;
  padding: 14px clamp(20px, 3vw, 32px) 16px;
  text-align: left;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(23, 45, 82, 0.07);
}
.calc-shell__note p {
  margin: 0;
  max-width: none;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.calc-shell__note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 111, 194, 0.22);
  transition: border-color .15s, color .15s;
}
.calc-shell__note a:hover {
  color: var(--blue-dark);
  border-bottom-color: rgba(23, 90, 158, 0.45);
}

/* Left column: parameters */
.calc-panel__inputs {
  display: flex;
  flex-direction: column;
  padding: clamp(8px, 1.5vw, 16px) clamp(8px, 1.5vw, 20px);
}
.calc-panel__inputs-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
}
.calc-field { margin-bottom: 26px; }
.calc-field__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 12px;
}
.calc-field__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.55);
  line-height: 1.3;
}
.calc-field__ic { flex: none; color: #6fb0f5; }
.calc-field__value { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.3px; flex: none; font-family: "Montserrat", sans-serif; }

.calc-panel__range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 999px;
  background-image: linear-gradient(90deg, #6fb0f5, #8ac0ff);
  background-size: var(--fill, 50%) 100%;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,0.12);
  outline: none; cursor: pointer;
}
.calc-panel__range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: #6fb0f5; border: 4px solid #fff;
  box-shadow: 0 2px 10px -1px rgba(0,0,0,0.4); cursor: pointer;
}
.calc-panel__range::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: #6fb0f5; border: 4px solid #fff;
  box-shadow: 0 2px 10px -1px rgba(0,0,0,0.4); cursor: pointer;
}
.calc-panel__disclaimer {
  margin-top: auto;
  padding-top: 18px;
  font-size: 12px; line-height: 1.45; color: rgba(255,255,255,0.4);
}

/* Right column: accent result card */
.calc-panel__result {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: calc(var(--radius) - 6px);
  /* Less bottom padding → free space goes above the CTA via margin-top: auto,
     without growing the outer calc-panel (grid stretch keeps the same height). */
  padding: clamp(22px, 2.8vw, 32px) clamp(20px, 2.5vw, 32px) clamp(14px, 1.8vw, 18px);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(111,176,245,0.25), transparent 70%),
    linear-gradient(160deg, #1b3350 0%, #16233a 100%);
  background-color: #16233a;
  border: 1px solid rgba(111,176,245,0.22);
}
.calc-panel__result-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #8ac0ff;
  margin-bottom: 16px;
}
.calc-metric--main { margin-bottom: 16px; }
.calc-metric__row {
  display: flex; align-items: baseline; justify-content: center; gap: 9px;
  margin-bottom: 6px;
}
.calc-metric__num {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 6vw, 58px); font-weight: 800; color: #fff; letter-spacing: -1px;
  line-height: 1;
}
.calc-metric__cur { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.5); }
.calc-metric__num2 {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; color: #6fb0f5; letter-spacing: -0.5px;
  line-height: 1; margin-bottom: 6px;
}
.calc-metric__label {
  display: block;
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.calc-metric--sub {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.calc-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  /* Optical vertical center: Inter sits slightly low in the pill */
  padding: 11px 24px 13px;
  line-height: 1;
  gap: 9px;
}
.calc-panel__cta svg {
  display: block;
  flex: none;
  position: relative;
  top: 0;
}

/* ===== Block 4 · Detail / Analysis toolkit (Bento) ===== */
.detail {
  position: relative;
  z-index: 1;
  /* Transparent: the shared continuous map flows through this block too. */
  background: transparent;
}
.detail__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) clamp(24px, 4.5vw, 64px) clamp(64px, 8vw, 110px);
}
.detail__head {
  max-width: 680px;
  margin: 0 auto clamp(34px, 4vw, 54px);
  text-align: center;
}
.detail__title {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.detail__title-accent { color: var(--blue); }
.detail__sub {
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.6;
  color: #3c4657;
  margin: 0 auto;
  max-width: 560px;
}
.detail__sub strong { color: var(--navy); font-weight: 700; }

/* ----- Bento grid of clean white cards ----- */
.detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}

.dcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 18px 22px;
  box-shadow: var(--card-shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.dcard:hover {
  transform: translateY(-4px);
  border-color: #cfe0f4;
  box-shadow: 0 22px 44px -24px rgba(23, 45, 82, 0.28);
}

/* Card head: step number + verification status */
.dcard__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.dcard__step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; flex: none;
  border-radius: 9px;
  background: #eef4fb;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.02em;
}
.dcard__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.03em;
}
.dcard__status-dot {
  width: 6px; height: 6px; border-radius: 50%; flex: none;
  background: #22b04b;
  box-shadow: 0 0 0 0 rgba(34, 176, 75, 0.5);
  animation: statusPulse 2.4s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 176, 75, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(34, 176, 75, 0); }
}

/* The "live interface" that lands inside the card — dark, echoing the hero
   panels so the hero's floating widgets feel like they settled in here. */
.dcard__viz {
  position: relative;
  border-radius: 14px;
  padding: 14px;
  background:
    radial-gradient(120% 90% at 75% 0%, rgba(28, 111, 194, 0.14) 0%, rgba(28, 111, 194, 0) 60%),
    var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.dcard__body { margin-top: 16px; }
/* Card typography sits a touch below the body copy — technical, tidy. */
.dcard__title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 7px;
}
.dcard__text {
  font-size: 13px; line-height: 1.55; color: var(--muted);
}

/* ----- Viz 1 · Geogrid (rank dots on dark chrome) ----- */
.viz-heat { display: flex; flex-direction: column; gap: 12px; }
.heat__head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.heat__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; color: rgba(255, 255, 255, 0.82);
}
.heat__tag svg { color: #6fb0f5; flex: none; }
.heat__radius {
  font-size: 11px; font-weight: 700; color: #6fb0f5;
  background: rgba(111, 176, 232, 0.14);
  border-radius: 999px; padding: 3px 9px;
}

/* Shared rank-dot geogrid — solid fills in detail/showroom; rings in cases */
.ggrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px 7px;
  width: 100%;
  padding: 2px 0 4px;
  justify-items: center;
}
.ggrid--sm { grid-template-columns: repeat(5, 1fr); gap: 6px 5px; }
.ggrid--lg {
  grid-template-columns: repeat(6, 1fr);
  gap: 10px 9px;
  flex: 1;
  align-content: center;
  min-height: 180px;
  padding: 8px 4px;
}
.ggrid--inset {
  padding: 14px 12px;
  border-radius: 14px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gdot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 30px;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  transition: transform .2s ease;
}
.ggrid--sm .gdot { max-width: 22px; font-size: 8px; }
.ggrid--lg .gdot { max-width: 34px; font-size: 10.5px; }
.gdot--g { background: #22b04b; }
.gdot--y { background: #f5a623; }
.gdot--r { background: #c23b3b; font-size: 7.5px; }
.ggrid--sm .gdot--r { font-size: 6.5px; }
.ggrid--lg .gdot--r { font-size: 8.5px; }

/* Cases: solid rank pills — readable at mini size */
.gdot--mini {
  max-width: 20px;
  min-width: 18px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  border: none;
  box-shadow: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
.gdot--mini.gdot--g { background: #22b04b; color: #fff; }
.gdot--mini.gdot--y { background: #f5a623; color: #fff; }
.gdot--mini.gdot--r {
  background: #c23b3b;
  color: #fff;
  font-size: 7.5px;
  letter-spacing: -0.02em;
}

.heat__legend {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 2px;
}
.heat__leg {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 600; color: rgba(255, 255, 255, 0.5);
}
.heat__leg::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex: none;
}
.heat__leg--top::before { background: #22b04b; }
.heat__leg--mid::before { background: #f5a623; }
.heat__leg--out::before { background: #c23b3b; }

.dcard:hover .gdot--g:not(.gdot--mini),
.detail__grid.is-demo .gdot--g:not(.gdot--mini) { transform: scale(1.08); }

/* ----- Viz 2 · Ranking table ----- */
.viz-rank { display: flex; flex-direction: column; gap: 8px; }
.rank__row {
  display: flex; align-items: center; gap: 10px;
  background: #1e2534;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 9px 11px;
  transition: transform .3s cubic-bezier(.34,1.1,.64,1), background .3s, border-color .3s, box-shadow .3s;
}
.rank__pin {
  flex: none; width: 22px; height: 22px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.6);
}
.rank__pin--you { background: var(--blue); color: #fff; box-shadow: 0 4px 12px -2px rgba(28, 111, 194, 0.7); }
.rank__info { flex: 1; min-width: 0; }
.rank__name {
  display: block;
  font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, 0.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rank__bar {
  display: block; margin-top: 5px;
  height: 4px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.rank__bar i {
  display: block; height: 100%; width: var(--w, 50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: width .5s ease;
}
.rank__row--you {
  background: linear-gradient(135deg, rgba(28, 111, 194, 0.24), rgba(30, 37, 52, 0.9));
  border-color: rgba(111, 176, 232, 0.5);
}
.rank__row--you .rank__name { color: #fff; }
.rank__row--you .rank__bar i { background: linear-gradient(90deg, #2f7be0, #6fb0f5); }
.rank__trend {
  flex: none; color: #4fd07a;
  display: inline-flex; align-items: center;
  opacity: 0; transform: translateY(3px);
  transition: opacity .3s, transform .3s;
}
.rank__trend--up { color: #4fd07a; }

/* Hover / demo: your card rises, rivals settle down — "controllability" */
.dcard:hover .rank__row--you,
.detail__grid.is-demo .rank__row--you {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -12px rgba(28, 111, 194, 0.75);
}
.dcard:hover .rank__row--you .rank__bar i,
.detail__grid.is-demo .rank__row--you .rank__bar i { width: 96%; }
.dcard:hover .rank__row--you .rank__trend,
.detail__grid.is-demo .rank__row--you .rank__trend { opacity: 1; transform: translateY(0); }
.dcard:hover .rank__row--rival,
.detail__grid.is-demo .rank__row--rival { transform: translateY(3px); }
.dcard:hover .rank__row--rival .rank__bar i,
.detail__grid.is-demo .rank__row--rival .rank__bar i { width: calc(var(--w) * 0.72); }

/* ----- Viz 3 · Technical checklist ----- */
.viz-audit { display: flex; flex-direction: column; gap: 11px; }
.audit__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.audit__count { font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.55); }
.audit__count b { color: #fff; font-size: 15px; font-weight: 800; }
.audit__bubble {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: #22b04b;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -4px rgba(34, 176, 75, 0.7);
  animation: floatUp 3s ease-in-out infinite;
}
.audit__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.audit__item {
  display: flex; align-items: center; gap: 10px;
  background: #1e2534;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.78);
}
.audit__check {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(111, 176, 232, 0.14);
  border: 1.5px solid rgba(111, 176, 232, 0.4);
  transition: background .3s, border-color .3s;
}
.audit__check svg { opacity: 0; transform: scale(0.5); transition: opacity .3s, transform .32s cubic-bezier(.34,1.56,.64,1); }
/* Hover / demo: checks fill in sequence — "we fix it" */
.dcard:hover .audit__check,
.detail__grid.is-demo .audit__check {
  background: #22b04b; border-color: transparent;
}
.dcard:hover .audit__check svg,
.detail__grid.is-demo .audit__check svg { opacity: 1; transform: scale(1); }
.dcard:hover .audit__item:nth-child(1) .audit__check svg,
.detail__grid.is-demo .audit__item:nth-child(1) .audit__check svg { transition-delay: .05s; }
.dcard:hover .audit__item:nth-child(2) .audit__check svg,
.detail__grid.is-demo .audit__item:nth-child(2) .audit__check svg { transition-delay: .18s; }
.dcard:hover .audit__item:nth-child(3) .audit__check svg,
.detail__grid.is-demo .audit__item:nth-child(3) .audit__check svg { transition-delay: .31s; }

/* ----- Value-add plate + note shell ----- */
.detail-shell {
  margin-top: clamp(22px, 3vw, 34px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #cfe0f4;
  box-shadow: var(--card-shadow);
  background: #eef1f6;
}
.detail-shell .detail__value {
  margin-top: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.detail__value {
  display: flex; align-items: center; gap: 16px;
  margin-top: clamp(22px, 3vw, 34px);
  background: linear-gradient(135deg, rgba(28, 111, 194, 0.07), rgba(255, 255, 255, 0.9));
  border: 1px solid #cfe0f4;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--card-shadow);
}
.detail__value-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: #eef4fb; color: var(--blue);
}
.detail__value-text {
  flex: 1; min-width: 0;
  font-size: 14px; line-height: 1.55; color: var(--ink);
}
.detail__value-text strong { color: var(--navy); font-weight: 800; }
.detail__value-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 11px 24px 13px;
  gap: 9px;
}
.detail__value-cta svg {
  display: block;
  flex: none;
}

.detail-shell__note {
  margin: 0;
  max-width: none;
  padding: 14px 22px 16px;
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(23, 45, 82, 0.07);
}
.detail-shell__note p {
  margin: 0;
  max-width: none;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.detail-shell__note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 111, 194, 0.22);
  transition: border-color .15s, color .15s;
}
.detail-shell__note a:hover {
  color: var(--blue-dark);
  border-bottom-color: rgba(23, 90, 158, 0.45);
}

/* ===== Block 5 · Showroom / demo report ===== */
.showroom {
  position: relative;
  z-index: 1;
  background: transparent;
}
.showroom__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) clamp(24px, 4.5vw, 64px);
}
.showroom__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
}

/* ----- Text column ----- */
.showroom__eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: #eaeff6; color: #46536a;
  padding: 7px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.showroom__eyebrow svg { color: var(--blue); flex: none; }
.showroom__title {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.16;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.showroom__title-accent { color: var(--blue); }
.showroom__sub {
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.6;
  color: #3c4657;
  margin-bottom: 24px;
  max-width: 520px;
}

.showroom__points { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.spoint { display: flex; align-items: flex-start; gap: 12px; }
.spoint__ic {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: #eef4fb; color: var(--blue);
}
.spoint__body { font-size: 14px; line-height: 1.5; color: var(--muted); padding-top: 2px; }
.spoint__body strong { color: var(--navy); font-weight: 700; }

.showroom__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.showroom__sample { padding: 12px 22px; font-size: 14px; }
.showroom__cta { padding: 12px 24px; }

.showroom__meta {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 12.5px; line-height: 1.5; color: var(--muted);
}
.showroom__meta svg { flex: none; color: var(--blue); margin-top: 1px; }
.showroom__meta strong { color: var(--navy); font-weight: 700; }

/* ----- Report mockup: fanned web screens ----- */
.showroom__visual { position: relative; display: flex; justify-content: center; }
.report {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  perspective: 1400px;
}
.rpage {
  position: absolute;
  top: 50%; left: 50%;
  width: 70%;
  aspect-ratio: 3 / 4;
  background: #fff;
  border: 1px solid #eaedf3;
  border-radius: 14px;
  padding: 0 0 8px;
  box-shadow: 0 26px 50px -26px rgba(23, 45, 82, 0.4);
  transform-origin: center;
  transition: transform .45s cubic-bezier(.2,.8,.25,1), box-shadow .45s;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.rpage--back  { transform: translate(-50%, -50%) translate(34%, -16%) rotate(9deg) scale(.94); z-index: 1; }
.rpage--mid   { transform: translate(-50%, -50%) translate(17%, -7%) rotate(4deg) scale(.97); z-index: 2; }
.rpage--front { transform: translate(-50%, -50%) rotate(-3deg); z-index: 3; }

.report--fan:hover .rpage--back,
.report--fan:focus-visible .rpage--back  { transform: translate(-50%, -50%) translate(42%, -20%) rotate(12deg) scale(.94); }
.report--fan:hover .rpage--mid,
.report--fan:focus-visible .rpage--mid   { transform: translate(-50%, -50%) translate(22%, -9%) rotate(5.5deg) scale(.97); }
.report--fan:hover .rpage--front,
.report--fan:focus-visible .rpage--front { transform: translate(-50%, -50%) translate(-4%, 2%) rotate(-4.5deg) scale(1.01); box-shadow: 0 34px 60px -26px rgba(23, 45, 82, 0.5); }

/* Mini browser chrome — web signal without full dashboard */
.rpage__chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px;
  background: #eef1f6;
  border-bottom: 1px solid #e4e9f1;
  margin-bottom: 8px;
  flex: none;
}
.rpage__dots { display: inline-flex; gap: 4px; flex: none; }
.rpage__dots i { width: 6px; height: 6px; border-radius: 50%; background: #d5dbe6; }
.rpage__dots i:nth-child(1) { background: #ff5f57; }
.rpage__dots i:nth-child(2) { background: #febc2e; }
.rpage__dots i:nth-child(3) { background: #28c840; }
.rpage__url {
  flex: 1; min-width: 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4e9f1;
  font-size: 8.5px; font-weight: 600; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.rpage__pad {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 10px 2px;
  min-height: 0;
}
.rpage__navtabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  padding: 2px;
  border-radius: 8px;
  background: #eef1f6;
  flex: none;
}
.rpage__navtabs span {
  flex: 1;
  text-align: center;
  font-size: 7px;
  font-weight: 800;
  color: var(--muted);
  padding: 5px 2px;
  border-radius: 6px;
  white-space: nowrap;
}
.rpage__navtabs .is-on {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 3px 8px -3px rgba(28, 111, 194, 0.5);
}
.rpage__table {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-height: 0;
}
.rpage__tr {
  display: grid;
  grid-template-columns: 1.4fr 0.5fr 0.55fr;
  gap: 4px;
  align-items: center;
  font-size: 7.5px;
  font-weight: 700;
  color: var(--navy);
  padding: 4px 6px;
  border-radius: 5px;
  background: #f7f9fc;
  border: 1px solid #e8edf4;
}
.rpage__tr--head {
  background: #eef1f6;
  color: var(--muted);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.rpage__tr .is-bad { color: #c23b3b; font-weight: 800; }
.rpage__rep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.rpage__rep div {
  padding: 6px 7px;
  border-radius: 7px;
  background: #f3f6fa;
  border: 1px solid #e8edf4;
}
.rpage__rep b {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 10px; font-weight: 800; color: var(--navy);
}
.rpage__rep span {
  display: block;
  font-size: 7px; font-weight: 600; color: var(--muted); margin-top: 2px;
}
.rpage__paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: auto;
}
.rpage__path {
  padding: 6px 7px;
  border-radius: 7px;
  background: #f3f6fa;
  border: 1px solid #e8edf4;
}
.rpage__path em {
  display: block;
  font-style: normal;
  font-size: 7px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--muted); margin-bottom: 2px;
}
.rpage__path span {
  font-size: 8px; font-weight: 700; color: var(--navy); line-height: 1.25;
}
.rpage__path--on {
  background: rgba(34, 176, 75, 0.1);
  border-color: rgba(34, 176, 75, 0.28);
}
.rpage__path--on em { color: #1c9c46; }
.rpage__head {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  margin-bottom: 0;
}
.rpage__brand { display: inline-flex; align-items: center; gap: 5px; font-size: 8.5px; font-weight: 800; color: var(--navy); }
.rpage__brand i { width: 7px; height: 7px; border-radius: 2px; background: var(--blue); flex: none; }
.rpage__tag { font-size: 7.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 3px 6px; border-radius: 5px; }
.rpage__tag--blue { background: rgba(28,111,194,0.12); color: var(--blue); }
.rpage__tag--green { background: rgba(34,176,75,0.14); color: #1c9c46; }
.rpage__tag--gold { background: rgba(245,166,35,0.16); color: #c77d10; }
.rpage__title-row {
  font-family: "Montserrat", sans-serif;
  font-size: 12px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.2px;
  margin: 0;
}
.rpage__title-row--sm { font-size: 10px; margin-top: 2px; }

.rpage__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.rpage__kpis--sm .rpage__kpi { padding: 4px 3px; }
.rpage__kpi {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 5px 3px;
  border-radius: 7px;
  background: #f3f6fa;
  border: 1px solid #e8edf4;
  text-align: center;
}
.rpage__kpi b {
  font-family: "Montserrat", sans-serif;
  font-size: 11px; font-weight: 800; color: var(--navy); letter-spacing: -0.3px; line-height: 1;
}
.rpage__kpi span { font-size: 7px; font-weight: 700; color: var(--muted); }
.rpage__kpi--g { background: rgba(34, 176, 75, 0.1); border-color: rgba(34, 176, 75, 0.2); }
.rpage__kpi--g b { color: #1c9c46; }
.rpage__kpi--y { background: rgba(245, 166, 35, 0.12); border-color: rgba(245, 166, 35, 0.28); }
.rpage__kpi--y b { color: #c77d10; }
.rpage__kpi--r { background: rgba(194, 59, 59, 0.1); border-color: rgba(194, 59, 59, 0.22); }
.rpage__kpi--r b { color: #c23b3b; }

.rpage__mini {
  display: block;
  font-size: 7.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--muted); margin-bottom: 5px;
}
.rpage__split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 7px;
}
.rpage__demand,
.rpage__rivals {
  min-width: 0;
  padding: 7px;
  border-radius: 8px;
  background: #f7f9fc;
  border: 1px solid #e8edf4;
}
.rdem { display: flex; flex-direction: column; gap: 5px; }
.rdem > span {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  align-items: center;
  font-size: 7px; font-weight: 700; color: var(--navy);
  padding: 4px 5px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #e8edf4;
  overflow: hidden;
}
.rdem > span i {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--w, 50%);
  background: rgba(28, 111, 194, 0.12);
  z-index: 0;
}
.rdem > span b,
.rdem > span em { position: relative; z-index: 1; }
.rdem > span b {
  font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rdem > span em { font-style: normal; color: var(--blue); font-weight: 800; }

.rpage__chips {
  display: flex; flex-wrap: wrap; gap: 3px;
}
.rpage__chips span {
  font-size: 7.5px; font-weight: 700; color: #1c9c46;
  background: rgba(34, 176, 75, 0.1);
  border-radius: 5px; padding: 3px 6px;
}

/* Gallery of real geogrid heatmaps by query */
.rheats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  flex: 1;
  min-height: 0;
  align-content: stretch;
}
.rheatcard {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
  border-radius: 7px;
  background: #f3f6fa;
  border: 1px solid #e8edf4;
  min-height: 0;
}
.rheatcard .htg { flex: 1; align-content: center; }
.rheatcard__top {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.rheatcard__q {
  flex: 1;
  min-width: 0;
  font-size: 7px; font-weight: 800; color: var(--navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rheatcard__ch {
  flex: none;
  font-size: 6.5px; font-weight: 800;
  color: var(--blue);
  background: rgba(28, 111, 194, 0.1);
  border-radius: 4px;
  padding: 2px 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.rheatcard__foot {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  font-size: 7px; font-weight: 800;
  color: var(--muted);
}
.rheatcard__foot span:last-child { color: var(--blue); }
.htg {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 4px;
  border-radius: 5px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.htg__c {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 5.5px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.htg__c--g { background: #22b04b; }
.htg__c--y { background: #f5a623; }
.htg__c--r { background: #c23b3b; font-size: 4.5px; }

.rpage__phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.rpage__phases div {
  display: flex; flex-direction: column; gap: 1px;
  padding: 6px 5px;
  border-radius: 7px;
  background: rgba(28, 111, 194, 0.07);
  border: 1px solid rgba(28, 111, 194, 0.14);
  text-align: center;
}
.rpage__phases b {
  font-family: "Montserrat", sans-serif;
  font-size: 9px; font-weight: 800; color: var(--navy);
}
.rpage__phases span { font-size: 7px; font-weight: 700; color: var(--muted); }

.rpage__covermini {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 9px;
  border-radius: 10px;
  background:
    radial-gradient(120% 90% at 90% 0%, rgba(28, 111, 194, 0.12) 0%, transparent 55%),
    #f3f6fa;
  border: 1px solid #e8edf4;
}
.rpage__covermini em {
  display: block; font-style: normal;
  font-size: 7.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--blue); margin-bottom: 2px;
}
.rpage__covermini strong {
  display: block; font-family: "Montserrat", sans-serif;
  font-size: 10.5px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.2px; line-height: 1.2;
}
.rpage__covermini > div > span {
  display: block; font-size: 8px; font-weight: 600; color: var(--muted); margin-top: 2px;
}
.rpage__health {
  flex: none; margin-left: auto;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: conic-gradient(var(--blue) 0 58%, #e0e6ef 58% 100%);
  position: relative;
}
.rpage__health::before {
  content: ""; position: absolute; inset: 4px;
  border-radius: 50%; background: #fff;
}
.rpage__health b,
.rpage__health i { position: relative; z-index: 1; line-height: 1; }
.rpage__health b {
  font-family: "Montserrat", sans-serif;
  font-size: 13px; font-weight: 800; color: var(--navy);
}
.rpage__health i { font-style: normal; font-size: 7px; font-weight: 700; color: var(--muted); }

.rpage__platforms {
  display: flex; align-items: center; gap: 5px;
}
.rpage__platforms span {
  flex: 1;
  text-align: center;
  font-size: 8.5px; font-weight: 700; color: var(--navy);
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 7px;
  padding: 5px 4px;
}
.rpage__platforms span b { color: var(--blue); margin-right: 2px; }
.rpage__platforms .is-up {
  flex: 0.7;
  color: #1c9c46;
  background: rgba(34, 176, 75, 0.1);
  border-color: rgba(34, 176, 75, 0.22);
}

.rpage__footnote {
  margin-top: 0;
  font-size: 8px; font-weight: 600; color: var(--muted); line-height: 1.3;
}
.rpage__footnote strong { color: var(--navy); font-weight: 800; }

.rinsight {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.28);
  border-radius: 8px;
  padding: 7px 9px;
}
.rinsight--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.rinsight__label {
  display: block; font-size: 7px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; color: #c77d10;
}
.rinsight__num {
  display: block; font-family: "Montserrat", sans-serif;
  font-size: 13px; font-weight: 800; color: var(--navy); letter-spacing: -0.4px;
}
.rinsight__num em { font-style: normal; font-size: 8px; font-weight: 700; color: var(--muted); }

/* Shared widgets for report modal + showroom */
.rplan { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.rplan--dense { gap: 5px; }
.rplan__item { display: flex; align-items: center; gap: 5px; font-size: 9px; }
.rplan__check {
  flex: none; width: 14px; height: 14px; border-radius: 4px;
  background: #22b04b; display: flex; align-items: center; justify-content: center;
}
.rplan__do { font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rplan__arrow { color: var(--blue); font-weight: 800; }
.rplan__get { margin-left: auto; color: #1c9c46; font-weight: 700; white-space: nowrap; font-size: 8.5px; }

.rbars { display: flex; flex-direction: column; gap: 7px; }
.rbars--tight { gap: 5px; }
.rpage .rbars--tight { flex: none; }
.rpage .rbar__name { width: 36px; }
.rbar { display: flex; align-items: center; gap: 5px; }
.rbar__name { flex: none; width: 44px; font-size: 8px; font-weight: 700; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rbar__track { flex: 1; height: 7px; border-radius: 999px; background: #eef1f6; overflow: hidden; }
.rbar__fill { display: block; height: 100%; width: var(--w, 50%); border-radius: 999px; background: #b9c6d8; }
.rbar__fill--you { background: linear-gradient(90deg, var(--blue), #4f97e6); }
.rbar__fill--gold { background: #f5a623; }
.rbar__val { flex: none; width: 16px; text-align: right; font-size: 8.5px; font-weight: 800; color: var(--navy); }

.report__hint {
  position: absolute; top: 6%; right: 4%;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(22, 35, 59, 0.92);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 7px 12px; border-radius: 999px;
  box-shadow: 0 10px 22px -8px rgba(12,16,24,0.5);
  z-index: 5;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.report__hint svg { color: #6fb0f5; flex: none; }
.report:hover .report__hint,
.report:focus-visible .report__hint { opacity: 1; transform: translateY(0); }

/* ===== Block 6 · Pricing / risk-free offer ===== */
.pricing {
  position: relative;
  z-index: 1;
  background: transparent;
}
.pricing__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) clamp(24px, 4.5vw, 64px);
}
.pricing__head {
  max-width: 640px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}
.pricing__title {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.pricing__title-accent { color: var(--blue); }
.pricing__sub {
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.6;
  color: #3c4657;
  margin: 0 auto;
  max-width: 560px;
}

/* ----- The one accent card ----- */
.pcard {
  position: relative;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 44px) clamp(22px, 4vw, 46px) clamp(22px, 3vw, 32px);
  /* Gradient border via padding-box / border-box double background */
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--blue) 0%, #6fb0f5 42%, #f5a623 100%) border-box;
  border: 1.6px solid transparent;
  box-shadow: 0 40px 80px -34px rgba(28, 111, 194, 0.4);
}
/* Soft ambient glow behind the card */
.pcard::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 24px;
  background: radial-gradient(120% 90% at 80% 0%, rgba(28, 111, 194, 0.08), rgba(28, 111, 194, 0) 60%);
  pointer-events: none;
}

/* Killer badge on top */
.pcard__badge {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #f5a623, #f2860f);
  color: #fff;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.01em;
  padding: 9px 18px; border-radius: 999px;
  box-shadow: 0 12px 24px -8px rgba(242, 134, 15, 0.6);
  white-space: nowrap;
  z-index: 2;
}
.pcard__badge svg { flex: none; }

/* Highlight offer strip */
.pcard__offer {
  display: flex; align-items: center; gap: 13px;
  margin: 8px 0 26px;
  background: rgba(28, 111, 194, 0.06);
  border: 1px solid rgba(28, 111, 194, 0.16);
  border-radius: 14px;
  padding: 14px 18px;
}
.pcard__offer-ic {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff;
  box-shadow: 0 8px 18px -6px rgba(28, 111, 194, 0.6);
}
.pcard__offer-text { font-size: 14px; line-height: 1.5; color: var(--ink); }
.pcard__offer-text strong { color: var(--blue); font-weight: 800; }

/* Two-column body */
.pcard__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

/* Left: features */
.pcard__features-title {
  display: block;
  font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 15px;
}
.pfeat { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.pfeat__item {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14.5px; line-height: 1.45; color: var(--ink);
}
.pfeat__check {
  flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 7px;
  background: #22b04b;
  display: flex; align-items: center; justify-content: center;
}
.pfeat__check--bonus { background: #f5a623; }
.pfeat__item--bonus { color: var(--navy); font-weight: 600; }
.pfeat__bonus-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em;
  color: #c77d10; background: rgba(245, 166, 35, 0.16);
  padding: 2px 7px; border-radius: 5px; margin-right: 5px;
  vertical-align: 1px;
}

/* Right: price / toggle / CTA */
.pcard__buy {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}
.pplan {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: #eaeef4;
  border-radius: 11px;
  padding: 4px;
  margin-bottom: 18px;
}
.pplan__opt {
  border: none; background: transparent; cursor: pointer;
  font: inherit; font-size: 12.5px; font-weight: 700; color: var(--muted);
  padding: 9px 6px; border-radius: 8px;
  transition: background .18s, color .18s, box-shadow .18s;
  white-space: nowrap;
}
.pplan__opt:hover { color: var(--navy); }
.pplan__opt.is-active {
  background: #fff; color: var(--blue);
  box-shadow: 0 3px 8px -3px rgba(23, 45, 82, 0.2);
}

.pprice { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.pprice__num {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 6vw, 56px); font-weight: 800; color: var(--navy);
  letter-spacing: -1.5px; line-height: 1;
}
.pprice__num.is-custom { font-size: clamp(26px, 4vw, 34px); letter-spacing: -0.6px; }
.pprice__cur { font-size: 17px; font-weight: 700; color: var(--muted); }
.pprice__cur:empty { display: none; }
.pprice__note {
  display: block;
  margin-top: 8px;
  font-size: 12.5px; line-height: 1.4; color: var(--muted);
  min-height: 34px;
}
.pprice__cta { width: 100%; justify-content: center; padding: 14px 20px; font-size: 15px; margin-top: 6px; }
.pprice__secure {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 12px;
  font-size: 11.5px; font-weight: 600; color: var(--muted);
}
.pprice__secure svg { flex: none; color: #22b04b; }

/* Guarantee footer */
.pcard__guarantee {
  display: flex; align-items: flex-start; gap: 9px;
  margin-top: clamp(20px, 3vw, 28px);
  padding-top: clamp(18px, 2.5vw, 24px);
  border-top: 1px solid var(--line);
  font-size: 12.5px; line-height: 1.5; color: var(--muted);
}
.pcard__guarantee svg { flex: none; color: var(--blue); margin-top: 1px; }
.pcard__guarantee strong { color: var(--navy); font-weight: 700; }

/* ===== Block 7 · Implementation / services (Bento) ===== */
.impl {
  position: relative;
  z-index: 1;
  background: transparent;
}
.impl__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) clamp(24px, 4.5vw, 64px);
}
.impl__head {
  max-width: 760px;
  margin: 0 auto clamp(34px, 4vw, 54px);
  text-align: center;
}
.impl__title {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
}
.impl__title-line {
  display: block;
  white-space: nowrap;
}
.impl__title-accent { color: var(--blue); }
.impl__sub {
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.6;
  color: #3c4657;
  margin: 0 auto;
  max-width: 580px;
}

@media (max-width: 420px) {
  .impl__title-line { white-space: normal; }
}

/* Bento grid: two wide + two narrow tiles */
.impl__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 1.8vw, 22px);
}
.stile {
  grid-column: span 6;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 18px 22px;
  box-shadow: var(--card-shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.stile--wide { grid-column: span 7; }
.stile:nth-child(2) { grid-column: span 5; }
.stile:nth-child(3) { grid-column: span 5; }
.stile:hover {
  transform: translateY(-4px);
  border-color: #cfe0f4;
  box-shadow: 0 22px 44px -24px rgba(23, 45, 82, 0.28);
}

.stile__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 14px;
}
.stile__status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; color: #1c9c46;
  background: rgba(34, 176, 75, 0.1);
  border-radius: 999px; padding: 4px 11px 4px 9px;
}
.stile__status--opt {
  color: var(--blue);
  background: rgba(28, 111, 194, 0.1);
}
.stile__status--opt .stile__dot {
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(28, 111, 194, 0.45);
  animation: none;
}
.stile__dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: #22b04b;
  box-shadow: 0 0 0 0 rgba(34, 176, 75, 0.5);
  animation: statusPulse 2.4s ease-in-out infinite;
}
.stile__mode {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--muted);
}
.stile__mode svg { color: var(--blue); flex: none; }

/* Dark mini-widget surface — continues the hero/detail visual language */
.stile__viz {
  position: relative;
  border-radius: 14px;
  padding: 15px;
  background:
    radial-gradient(120% 90% at 75% 0%, rgba(28, 111, 194, 0.14) 0%, rgba(28, 111, 194, 0) 60%),
    var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  min-height: 132px;
  display: flex; flex-direction: column;
}
.stile__body { margin-top: 16px; }
.stile__title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.2px; margin-bottom: 7px;
}
.stile__text { font-size: 13px; line-height: 1.55; color: var(--muted); }

/* ----- Viz · SEO search + flying keys ----- */
.viz-seo { gap: 12px; }
.seo__bar {
  display: flex; align-items: center; gap: 9px;
  background: #232b3d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.82);
}
.seo__bar-ic { color: #6fb0f5; flex: none; }
.seo__keys { display: flex; flex-wrap: wrap; gap: 7px; }
.seo__key {
  font-size: 11.5px; font-weight: 700;
  color: #6fb0f5;
  background: rgba(111, 176, 232, 0.14);
  border: 1px solid rgba(111, 176, 232, 0.28);
  border-radius: 999px;
  padding: 5px 11px;
  transform: translateY(0);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.seo__key:nth-child(1) { animation: keyFloat 3.4s ease-in-out infinite; }
.seo__key:nth-child(3) { animation: keyFloat 3.4s ease-in-out .5s infinite; }
.seo__key:nth-child(5) { animation: keyFloat 3.4s ease-in-out 1s infinite; }
@keyframes keyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.stile:hover .seo__key,
.impl__grid.is-demo .seo__key {
  background: rgba(111, 176, 232, 0.22);
  color: #a9cff8;
}

/* ----- Viz · Reputation review bubble ----- */
.viz-serm { justify-content: center; }
.review {
  background: #1e2534;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 12px 13px;
}
.review__head { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.review__avatar {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #35507a, #283349);
  color: #fff; font-size: 12px; font-weight: 800;
}
.review__meta { display: flex; flex-direction: column; gap: 2px; }
.review__name { font-size: 12px; font-weight: 700; color: #fff; }
.review__stars { display: inline-flex; gap: 1px; }
.review__text { font-size: 12px; line-height: 1.4; color: rgba(255, 255, 255, 0.6); margin-bottom: 10px; }
.review__reply {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; color: #6fb0f5;
  background: rgba(111, 176, 232, 0.14);
  border: 1px solid rgba(111, 176, 232, 0.3);
  border-radius: 999px; padding: 5px 12px;
  transition: background .25s, color .25s, transform .2s;
}
.stile:hover .review__reply,
.impl__grid.is-demo .review__reply {
  background: var(--blue); color: #fff; border-color: transparent;
  transform: translateY(-1px);
}

/* ----- Viz · Content media card ----- */
.viz-content { justify-content: center; }
.cmedia { display: flex; align-items: center; gap: 12px; }
.cmedia__thumb {
  position: relative; flex: none;
  width: 74px; height: 60px; border-radius: 10px;
  background: linear-gradient(135deg, #2f7be0, #1c6fc2 60%, #6fb0f5);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cmedia__play {
  position: absolute;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(22, 35, 59, 0.7);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(2px);
}
.cmedia__metric {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 800; color: #4fd07a;
}
.cmedia__metric svg { flex: none; }
.stile:hover .cmedia__thumb,
.impl__grid.is-demo .cmedia__thumb { transform: scale(1.03); transition: transform .3s ease; }

/* ----- Viz · Ads coverage map ----- */
.viz-ads { align-items: center; justify-content: center; padding: 10px; }
.ads__map {
  position: relative;
  width: 100%; min-height: 118px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(80% 80% at 50% 50%, rgba(28, 111, 194, 0.12), rgba(28, 111, 194, 0) 70%),
    #171d2a;
  border-radius: 10px;
  overflow: hidden;
}
.ads__ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(111, 176, 232, 0.4);
}
.ads__ring--1 { width: 46px; height: 46px; animation: adsPulse 3s ease-out infinite; }
.ads__ring--2 { width: 84px; height: 84px; animation: adsPulse 3s ease-out .6s infinite; }
.ads__ring--3 { width: 122px; height: 122px; animation: adsPulse 3s ease-out 1.2s infinite; }
@keyframes adsPulse {
  0% { opacity: 0.7; }
  100% { opacity: 0.15; }
}
.ads__pin {
  position: relative; z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}
.ads__label {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  font-size: 10.5px; font-weight: 700; color: #6fb0f5;
  background: rgba(22, 35, 59, 0.85);
  border: 1px solid rgba(111, 176, 232, 0.3);
  border-radius: 999px; padding: 3px 10px;
  white-space: nowrap;
}

/* ----- Footer note + CTA shell ----- */
.impl-shell {
  margin-top: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #cfe0f4;
  box-shadow: var(--card-shadow);
  background: #eef1f6;
}
.impl-shell .impl__foot {
  margin-top: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.impl__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(18px, 3vw, 40px);
  margin-top: clamp(24px, 3vw, 36px);
  background: linear-gradient(135deg, rgba(28, 111, 194, 0.07), rgba(255, 255, 255, 0.9));
  border: 1px solid #cfe0f4;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--card-shadow);
  flex-wrap: wrap;
}
.impl__note {
  display: flex; align-items: flex-start; gap: 11px;
  flex: 1; min-width: 260px;
  font-size: 13.5px; line-height: 1.55; color: var(--ink);
}
.impl__note svg { flex: none; color: var(--blue); margin-top: 2px; }
.impl__note strong { color: var(--navy); font-weight: 700; }
.impl__cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 9px;
}

.impl-shell__note {
  margin: 0;
  max-width: none;
  padding: 14px 22px 16px;
  text-align: left;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(23, 45, 82, 0.07);
}
.impl-shell__note p {
  margin: 0;
  max-width: none;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.impl-shell__note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 111, 194, 0.22);
  transition: border-color .15s, color .15s;
}
.impl-shell__note a:hover {
  color: var(--blue-dark);
  border-bottom-color: rgba(23, 90, 158, 0.45);
}

/* ===== Block 8 · Cases / proof ===== */
.cases {
  position: relative;
  z-index: 1;
  background: transparent;
}
.cases__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) clamp(24px, 4.5vw, 64px);
}
.cases__head {
  max-width: 700px;
  margin: 0 auto clamp(34px, 4vw, 54px);
  text-align: center;
}
.cases__title {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cases__title-accent { color: var(--blue); }
.cases__sub {
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.6;
  color: #3c4657;
  margin: 0 auto;
  max-width: 580px;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}

.ccard {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--card-shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ccard:hover {
  transform: translateY(-4px);
  border-color: #cfe0f4;
  box-shadow: 0 22px 44px -24px rgba(23, 45, 82, 0.28);
}

/* Card head: niche + proof link */
.ccard__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 15px; }
.ccard__niche { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.ccard__name { font-family: "Montserrat", sans-serif; font-size: 15px; font-weight: 800; color: var(--navy); letter-spacing: -0.2px; line-height: 1.25; }
.ccard__tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; color: var(--blue);
  background: rgba(28, 111, 194, 0.09);
  border-radius: 999px; padding: 3px 10px;
}
.ccard__proof {
  flex: none;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 700; color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.ccard__proof svg { flex: none; }
.ccard__proof:hover { color: var(--blue); }

/* Before / after mini dashboards — two dark cards + arrow (ref) */
.ccompare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 10px;
}
.cmini {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 14px;
  padding: 12px 10px 11px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 20px -12px rgba(15, 28, 48, 0.45);
}
.cmini__cap {
  display: block;
  text-align: center;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 10px;
}
.cmini--after .cmini__cap { color: #6fb0f5; }
.cmini__heat {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  width: 100%;
  max-width: 128px;
  margin: 0 auto 11px;
  justify-items: center;
}
.cmini__heat .gdot--mini {
  width: 100%;
  max-width: 22px;
  height: auto;
}
.cmini__stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.cmini__rank {
  font-family: "Montserrat", sans-serif;
  font-size: 20px; font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.5px; line-height: 1;
}
.cmini__rank--top { color: #6fb0f5; }
.cmini__health {
  font-size: 10.5px; font-weight: 600;
  color: rgba(255, 255, 255, 0.48);
}
.cmini__health em {
  font-style: normal;
  font-weight: 700;
  color: inherit;
}
.cmini__health--hot em { color: #4fd07a; }
.ccompare__arrow {
  flex: none;
  align-self: center;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: #4aa8f0;
  filter: drop-shadow(0 0 8px rgba(74, 168, 240, 0.55));
}
.ccompare__arrow svg { width: 22px; height: 22px; }

/* Big result numbers */
.ccard__results {
  display: flex; align-items: flex-end; gap: 18px;
  margin: 16px 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cresult { display: flex; flex-direction: column; gap: 2px; }
.cresult__num {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 3.4vw, 40px); font-weight: 800; color: #1c9c46;
  letter-spacing: -1px; line-height: 1;
}
.cresult__num2 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.4px; line-height: 1;
}
.cresult__lbl { font-size: 11.5px; line-height: 1.3; color: var(--muted); }
.cresult--sub { padding-left: 18px; border-left: 1px solid var(--line); }

/* Problem → solution → result flow */
.cflow { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.cflow li { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; line-height: 1.4; color: var(--muted); }
.cflow b { color: var(--navy); font-weight: 700; }
.cflow__dot { flex: none; width: 8px; height: 8px; border-radius: 50%; margin-top: 5px; }
.cflow__dot--p { background: #d64545; }
.cflow__dot--s { background: var(--blue); }
.cflow__dot--r { background: #22b04b; }

/* Per-card CTA */
.ccard__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--blue);
  text-decoration: none;
  transition: gap .16s, color .16s;
}
.ccard__cta:hover { color: var(--blue-dark); gap: 12px; }

/* ===== Block 9 · Segmentation / who it fits ===== */
.segment {
  position: relative;
  z-index: 1;
  background: transparent;
}
.segment__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) clamp(24px, 4.5vw, 64px);
}
.segment__head {
  max-width: 660px;
  margin: 0 auto clamp(34px, 4vw, 54px);
  text-align: center;
}
.segment__title {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.segment__title-accent { color: var(--blue); }
.segment__sub {
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.6;
  color: #3c4657;
  margin: 0 auto;
  max-width: 540px;
}

.segment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}

/* Lighter cards than the main bento — soft, borderless-ish white surfaces */
.segcard {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid rgba(226, 230, 238, 0.7);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 34px -22px rgba(23, 45, 82, 0.22);
  transition: transform .22s ease, box-shadow .22s ease;
}
.segcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px -26px rgba(23, 45, 82, 0.26);
}

/* Light UI visual surface — strict blue-line style on white */
.segcard__viz {
  position: relative;
  height: 150px;
  border-radius: 14px;
  background: #f7f9fc;
  border: 1px solid #eef1f6;
  margin-bottom: 18px;
  overflow: hidden;
}

.segcard__title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.3px; margin-bottom: 8px;
}
.segcard__for { font-size: 13px; line-height: 1.5; color: var(--muted); margin-bottom: 8px; }
.segcard__for b { color: var(--navy); font-weight: 700; }
.segcard__accent { font-size: 13.5px; line-height: 1.55; color: var(--ink); margin-bottom: 16px; }

.segcard__offer {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: auto;
  background: rgba(28, 111, 194, 0.06);
  border-radius: 11px;
  padding: 11px 13px;
  font-size: 12.5px; line-height: 1.4; font-weight: 600; color: var(--navy);
}
.segcard__offer svg { flex: none; color: var(--blue); margin-top: 1px; }

/* ----- Viz 1 · Radar ----- */
.viz-radar { display: flex; align-items: center; justify-content: center; }
.radar__ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(28, 111, 194, 0.22);
}
.radar__ring--1 { width: 44px; height: 44px; }
.radar__ring--2 { width: 88px; height: 88px; }
.radar__ring--3 { width: 132px; height: 132px; }
.radar__sweep {
  position: absolute; top: 50%; left: 50%;
  width: 132px; height: 132px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(28, 111, 194, 0.22), rgba(28, 111, 194, 0) 65%);
  animation: radarSweep 4s linear infinite;
}
@keyframes radarSweep { to { transform: translate(-50%, -50%) rotate(360deg); } }
.radar__center {
  position: relative; z-index: 2;
  color: var(--blue);
  filter: drop-shadow(0 3px 5px rgba(28, 111, 194, 0.35));
}
.radar__ped {
  position: absolute; z-index: 2;
  color: rgba(28, 111, 194, 0.55);
}
.radar__ped--a { top: 20%; left: 24%; }
.radar__ped--b { top: 26%; right: 20%; }
.radar__ped--c { bottom: 18%; left: 34%; }

/* ----- Viz 2 · Multi-location dashboard ----- */
.viz-net { padding: 0; }
.net {
  position: absolute; inset: 10px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.net__scroll {
  display: flex; flex-direction: column; gap: 7px;
  animation: netScroll 14s linear infinite;
}
.segcard:hover .net__scroll { animation-duration: 7s; }
@keyframes netScroll { to { transform: translateY(-50%); } }
.net__row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #fff;
  border: 1px solid #eaeef4;
  border-radius: 9px;
  padding: 8px 11px;
}
.net__addr { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.net__pin { flex: none; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--blue); }
.net__health { flex: none; font-size: 11px; font-weight: 800; border-radius: 999px; padding: 2px 8px; }
.net__health--hi { color: #1c9c46; background: rgba(34, 176, 75, 0.12); }
.net__health--mid { color: #c77d10; background: rgba(245, 166, 35, 0.14); }
.net__health--lo { color: #c23b3b; background: rgba(214, 69, 69, 0.12); }

/* ----- Viz 3 · Service area phone + rays ----- */
.viz-area { display: flex; align-items: center; justify-content: center; }
.area__ray {
  position: absolute; top: 50%; left: 50%;
  width: 66px; height: 1.5px;
  background: linear-gradient(90deg, rgba(28, 111, 194, 0.55), rgba(28, 111, 194, 0));
  transform-origin: 0 50%;
  animation: rayPulse 2.6s ease-in-out infinite;
}
.area__ray--1 { transform: rotate(0deg); }
.area__ray--2 { transform: rotate(60deg); animation-delay: .2s; }
.area__ray--3 { transform: rotate(120deg); animation-delay: .4s; }
.area__ray--4 { transform: rotate(180deg); animation-delay: .6s; }
.area__ray--5 { transform: rotate(240deg); animation-delay: .8s; }
.area__ray--6 { transform: rotate(300deg); animation-delay: 1s; }
@keyframes rayPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}
.area__phone {
  position: relative; z-index: 2;
  width: 56px; height: 90px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(28, 111, 194, 0.4);
}
.area__screen { display: flex; align-items: center; justify-content: center; }
.area__call {
  display: inline-flex; flex-direction: column; align-items: center; gap: 3px;
  background: #22b04b;
  color: #fff; font-size: 8.5px; font-weight: 800;
  border-radius: 8px; padding: 6px 7px;
  box-shadow: 0 4px 10px -3px rgba(34, 176, 75, 0.6);
}

/* ----- Footer note + CTA ----- */
.segment__foot {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 2.5vw, 28px);
  margin-top: clamp(26px, 3.5vw, 40px);
  flex-wrap: wrap;
}
.segment__note {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; line-height: 1.5; color: var(--muted);
  max-width: 520px;
}
.segment__note svg { flex: none; color: var(--blue); }
.segment__cta { flex: none; }

/* ===== Block 10 · FAQ ===== */
.faq {
  position: relative;
  z-index: 1;
  background: transparent;
}
.faq__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) clamp(24px, 4.5vw, 64px);
}
.faq__head {
  max-width: 640px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  text-align: center;
}
.faq__title {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.faq__title-accent { color: var(--blue); }
.faq__sub {
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.6;
  color: #3c4657;
  margin: 0 auto;
  max-width: 520px;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: clamp(24px, 3vw, 44px);
}

/* ----- Accordion ----- */
.faq__list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 6px clamp(14px, 2.5vw, 26px);
  box-shadow: var(--card-shadow);
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:last-child { border-bottom: none; }

.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  font-family: inherit;
  text-align: left;
  padding: 20px 4px;
  font-size: clamp(15px, 1.6vw, 16.5px); font-weight: 500; color: var(--navy);
  line-height: 1.45;
  transition: color .15s;
}
.faq__q:hover { color: var(--blue); }

/* Plus icon that rotates into a minus-ish state on open */
.faq__icon {
  position: relative; flex: none;
  width: 24px; height: 24px; border-radius: 7px;
  background: #eef4fb;
  transition: background .25s, transform .3s ease;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 11px; height: 2px; border-radius: 2px;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

/* Answer wrapper: grid-rows 0fr → 1fr gives a smooth height animation */
.faq__a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq__a { overflow: hidden; }
.faq__a p {
  padding: 2px 4px 22px;
  font-size: 14.5px; line-height: 1.7; color: var(--muted);
}
.faq__a p a,
.faq__link { color: var(--blue); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(28,111,194,0.35); }
.faq__a p a:hover,
.faq__link:hover { color: var(--blue-dark); }

/* Open state */
.faq__item.is-open { background: rgba(28, 111, 194, 0.045); border-radius: 12px; }
.faq__item.is-open .faq__q { color: var(--navy); }
.faq__item.is-open .faq__a-wrap { grid-template-rows: 1fr; }
.faq__item.is-open .faq__icon { background: var(--blue); transform: rotate(180deg); }
.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after { background: #fff; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

/* ----- Expert / Telegram aside ----- */
.faq__aside {
  background: linear-gradient(160deg, rgba(28, 111, 194, 0.06), rgba(255, 255, 255, 0.92));
  border: 1px solid #cfe0f4;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--card-shadow);
  position: sticky; top: 90px;
}
.faq__expert { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.faq__avatar {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), #4f97e6);
  box-shadow: 0 8px 18px -6px rgba(28, 111, 194, 0.5);
}
.faq__expert-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.faq__expert-name { font-family: "Montserrat", sans-serif; font-size: 15px; font-weight: 800; color: var(--navy); }
.faq__expert-role { font-size: 12px; color: var(--muted); }
.faq__expert-note { font-size: 13.5px; line-height: 1.55; color: var(--ink); margin-bottom: 16px; }
.faq__tg { width: 100%; justify-content: center; padding: 11px 18px; font-size: 14px; }
.faq__tg svg { color: var(--blue); }

/* ===== Block 11 · SaaS teaser / future platform ===== */
.teaser {
  position: relative;
  z-index: 1;
  background: transparent;
}
.teaser__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) clamp(24px, 4.5vw, 64px) clamp(56px, 7vw, 100px);
}

/* One large dark glass panel — intentional "wow" contrast, built from the
   site's own charcoal tokens so it still reads as part of the system. */
.teaser__panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(28, 111, 194, 0.28) 0%, rgba(28, 111, 194, 0) 55%),
    linear-gradient(160deg, #1a2130 0%, #141a26 100%);
  border: 1px solid rgba(111, 176, 232, 0.18);
  overflow: hidden;
  box-shadow:
    0 40px 90px -40px rgba(12, 16, 24, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
/* Neon glow accent along the top edge */
.teaser__panel::before {
  content: "";
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 70%; height: 60%;
  background: radial-gradient(closest-side, rgba(28, 111, 194, 0.5), rgba(28, 111, 194, 0));
  filter: blur(40px);
  pointer-events: none;
}

.teaser__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

/* ----- Text side ----- */
.teaser__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(111, 176, 232, 0.12);
  border: 1px solid rgba(111, 176, 232, 0.28);
  color: #a9cff8;
  padding: 7px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 20px;
}
.teaser__badge-dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: #4fd07a;
  box-shadow: 0 0 0 0 rgba(79, 208, 122, 0.6);
  animation: statusPulse 2.4s ease-in-out infinite;
}
.teaser__title {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.14;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.teaser__sub {
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 24px;
  max-width: 480px;
}

.teaser__feats { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.tfeat { display: flex; align-items: flex-start; gap: 12px; }
.tfeat__ic {
  flex: none; width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(111, 176, 232, 0.14);
  border: 1px solid rgba(111, 176, 232, 0.28);
  color: #6fb0f5;
}
.tfeat__body { font-size: 13.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.6); padding-top: 2px; }
.tfeat__body strong { color: #fff; font-weight: 700; }

/* Inline waitlist form */
.teaser__form { margin-bottom: 12px; }
.teaser__input-wrap {
  display: flex;
  width: 100%; max-width: 460px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.6px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 5px 5px 5px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.teaser__input-wrap:focus-within {
  border-color: rgba(111, 176, 232, 0.6);
  box-shadow: 0 0 0 4px rgba(28, 111, 194, 0.18);
}
.teaser__input-wrap.is-error { border-color: #e06868; }
.teaser__input {
  flex: 1; min-width: 0;
  border: none; background: transparent;
  font: inherit; font-size: 14px; color: #fff;
  padding: 10px 8px 10px 0;
}
.teaser__input::placeholder { color: rgba(255, 255, 255, 0.4); }
.teaser__input:focus { outline: none; }
.teaser__submit { flex: none; padding: 11px 20px; font-size: 14px; }
.teaser__consent {
  display: flex; align-items: flex-start; gap: 9px;
  max-width: 460px;
  margin-top: 10px;
  font-size: 12px; line-height: 1.45; color: rgba(255, 255, 255, 0.62);
}
.teaser__consent input { margin-top: 2px; flex: none; }
.teaser__consent a { color: #8bc8ff; }
.teaser__error { margin-top: 10px; font-size: 12.5px; color: #ff9b9b; }

.teaser__success {
  display: flex; align-items: center; gap: 9px;
  background: rgba(79, 208, 122, 0.1);
  border: 1px solid rgba(79, 208, 122, 0.3);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13.5px; line-height: 1.45; color: #cdeed6;
  margin-bottom: 12px;
}
.teaser__success[hidden] { display: none; }
.teaser__success svg { flex: none; }

.teaser__offer {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.teaser__offer svg { flex: none; color: #f5a623; margin-top: 1px; }
.teaser__offer strong { color: #ffc24d; font-weight: 800; }
/* ----- Laptop dashboard mockup ----- */
.teaser__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.lapt { position: relative; width: 100%; max-width: 500px; }
.lapt__screen {
  position: relative;
  border-radius: 14px 14px 4px 4px;
  padding: 12px;
  background: #10151f;
  border: 1px solid rgba(111, 176, 232, 0.22);
  box-shadow:
    0 0 0 2px rgba(12, 16, 24, 0.6),
    0 30px 60px -20px rgba(28, 111, 194, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lapt__base {
  height: 14px;
  margin: 0 auto;
  width: 118%;
  max-width: none;
  transform: translateX(-7.6%);
  background: linear-gradient(180deg, #1a212e, #0e131c);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 14px 24px -12px rgba(12, 16, 24, 0.7);
}
.lapt__base::after {
  content: ""; display: block;
  width: 90px; height: 5px; margin: 0 auto;
  border-radius: 0 0 6px 6px;
  background: rgba(255, 255, 255, 0.08);
}

/* Dashboard UI inside the screen */
.dui {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 0.9fr;
  gap: 8px;
  min-height: 210px;
}
.dui__side { display: flex; flex-direction: column; gap: 6px; }
.dui__side-title { font-size: 8.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.dui__loc {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px; padding: 6px 8px;
}
.dui__loc--active { background: rgba(28,111,194,0.22); border-color: rgba(111,176,232,0.4); color: #fff; }
.dui__dot { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.dui__dot--hi { background: #4fd07a; }
.dui__dot--mid { background: #f5a623; }
.dui__dot--lo { background: #e06868; }

.dui__map {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9px;
  padding: 9px;
  display: flex; flex-direction: column; gap: 8px;
}
.dui__map-bar { display: flex; align-items: center; justify-content: space-between; }
.dui__map-title { font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,0.7); }
.dui__map-tag { font-size: 9px; font-weight: 800; color: #4fd07a; background: rgba(79,208,122,0.14); border-radius: 999px; padding: 2px 7px; }
.dui__heat { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; flex: 1; }
.duh { aspect-ratio: 1/1; border-radius: 4px; background: rgba(255,255,255,0.05); }
.duh--1 { background: rgba(111,176,232,0.14); }
.duh--2 { background: rgba(59,145,230,0.34); }
.duh--3 { background: rgba(47,155,224,0.6); }
.duh--4 { background: #2f9be0; box-shadow: 0 0 6px -1px rgba(47,155,224,0.7); }
.dui__pin { position: absolute; top: 46%; left: 50%; transform: translate(-50%,-60%); filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5)); }

.dui__side--events .dui__evt {
  display: flex; align-items: center; gap: 6px;
  font-size: 9.5px; font-weight: 600; color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px; padding: 6px 7px;
}
.dui__evt-ic {
  flex: none; width: 15px; height: 15px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff;
}
.dui__evt-ic--star { background: #f5a623; }
.dui__evt-ic--up { background: #4fd07a; }
.dui__evt-ic--warn { background: #e06868; }

/* Floating notification widgets */
.tnote {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(24, 31, 44, 0.92);
  border: 1px solid rgba(111, 176, 232, 0.28);
  border-radius: 11px;
  padding: 9px 13px;
  font-size: 11.5px; font-weight: 700; color: #fff;
  box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  white-space: nowrap;
  animation: tnoteFloat 4s ease-in-out infinite;
}
.tnote__ic {
  flex: none; width: 18px; height: 18px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #fff;
}
.tnote__ic--warn { background: #e06868; }
.tnote__ic--ok { background: #f5a623; }
.tnote__ic--up { background: #4fd07a; }
.tnote--a { top: 8%; left: -4%; animation-delay: 0s; }
.tnote--b { top: 40%; right: -6%; animation-delay: 1.2s; }
.tnote--c { bottom: 10%; left: 2%; animation-delay: 2.2s; }
@keyframes tnoteFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 34px;
    padding-top: 44px;
  }

  .hero__left {
    max-width: 680px;
  }

  .hero__visual {
    justify-self: center;
    width: min(100%, 560px);
  }

  .problem__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .problem__visual {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-stage::before {
    background: linear-gradient(
      180deg,
      rgba(248, 249, 251, 0.94) 0%,
      rgba(248, 249, 251, 0.78) 42%,
      rgba(248, 249, 251, 0.4) 78%,
      rgba(248, 249, 251, 0) 100%
    );
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* Single column: soft top-down wash, already fades to transparent */
  .section-veil--left,
  .section-veil--center {
    background: linear-gradient(
      180deg,
      rgba(248, 249, 251, 0.78) 0%,
      rgba(248, 249, 251, 0.48) 38%,
      rgba(248, 249, 251, 0.18) 70%,
      rgba(248, 249, 251, 0) 100%
    );
  }
  .section-veil--soft {
    background: linear-gradient(
      180deg,
      rgba(248, 249, 251, 0.45) 0%,
      rgba(248, 249, 251, 0.2) 55%,
      rgba(248, 249, 251, 0) 100%
    );
  }
}

@media (max-width: 1040px) {
  .nav__links { display: none; }
  .nav__waitlist { margin-left: auto; }
}

@media (max-width: 860px) {
  .calc-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 520px;
    margin: 0 auto;
  }
  .calc-panel__disclaimer { margin-top: 16px; }

  .detail__grid { grid-template-columns: 1fr; }
  .dcard { max-width: 520px; width: 100%; margin: 0 auto; }
  .detail__value { flex-direction: column; align-items: flex-start; text-align: left; }
  .detail__value-cta { width: 100%; justify-content: center; }

  .showroom__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .showroom__visual { order: -1; }
  .report { max-width: 380px; }
  .showroom__meta { max-width: 480px; }

  .pcard__grid { grid-template-columns: 1fr; gap: 28px; }
  .pcard__buy { max-width: 420px; width: 100%; margin: 0 auto; }

  .stile,
  .stile--wide,
  .stile:nth-child(2),
  .stile:nth-child(3) { grid-column: span 6; }
  .impl__foot { flex-direction: column; align-items: flex-start; }
  .impl__cta { width: 100%; justify-content: center; }

  .cases__grid { grid-template-columns: 1fr 1fr; }
  .cases__grid .ccard:nth-child(3) { grid-column: 1 / -1; max-width: 520px; justify-self: center; width: 100%; }

  .segment__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .segment__foot { flex-direction: column; }
  .segment__note { text-align: left; }
  .segment__cta { width: 100%; max-width: 480px; justify-content: center; }

  .faq__layout { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
  .faq__aside { position: static; order: -1; }

  .teaser__grid { grid-template-columns: 1fr; gap: 40px; }
  .teaser__visual { order: -1; }
  .lapt { max-width: 440px; }

  .footmain__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footcol--brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .impl__grid { grid-template-columns: 1fr; }
  .stile,
  .stile--wide,
  .stile:nth-child(2),
  .stile:nth-child(3) { grid-column: auto; }

  .cases__grid { grid-template-columns: 1fr; }
  .cases__grid .ccard:nth-child(3) { grid-column: auto; max-width: none; }

  .teaser__panel { padding: 22px; border-radius: 22px; }
  .tnote { display: none; }
  .teaser__input-wrap { flex-direction: column; border-radius: 16px; padding: 8px; gap: 8px; }
  .teaser__input { width: 100%; min-height: 42px; padding: 8px 10px; font-size: 16px; }
  .teaser__submit { width: 100%; min-height: 46px; justify-content: center; }
}

@media (max-width: 720px) {
  .nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav__wrap,
  .hero__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav__wrap {
    gap: 14px;
  }

  .logo {
    gap: 8px;
    transform: none;
  }

  .logo__img {
    height: 36px;
  }

  .logo__tag {
    display: none;
  }

  .nav__waitlist {
    display: none;
  }

  .nav__cta {
    margin-left: auto;
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero-stage {
    min-height: auto;
    overflow: visible;
  }

  /* Soften the shared map a touch behind the denser stacked mobile content */
  .sitemap__img {
    opacity: 0.8;
  }

  .hero__inner {
    gap: 28px;
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .badge {
    max-width: 100%;
    align-items: flex-start;
    border-radius: 16px;
    padding: 8px 12px;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .hero__title {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.7px;
    margin-bottom: 16px;
  }

  .hero__desc {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .btn {
    justify-content: center;
  }

  .social-proof {
    gap: 10px 12px;
    margin-top: 18px;
  }

  .sp__stat {
    font-size: 12px;
  }

  .dash__panel {
    border-radius: 18px;
    padding: 12px;
  }

  .dash__grid {
    gap: 10px;
  }

  .card--gauge {
    padding: 18px 14px;
  }

  .card--revenue {
    padding: 18px 16px 14px;
  }

  .card--rec,
  .card--done {
    padding: 15px 16px;
  }

  .done__cta {
    width: 100%;
    margin-left: 0;
  }

  .card--done {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .dash__features {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 12px;
    justify-content: flex-start;
  }

  .feat__div {
    display: none;
  }

  .feat {
    flex: 1 1 150px;
    min-width: 0;
    white-space: normal;
  }

  .calc-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
  }
  .calc-panel__inputs { padding: 6px 4px 0; }
  .calc-field { margin-bottom: 22px; }

  .detail__inner { padding-left: 18px; padding-right: 18px; }
  .detail__value { padding: 16px 18px; }

  .showroom__inner { padding-left: 18px; padding-right: 18px; }
  .showroom__actions { gap: 10px; }
  .showroom__sample,
  .showroom__cta { flex: 1 1 auto; justify-content: center; }
  .report { max-width: 320px; }
  .report__hint { opacity: 1; transform: none; }

  .modal__dialog--report { padding: 16px; }
  .rview__nav { width: 34px; height: 34px; }

  .pricing__inner { padding-left: 18px; padding-right: 18px; }
  .pcard__offer { flex-direction: row; align-items: flex-start; }
  .pcard__badge { font-size: 11.5px; padding: 8px 14px; text-align: center; }
}

@media (max-width: 560px) {
  .reveal { aspect-ratio: 3 / 4; }
  .mres__thumb { width: 34px; height: 34px; }
  .mres__name { font-size: 12.5px; }
  .calc-metric__num { font-size: 38px; }

  .hero__input-wrap {
    flex-direction: column;
    border-radius: 16px;
    padding: 8px;
    gap: 8px;
  }

  .hero__input {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 16px;
  }

  .hero__submit {
    width: 100%;
    min-height: 46px;
  }

  .hero__form .btn--link {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero__visual { width: 100%; max-width: 460px; }
  .card--revenue,
  .card--gauge { grid-column: span 12; }
  .card--rec { grid-column: span 12; }

  .revenue__label {
    font-size: 25px;
  }

  .gauge {
    max-width: 220px;
  }

  .gauge__score {
    font-size: 28px;
  }

  .dash__features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feat {
    justify-content: flex-start;
  }

  .footmain__inner { grid-template-columns: 1fr; gap: 30px; }
  .footcol--brand { grid-column: auto; }
  .prefooter__card { flex-direction: column; align-items: flex-start; }
  .prefooter__cta { width: 100%; justify-content: center; }
  .footbar__inner { justify-content: center; text-align: center; }
}

/* ===== Waitlist modal ===== */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(15, 23, 38, 0.55);
  backdrop-filter: blur(3px);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%; max-width: 420px;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 30px 70px -20px rgba(12, 16, 24, 0.45);
  animation: modalPop .22s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes modalPop {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute; top: 14px; right: 14px;
  z-index: 20;
  width: 30px; height: 30px; border-radius: 50%;
  background: #f0f2f6; border: none; color: var(--muted);
  font-size: 14px; cursor: pointer; transition: background .15s, color .15s;
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto;
}
.modal__close:hover { background: #e2e6ee; color: var(--navy); }
.modal__title { font-family: "Montserrat", sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; padding-right: 20px; }
.modal__desc { font-size: 13.5px; line-height: 1.5; color: var(--muted); margin-bottom: 20px; }

/* FormSubmit honeypot — must stay empty; type=text so bots may fill it */
.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.field { display: block; margin-bottom: 14px; }
.field__label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field__input {
  width: 100%; padding: 11px 14px;
  border: 1.6px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 14px; color: var(--navy);
  transition: border-color .15s;
}
.field__input:focus { outline: none; border-color: var(--blue); }
.field__hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}
.field--check {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 12px; line-height: 1.45; color: var(--muted);
  margin: 16px 0 18px;
}
.field--check input { margin-top: 2px; flex: none; }
.field--check a { color: var(--blue); }

.modal__submit { width: 100%; justify-content: center; padding: 13px 20px; font-size: 14.5px; }
.modal__submit[disabled] { opacity: .6; cursor: default; }
.modal__error {
  margin-top: 12px; font-size: 12.5px; color: #d64545; text-align: center;
}

.modal__body--success { text-align: center; }
.modal__success-icon {
  width: 52px; height: 52px; margin: 0 auto 14px;
  border-radius: 50%; background: rgba(34, 176, 75, 0.12); color: #22b04b;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800;
}

/* ===== Report preview modal (flip-through demo) ===== */
.modal__dialog--report {
  max-width: 760px;
  padding: 18px 18px 16px;
  overflow: visible;
}
.modal__dialog--report .modal__close {
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #e4e9f1;
  box-shadow: 0 6px 16px rgba(15, 23, 38, 0.14);
  font-size: 16px;
}
.rview { display: flex; flex-direction: column; gap: 14px; }
.rview__stage { position: relative; display: flex; align-items: center; gap: 8px; }
.rview__track {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 14px;
}
.rslide {
  display: none;
  animation: slideFade .32s ease;
}
.rslide.is-active { display: flex; }
@keyframes slideFade {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Dense demo "browser report" page */
.rpaper.rdemo {
  flex-direction: column;
  width: 100%;
  min-height: min(62vh, 520px);
  max-height: min(72vh, 640px);
  overflow: auto;
  background: #fff;
  border: 1px solid #eaedf3;
  border-radius: 14px;
  padding: 0;
  box-shadow: inset 0 0 0 1px rgba(23,45,82,0.02);
}
.rdemo__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f3f6fa;
  border-bottom: 1px solid #e8edf4;
}
.rdemo__dots { display: inline-flex; gap: 5px; }
.rdemo__dots i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d5dbe6;
}
.rdemo__dots i:first-child { background: #ff5f57; }
.rdemo__dots i:nth-child(2) { background: #febc2e; }
.rdemo__dots i:nth-child(3) { background: #28c840; }
.rdemo__url {
  flex: 1;
  min-width: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: 1px solid #e4e9f1;
  border-radius: 7px;
  padding: 5px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rdemo__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 10px 14px 0;
}
.rdemo__tabs button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.rdemo__tabs button:hover { color: var(--navy); background: #f3f6fa; }
.rdemo__tabs button.is-on {
  color: var(--blue);
  background: rgba(28, 111, 194, 0.1);
  border-color: rgba(28, 111, 194, 0.18);
}
.rdemo__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 0;
}
.rdemo__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin: 0 0 3px;
}
.rdemo__sub { margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.rdemo__badge {
  flex: none;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(28, 111, 194, 0.1);
  border-radius: 999px;
  padding: 5px 9px;
}
.rdemo__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px 16px 0;
}
.rdemo__kpis--compact { grid-template-columns: repeat(3, 1fr); }
.rdemo__kpi {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 11px;
  border-radius: 10px;
  background: #f5f8fc;
  border: 1px solid #e8edf4;
}
.rdemo__kpi b {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.rdemo__kpi span { font-size: 11px; font-weight: 600; color: var(--muted); line-height: 1.3; }
.rdemo__kpi--bad b { color: #c23b3b; }
.rdemo__kpi--ok b { color: #1c9c46; }
.rdemo__table {
  margin: 12px 16px 0;
  border: 1px solid #e8edf4;
  border-radius: 10px;
  overflow: hidden;
}
.rdemo__tr {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 0.7fr 0.8fr 0.7fr 0.9fr;
  gap: 6px;
  padding: 8px 10px;
  font-size: 12px;
  align-items: center;
  border-top: 1px solid #eef1f6;
}
.rdemo__tr:first-child { border-top: none; }
.rdemo__tr--head {
  background: #f5f8fc;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.rdemo__tr > span:first-child {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rdemo__tr .is-bad { color: #c23b3b; font-weight: 800; }
.rdemo__st {
  justify-self: start;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  padding: 3px 7px;
}
.rdemo__st--warn { color: #b36b00; background: rgba(245, 166, 35, 0.16); }
.rdemo__st--bad { color: #a12b2b; background: rgba(194, 59, 59, 0.12); }
.rdemo__foot {
  margin: 10px 16px 14px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--muted);
}
.rdemo__foot strong { color: var(--navy); }
.rdemo__split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 14px;
  padding: 12px 16px 0;
}
.rdemo__col { min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.rdemo__mini {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.rdemo__chips { display: flex; flex-wrap: wrap; gap: 5px; }
.rdemo__chips span {
  font-size: 11px;
  font-weight: 700;
  color: #1c9c46;
  background: rgba(34, 176, 75, 0.1);
  border-radius: 6px;
  padding: 4px 8px;
}
.rdemo__heats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.rheatcard--demo {
  padding: 7px;
  gap: 5px;
}
.rheatcard--demo .rheatcard__q { font-size: 10px; }
.rheatcard--demo .rheatcard__ch { font-size: 9px; }
.rheatcard--demo .rheatcard__foot { font-size: 10px; }
.htg--demo { gap: 3px; padding: 5px; }
.htg--demo .htg__c { font-size: 8px; }
.htg--demo .htg__c--r { font-size: 6.5px; }
.rdemo .rbars--lg { gap: 10px; margin-top: 0; }
.rdemo .rbars--lg .rbar__name { width: 58px; font-size: 12px; }
.rdemo .rbars--lg .rbar__track { height: 11px; }
.rdemo .rbars--lg .rbar__val { width: 22px; font-size: 12px; }
.rdemo__funnel {
  display: flex;
  align-items: stretch;
  gap: 6px;
  padding: 12px 16px 0;
  flex-wrap: wrap;
}
.rdemo__funnel-step {
  flex: 1;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 11px;
  border-radius: 10px;
  background: #f5f8fc;
  border: 1px solid #e8edf4;
}
.rdemo__funnel-step em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  color: var(--blue);
}
.rdemo__funnel-step b { font-size: 13px; color: var(--navy); }
.rdemo__funnel-step span { font-size: 11px; color: var(--muted); }
.rdemo__funnel-arr {
  align-self: center;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}
.rdemo__rev {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  margin: 12px 16px 0;
  padding: 12px 14px;
  border-radius: 12px;
  background:
    radial-gradient(120% 90% at 90% 0%, rgba(28, 111, 194, 0.1) 0%, transparent 55%),
    #f5f8fc;
  border: 1px solid #e8edf4;
}
.rdemo__rev strong {
  display: block;
  margin: 4px 0 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.rdemo__rev > div > span:last-child,
.rdemo__rev-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.rdemo__rep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 16px 0;
}
.rdemo__rep-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f5f8fc;
  border: 1px solid #e8edf4;
}
.rdemo__rep-card b { font-size: 14px; color: var(--navy); }
.rdemo__rep-card span { font-size: 12px; color: var(--muted); }
.rdemo__rep-card em { font-style: normal; font-size: 11px; font-weight: 700; color: #b36b00; }
.rdemo .rplan--lg {
  margin: 12px 16px 0;
  gap: 8px;
}
.rdemo .rplan--lg .rplan__item {
  gap: 8px;
  font-size: 13px;
  flex-wrap: nowrap;
  padding: 8px 10px;
  border-radius: 9px;
  background: #f8fafc;
  border: 1px solid #eef1f6;
}
.rdemo .rplan--lg .rplan__check { width: 18px; height: 18px; border-radius: 6px; flex: none; }
.rdemo .rplan--lg .rplan__do { white-space: normal; }
.rdemo .rplan--lg .rplan__get { font-size: 12px; }
.rdemo__phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 16px 14px;
}
.rdemo__phases div {
  text-align: center;
  padding: 10px 8px;
  border-radius: 10px;
  background: rgba(28, 111, 194, 0.07);
  border: 1px solid rgba(28, 111, 194, 0.14);
}
.rdemo__phases b {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.rdemo__phases span { font-size: 12px; font-weight: 700; color: var(--muted); }
.rdemo__outro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 16px 0;
}
.rdemo__outro .rdemo__kpis {
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
}
.rdemo__health {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f5f8fc;
  border: 1px solid #e8edf4;
}
.rdemo__health .rcover__score-ring {
  flex: none; width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; gap: 1px;
  background: conic-gradient(#e15c4a 0deg, #f5a623 90deg, #7bc242 200deg, #eef1f6 210deg);
  position: relative;
}
.rdemo__health .rcover__score-ring::before {
  content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #fff;
}
.rdemo__health .rcover__score-ring b,
.rdemo__health .rcover__score-ring span {
  position: relative;
  z-index: 1;
  line-height: 1;
}
.rdemo__health .rcover__score-ring b {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.rdemo__health .rcover__score-ring span {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  translate: 0 1px;
}
.rdemo__health strong { display: block; font-size: 13px; color: var(--navy); }
.rdemo__health > div > span { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.rdemo__health > div > span b { color: #1c9c46; }
.rdemo__platforms { display: flex; gap: 6px; margin-top: 7px; }
.rdemo__platforms i {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  background: #fff;
  border: 1px solid #e4e9f1;
  border-radius: 6px;
  padding: 3px 7px;
}
.rdemo__paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 16px 14px;
}
.rdemo__path {
  padding: 12px;
  border-radius: 11px;
  background: #f5f8fc;
  border: 1px solid #e8edf4;
}
.rdemo__path em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.rdemo__path span { font-size: 12px; color: var(--muted); line-height: 1.4; }
.rdemo__path--on {
  background: rgba(28, 111, 194, 0.08);
  border-color: rgba(28, 111, 194, 0.22);
}
.rdemo__path--on em { color: var(--blue); }

/* Nav arrows + footer */
.rview__nav {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s, opacity .15s;
  box-shadow: var(--card-shadow);
}
.rview__nav:hover { border-color: var(--blue); color: var(--blue); }
.rview__nav:disabled { opacity: 0.35; cursor: default; }
.rview__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 2px;
}
.rview__dots[hidden] { display: none !important; }
.rview__cta {
  width: 100%;
  max-width: 420px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
}

@media (max-width: 720px) {
  .modal__dialog--report { padding: 14px 12px 12px; }
  .rview__stage { gap: 4px; }
  .rview__nav { width: 34px; height: 34px; }
  .rpaper.rdemo { min-height: 0; max-height: min(78vh, 640px); }
  .rdemo__kpis { grid-template-columns: repeat(2, 1fr); }
  .rdemo__split,
  .rdemo__rev,
  .rdemo__paths,
  .rdemo__rep { grid-template-columns: 1fr; }
  .rdemo__outro .rdemo__kpis { grid-template-columns: 1fr; }
  .rdemo__tr {
    grid-template-columns: minmax(0, 1.4fr) 0.6fr 0.7fr 0.6fr;
  }
  .rdemo__tr > span:last-child { display: none; }
  .rdemo__funnel-arr { display: none; }
  .rview__cta { max-width: none; }
}

/* ===== Legal / privacy policy page ===== */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  color: var(--ink);
  line-height: 1.65;
}
.legal__title { font-family: "Montserrat", sans-serif; font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.legal__approve { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 20px; }
.legal__city { font-size: 14.5px; color: var(--ink); margin-bottom: 8px; }
.legal__updated { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.legal h2 { font-family: "Montserrat", sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.legal p { margin-bottom: 12px; font-size: 14.5px; }
.legal ul { margin: 0 0 12px 20px; font-size: 14.5px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--blue, #1C6FC2); }
.legal__note { margin-top: 32px; padding: 14px 16px; background: #f4f6f9; border-radius: 10px; font-size: 12.5px; color: var(--muted); }

@media (max-width: 720px) {
  .modal {
    align-items: flex-end;
    padding: 12px;
  }

  .modal__dialog {
    max-width: none;
    max-height: calc(100svh - 24px);
    overflow-y: auto;
    border-radius: 18px;
    padding: 28px 20px 22px;
  }

  .modal__title {
    font-size: 18px;
  }

  .field__input {
    min-height: 44px;
    font-size: 16px;
  }

  .modal__submit {
    min-height: 46px;
  }

  .prefooter { padding-left: 18px; padding-right: 18px; }
  .prefooter__card { padding: 24px 20px; border-radius: 20px; }
}

@media (max-width: 380px) {
  .nav__waitlist {
    max-width: 112px;
  }

  .hero__title {
    font-size: 29px;
  }

  .dash__features {
    justify-content: flex-start;
  }

  .feat {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .sitemap__roads .hero-map__dots { display: none; }
  .reveal__float { animation: none; }
  .dcard__status-dot,
  .audit__bubble { animation: none; }
  .rslide { animation: none; }
  .stile__dot,
  .seo__key,
  .ads__ring { animation: none; }
  .radar__sweep,
  .net__scroll,
  .area__ray { animation: none; }
  .teaser__badge-dot,
  .tnote { animation: none; }
}

/* ===== Blog / coming-soon stub ===== */
.coming-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(244, 246, 249, 0.92) 0%, rgba(244, 246, 249, 0.97) 100%),
    url("assets/map-bg.png") center / cover no-repeat;
  background-color: #f4f6f9;
}

.coming {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 32px) 80px;
}

.coming__panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--card-shadow);
  padding: clamp(28px, 5vw, 44px);
}

.coming__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(28, 111, 194, 0.08);
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.coming__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(28, 111, 194, 0.45);
  animation: comingPulse 1.8s ease-out infinite;
}

@keyframes comingPulse {
  0% { box-shadow: 0 0 0 0 rgba(28, 111, 194, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(28, 111, 194, 0); }
  100% { box-shadow: 0 0 0 0 rgba(28, 111, 194, 0); }
}

.coming__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 14px;
}

.coming__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 22px;
}

.coming__topics {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
}

.coming__topics li {
  position: relative;
  padding: 10px 14px 10px 36px;
  background: #f4f6f9;
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.45;
}

.coming__topics li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--blue);
}

.coming__note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 24px;
}

.coming__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .coming__badge-dot { animation: none; }
}

/* Hidden in production; visible with ?dev=1 or localStorage onmap_dev=1 */
.dev-only {
  display: none !important;
}

html.show-dev .dev-only {
  display: revert !important;
}

html.show-dev a.dev-only,
html.show-dev .nav__links .dev-only {
  display: inline-flex !important;
}

html.show-dev li.dev-only {
  display: list-item !important;
}

/* Yellow unfinished markers — only when html.show-dev (never on public site) */
.dev-todo {
  /* no visual effect for clients */
}

html.show-dev .dev-todo {
  outline: 2px solid #e6b800;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(230, 184, 0, 0.18);
  border-radius: 10px;
  position: relative;
}

html.show-dev .dev-todo[data-dev]::after {
  content: attr(data-dev);
  position: absolute;
  z-index: 40;
  top: -10px;
  right: -6px;
  max-width: 220px;
  padding: 3px 8px;
  border-radius: 6px;
  background: #fff3bf;
  border: 1px solid #e6b800;
  color: #7a5c00;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  white-space: normal;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(122, 92, 0, 0.12);
}

.dev-panel {
  display: none;
}

html.show-dev .dev-panel:not([hidden]) {
  display: block;
  position: fixed;
  z-index: 9999;
  right: 16px;
  bottom: 16px;
  width: min(280px, calc(100vw - 32px));
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff8db;
  border: 1px solid #e6b800;
  box-shadow: 0 10px 30px rgba(23, 45, 82, 0.14);
  color: #7a5c00;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
}

.dev-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.dev-panel__head strong {
  font-size: 13px;
  color: #5c4500;
}

.dev-panel__hint {
  font-size: 11px;
  opacity: 0.75;
}

.dev-panel__list {
  margin: 0 0 10px;
  padding-left: 18px;
}

.dev-panel__list li {
  margin-bottom: 4px;
}

.dev-panel__off {
  color: #7a5c00;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dev-panel__off:hover {
  color: #5c4500;
}

/* ===== Service / SEO content pages ===== */
.spage-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(244, 246, 249, 0.94) 0%, #f4f6f9 42%, #fff 100%);
  color: var(--ink);
}
.spage-body .nav { position: static; background: rgba(255,255,255,0.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.spage {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(20px, 4vw, 40px) 72px;
}
.spage__crumbs {
  display: flex; flex-wrap: wrap; gap: 6px 10px;
  font-size: 13px; color: var(--muted); margin-bottom: 22px;
}
.spage__crumbs a { color: var(--blue); text-decoration: none; }
.spage__crumbs a:hover { text-decoration: underline; }
.spage__crumbs span[aria-hidden] { opacity: 0.45; }
.spage__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(28,111,194,0.08); color: var(--blue);
  font-size: 12.5px; font-weight: 600; margin-bottom: 14px;
}
.spage__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.03em; line-height: 1.15; margin: 0 0 14px;
}
.spage__lead {
  font-size: 17px; line-height: 1.55; color: var(--ink);
  max-width: 62ch; margin: 0 0 28px;
}
.spage__cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 40px; }
.spage h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px; font-weight: 750; color: var(--navy);
  margin: 36px 0 12px; letter-spacing: -0.02em;
}
.spage p { margin: 0 0 12px; font-size: 15px; line-height: 1.65; }
.spage ul, .spage ol { margin: 0 0 16px 1.2em; padding: 0; }
.spage li { margin-bottom: 8px; font-size: 15px; line-height: 1.55; }
.spage a:not(.btn) { color: var(--blue); }
.spage__card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 22px 24px; margin: 20px 0 28px;
  box-shadow: 0 8px 28px rgba(22, 35, 59, 0.04);
}
.spage__grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 18px 0 28px;
}
.spage__tile {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 18px 18px 16px;
  text-decoration: none; color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.spage__tile:hover {
  border-color: rgba(28,111,194,0.35);
  box-shadow: 0 10px 28px rgba(28,111,194,0.08);
}
.spage__tile h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px; font-weight: 750; color: var(--navy); margin: 0 0 8px;
}
.spage__tile p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.spage__price {
  font-family: "Montserrat", sans-serif;
  font-size: 28px; font-weight: 800; color: var(--navy);
}
.spage__price span { font-size: 15px; font-weight: 600; color: var(--muted); margin-left: 4px; }
.spage__faq details {
  border: 1px solid var(--line); border-radius: 14px;
  background: #fff; padding: 14px 16px; margin-bottom: 10px;
}
.spage__faq summary {
  cursor: pointer; font-weight: 650; color: var(--navy); list-style: none;
}
.spage__faq summary::-webkit-details-marker { display: none; }
.spage__faq details[open] summary { margin-bottom: 8px; }
.spage__faq p { margin: 0; font-size: 14.5px; color: var(--ink); }
.spage__related { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.spage__foot {
  margin-top: 48px; padding: 28px 24px; border-radius: 20px;
  background: linear-gradient(135deg, #16233b 0%, #1e3a5f 100%);
  color: #fff;
}
.spage__foot h2 { color: #fff; margin: 0 0 8px; font-size: 22px; }
.spage__foot p { color: rgba(255,255,255,0.78); margin: 0 0 16px; }
.spage__foot .btn--primary { background: #fff; color: var(--navy); }
.spage__foot .btn--primary:hover { background: #eef3fa; }
.spage-mini-foot {
  max-width: 920px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px) 40px;
  font-size: 13px; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 12px 20px;
}
.spage-mini-foot a { color: var(--muted); }
.seo-prose {
  max-width: 720px; margin: 8px auto 0;
  padding: 0 clamp(20px, 4vw, 40px);
  font-size: 15px; line-height: 1.65; color: var(--ink);
}
.seo-prose p { margin: 0 0 12px; }
.impl .seo-prose.impl-shell__note {
  margin-top: 0;
  padding: 14px 22px 16px;
  max-width: none;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.detail .seo-prose.detail-shell__note {
  margin-top: 0;
  padding: 14px 22px 16px;
  max-width: none;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  text-align: left;
}
.calculator .seo-prose.calc-shell__note {
  margin-top: 0;
  padding: 14px clamp(20px, 3vw, 32px) 16px;
  max-width: none;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  text-align: left;
}
