/* ==========================================================================
   IA BOLTS — Landing Page v5 (Premium · High-Conversion · Scalable)
   Complete design-system rewrite
   ========================================================================== */

/* ══════════════════════════════════════════════════════════════════════════
   1. DESIGN TOKENS
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ── Palette ── */
  --bg-base: #020617;
  --bg-card: #0a1228;
  --bg-elevated: #111d35;
  --bg-surface: #0f172a;

  --brand: #24a8ff;
  --brand-light: #60c5ff;
  --brand-dark: #0080e0;
  --brand-glow: rgba(36,168,255,.50);
  --brand-subtle: rgba(36,168,255,.08);
  --brand-border: rgba(36,168,255,.25);

  --positive: #10b981;
  --positive-light: #34d399;
  --positive-glow: rgba(16,185,129,.40);
  --positive-subtle: rgba(16,185,129,.10);

  --negative: #ef4444;
  --negative-light: #f87171;

  --gold: #fbbf24;
  --gold-light: #fcd34d;
  --purple: #a855f7;
  --purple-light: #c4b5fd;

  --text-primary: #f1f5f9;
  --text-secondary: #c8d3e1;
  --text-muted: #8896ab;
  --text-dim: #5b6b82;

  --border-subtle: rgba(255,255,255,.06);
  --border-default: rgba(255,255,255,.10);
  --border-strong: rgba(255,255,255,.16);

  /* ── Spacing ── */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* ── Radii ── */
  --r-sm: .5rem;
  --r-md: .75rem;
  --r-lg: 1rem;
  --r-xl: 1.25rem;
  --r-2xl: 1.5rem;
  --r-full: 999px;

  /* ── Motion ── */
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur: 220ms;
  --dur-slow: 480ms;

  /* ── Typography ── */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Layout ── */
  --max-w: 1200px;
  --header-h: 72px;

  /* ── Compat aliases (used by PHP inline) ── */
  --bg: var(--bg-base);
  --bg-2: var(--bg-card);
  --bg-3: var(--bg-elevated);
  --text: var(--text-primary);
  --text-2: var(--text-secondary);
  --text-3: var(--text-muted);
  --text-4: var(--text-dim);
  --brand-2: var(--brand-light);
  --brand-3: var(--brand-dark);
  --border: var(--border-subtle);
  --border-2: var(--border-strong);
  --border-brand: var(--brand-border);
  --positive-2: var(--positive-light);
  --positive-bright: var(--positive-light);
  --positive-dark: #059669;
  --positive-glow-subtle: var(--positive-subtle);
  --negative-bright: var(--negative-light);
  --glow-brand: var(--brand-glow);
  --glow-positive: var(--positive-glow);
  --brand-glow-subtle: var(--brand-subtle);
}

/* ══════════════════════════════════════════════════════════════════════════
   2. RESET
   ══════════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

html, body { overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.15; letter-spacing: -.025em; color: var(--text-primary); }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ══════════════════════════════════════════════════════════════════════════
   3. BACKGROUND & ATMOSPHERE
   ══════════════════════════════════════════════════════════════════════════ */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(36,168,255,.10) 0%, transparent 60%),
    linear-gradient(180deg, #020617 0%, #010410 100%);
  z-index: -3;
  pointer-events: none;
}

.bg-aurora {
  position: fixed;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
  max-width: 140vw;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(36,168,255,.14) 0%, rgba(36,168,255,.03) 45%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(70px);
}

/* ══════════════════════════════════════════════════════════════════════════
   4. LAYOUT
   ══════════════════════════════════════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section {
  padding: var(--sp-16) 0;
  position: relative;
}

@media (min-width: 768px)  { .section { padding: var(--sp-20) 0; } }
@media (min-width: 1024px) { .section { padding: 5.5rem 0; } }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-12);
}

.section-header--left { text-align: left; }

@media (min-width: 768px) { .section-header { margin-bottom: var(--sp-16); } }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-4);
  padding: .4375rem .875rem;
  background: var(--brand-subtle);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-full);
}

.section-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
}

.section-title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.035em;
  margin-bottom: var(--sp-4);
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 20%, #a8c4e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) { .section-subtitle { font-size: 1.0625rem; } }

.accent-text {
  background: linear-gradient(120deg, var(--brand-light) 0%, var(--brand) 50%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════════════════════
   5. HEADER & NAVIGATION
   ══════════════════════════════════════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.header.scrolled {
  background: rgba(2,6,23,.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 24px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img { height: 34px; width: auto; display: block; }
@media (min-width: 768px) { .logo-img { height: 40px; } }

/* Desktop nav */
.nav-desktop { display: none; }
@media (min-width: 1024px) { .nav-desktop { display: block; } }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-secondary);
  font-size: .9375rem;
  font-weight: 500;
  padding: .5rem 0;
  position: relative;
  transition: color var(--dur) var(--ease);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--brand);
  transition: transform var(--dur) var(--ease);
  border-radius: 2px;
  transform-origin: center;
}

.nav-menu a:hover { color: var(--brand-light); }
.nav-menu a:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-login { display: none; }
.nav-register { display: none; }
@media (min-width: 640px) { .nav-login, .nav-register { display: inline-flex; } }

/* Mobile toggle */
.mobile-toggle {
  display: grid;
  place-items: center;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}

.mobile-toggle:hover { border-color: var(--brand-border); color: var(--brand-light); }

.mobile-toggle-icon {
  grid-area: 1 / 1;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.mobile-toggle-icon.close { opacity: 0; transform: scale(.7) rotate(-90deg); }
.mobile-toggle.open .mobile-toggle-icon.open { opacity: 0; transform: scale(.7) rotate(90deg); }
.mobile-toggle.open .mobile-toggle-icon.close { opacity: 1; transform: scale(1) rotate(0); }

@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2,6,23,.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transition: top var(--dur) var(--ease), opacity var(--dur) var(--ease);
  z-index: 99;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
}

