/* ═══════════════════════════════════════════
   NeoBase — Home CSS (dark, 2026)
   ═══════════════════════════════════════════ */

:root {
  --bg:      #080b18;
  --bg2:     #0d1124;
  --surface: #111528;
  --surface2:#181d35;
  --card:    #1a2040;
  --border:  rgba(255,255,255,.08);
  --border2: rgba(255,255,255,.13);
  --ink:     #e8eaf6;
  --muted:   #8b91b4;
  --dim:     #5a6080;
  --blue:    #4f7dff;
  --blue2:   #7c5cfc;
  --green:   #2dd4a7;
  --orange:  #ff8c42;
  --yellow:  #f59e0b;
  --teal:    #06b6d4;
  --sh-sm:   0 4px 16px rgba(0,0,0,.3);
  --sh-md:   0 12px 32px rgba(0,0,0,.4);
  --sh-lg:   0 24px 56px rgba(0,0,0,.5);
  --r:       16px;
  --r-lg:    24px;
  --r-xl:    32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1180px, 92vw); margin: 0 auto; position: relative; z-index: 1; }

/* ── Noise ── */
.noise {
  pointer-events: none; position: fixed; inset: 0; z-index: 0;
  opacity: .04;
  background-image: radial-gradient(rgba(255,255,255,.18) .5px, transparent .6px);
  background-size: 3px 3px;
}

