/* AVTO Intelligence — B2B landing */
:root {
  --bg-deep: #07090d;
  --bg-surface: #0e1219;
  --bg-elevated: #141a24;
  --bg-card: rgba(20, 26, 36, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #e8ecf1;
  --text-muted: #8b95a8;
  --text-dim: #5c6678;
  --accent: #3d9cf0;
  --accent-soft: rgba(61, 156, 240, 0.14);
  --accent-2: #5eead4;
  --accent-2-soft: rgba(94, 234, 212, 0.1);
  --danger-soft: rgba(248, 113, 113, 0.08);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-glow: 0 0 80px rgba(61, 156, 240, 0.12);
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

main {
  padding-top: 72px;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Background */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.bg-orb {
  position: fixed;
  width: 720px;
  height: 720px;
  top: -280px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(61, 156, 240, 0.18) 0%, transparent 65%);
  filter: blur(40px);
}

.bg-orb-2 {
  position: fixed;
  width: 560px;
  height: 560px;
  bottom: -200px;
  left: -180px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.1) 0%, transparent 65%);
  filter: blur(48px);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav — fixed «таблетка», скрывается при скролле вниз */
.site-nav {
  position: fixed;
  top: 14px;
  left: 16px;
  right: 16px;
  z-index: 50;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  transform: translateY(0);
  opacity: 1;
  pointer-events: none;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease;
  will-change: transform;
}

.site-nav .inner {
  pointer-events: auto;
  max-width: var(--max);
  margin: 0 auto;
  padding: 11px 18px 11px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(7, 9, 13, 0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.site-nav.is-hidden {
  transform: translateY(calc(-100% - 28px));
  opacity: 0;
  pointer-events: none;
}

.site-nav.is-hidden .inner {
  pointer-events: none;
}

@media (min-width: 880px) {
  .site-nav .inner {
    padding-left: 26px;
    padding-right: 22px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 9px;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
}

.nav-links {
  display: none;
  gap: 28px;
  font-size: 14px;
}
@media (min-width: 880px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover {
  text-decoration: none;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, #4aa8f5 0%, var(--accent) 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, var(--shadow-glow);
}
.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background: #1a2230;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-lg {
  padding: 14px 24px;
  font-size: 15px;
  border-radius: 10px;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
  padding-left: 12px;
  padding-right: 12px;
}
.btn-ghost:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 48px 0 88px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    padding: 72px 0 100px;
  }
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin-bottom: 8px;
}

@media (min-width: 960px) {
  .hero-layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    grid-template-areas: "visual copy";
    align-items: center;
    gap: 48px 40px;
    margin-bottom: 12px;
    text-align: left;
  }

  .hero-text {
    grid-area: copy;
    text-align: left;
  }

  .hero-figure {
    grid-area: visual;
    max-width: none;
    justify-self: start;
    width: 100%;
  }

  .hero-text .hero-cta {
    justify-content: flex-start;
  }
}

.hero-text {
  width: 100%;
  max-width: 640px;
}

@media (min-width: 960px) {
  .hero-text {
    max-width: none;
  }
}

.hero-figure {
  margin: 0;
  width: 100%;
  max-width: 320px;
}

.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-2);
  background: var(--accent-2-soft);
  border: 1px solid rgba(94, 234, 212, 0.2);
  margin-bottom: 24px;
}

.pill-urgency {
  color: #fca5a5;
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.28);
}

.pill-urgency .pill-dot {
  background: #f87171;
  box-shadow: 0 0 10px #f87171;
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  margin: 28px auto 40px;
  max-width: 880px;
  text-align: center;
}

@media (min-width: 720px) {
  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 48px;
  }
}