.mobile-drawer.active {
  top: var(--header-h);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  padding: var(--sp-6) 1.25rem var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-nav-link {
  display: block;
  padding: var(--sp-4) var(--sp-5);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--dur) var(--ease);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: var(--brand-subtle);
  border-color: var(--brand-border);
  color: var(--brand-light);
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: var(--sp-4) 0 var(--sp-3);
}

@media (min-width: 1024px) { .mobile-drawer { display: none; } }

/* ══════════════════════════════════════════════════════════════════════════
   6. BUTTONS
   ══════════════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.375rem;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--r-lg);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  position: relative;
  isolation: isolate;
  border: none;
}

.btn-sm { padding: .5625rem 1rem; font-size: .875rem; min-height: 38px; border-radius: var(--r-md); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; border-radius: var(--r-xl); min-height: 52px; }
.btn-xl { padding: 1.125rem 2.25rem; font-size: 1.0625rem; border-radius: var(--r-xl); min-height: 56px; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-weight: 700;
  box-shadow:
    0 2px 8px rgba(36,168,255,.30),
    0 8px 24px rgba(36,168,255,.15),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(36,168,255,.40),
    0 12px 32px rgba(36,168,255,.20),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-light);
  background: var(--brand-subtle);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover { color: var(--brand-light); }

.btn-block { width: 100%; min-height: 52px; }

.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   7. HERO
   ══════════════════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) { .hero { padding: calc(var(--header-h) + 3rem) 0 var(--sp-16); } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: var(--sp-16); }
}

.hero-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content { margin: 0; text-align: left; max-width: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4375rem 1rem;
  background: var(--brand-subtle);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
  color: var(--brand-light);
  margin-bottom: var(--sp-6);
}

@media (min-width: 768px) { .hero-badge { font-size: .8125rem; } }

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.04;
  margin-bottom: var(--sp-5);
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: unset;
}

.hero-subtitle {
  font-size: clamp(.9375rem, 1.8vw, 1.0625rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 auto var(--sp-8);
  max-width: 560px;
}

@media (min-width: 1024px) { .hero-subtitle { margin: 0 0 var(--sp-8) 0; } }

.hero-subtitle strong { color: var(--text-primary); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-bottom: var(--sp-8);
}

.hero-actions .btn { width: 100%; }

@media (min-width: 500px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero-actions .btn { width: auto; }
}

@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; } }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-subtle);
  justify-content: center;
}

@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero-trust-item svg { color: var(--positive); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   8. DASHBOARD MOCKUP (Hero visual)
   ══════════════════════════════════════════════════════════════════════════ */

.hero-visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1024px) { .hero-visual { max-width: none; margin: 0; } }

.dashboard-mockup {
  background: linear-gradient(165deg, rgba(15,23,42,.80) 0%, rgba(10,18,40,.60) 100%);
  border: 1px solid var(--border-default);
  border-radius: var(--r-2xl);
  padding: var(--sp-4);
  box-shadow:
    0 24px 64px rgba(0,0,0,.50),
    0 0 0 1px rgba(255,255,255,.03) inset,
    0 0 80px rgba(36,168,255,.08);
  backdrop-filter: blur(16px);
}

@media (min-width: 768px) { .dashboard-mockup { padding: var(--sp-5); } }

.dashboard-card {
  background: linear-gradient(180deg, rgba(10,18,40,.96) 0%, rgba(5,10,24,.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  position: relative;
  margin-bottom: .625rem;
  overflow: hidden;
}

@media (min-width: 768px) { .dashboard-card { padding: var(--sp-5); } }

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

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(16,185,129,.12) 0%, transparent 100%);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  pointer-events: none;
}

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

.dashboard-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--sp-3);
  gap: var(--sp-3);
}

.dashboard-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: .02em;
  margin-bottom: .1875rem;
  text-transform: uppercase;
}

@media (min-width: 768px) { .dashboard-card-title { font-size: 1.0625rem; } }

.dashboard-card-label {
  font-size: .5625rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  font-weight: 600;
}

.dashboard-badge-real {
  font-size: .5625rem;
  font-weight: 800;
  padding: .25rem .5rem;
  background: var(--positive-subtle);
  color: var(--positive-light);
  border: 1px solid rgba(16,185,129,.30);
  border-radius: 6px;
  letter-spacing: .1em;
  flex-shrink: 0;
}

.dashboard-pl { margin-bottom: var(--sp-4); }

.dashboard-pl-value {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 800;
  color: var(--positive-light);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.025em;
  line-height: 1;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  font-weight: 700;
  color: var(--positive-light);
  margin-bottom: .625rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dashboard-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 10px var(--positive);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.dashboard-status-dot--sm { width: 6px; height: 6px; }

.dashboard-info {
  padding: .625rem .75rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-size: .75rem;
  color: var(--text-secondary);
  margin-bottom: .875rem;
}

.dashboard-connected {
  font-size: .5625rem;
  font-weight: 700;
  color: var(--positive-light);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: var(--sp-3) var(--sp-1);
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  margin-bottom: var(--sp-4);
}

.dashboard-metric {
  text-align: center;
  padding: 0 .5rem;
  border-right: 1px solid var(--border-subtle);
}

.dashboard-metric:last-child { border-right: none; }

.dashboard-metric-label {
  font-size: .5625rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: .1875rem;
  font-weight: 600;
}

.dashboard-metric-value {
  font-size: .875rem;
  font-weight: 800;
  color: var(--text-primary);
}

@media (min-width: 768px) { .dashboard-metric-value { font-size: 1rem; } }

.dashboard-metric-value.positive { color: var(--positive-light); }
.dashboard-metric-value.negative { color: var(--negative-light); }

.dashboard-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding-top: .25rem;
}