/* ── Aurora ── */
.aurora { pointer-events: none; position: fixed; inset: 0; z-index: 0; overflow: hidden; }
.aurora-band {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .15;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}
.a1 { width: 700px; height: 400px; background: radial-gradient(ellipse, #4f7dff, #7c5cfc, transparent 70%); top: -100px; left: -100px; animation-delay: 0s; }
.a2 { width: 600px; height: 350px; background: radial-gradient(ellipse, #2dd4a7, #06b6d4, transparent 70%); top: 20%; right: -120px; animation-delay: -6s; animation-duration: 22s; }
.a3 { width: 500px; height: 300px; background: radial-gradient(ellipse, #f472b6, #ff8c42, transparent 70%); bottom: 10%; left: 30%; animation-delay: -12s; animation-duration: 26s; }

@keyframes auroraDrift {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px,30px) scale(1.08); }
  66%  { transform: translate(-20px,50px) scale(.95); }
  100% { transform: translate(60px,-20px) scale(1.05); }
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(79,125,255,.5); }
  100% { box-shadow: 0 0 0 18px rgba(79,125,255,0); }
}
@keyframes ripple {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: .6; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}
@keyframes cardEntrance { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes cardSlide { from { transform: translateX(-10px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes barGrow { from { height: 0; } }
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(79,125,255,.35); }
  50%       { box-shadow: 0 6px 28px rgba(79,125,255,.55), 0 0 40px rgba(79,125,255,.2); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
header { position: sticky; top: 12px; z-index: 100; }

.topbar {
  margin-top: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(17,21,40,.88);
  border: 1px solid var(--border2);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: var(--sh-sm), 0 0 0 1px rgba(79,125,255,.06);
  padding: 10px 18px;
}

.brand {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -.03em;
  transition: transform .2s;
}
.brand:hover { transform: translateY(-1px); }
.brand-sm { font-size: 18px; }

.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(79,125,255,.4);
  transition: transform .25s, box-shadow .25s;
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.08); box-shadow: 0 6px 24px rgba(79,125,255,.55); }
.brand-mark-sm { width: 28px; height: 28px; font-size: 14px; border-radius: 8px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; color: var(--muted);
  font-weight: 600; font-size: 14px;
  padding: 7px 13px; border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ink); background: rgba(255,255,255,.07); }

.auth { display: flex; gap: 8px; align-items: center; }

.lang-switch {
  position: relative;
  border: 1px solid var(--border2);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
}
.lang-current {
  border: 0; background: transparent; border-radius: 10px;
  padding: 8px 13px; font-weight: 700; font-size: 13px;
  color: var(--muted); cursor: pointer; font-family: inherit;
  transition: color .2s;
}
.lang-current:hover { color: var(--ink); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 84px; border: 1px solid var(--border2); border-radius: 12px;
  background: var(--surface2); box-shadow: var(--sh-md); padding: 5px;
  opacity: 0; transform: translateY(-6px);
  pointer-events: none; transition: opacity .2s, transform .2s; z-index: 50;
}
.lang-switch.open .lang-menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-option {
  width: 100%; border: 0; background: transparent;
  color: var(--muted); font-weight: 700; font-size: 13px;
  padding: 7px 10px; border-radius: 8px;
  text-align: left; cursor: pointer; transition: background .15s, color .15s;
  font-family: inherit;
}
.lang-option:hover, .lang-option.active { background: rgba(79,125,255,.15); color: var(--blue); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: 0; border-radius: 999px;
  padding: 9px 20px; font-weight: 700; font-size: 14px;
  cursor: pointer; text-decoration: none; font-family: inherit;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-xl { padding: 13px 28px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(120deg, var(--blue), var(--blue2));
  color: #fff; box-shadow: 0 6px 20px rgba(79,125,255,.35);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(79,125,255,.5); }

.btn-ghost {
  background: rgba(255,255,255,.06);
  border: 1.5px solid var(--border2); color: var(--ink);
}
.btn-ghost:hover { background: rgba(255,255,255,.11); }

.btn-outline-hero {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15); color: var(--ink);
  backdrop-filter: blur(6px);
}
.btn-outline-hero:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }

.btn-cta-primary {
  background: #fff; color: #0d1124;
  box-shadow: 0 6px 24px rgba(0,0,0,.2); font-weight: 800;
}
.btn-cta-primary:hover { box-shadow: 0 10px 32px rgba(0,0,0,.3); }

.btn-cta-ghost {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2); color: #fff;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.15); }

.glow-btn { animation: glowPulse 3s ease-in-out infinite; }

.play-ring {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.15); font-size: 12px;
}

/* Mobile nav */
.mob-menu-btn {
  display: none;
  background: rgba(255,255,255,.07); border: 1px solid var(--border2);
  border-radius: 10px; width: 38px; height: 38px;
  align-items: center; justify-content: center;
  color: var(--ink); font-size: 20px; cursor: pointer;
}
.mob-nav {
  display: none; flex-direction: column; gap: 4px;
  background: rgba(17,21,40,.97);
  border: 1px solid var(--border2);
  border-radius: 16px; padding: 16px; margin-top: 8px;
  backdrop-filter: blur(12px);
}
.mob-nav.open { display: flex; }
.mob-nav a {
  padding: 10px 14px; border-radius: 10px; text-decoration: none;
  color: var(--muted); font-weight: 600; font-size: 15px;
  transition: color .2s, background .2s;
}
.mob-nav a:hover { color: var(--ink); background: rgba(255,255,255,.07); }
.mob-nav-btns {
  display: flex; gap: 8px;
  padding-top: 10px; border-top: 1px solid var(--border); margin-top: 6px;
}
.mob-nav-btns .btn { flex: 1; justify-content: center; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero { padding-top: 72px; padding-bottom: 40px; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero-left { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(79,125,255,.1);
  border: 1px solid rgba(79,125,255,.25);
  border-radius: 999px; padding: 7px 14px;
  font-size: 12px; font-weight: 700; color: var(--blue);
  margin-bottom: 20px; width: fit-content;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  animation: pulseRing 2s ease-out infinite;
}
.badge-new-tag {
  background: var(--blue); color: #fff; border-radius: 999px;
  padding: 1px 8px; font-size: 10px; font-weight: 800;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08; letter-spacing: -.04em;
  color: var(--ink); margin-bottom: 20px;
}
.grad-text {
  background: linear-gradient(120deg, var(--blue), var(--blue2), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-copy {
  color: var(--muted); font-size: 17px; line-height: 1.7;
  margin-bottom: 28px; max-width: 46ch;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-trust { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ht-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--muted); font-weight: 600;
}
.ht-item i { color: var(--green); font-size: 13px; }
.ht-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--dim); }

/* Hero right */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }

.float-card {
  position: absolute;
  background: rgba(26,32,64,.92);
  border: 1px solid var(--border2);
  border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(10px); box-shadow: var(--sh-md);
  z-index: 10; min-width: 165px;
  animation: floatY 6s ease-in-out infinite;
}
.float-card.fc-1 { top: 14%; left: -12%; animation-delay: 0s;   animation-duration: 5.5s; }
.float-card.fc-2 { bottom: 18%; left: -10%; animation-delay: -2s; animation-duration: 7s; }
.float-card.fc-3 { top: 8%;  right: -8%;  animation-delay: -1s; animation-duration: 6s; }
.float-card.fc-4 { bottom: 10%; right: -5%; animation-delay: -3s; animation-duration: 5s; }
.fc-icon {
  width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.fc-title { font-size: 12px; font-weight: 700; color: var(--ink); }
.fc-sub   { font-size: 10.5px; color: var(--muted); }
.fc-dot   { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-left: auto; }
.fc-dot.green { background: var(--green); animation: blink 2s ease-in-out infinite; }
.fc-dot.blue  { background: var(--blue);  animation: blink 2.5s ease-in-out infinite; }

/* Dashboard mock */
.hero-dashboard {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg), 0 0 60px rgba(79,125,255,.12);
  overflow: hidden; width: 100%; max-width: 500px;
}
.db-topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.db-dots { display: flex; gap: 5px; }
.db-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.15); }
.db-dots span:nth-child(1) { background: #ff6060; }
.db-dots span:nth-child(2) { background: #ffb840; }
.db-dots span:nth-child(3) { background: #40c040; }
.db-title-bar { flex: 1; text-align: center; font-size: 11px; font-weight: 600; color: var(--dim); }
.db-live { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--green); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 1.5s ease-in-out infinite; }
.db-body { display: flex; min-height: 260px; }
.db-sidebar {
  width: 88px; flex-shrink: 0;
  background: rgba(0,0,0,.2); border-right: 1px solid var(--border);
  padding: 12px 6px; display: flex; flex-direction: column; gap: 2px;
}
.db-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 7px 6px; border-radius: 10px;
  font-size: 10px; font-weight: 600; color: var(--dim);
  cursor: default; transition: all .15s;
}
.db-nav-item.active { background: rgba(79,125,255,.15); color: var(--blue); }
.db-nav-item i { font-size: 15px; }
.db-content { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.db-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.db-stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; }
.db-stat-card.green  { border-color: rgba(45,212,167,.2); background: rgba(45,212,167,.07); }
.db-stat-card.blue   { border-color: rgba(79,125,255,.2); background: rgba(79,125,255,.07); }
.db-stat-card.purple { border-color: rgba(124,92,252,.2); background: rgba(124,92,252,.07); }
.db-stat-val { font-family: "Space Grotesk", sans-serif; font-size: 16px; font-weight: 700; line-height: 1; color: var(--ink); }
.db-stat-lbl { font-size: 9px; color: var(--muted); margin-top: 3px; }
.db-pipeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; flex: 1; }
.db-col { display: flex; flex-direction: column; gap: 5px; }
.db-col-head {
  display: flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700;
  padding: 5px 8px; border-radius: 7px;
}
.new-col     { background: rgba(79,125,255,.12); color: #93c5fd; }
.contact-col { background: rgba(245,158,11,.12); color: #fcd34d; }
.done-col    { background: rgba(45,212,167,.12); color: #6ee7b7; }
.db-cnt { margin-left: auto; background: rgba(255,255,255,.1); border-radius: 99px; padding: 1px 5px; font-size: 9px; }
.db-card { background: var(--card); border: 1px solid var(--border); border-radius: 7px; padding: 7px 9px; }
.db-card-name { font-size: 10px; font-weight: 700; color: var(--ink); }
.db-card-sub  { font-size: 9px; color: var(--muted); margin-top: 2px; }
.active-card { border-color: rgba(79,125,255,.3); background: rgba(79,125,255,.08); }
.done-card   { border-color: rgba(45,212,167,.2); background: rgba(45,212,167,.06); }
.anim-card   { animation: cardSlide 1.2s ease forwards; animation-delay: .5s; opacity: 0; }

/* ═══════════════════════════════════
   TRUST BAR
═══════════════════════════════════ */
.trust-bar-wrap { margin-top: 56px; }
.trust-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: rgba(17,21,40,.7);
  border: 1px solid var(--border2); border-radius: var(--r);
  padding: 14px 24px; backdrop-filter: blur(8px);
}
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.trust-item i { color: var(--blue); }
.trust-sep { width: 1px; height: 18px; background: var(--border2); }

/* ═══════════════════════════════════
   SECTIONS COMMON
═══════════════════════════════════ */
.section { margin-top: 96px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  background: rgba(79,125,255,.12); color: var(--blue);
  border: 1px solid rgba(79,125,255,.2);
  border-radius: 999px; padding: 5px 14px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.section-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1; letter-spacing: -.03em;
  color: var(--ink); margin-bottom: 12px;
}
.section-head p { color: var(--muted); max-width: 48ch; margin-inline: auto; line-height: 1.65; font-size: 16px; }

/* ═══════════════════════════════════
   BENTO FEATURES
═══════════════════════════════════ */
.bento { display: grid; grid-template-columns: repeat(12,1fr); gap: 14px; }
.bento .tile:nth-child(1) { grid-column: span 4; }
.bento .tile:nth-child(2) { grid-column: span 4; }
.bento .tile:nth-child(3) { grid-column: span 4; }
.bento .tile:nth-child(4) { grid-column: span 7; }
.bento .tile:nth-child(5) { grid-column: span 3; }
.bento .tile:nth-child(6) { grid-column: span 2; }

.tile {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tile:hover { transform: translateY(-5px); }
.t-dark  { background: var(--surface2); }
.t-wide  { grid-column: span 7 !important; }
.t-blue:hover   { border-color: rgba(79,125,255,.35);  box-shadow: 0 12px 40px rgba(79,125,255,.15); }
.t-purple:hover { border-color: rgba(124,92,252,.35); box-shadow: 0 12px 40px rgba(124,92,252,.15); }
.t-green:hover  { border-color: rgba(45,212,167,.35);  box-shadow: 0 12px 40px rgba(45,212,167,.15); }
.t-orange:hover { border-color: rgba(255,140,66,.35);  box-shadow: 0 12px 40px rgba(255,140,66,.15); }
.t-teal:hover   { border-color: rgba(6,182,212,.35);   box-shadow: 0 12px 40px rgba(6,182,212,.15); }

.tile-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  transition: transform .25s;
}
.tile:hover .tile-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.t-blue   .tile-icon-wrap { background: rgba(79,125,255,.12);  color: var(--blue); }
.t-purple .tile-icon-wrap { background: rgba(124,92,252,.12); color: #a78bfa; }
.t-green  .tile-icon-wrap { background: rgba(45,212,167,.12);  color: var(--green); }
.t-orange .tile-icon-wrap { background: rgba(255,140,66,.12);  color: var(--orange); }
.t-teal   .tile-icon-wrap { background: rgba(6,182,212,.12);   color: var(--teal); }
.t-dark   .tile-icon-wrap { background: rgba(79,125,255,.15);  color: var(--blue); }
.tile h3 { font-size: 18px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; color: var(--ink); }
.tile p  { color: var(--muted); line-height: 1.6; font-size: 14px; }

.tile-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(79,125,255,.15); color: var(--blue);
  border: 1px solid rgba(79,125,255,.2);
  border-radius: 999px; padding: 3px 10px;
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
}
.tile-platforms { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.tp-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; border: 1px solid var(--border2);
  background: var(--card); transition: transform .2s;
}
.tp-icon:hover { transform: translateY(-2px); }
.tp-icon.tg { background: rgba(41,182,246,.12);  color: #29b6f6; border-color: rgba(41,182,246,.2); }
.tp-icon.fb { background: rgba(66,103,178,.12);  color: #6a9ef0; border-color: rgba(66,103,178,.2); }
.tp-icon.ig { background: rgba(225,48,108,.12);  color: #e1306c; border-color: rgba(225,48,108,.2); }
.tp-icon.gg { background: rgba(234,67,53,.12);   color: #ea4335; border-color: rgba(234,67,53,.2); }
.tp-icon.yt { background: rgba(255,0,0,.10);     color: #ff4444; border-color: rgba(255,0,0,.15); }

.tile-glow {
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; opacity: 0; transition: opacity .3s;
}
.tile:hover .tile-glow { opacity: 1; }
.t-blue   .tile-glow { background: radial-gradient(circle at 0% 100%, rgba(79,125,255,.12), transparent 60%); }
.t-purple .tile-glow { background: radial-gradient(circle at 100% 100%, rgba(124,92,252,.12), transparent 60%); }
.t-green  .tile-glow { background: radial-gradient(circle at 0% 100%, rgba(45,212,167,.10), transparent 60%); }
.t-orange .tile-glow { background: radial-gradient(circle at 100% 0%, rgba(255,140,66,.10), transparent 60%); }
.t-teal   .tile-glow { background: radial-gradient(circle at 0% 0%, rgba(6,182,212,.10), transparent 60%); }

/* ═══════════════════════════════════
   STATS BAND
═══════════════════════════════════ */
.stats-section { margin-top: 72px; }
.stats-band {
  background: linear-gradient(135deg, var(--surface2), var(--card));
  border: 1px solid var(--border2); border-radius: var(--r-lg);
  padding: 32px;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}
.stat { text-align: center; padding: 16px 24px; }
.stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px; font-weight: 800;
  display: block; margin-bottom: 6px;
  background: linear-gradient(120deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-variant-numeric: tabular-nums;
}
.stat span { color: var(--muted); font-size: 13px; }
.stat-div { width: 1px; height: 56px; background: var(--border2); }

/* ═══════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════ */
.video-wrap {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 32px; align-items: start;
}
.video-player {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16/9; background: var(--surface2);
  border: 1px solid var(--border2); cursor: pointer;
  box-shadow: var(--sh-lg), 0 0 60px rgba(79,125,255,.1);
}
.video-player:hover .play-btn { transform: translate(-50%,-50%) scale(1.08); box-shadow: 0 10px 40px rgba(79,125,255,.6); }

.video-bg-preview { position: absolute; inset: 0; background: var(--bg2); padding: 12px; overflow: hidden; }
.vbp-header {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; background: var(--surface2);
  border-radius: 8px; margin-bottom: 10px;
}
.vbp-dots { display: flex; gap: 4px; }
.vbp-dots span { width: 7px; height: 7px; border-radius: 50%; }
.vbp-dots span:nth-child(1) { background: #ff6060; }
.vbp-dots span:nth-child(2) { background: #ffb840; }
.vbp-dots span:nth-child(3) { background: #40c040; }
.vbp-body { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.vbp-col { display: flex; flex-direction: column; gap: 6px; }
.vbp-h { padding: 5px 8px; border-radius: 6px; font-size: 10px; font-weight: 700; }
.vbp-h.new     { background: rgba(79,125,255,.15); color: #93c5fd; }
.vbp-h.contact { background: rgba(245,158,11,.15); color: #fcd34d; }
.vbp-h.done    { background: rgba(45,212,167,.15); color: #6ee7b7; }
.vbp-card {
  height: 36px; background: var(--card);
  border: 1px solid var(--border); border-radius: 6px;
  animation: cardEntrance .5s ease both;
}
.vbp-card:nth-child(2) { animation-delay: .1s; }
.vbp-card:nth-child(3) { animation-delay: .2s; }
.vbp-card:nth-child(4) { animation-delay: .3s; }
.vbp-card.done { background: rgba(45,212,167,.08); border-color: rgba(45,212,167,.15); }

.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px;
}
.video-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,11,24,.6), rgba(13,17,36,.4));
  backdrop-filter: blur(2px);
}
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff; font-size: 28px;
  border: 0; cursor: pointer;
  box-shadow: 0 8px 32px rgba(79,125,255,.5);
  transition: transform .25s, box-shadow .25s;
  z-index: 2;
}
.play-ripple {
  position: absolute; top: 50%; left: 50%;
  width: 100%; height: 100%;
  border-radius: 50%; background: rgba(79,125,255,.35);
  animation: ripple 2.5s ease-out infinite;
}
.video-label {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: rgba(17,21,40,.85);
  border: 1px solid var(--border2); border-radius: 999px;
  padding: 7px 16px; font-size: 13px; font-weight: 600;
  color: var(--muted); display: flex; align-items: center; gap: 7px;
  backdrop-filter: blur(8px); white-space: nowrap; z-index: 2;
}
.video-features { display: flex; flex-direction: column; gap: 12px; padding: 4px 0; }
.vf-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.vf-item:hover { border-color: rgba(79,125,255,.2); transform: translateX(4px); }
.vf-num { font-family: "Space Grotesk", sans-serif; font-size: 20px; font-weight: 800; color: var(--blue); line-height: 1; min-width: 28px; }
.vf-item strong { font-size: 13px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 2px; }
.vf-item p { font-size: 11.5px; color: var(--muted); margin: 0; }

/* ═══════════════════════════════════
   SPOTLIGHT SECTIONS
═══════════════════════════════════ */
.spotlight-section { background: rgba(17,21,40,.5); padding: 80px 0; margin-top: 96px; }
.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.left-img  .spot-visual { order: -1; }
.right-img .spot-visual { order: 1; }

.spot-text { display: flex; flex-direction: column; }
.spot-text .section-eyebrow { text-align: left; margin-bottom: 12px; }
.spot-text h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.1; letter-spacing: -.03em;
  color: var(--ink); margin-bottom: 14px;
}
.spot-text p { color: var(--muted); line-height: 1.7; font-size: 15px; margin-bottom: 22px; }
.spot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.spot-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); font-weight: 600; }
.spot-list li i { color: var(--green); font-size: 16px; flex-shrink: 0; }

.spot-card-wrap { position: relative; }
.spot-pipeline-mock {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg), 0 0 50px rgba(79,125,255,.08);
}
.spm-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.spm-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.spm-count { font-size: 12px; color: var(--muted); background: var(--card); border-radius: 99px; padding: 2px 10px; }
.spm-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding: 14px; }
.spm-col { display: flex; flex-direction: column; gap: 7px; }
.spm-col-title { font-size: 11px; font-weight: 700; padding: 5px 8px; border-radius: 7px; margin-bottom: 2px; }
.spm-col-title.new     { background: rgba(79,125,255,.12); color: #93c5fd; }
.spm-col-title.contact { background: rgba(245,158,11,.12); color: #fcd34d; }
.spm-col-title.done    { background: rgba(45,212,167,.12); color: #6ee7b7; }
.spm-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 11px;
  animation: cardEntrance .5s ease both;
  animation-delay: var(--d, 0s);
}
.spm-card.hot { border-color: rgba(245,158,11,.25); background: rgba(245,158,11,.07); }
.spm-card.won { border-color: rgba(45,212,167,.2);  background: rgba(45,212,167,.06); }
.smc-name { font-size: 12px; font-weight: 700; color: var(--ink); }
.smc-src  { font-size: 10px; color: var(--muted); margin-top: 3px; display: flex; align-items: center; gap: 4px; }

.spot-notif {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: rgba(26,32,64,.95); border: 1px solid var(--border2);
  border-radius: 999px; padding: 7px 14px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  box-shadow: var(--sh-md); white-space: nowrap;
  animation: floatY 5s ease-in-out infinite;
}
.sn1 { bottom: -16px; right: -10%; }
.spot-notif i { color: var(--blue); }

/* Analytics mock */
.analytics-mock {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r-lg); padding: 22px;
  box-shadow: var(--sh-lg), 0 0 40px rgba(79,125,255,.07);
}
.am-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.am-title  { font-size: 13px; font-weight: 700; color: var(--ink); }
.am-period { font-size: 11px; color: var(--muted); background: var(--card); border-radius: 6px; padding: 3px 10px; }
.am-chart { display: flex; align-items: flex-end; gap: 6px; height: 110px; margin-bottom: 20px; }
.am-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 5px; height: 100%; }
.am-bar {
  width: 100%; height: var(--h); background: var(--c, var(--blue));
  border-radius: 4px 4px 0 0; animation: barGrow .8s ease both;
}
.am-bar-wrap span { font-size: 9px; color: var(--muted); }
.am-bottom { display: flex; gap: 16px; align-items: center; }
.am-donut { position: relative; width: 80px; flex-shrink: 0; }
.am-donut svg { width: 80px; height: 80px; transform: rotate(-90deg); }
.am-donut circle:first-child { stroke: rgba(255,255,255,.06); }
.am-donut-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  text-align: center; font-size: 13px; font-weight: 800;
  color: var(--ink); line-height: 1.2;
}
.am-donut-center small { font-size: 9px; color: var(--muted); font-weight: 500; }
.am-sources { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.am-src { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--muted); }
.am-src span { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.am-src strong { margin-left: auto; color: var(--ink); font-size: 12px; }

/* ═══════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════ */
.how-timeline {
  position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.how-line {
  position: absolute;
  top: 40px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: .3; z-index: 0;
}
.how-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px;
  transition-delay: var(--delay, 0s);
  position: relative; z-index: 1;
}
.how-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px; font-weight: 800;
  background: var(--surface2); border: 2px solid var(--border2);
  color: var(--blue); margin-bottom: 20px;
  position: relative; z-index: 2;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.how-step:hover .how-step-num {
  border-color: var(--blue); background: rgba(79,125,255,.15);
  box-shadow: 0 0 20px rgba(79,125,255,.3);
}
.how-step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 16px; width: 100%;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.how-step:hover .how-step-card { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--sh-md); }
.hsc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin: 0 auto 14px;
}
.hsc-icon.blue   { background: rgba(79,125,255,.15);  color: var(--blue); }
.hsc-icon.purple { background: rgba(124,92,252,.15); color: #a78bfa; }
.hsc-icon.green  { background: rgba(45,212,167,.15);  color: var(--green); }
.hsc-icon.orange { background: rgba(255,140,66,.15);  color: var(--orange); }
.how-step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.how-step-card p  { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.hsc-tags { display: flex; gap: 5px; justify-content: center; flex-wrap: wrap; }
.hsc-tags span {
  display: flex; align-items: center; gap: 4px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 999px; padding: 3px 9px;
  font-size: 10px; font-weight: 600; color: var(--muted);
}

/* ═══════════════════════════════════
   INTEGRATIONS
═══════════════════════════════════ */
.integrations-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 14px; margin-bottom: 28px;
}
.int-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 18px;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  transition-delay: var(--delay, 0s);
}
.int-item:hover { transform: translateY(-5px); border-color: rgba(79,125,255,.25); box-shadow: var(--sh-md), 0 0 30px rgba(79,125,255,.08); }
.int-logo {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 2px;
}
.int-logo.tg-bg     { background: rgba(41,182,246,.12);  color: #29b6f6; }
.int-logo.fb-bg     { background: rgba(66,103,178,.12);  color: #6a9ef0; }
.int-logo.ig-bg     { background: rgba(225,48,108,.12);  color: #e1306c; }
.int-logo.gg-bg     { background: rgba(234,67,53,.10);   color: #ea4335; }
.int-logo.sheets-bg { background: rgba(52,168,83,.12);   color: #34a853; }
.int-logo.excel-bg  { background: rgba(33,115,70,.12);   color: #217346; }
.int-logo.bitrix-bg { background: rgba(79,125,255,.12);  color: var(--blue); }
.int-logo.web-bg    { background: rgba(6,182,212,.12);   color: var(--teal); }
.int-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.int-desc { font-size: 12px; color: var(--muted); }
.int-tag {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 999px; padding: 3px 10px;
  font-size: 10px; font-weight: 700; color: var(--muted); margin-top: 2px;
}
.int-tag.connected { background: rgba(45,212,167,.1); border-color: rgba(45,212,167,.2); color: var(--green); }
.int-cta {
  text-align: center; color: var(--muted); font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px;
}
.int-cta i { color: var(--blue); }
.int-cta a { color: var(--blue); text-decoration: none; font-weight: 600; }
.int-cta a:hover { text-decoration: underline; }

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--border2); }
.testi-card.big { padding: 36px; }
.testi-card.big p { font-size: 16px; line-height: 1.75; }
.testi-quote {
  font-family: "Space Grotesk", sans-serif;
  font-size: 80px; font-weight: 900; line-height: .7;
  color: rgba(79,125,255,.2); margin-bottom: 12px; user-select: none;
}
.testi-card p { color: var(--muted); font-size: 14px; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-stars { color: var(--yellow); font-size: 13px; display: flex; gap: 2px; margin-bottom: 14px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-ava {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 17px; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 1px; }
.testi-company-logo {
  margin-left: auto; width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--border);
  font-size: 18px; color: var(--muted);
}
.testi-stack { display: flex; flex-direction: column; gap: 20px; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-list { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: rgba(79,125,255,.25); }
.faq-q {
  width: 100%; border: 0; background: transparent;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 20px; text-align: left;
  font-family: inherit; font-size: 15px; font-weight: 700;
  color: var(--ink); cursor: pointer; transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { font-size: 18px; color: var(--blue); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 20px 18px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ═══════════════════════════════════
   CTA SECTION
═══════════════════════════════════ */
.cta-section {
  margin-top: 96px; position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  margin-inline: clamp(12px, 4vw, 48px);
  margin-bottom: 72px;
}
.cta-aurora {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0d1a3a, #0a0d1a 50%, #1a0d2e);
}
.cta-aurora::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(79,125,255,.2), transparent),
    radial-gradient(ellipse 400px 300px at 80% 30%, rgba(124,92,252,.15), transparent),
    radial-gradient(ellipse 500px 300px at 60% 80%, rgba(45,212,167,.1), transparent);
}
.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(60px);
  pointer-events: none; z-index: 0; animation: floatY 8s ease-in-out infinite;
}
.cta-orb1 { width: 400px; height: 400px; background: rgba(79,125,255,.12); top: -100px; left: -100px; }
.cta-orb2 { width: 300px; height: 300px; background: rgba(124,92,252,.1); bottom: -80px; right: -60px; animation-delay: -4s; }
.cta-inner { position: relative; z-index: 1; padding: 80px 48px; text-align: center; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(79,125,255,.15); border: 1px solid rgba(79,125,255,.25);
  border-radius: 999px; padding: 7px 18px;
  font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 24px;
}
.cta-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.08; letter-spacing: -.04em;
  color: #fff; max-width: 18ch; margin-inline: auto; margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,.6); line-height: 1.65;
  max-width: 56ch; margin-inline: auto; margin-bottom: 32px; font-size: 16px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: 12.5px; color: rgba(255,255,255,.35); }
.cta-float {
  position: absolute;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: 8px 16px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 7px;
  backdrop-filter: blur(8px); animation: floatY 6s ease-in-out infinite;
}
.cta-float i { color: var(--green); }
.cf1 { top: 22%; left: 5%; animation-delay: 0s; }
.cf2 { top: 32%; right: 6%; animation-delay: -2s; }
.cf3 { bottom: 22%; left: 8%; animation-delay: -4s; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer { border-top: 1px solid var(--border); padding-top: 48px; padding-bottom: 36px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-bottom: 36px; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-top: 12px; max-width: 28ch; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 16px; text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}
.footer-social a:hover { color: var(--blue); border-color: rgba(79,125,255,.3); background: rgba(79,125,255,.08); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--ink); }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 13.5px; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--border); gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--dim); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 13px; color: var(--dim); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--muted); }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { gap: 32px; }
  .float-card.fc-1, .float-card.fc-2 { left: -5%; }
  .float-card.fc-3, .float-card.fc-4 { right: -3%; }
  .bento .tile:nth-child(1),
  .bento .tile:nth-child(2),
  .bento .tile:nth-child(3),
  .bento .tile:nth-child(4),
  .bento .tile:nth-child(5),
  .bento .tile:nth-child(6) { grid-column: span 6; }
  .how-timeline { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .how-line { display: none; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat-div { display: none; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .mob-menu-btn { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .spotlight { grid-template-columns: 1fr; gap: 36px; }
  .left-img  .spot-visual { order: 0; }
  .video-wrap { grid-template-columns: 1fr; }
  .video-features { flex-direction: row; flex-wrap: wrap; }
  .vf-item { flex: 1; min-width: 180px; }
  .how-timeline { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .hero { padding-top: 44px; }
  .hero-title { font-size: clamp(28px, 9vw, 44px); }
  .hero-copy { font-size: 15px; }
  .ht-sep { display: none; }
  .db-sidebar { width: 68px; }
  .db-sidebar span { display: none; }
  .db-stats-row { grid-template-columns: repeat(2,1fr); }
  .db-pipeline { grid-template-columns: repeat(2,1fr); }
  .db-col:last-child { display: none; }
  .trust-bar { flex-direction: column; gap: 10px; }
  .trust-sep { display: none; }
  .section { margin-top: 60px; }
  .spotlight-section { padding: 48px 0; }
  .bento .tile { grid-column: span 12 !important; }
  .how-timeline { grid-template-columns: 1fr; gap: 16px; }
  .integrations-grid { grid-template-columns: repeat(2,1fr); }
  .testi-card.big { padding: 22px; }
  .testi-quote { font-size: 60px; }
  .cta-inner { padding: 40px 20px; }
  .cta-float { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-band { padding: 20px; }
  .stat strong { font-size: 36px; }
}