.hero-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 118px;
  padding: 16px 12px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(20, 26, 36, 0.95) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-strong);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-stat-value {
  display: block;
  font-size: clamp(28px, 6.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  background: linear-gradient(180deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat:nth-child(4) .hero-stat-value {
  background: linear-gradient(180deg, #fff 20%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  display: block;
  margin-top: 8px;
  font-size: clamp(12px, 2vw, 15px);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero h1 {
  margin: 0 auto 20px;
  max-width: 900px;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

@media (min-width: 960px) {
  .hero h1 {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}

.hero-lead {
  margin: 0 auto 36px;
  max-width: 640px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 960px) {
  .hero-lead {
    margin-left: 0;
    margin-right: 0;
    max-width: 520px;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: center;
  font-size: 13px;
  color: var(--text-dim);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta svg {
  opacity: 0.7;
}

/* Sections */
section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head-center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

/* Слова с градиентом внутри заголовков */
.title-grad {
  background: linear-gradient(115deg, #ffffff 0%, #93c5fd 22%, var(--accent) 48%, var(--accent-2) 92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

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

/* Problem grid — 3 columns on wide screens */
.grid-problem {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-problem {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .grid-problem {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  backdrop-filter: blur(8px);
}

.card-problem {
  border-color: rgba(248, 113, 113, 0.12);
  background: linear-gradient(165deg, var(--danger-soft), var(--bg-card));
}

.card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.card-problem .card-icon {
  background: rgba(248, 113, 113, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.45);
  color: #f87171;
}

/* Solution — prose */
.solution-prose {
  max-width: 720px;
  margin-bottom: 28px;
}

.solution-prose p {
  margin: 0 0 18px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
}

.solution-prose p:last-child {
  margin-bottom: 0;
}

.solution-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 720px;
}

@media (min-width: 640px) {
  .solution-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.solution-highlights li {
  position: relative;
  padding: 14px 16px 14px 40px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-surface);
  border: 1px solid var(--border);
}

.solution-highlights li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(61, 156, 240, 0.5);
}

/* Before / After */
.compare-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

.compare-card {
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.compare-before {
  background: linear-gradient(165deg, var(--danger-soft), var(--bg-card));
  border-color: rgba(248, 113, 113, 0.18);
}

.compare-after {
  background: linear-gradient(165deg, rgba(61, 156, 240, 0.08), var(--bg-card));
  border-color: rgba(61, 156, 240, 0.22);
  box-shadow: var(--shadow-glow);
}

.compare-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-before .compare-label {
  color: #f87171;
}

.compare-after .compare-label {
  color: var(--accent);
}

.compare-card h3 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.compare-card ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.compare-card li:last-child {
  margin-bottom: 0;
}

.compare-before li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}

.compare-after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}

.compare-result {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
}

.compare-result-bad {
  color: #f87171;
}

.compare-result-good {
  color: var(--accent-2);
}

/* Testimonial */
.testimonial {
  margin: 0 auto;
  max-width: 640px;
  padding: 0;
  border: none;
}

.testimonial-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.chat-bubble {
  max-width: 88%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.5;
}

.chat-bubble p {
  margin: 0;
}

.chat-bubble-them {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(61, 156, 240, 0.22), rgba(37, 99, 235, 0.18));
  border: 1px solid rgba(61, 156, 240, 0.35);
  color: var(--text);
  border-bottom-left-radius: 6px;
}

.chat-bubble-us {
  align-self: flex-end;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-bottom-right-radius: 6px;
}

.testimonial-footer {
  text-align: center;
}

.testimonial-meta {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.testimonial-note {
  margin: 0;
  font-size: 14px;
  color: var(--accent-2);
  font-weight: 500;
}

/* Solution grid (legacy) */
.solution-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 900px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.solution-card:hover {
  border-color: rgba(61, 156, 240, 0.25);
}

.solution-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(61, 156, 240, 0.28);
  color: var(--accent);
}

.solution-card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.solution-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.solution-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Process — таймлайн: вертикально на мобиле, горизонтально на десктопе */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.timeline-step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0 18px;
  padding-bottom: 28px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-rail {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.timeline-rail::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline-step:last-child .timeline-rail::after {
  display: none;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-deep);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px var(--bg-deep);
}

.timeline-body {
  padding-bottom: 2px;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(61, 156, 240, 0.25);
  color: var(--accent);
}

.timeline-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin: 0 0 6px;
}

.timeline-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.timeline-body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

.process-timeline-compact .timeline-step {
  padding-bottom: 24px;
}

.process-timeline-compact .timeline-icon {
  display: none;
}

@media (min-width: 900px) {
  .process-timeline-compact .timeline-body p {
    max-width: 240px;
  }

  .process-timeline {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    max-width: none;
    margin: 0;
    padding-top: 0;
    position: relative;
  }

  .process-timeline::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 21px;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--border) 4%,
      var(--border) 96%,
      transparent 100%
    );
    z-index: 0;
  }

  .timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding-bottom: 0;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .timeline-rail {
    width: 100%;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    margin-bottom: 12px;
  }

  .timeline-rail::after {
    display: none;
  }

  .timeline-dot {
    margin-top: 0;
    box-shadow: 0 0 0 5px var(--bg-deep);
  }

  .timeline-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 6px;
  }

  .timeline-icon {
    margin-bottom: 10px;
  }

  .timeline-body p {
    font-size: 13px;
    max-width: 200px;
  }
}

/* ROI — деньги и часы */
.roi-intro.section-head {
  max-width: 720px;
}

.roi-pill-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.roi-pill-list li {
  padding: 10px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.roi-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .roi-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .roi-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

.roi-metric {
  padding: 22px 20px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.roi-metric:hover {
  border-color: rgba(61, 156, 240, 0.28);
}

.roi-metric-value {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.roi-metric-value[data-tone="cut"] {
  background: linear-gradient(135deg, #fff 0%, #7dd3fc 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-metric-value[data-tone="speed"] {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-metric-value[data-tone="gain"] {
  background: linear-gradient(135deg, #fff 0%, var(--accent-2) 70%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-metric-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.roi-metric-desc {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Use cases */
.use-cases {
  display: grid;
  gap: 16px;
}
@media (min-width: 720px) {
  .use-cases {
    grid-template-columns: repeat(2, 1fr);
  }
}

.use-case {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
}
.use-case-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(61, 156, 240, 0.28);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.use-case h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.use-case p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* CTA band */
.cta-band {
  margin: 24px 0 0;
  padding: 56px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(160deg, #141c2e 0%, var(--bg-surface) 50%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.cta-urgency {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fca5a5;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.cta-band p {
  margin: 0 auto 28px;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 16px;
}
.cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Footer */
footer {
  padding: 40px 24px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}
footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
footer a {
  color: var(--text-muted);
}