.dash-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}

.dash-btn:hover {
  background: rgba(255,255,255,.07);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.dash-btn.play {
  background: linear-gradient(135deg, rgba(16,185,129,.14) 0%, rgba(16,185,129,.06) 100%);
  border-color: rgba(16,185,129,.35);
  color: var(--positive-light);
}

.dash-btn.play:hover {
  background: var(--positive);
  color: #fff;
  border-color: var(--positive);
  box-shadow: 0 4px 14px var(--positive-glow);
}

.dash-btn.pause { background: rgba(255,255,255,.04); color: var(--text-secondary); }

.dash-btn.config.active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px var(--brand-glow);
}

/* ══════════════════════════════════════════════════════════════════════════
   9. CREDIBILITY BAR
   ══════════════════════════════════════════════════════════════════════════ */

.credibility-bar {
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, transparent 0%, rgba(10,18,40,.30) 100%);
}

.credibility-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  text-align: center;
}

@media (min-width: 768px) {
  .credibility-content { flex-direction: row; justify-content: center; gap: var(--sp-10); }
}

.credibility-label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.credibility-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4) var(--sp-6);
}

.credibility-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: .875rem;
  opacity: .75;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
}

.credibility-item:hover { opacity: 1; color: var(--brand-light); }
.credibility-item svg { color: var(--brand); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   10. STATS BAR
   ══════════════════════════════════════════════════════════════════════════ */

.stats-bar { padding: var(--sp-12) 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.stat-item {
  padding: var(--sp-5) var(--sp-4);
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, rgba(15,23,42,.70) 0%, rgba(10,18,40,.45) 100%);
  border: 1px solid var(--border-subtle);
  transition: all var(--dur) var(--ease);
}

@media (min-width: 768px) { .stat-item { padding: var(--sp-6) var(--sp-5); } }

.stat-item:hover {
  border-color: var(--brand-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.20);
}

.stat-value {
  font-size: clamp(1.5rem, 3.5vw, 2.375rem);
  font-weight: 800;
  background: linear-gradient(120deg, var(--brand-light) 0%, var(--brand) 60%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .25rem;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.stat-label {
  font-size: .6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}

@media (min-width: 768px) { .stat-label { font-size: .75rem; } }

/* ══════════════════════════════════════════════════════════════════════════
   11. STEPS — How It Works
   ══════════════════════════════════════════════════════════════════════════ */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  position: relative;
}

@media (min-width: 640px)  { .steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); } }

.step {
  text-align: center;
  position: relative;
  padding: 0 .5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-base) 100%);
  border: 2px solid var(--brand-border);
  display: grid;
  place-items: center;
  margin: 0 auto var(--sp-4);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-light);
  box-shadow: 0 0 24px rgba(36,168,255,.15);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .375rem;
  color: var(--text-primary);
}

@media (min-width: 768px) { .step-title { font-size: 1.0625rem; } }

.step-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════════
   12. FEATURES
   ══════════════════════════════════════════════════════════════════════════ */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.125rem; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.feature-card {
  background: linear-gradient(165deg, rgba(15,23,42,.70) 0%, rgba(10,18,40,.45) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .feature-card { padding: var(--sp-8) var(--sp-6); } }

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--brand-border) 50%, transparent 90%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.feature-card:hover {
  border-color: var(--brand-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.25), 0 0 40px rgba(36,168,255,.06);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(36,168,255,.12) 0%, rgba(36,168,255,.04) 100%);
  border: 1px solid var(--brand-border);
  display: grid;
  place-items: center;
  color: var(--brand-light);
  margin-bottom: var(--sp-5);
  box-shadow: 0 4px 14px rgba(36,168,255,.10);
}

.feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: .375rem;
  color: var(--text-primary);
  letter-spacing: -.015em;
}

@media (min-width: 768px) { .feature-title { font-size: 1.125rem; } }

.feature-desc {
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════════
   13. ROBOTS SHOWCASE
   ══════════════════════════════════════════════════════════════════════════ */

.robots-section {
  background: linear-gradient(180deg, transparent 0%, rgba(10,18,40,.30) 50%, transparent 100%);
}

.robots-header-wrap { margin-bottom: var(--sp-12); }

.showcase-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .625rem;
  color: var(--brand-light);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.showcase-header::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
}

.robots-section .section-title {
  text-align: left;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--sp-3);
}

.robots-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 700px;
}

.robots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px)  { .robots-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1200px) { .robots-grid { grid-template-columns: repeat(3, 1fr); } }

.robot-card {
  background: linear-gradient(165deg, rgba(15,23,42,.70) 0%, rgba(10,18,40,.45) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .robot-card { padding: var(--sp-6) var(--sp-6) var(--sp-5); } }

.robot-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.robot-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-border);
  box-shadow: 0 12px 36px rgba(0,0,0,.30), 0 0 40px rgba(36,168,255,.08);
}

.robot-card:hover::before { opacity: 1; }

.robot-card-top {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}

.robot-badge {
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .3125rem .625rem;
  border-radius: var(--r-sm);
  text-transform: uppercase;
}

.robot-badge-gold {
  background: rgba(251,191,36,.10);
  color: var(--gold-light);
  border: 1px solid rgba(251,191,36,.25);
}

.robot-badge-brand {
  background: var(--brand-subtle);
  color: var(--brand-light);
  border: 1px solid var(--brand-border);
}

.robot-badge-purple {
  background: rgba(168,85,247,.10);
  color: var(--purple-light);
  border: 1px solid rgba(168,85,247,.25);
}

.robot-pill-win {
  display: inline-flex;
  align-items: center;
  padding: .25rem .5625rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: #93c5fd;
  border-radius: var(--r-full);
  font-size: .5625rem;
  font-weight: 800;
  letter-spacing: .06em;
  border: 1px solid rgba(96,165,250,.25);
}

.robot-available-ribbon {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .5625rem;
  color: var(--positive-light);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

.robot-available-ribbon::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 8px var(--positive);
}

.robot-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .375rem;
}

@media (min-width: 768px) { .robot-name { font-size: 1.3125rem; } }

.robot-desc {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}

.robot-chart-container {
  background: rgba(2,6,23,.70);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: .75rem .875rem .375rem;
  margin-bottom: var(--sp-5);
}

.robot-chart-label {
  font-size: .5625rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .375rem;
  font-weight: 600;
}

.robot-chart { height: 80px; width: 100%; display: block; }
@media (min-width: 768px) { .robot-chart { height: 90px; } }

.robot-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: var(--sp-5);
}

.robot-stat {
  background: rgba(15,23,42,.50);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: .6875rem .75rem;
}

.robot-stat-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  margin-bottom: .125rem;
  letter-spacing: -.015em;
}

@media (min-width: 768px) { .robot-stat-value { font-size: 1.0625rem; } }

.robot-stat-value.positive { color: var(--positive-light); }

.robot-stat-label {
  font-size: .5625rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 600;
}

.robot-footer {
  display: flex;
  gap: .5rem;
  padding-top: var(--sp-4);
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
}

.robot-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6875rem 1rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 14px rgba(36,168,255,.25);
  transition: all var(--dur) var(--ease);
  flex: 1;
  justify-content: center;
  min-height: 42px;
}

.robot-cta-primary:hover {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(36,168,255,.35);
}

.robot-cta-primary svg { width: 16px; height: 16px; flex-shrink: 0; }

.robot-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6875rem 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--r-full);
  min-height: 42px;
  min-width: 84px;
  transition: all var(--dur) var(--ease);
}

.robot-cta-secondary:hover {
  background: rgba(255,255,255,.07);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

/* ══════════════════════════════════════════════════════════════════════════
   14. PERFORMANCE
   ══════════════════════════════════════════════════════════════════════════ */

.performance-section {
  padding: var(--sp-20) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,18,40,.40) 50%, transparent 100%);
}

@media (min-width: 1024px) { .performance-section { padding: 5.5rem 0; } }

.performance-section .section-header {
  text-align: left;
  margin-bottom: var(--sp-8);
}

.performance-section .section-title {
  text-align: left;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.performance-section .section-subtitle { max-width: 760px; }
.performance-section .section-subtitle strong { color: var(--text-primary); }

.performance-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}

.perf-tab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5625rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.perf-tab.active {
  background: var(--brand-subtle);
  color: var(--brand-light);
  border-color: var(--brand-border);
}

.perf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .perf-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.25rem; }
}

.perf-card {
  background: linear-gradient(165deg, rgba(15,23,42,.70) 0%, rgba(10,18,40,.45) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  transition: all var(--dur) var(--ease);
}

@media (min-width: 768px) { .perf-card { padding: var(--sp-5) var(--sp-6); } }

.perf-card:hover {
  border-color: var(--border-default);
  transform: translateY(-2px);
}

.perf-card-label {
  font-size: .5625rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: .375rem;
}

.perf-card-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: .1875rem;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) { .perf-card-value { font-size: 1.5rem; } }

.perf-card-value.positive { color: var(--positive-light); }
.perf-card-value.negative { color: var(--negative-light); }

.perf-card-subtitle {
  font-size: .6875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.sequence-dots {
  display: flex;
  gap: 4px;
  margin-top: .5rem;
  flex-wrap: wrap;
}

.sequence-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.sequence-dot.win  { background: var(--positive); box-shadow: 0 0 4px var(--positive); }
.sequence-dot.loss { background: var(--negative); box-shadow: 0 0 4px var(--negative); }

/* Performance chart */
.perf-chart-wrap {
  background: linear-gradient(165deg, rgba(15,23,42,.70) 0%, rgba(10,18,40,.45) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: var(--sp-5);
  margin-top: var(--sp-4);
}

@media (min-width: 768px) { .perf-chart-wrap { padding: var(--sp-6); } }

.perf-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
  gap: .75rem;
}

.perf-chart-title {
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  font-weight: 700;
}

.perf-chart-badge {
  padding: .3125rem .75rem;
  background: var(--brand-subtle);
  color: var(--brand-light);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-full);
  font-size: .625rem;
  font-weight: 700;
}

.perf-chart-canvas-wrap {
  position: relative;
  height: 220px;
  width: 100%;
}

@media (min-width: 768px)  { .perf-chart-canvas-wrap { height: 300px; } }
@media (min-width: 1024px) { .perf-chart-canvas-wrap { height: 360px; } }

.perf-chart-canvas { width: 100%; height: 100%; display: block; }

.perf-chart-disclaimer {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-subtle);
}

.perf-chart-disclaimer strong { color: var(--text-secondary); }

/* ══════════════════════════════════════════════════════════════════════════
   15. CTA SECTIONS
   ══════════════════════════════════════════════════════════════════════════ */

.cta-section { padding: var(--sp-12) 0; }
@media (min-width: 768px) { .cta-section { padding: var(--sp-16) 0; } }

.cta-box {
  background:
    radial-gradient(ellipse at top left, rgba(36,168,255,.10) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(36,168,255,.07) 0%, transparent 55%),
    linear-gradient(165deg, rgba(15,23,42,.70) 0%, rgba(10,18,40,.45) 100%);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px)  { .cta-box { padding: var(--sp-16) var(--sp-10); } }
@media (min-width: 1024px) { .cta-box { padding: 4.5rem var(--sp-16); } }

.cta-box-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.5rem, 4vw, 2.375rem);
  font-weight: 800;
  margin-bottom: var(--sp-4);
  letter-spacing: -.03em;
  line-height: 1.15;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: clamp(.9375rem, 1.8vw, 1.0625rem);
  margin-bottom: var(--sp-8);
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  justify-content: center;
}

.cta-actions .btn { width: 100%; }

@media (min-width: 500px) {
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .cta-actions .btn { width: auto; }
}

/* ══════════════════════════════════════════════════════════════════════════
   16. GENIAL INTEGRATION
   ══════════════════════════════════════════════════════════════════════════ */

.genial-box {
  background: linear-gradient(165deg, rgba(15,23,42,.70) 0%, rgba(10,18,40,.45) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}

@media (min-width: 768px)  { .genial-box { padding: var(--sp-8); gap: var(--sp-8); } }
@media (min-width: 1024px) { .genial-box { grid-template-columns: 1fr 1fr; padding: var(--sp-12); gap: var(--sp-12); } }

.genial-title {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: var(--sp-5);
  letter-spacing: -.025em;
  line-height: 1.15;
}

.genial-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.genial-check-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-top: var(--sp-5);
}

.genial-check-list li {
  display: flex;
  align-items: center;
  gap: .625rem;
  color: var(--text-secondary);
  font-size: .9375rem;
}

.genial-check-list svg { color: var(--brand); flex-shrink: 0; }

/* Genial flow card */
.genial-flow {
  background: rgba(2,6,23,.50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
}

@media (min-width: 768px) { .genial-flow { padding: var(--sp-6); } }

.genial-flow-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.genial-flow-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px var(--brand-glow);
  flex-shrink: 0;
}

.genial-flow-title {
  font-weight: 700;
  font-size: .9375rem;
  color: var(--text-primary);
}

@media (min-width: 768px) { .genial-flow-title { font-size: 1rem; } }

.genial-flow-subtitle {
  font-size: .75rem;
  color: var(--text-muted);
}

.genial-flow-status {
  margin-left: auto;
  padding: .25rem .625rem;
  background: var(--brand-subtle);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-full);
  font-size: .5625rem;
  font-weight: 700;
  color: var(--brand-light);
  display: flex;
  align-items: center;
  gap: .375rem;
  letter-spacing: .06em;
  flex-shrink: 0;
}

.genial-flow-items {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .6875rem .875rem;
  background: rgba(2,6,23,.40);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
}

.flow-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.flow-item-icon--positive { background: var(--positive-subtle); color: var(--positive-light); }
.flow-item-icon--brand    { background: var(--brand-subtle);    color: var(--brand-light); }
.flow-item-icon--purple   { background: rgba(168,85,247,.12);   color: var(--purple-light); }

.flow-item-text { flex: 1; min-width: 0; }

.flow-item-title {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .0625rem;
}

.flow-item-subtitle {
  font-size: .6875rem;
  color: var(--text-muted);
}

.flow-item-badge {
  padding: .1875rem .5rem;
  border-radius: var(--r-sm);
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .06em;
  flex-shrink: 0;
}

.flow-item-badge--positive { background: var(--positive-subtle); color: var(--positive-light); }
.flow-item-badge--ok       { background: var(--positive-subtle); color: var(--positive-light); }

.flow-item-arrow {
  font-size: .875rem;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════════════════════════════════════
   17. FAQ
   ══════════════════════════════════════════════════════════════════════════ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.faq-item {
  background: linear-gradient(165deg, rgba(15,23,42,.70) 0%, rgba(10,18,40,.45) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.faq-item:hover { border-color: var(--border-default); }

.faq-item.active {
  border-color: var(--brand-border);
  box-shadow: 0 0 0 1px var(--brand-border);
}

.faq-question {
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  text-align: left;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -.01em;
  min-height: 56px;
  transition: color var(--dur) var(--ease);
}

@media (min-width: 768px) { .faq-question { padding: var(--sp-5) var(--sp-6); font-size: 1rem; } }

.faq-question:hover { color: var(--brand-light); }

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--brand-light);
  transition: transform var(--dur-slow) var(--ease);
  flex-shrink: 0;
}

.faq-item.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.faq-item.active .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .875rem;
}

@media (min-width: 768px) {
  .faq-answer-inner { padding: 0 var(--sp-6) var(--sp-5); font-size: .9375rem; }
}

.faq-contact-link {
  color: var(--brand-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-contact-link:hover { color: var(--brand); }

/* ══════════════════════════════════════════════════════════════════════════
   18. FOOTER
   ══════════════════════════════════════════════════════════════════════════ */

.footer {
  padding: var(--sp-12) 0 var(--sp-8);
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, transparent 0%, rgba(2,6,23,.80) 100%);
}

@media (min-width: 768px) { .footer { padding: var(--sp-16) 0 var(--sp-8); } }

.footer-legal {
  font-size: .75rem;
  color: var(--text-dim);
  line-height: 1.7;
  padding: var(--sp-5);
  background: rgba(10,18,40,.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-8);
}

@media (min-width: 768px) { .footer-legal { padding: var(--sp-5) var(--sp-6); font-size: .8125rem; } }

.footer-legal strong { color: var(--text-secondary); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-10); } }

.footer-brand { }

.footer-about {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.65;
  margin: var(--sp-4) 0 var(--sp-5);
  max-width: 340px;
}

.footer-logo { height: 30px; width: auto; }

.footer-col-title {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: .9375rem;
  transition: color var(--dur) var(--ease);
}

.footer-links a:hover { color: var(--brand-light); }

.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .75rem;
  color: var(--text-dim);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    font-size: .8125rem;
    padding-top: var(--sp-8);
  }
}

.footer-bottom strong { color: var(--text-secondary); }

/* ── Corporate identity card (JAX brand · CNPJ · copyright) ── */
.footer-corp {
  position: relative;
  margin: var(--sp-8) auto 0;
  max-width: 760px;
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
  background:
    radial-gradient(ellipse at top, rgba(36,168,255,.10) 0%, transparent 65%),
    linear-gradient(165deg, rgba(15,23,42,.65) 0%, rgba(10,18,40,.40) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.footer-corp::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 15%, var(--brand-border) 50%, transparent 85%);
}

.footer-corp::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(36,168,255,.08), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.footer-corp-shield {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow:
    0 4px 18px var(--brand-glow),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.footer-corp-shield svg { width: 22px; height: 22px; }

.footer-corp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding-bottom: var(--sp-6);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border-subtle);
}

.footer-corp-eyebrow {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-corp-name {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: .045em;
  color: var(--text-primary);
  line-height: 1.25;
  background: linear-gradient(135deg, #fff 30%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) { .footer-corp-name { font-size: 1.25rem; } }

.footer-corp-cnpj {
  display: inline-block;
  margin-top: .375rem;
  padding: .4375rem .875rem;
  background: rgba(36,168,255,.06);
  border: 1px solid var(--brand-border);
  border-radius: var(--r-full);
  font-family: 'Inter', monospace;
  font-size: .8125rem;
  font-variant-numeric: tabular-nums;
  color: var(--brand-light);
  font-weight: 700;
  letter-spacing: .03em;
}

.footer-corp-rights {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
  font-size: .75rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .footer-corp-rights {
    flex-direction: row;
    justify-content: center;
    gap: var(--sp-6);
    font-size: .8125rem;
  }
}

.footer-corp-copy strong {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: .02em;
}

.footer-corp-partner {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  position: relative;
}

@media (min-width: 640px) {
  .footer-corp-partner::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-dim);
    margin-right: var(--sp-3);
  }
}

.footer-corp-partner svg { color: var(--positive-light); flex-shrink: 0; }

.footer-corp-partner strong {
  color: var(--text-secondary);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════════════════
   19. REVEAL ANIMATION
   ══════════════════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════════════════
   20. SCROLLBAR · FOCUS · SELECTION
   ══════════════════════════════════════════════════════════════════════════ */

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 5px;
  border: 2px solid var(--bg-base);
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-dark); }

::selection {
  background: rgba(36,168,255,.30);
  color: var(--text-primary);
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════════════════
   21. SCROLL PROGRESS BAR
   ══════════════════════════════════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand-light) 0%, var(--brand) 50%, var(--brand-dark) 100%);
  box-shadow: 0 0 12px var(--brand-glow);
  z-index: 200;
  transition: width 80ms linear;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════════════════
   22. ANIMATED MESH BACKGROUND
   ══════════════════════════════════════════════════════════════════════════ */

.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .25;
  will-change: transform;
}

.mesh-blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: meshFloat1 18s ease-in-out infinite;
}

.mesh-blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  top: 40%; right: -150px;
  animation: meshFloat2 22s ease-in-out infinite;
  opacity: .15;
}

.mesh-blob-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--positive) 0%, transparent 70%);
  bottom: -200px; left: 30%;
  animation: meshFloat3 25s ease-in-out infinite;
  opacity: .12;
}

@keyframes meshFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(80px, 60px) scale(1.1); }
  66%      { transform: translate(-40px, 100px) scale(.95); }
}

@keyframes meshFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-100px, -80px) scale(1.15); }
}

@keyframes meshFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(120px, -60px) scale(.9); }
}

/* Subtle dot grid overlay for premium feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: -2;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ══════════════════════════════════════════════════════════════════════════
   23. CTA PULSE GLOW (high-conversion attention)
   ══════════════════════════════════════════════════════════════════════════ */

.btn-primary.btn-xl {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 2px 8px rgba(36,168,255,.30),
      0 8px 24px rgba(36,168,255,.15),
      inset 0 1px 0 rgba(255,255,255,.18);
  }
  50% {
    box-shadow:
      0 2px 8px rgba(36,168,255,.40),
      0 8px 32px rgba(36,168,255,.35),
      0 0 0 6px rgba(36,168,255,.05),
      inset 0 1px 0 rgba(255,255,255,.22);
  }
}

.btn-primary.btn-xl:hover { animation-play-state: paused; }

/* ══════════════════════════════════════════════════════════════════════════
   24. LOGO MARQUEE (infinite scrolling tech stack)
   ══════════════════════════════════════════════════════════════════════════ */

.marquee-section {
  padding: var(--sp-10) 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10,18,40,.30);
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-base) 0%, transparent 100%);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-base) 0%, transparent 100%);
}

.marquee-label {
  text-align: center;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--sp-6);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: 0 var(--sp-8);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  opacity: .65;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
}

.marquee-item:hover { opacity: 1; color: var(--brand-light); }
.marquee-item svg { color: var(--brand); flex-shrink: 0; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════════════════
   25. LIVE ACTIVITY BADGE (social proof)
   ══════════════════════════════════════════════════════════════════════════ */

.live-activity {
  position: fixed;
  top: calc(var(--header-h) + 12px);
  right: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .5rem .875rem;
  background: rgba(2,6,23,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--positive-subtle);
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: 0 8px 24px rgba(0,0,0,.30);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  pointer-events: none;
}

.live-activity.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 1024px) { .live-activity { display: flex; } }

.live-activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 8px var(--positive);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.live-activity-num {
  color: var(--positive-light);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════════════════════════════════════════
   26. CARD TILT (3D hover for feature/robot/perf cards)
   ══════════════════════════════════════════════════════════════════════════ */

.feature-card,
.robot-card,
.stat-item,
.perf-card {
  transform-style: preserve-3d;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
}

[data-tilt] {
  transition: transform 120ms var(--ease);
}

/* ══════════════════════════════════════════════════════════════════════════
   27. SECTION DIVIDER WITH GLOW
   ══════════════════════════════════════════════════════════════════════════ */

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--sp-8) auto;
  position: relative;
  max-width: 720px;
  padding: 0 1.25rem;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-border), transparent);
}

.section-divider-icon {
  margin: 0 var(--sp-4);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-subtle);
  border: 1px solid var(--brand-border);
  display: grid;
  place-items: center;
  color: var(--brand);
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(36,168,255,.20);
}

/* ══════════════════════════════════════════════════════════════════════════
   28. COMPARISON SECTION (Sem vs Com IA BOLTS)
   ══════════════════════════════════════════════════════════════════════════ */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: var(--sp-2);
    align-items: stretch;
  }
}

.comparison-card {
  background: linear-gradient(165deg, rgba(15,23,42,.70) 0%, rgba(10,18,40,.45) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .comparison-card { padding: var(--sp-8); } }

.comparison-card--bad {
  border-color: rgba(239,68,68,.18);
}

.comparison-card--bad::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--negative), transparent);
  opacity: .5;
}

.comparison-card--good {
  border-color: var(--brand-border);
  background:
    radial-gradient(ellipse at top right, rgba(36,168,255,.10) 0%, transparent 60%),
    linear-gradient(165deg, rgba(15,23,42,.80) 0%, rgba(10,18,40,.50) 100%);
  box-shadow: 0 16px 40px rgba(36,168,255,.10);
}

.comparison-card--good::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.comparison-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  padding: .375rem .75rem;
  border-radius: var(--r-full);
}

.comparison-eyebrow--bad {
  color: var(--negative-light);
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.22);
}

.comparison-eyebrow--good {
  color: var(--brand-light);
  background: var(--brand-subtle);
  border: 1px solid var(--brand-border);
}

.comparison-title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: var(--sp-5);
  letter-spacing: -.02em;
}

@media (min-width: 768px) { .comparison-title { font-size: 1.5rem; } }

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.comparison-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.comparison-icon--bad {
  background: rgba(239,68,68,.10);
  color: var(--negative-light);
}

.comparison-icon--good {
  background: var(--positive-subtle);
  color: var(--positive-light);
}

.comparison-vs {
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: .1em;
}

@media (min-width: 768px) {
  .comparison-vs {
    width: 56px;
    align-self: center;
  }
}

.comparison-vs-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════════════════════════════
   29. TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════════ */

.testimonials-section {
  padding: var(--sp-20) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,18,40,.40) 50%, transparent 100%);
}

@media (min-width: 1024px) { .testimonials-section { padding: 5.5rem 0; } }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: linear-gradient(165deg, rgba(15,23,42,.70) 0%, rgba(10,18,40,.45) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .testimonial-card { padding: var(--sp-8); } }

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-default);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }

.testimonial-quote {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}

.testimonial-quote::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 0;
  color: var(--brand);
  margin-right: 4px;
  vertical-align: -8px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-subtle);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid var(--border-default);
}

.testimonial-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1px;
}

.testimonial-role {
  font-size: .75rem;
  color: var(--text-muted);
}

.testimonial-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .6875rem;
  color: var(--positive-light);
  font-weight: 600;
}

.testimonial-verified svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════════════════════════════
   30b. LIVE NOTIFICATIONS (toast — pessoas contratando)
   ══════════════════════════════════════════════════════════════════════════ */

.live-notifs {
  position: fixed;
  z-index: 92;
  pointer-events: none;
  /* Mobile: barra inferior, com clearance pequeno (sticky CTA ainda nao apareceu) */
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 12px;
  right: 12px;
  width: auto;
  transition: bottom 320ms var(--ease);
}

/* Quando o sticky mobile CTA esta visivel, sobe a notificacao acima dele */
body.has-sticky-cta .live-notifs {
  bottom: calc(88px + env(safe-area-inset-bottom));
}

@media (min-width: 1024px) {
  .live-notifs {
    /* Desktop: canto inferior esquerdo, largura fixa */
    bottom: 20px;
    left: 20px;
    right: auto;
    width: 340px;
    max-width: calc(100vw - 32px);
  }
}

.live-notif {
  background: rgba(2,6,23,.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow:
    0 16px 40px rgba(0,0,0,.45),
    0 0 0 1px rgba(36,168,255,.10) inset;
  pointer-events: auto;
  /* Mobile default: slide de baixo pra cima */
  transform: translateY(140%) scale(.96);
  opacity: 0;
  transition:
    transform 520ms var(--ease-spring),
    opacity 380ms var(--ease);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .live-notif { padding: 12px 14px; gap: 12px; } }

@media (min-width: 1024px) {
  /* Desktop: slide da esquerda */
  .live-notif { transform: translateX(-120%) scale(.95); }
}

.live-notif::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--positive), transparent);
  opacity: .8;
}

.live-notif.show {
  /* Mobile default */
  transform: translateY(0) scale(1);
  opacity: 1;
}

@media (min-width: 1024px) {
  .live-notif.show { transform: translateX(0) scale(1); }
}

.live-notif-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  position: relative;
  border: 2px solid rgba(255,255,255,.10);
  letter-spacing: .02em;
}

.live-notif-avatar::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--positive);
  border: 2px solid var(--bg-base);
  box-shadow: 0 0 8px var(--positive);
}

.live-notif-content {
  flex: 1;
  min-width: 0;
}

.live-notif-text {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 2px;
}

.live-notif-text strong {
  font-weight: 700;
  color: var(--brand-light);
}

.live-notif-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.live-notif-time {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--positive-light);
  font-weight: 600;
}

.live-notif-time::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 6px var(--positive);
  animation: pulse 2s ease-in-out infinite;
}

.live-notif-city { color: var(--text-dim); }
.live-notif-city::before { content: '·'; margin-right: 6px; color: var(--text-dim); }

/* ══════════════════════════════════════════════════════════════════════════
   30c. RECENT ACTIVATIONS BANNER (above robots showcase)
   ══════════════════════════════════════════════════════════════════════════ */

.recent-activations {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem .875rem .5rem .5rem;
  background: var(--positive-subtle);
  border: 1px solid rgba(16,185,129,.22);
  border-radius: var(--r-full);
  margin-top: var(--sp-4);
  font-size: .8125rem;
  color: var(--text-secondary);
}

.recent-activations-stack {
  display: flex;
  align-items: center;
}

.recent-activations-stack .ra-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 10px;
  border: 2px solid var(--bg-base);
  margin-right: -8px;
  letter-spacing: .02em;
}

.recent-activations-stack .ra-avatar:nth-child(2) { background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%); }
.recent-activations-stack .ra-avatar:nth-child(3) { background: linear-gradient(135deg, var(--positive) 0%, var(--positive-dark) 100%); }
.recent-activations-stack .ra-avatar:nth-child(4) { background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%); }

.recent-activations-text strong {
  color: var(--positive-light);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════════════════════════════════════════
   31. STICKY MOBILE CTA
   ══════════════════════════════════════════════════════════════════════════ */

.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(2,6,23,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-default);
  display: flex;
  gap: .5rem;
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease);
  box-shadow: 0 -4px 20px rgba(0,0,0,.30);
}

.sticky-mobile-cta.show { transform: translateY(0); }

.sticky-mobile-cta .btn { flex: 1; min-height: 48px; font-size: .9375rem; }

@media (min-width: 1024px) { .sticky-mobile-cta { display: none; } }

/* Add bottom padding when sticky CTA is visible to prevent content overlap */
body.has-sticky-cta { padding-bottom: 76px; }

@media (min-width: 1024px) { body.has-sticky-cta { padding-bottom: 0; } }

/* ══════════════════════════════════════════════════════════════════════════
   32. MAGNETIC BUTTON EFFECT (subtle cursor follow)
   ══════════════════════════════════════════════════════════════════════════ */

.btn-xl {
  transition: transform 200ms cubic-bezier(.16,1,.3,1), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* ══════════════════════════════════════════════════════════════════════════
   33. ENHANCED HERO BADGE (glow + breathing)
   ══════════════════════════════════════════════════════════════════════════ */

.hero-badge {
  position: relative;
  overflow: hidden;
}

.hero-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(36,168,255,.20) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: badgeShine 3.5s ease-in-out infinite;
}

@keyframes badgeShine {
  0%, 60%, 100% { transform: translateX(-100%); }
  30%           { transform: translateX(100%); }
}

/* ══════════════════════════════════════════════════════════════════════════
   34. NUMBER COUNTER ENHANCED (with glow)
   ══════════════════════════════════════════════════════════════════════════ */

.stat-value {
  filter: drop-shadow(0 0 12px rgba(36,168,255,.20));
}

/* ══════════════════════════════════════════════════════════════════════════
   35. PERFORMANCE CHART REVEAL ANIMATION
   ══════════════════════════════════════════════════════════════════════════ */

.perf-chart-wrap {
  position: relative;
}

.perf-chart-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: .5;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   36. CTA SECTION ENHANCED
   ══════════════════════════════════════════════════════════════════════════ */

.cta-box {
  position: relative;
}

.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-2xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--brand-border), transparent 40%, transparent 60%, var(--brand-border));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════════════════
   37. URGENCY / SOCIAL PROOF NUMBERS BAR
   ══════════════════════════════════════════════════════════════════════════ */

.proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-subtle);
}

.proof-stat {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--text-muted);
}

.proof-stat strong {
  color: var(--brand-light);
  font-weight: 800;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.proof-stat-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-subtle);
  border: 1px solid var(--brand-border);
  color: var(--brand);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   38. RATING / STARS DISPLAY
   ══════════════════════════════════════════════════════════════════════════ */

.rating-display {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.rating-stars { display: flex; gap: 2px; color: #fbbf24; }
.rating-stars svg { width: 16px; height: 16px; fill: currentColor; }

.rating-value {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.rating-count {
  font-size: .8125rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════════════════
   39. CHART SCROLL REVEAL (canvas fades in)
   ══════════════════════════════════════════════════════════════════════════ */

.robot-chart, .perf-chart-canvas {
  opacity: 0;
  transition: opacity .8s var(--ease);
}

.robot-chart.drawn, .perf-chart-canvas.drawn { opacity: 1; }

/* ══════════════════════════════════════════════════════════════════════════
   40. GLOW BORDER ON CARDS (premium hover)
   ══════════════════════════════════════════════════════════════════════════ */

.feature-card,
.robot-card,
.perf-card,
.testimonial-card,
.faq-item {
  position: relative;
  isolation: isolate;
}

/* ══════════════════════════════════════════════════════════════════════════
   41. RESPONSIVE TWEAKS (extra polish)
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  .hero { padding-top: calc(var(--header-h) + 1.5rem); }
  .live-activity { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   42. A11Y
   ══════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
