/* =========================================================
   Factcil — landing redesign
   Light mode pulido. Paleta cercana al actual, elevada.
   ========================================================= */

:root {
  --bg: #FFFFFF;
  --bg-alt: #FAFAFB;
  --bg-wash: #F4F0FF;
  --primary: #6D49E0;
  --primary-hover: #5A38C9;
  --primary-soft: rgba(109, 73, 224, 0.10);
  --mint: #2BB89A;
  --mint-soft: rgba(43, 184, 154, 0.12);
  --amber: #D08515;
  --amber-soft: rgba(208, 133, 21, 0.12);
  --ink: #0B0B14;
  --ink-2: #5B5772;
  --ink-3: #8B87A3;
  --border: #E8E5F5;
  --border-2: #F0EEF8;
  --shadow-sm: 0 1px 2px rgba(11, 11, 20, 0.04);
  --shadow-md: 0 8px 32px rgba(11, 11, 20, 0.05);
  --shadow-lg: 0 24px 64px -12px rgba(109, 73, 224, 0.18);
  --radius: 14px;
  --radius-lg: 20px;
  --font-display: 'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11" on, "ss01" on;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum" on; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 6px 18px rgba(109,73,224,0.18);
}
.btn--primary:hover { background: var(--primary-hover); box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 10px 28px rgba(109,73,224,0.28); transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border-color: var(--border);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: var(--bg-wash); border-color: #D6CFF0; }
.btn--link { color: var(--ink-2); padding: 10px 4px; gap: 8px; }
.btn--link:hover { color: var(--primary); }
.btn--lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }
.btn--xl { padding: 18px 30px; font-size: 16px; border-radius: 14px; }
.btn--sm { padding: 8px 14px; font-size: 13px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(109,73,224,0.18);
}
.eyebrow--center { display: inline-flex; }
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(43,184,154,0.18); }

/* ---------- Section base ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-align: center;
  margin: 18px auto 56px;
  max-width: 780px;
  color: var(--ink);
}
.eyebrow--center, .section__title { display: block; }
.section .eyebrow--center { display: inline-flex; margin-left: 50%; transform: translateX(-50%); }
.section > .container { text-align: center; }
.section > .container > * { text-align: initial; }
.section > .container > .eyebrow--center,
.section > .container > .section__title { text-align: center; }

/* ---------- Card base ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: #D6CFF0;
  box-shadow: 0 16px 48px -8px rgba(109,73,224,0.10);
}

/* Section reveals removed by design — see script.js. */

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255,255,255,0.75);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(255,255,255,0.92); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.brand__mark { display: inline-flex; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: 14px; color: var(--ink-2); font-weight: 500; transition: color .18s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: inline-flex; }
.nav__burger { display: none; background: none; border: 0; width: 36px; height: 36px; cursor: pointer; flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 152px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 88% 10%, rgba(109, 73, 224, 0.22) 0%, rgba(109, 73, 224, 0) 60%),
    radial-gradient(50% 50% at 8% 60%, rgba(43, 184, 154, 0.18) 0%, rgba(43, 184, 154, 0) 60%),
    radial-gradient(80% 80% at 50% 100%, rgba(244, 240, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%),
    #FFFFFF;
}
.hero__mesh::before, .hero__mesh::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.hero__mesh::before { background: rgba(109,73,224,0.18); top: -120px; right: -100px; animation: float 14s ease-in-out infinite; }
.hero__mesh::after { background: rgba(43,184,154,0.16); bottom: -180px; left: -60px; animation: float 18s ease-in-out infinite reverse; }
@keyframes float {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(40px, -30px); }
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 1.15fr; gap: 56px; align-items: center; }
.hero__copy { max-width: 580px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 18px 0 22px;
}
.grad-text {
  background: linear-gradient(120deg, var(--primary) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 520px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust { display: flex; flex-direction: column; gap: 12px; }
.hero__trust-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.hero__trust-logos { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.trust-logo {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #A8A2C7;
  filter: grayscale(1);
  opacity: 0.85;
}

/* ---------- Dashboard mockup ---------- */
.dash {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  /* flat, fully-visible mockup — no 3D rotation that crops the right edge */
}
.dash__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #FBFAFD 0%, #F4F2FB 100%);
  border-bottom: 1px solid var(--border);
}
.dash__dot { width: 10px; height: 10px; border-radius: 50%; }
.dash__dot--r { background: #FF6058; }
.dash__dot--y { background: #FFBC2E; }
.dash__dot--g { background: #28C940; }
.dash__url {
  margin-left: 16px;
  padding: 4px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
}
.dash__body { display: grid; grid-template-columns: 168px 1fr; min-height: 380px; }
.dash__side {
  background: #FBFAFD;
  border-right: 1px solid var(--border);
  padding: 16px 12px;
}
.dash__brand { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; padding: 6px 8px 16px; }
.dash__nav { display: flex; flex-direction: column; gap: 2px; }
.dash__nav li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--ink-2);
  border-radius: 8px;
  cursor: default;
}
.dash__nav li.active { background: var(--primary-soft); color: var(--primary); font-weight: 600; }
.dash__nav li svg { flex-shrink: 0; }
.dash__count { margin-left: auto; font-family: var(--font-mono); font-size: 11px; padding: 1px 6px; background: #fff; border: 1px solid var(--border); border-radius: 999px; }
.dash__main { padding: 18px 22px; }
.dash__topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dash__search {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: #FBFAFD;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 220px;
  font-size: 12px;
  color: var(--ink-3);
}
.dash__topright { display: flex; align-items: center; gap: 10px; }
.dash__lang { font-size: 11px; font-weight: 600; color: var(--ink-2); padding: 4px 8px; background: var(--bg-wash); border-radius: 6px; }
.dash__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--mint));
  color: #fff; font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.dash__title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dash__title h3 { margin: 0; font-size: 15px; font-weight: 700; }
.dash__addbtn { font-size: 11px; padding: 6px 10px; background: var(--ink); color: #fff; border: 0; border-radius: 6px; font-weight: 600; cursor: default; }
.dash__table { width: 100%; border-collapse: collapse; font-size: 12px; }
.dash__table th {
  text-align: left;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 8px 8px;
  border-bottom: 1px solid var(--border);
}
.dash__table td { padding: 12px 8px; border-bottom: 1px solid var(--border-2); vertical-align: middle; }
.dash__table tr:last-child td { border-bottom: 0; }
.dash__cell { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.dash__chip {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}
.dash__chip--purple { background: linear-gradient(135deg, #7C5CFF, #5A38C9); }
.dash__chip--mint { background: linear-gradient(135deg, #3DD9C6, #1F9A82); }
.dash__row-btn {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  background: var(--primary-soft);
  color: var(--primary);
  border: 0;
  border-radius: 6px;
  cursor: default;
}
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.badge--mint { background: var(--mint-soft); color: #1F9A82; }
.badge--amber { background: var(--amber-soft); color: var(--amber); }
.badge--purple { background: var(--primary-soft); color: var(--primary); }
.risk { display: flex; align-items: center; gap: 8px; }
.risk__bar {
  width: 60px; height: 5px; background: var(--border); border-radius: 999px; position: relative; overflow: hidden;
}
.risk__bar::after {
  content: ""; position: absolute; inset: 0; width: var(--w); background: var(--mint); border-radius: 999px;
}
.risk__bar--mid::after { background: var(--amber); }
.risk em { font-style: normal; font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); }

/* =========================================================
   KPIs
   ========================================================= */
.kpis {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, #FBFAFD 100%);
  padding: 56px 0;
}
.kpis__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.kpi { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 0 12px; border-left: 2px solid var(--border); }
.kpi:first-child { border-left: 0; padding-left: 0; }
.kpi__num {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--primary), var(--mint));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.kpi__label { font-size: 13px; color: var(--ink-2); }

/* =========================================================
   PAIN
   ========================================================= */
.pain__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pain__card { text-align: left; }
.pain__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 18px;
}
.pain__card h3 { margin: 0 0 10px; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.pain__card p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* =========================================================
   HOW
   ========================================================= */
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.how__step { position: relative; text-align: left; }
.how__num { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 14px; letter-spacing: 0.05em; }
.how__step h3 { margin: 0 0 10px; font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.how__step p { margin: 0 0 22px; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.how__mini {
  background: var(--bg-wash);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  font-size: 12px;
}
.how__mini-card { display: grid; gap: 6px; }
.how__mini-tag { font-family: var(--font-mono); font-size: 10px; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; }
.how__mini-url { font-family: var(--font-mono); color: var(--ink); }
.how__mini-action { font-size: 11px; color: var(--ink-3); }
.how__check { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--ink-2); }
.how__check li { display: flex; align-items: center; gap: 8px; }
.check {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--mint); border-radius: 50%; position: relative;
}
.check::after {
  content: ""; width: 8px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.check--mint { background: var(--mint); }
.how__mini--map { display: flex; align-items: center; gap: 12px; }
.map { width: 130px; height: auto; }

/* =========================================================
   AI CAPABILITIES
   ========================================================= */
.ai__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ai__card { text-align: left; }
.ai__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 18px;
}
.ai__icon--mint { background: var(--mint-soft); color: var(--mint); }
.ai__card h3 { margin: 0 0 10px; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.ai__card p { margin: 0 0 20px; color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.ai__demo {
  background: var(--bg-wash);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  font-size: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.ai__demo-tag { font-family: var(--font-mono); font-size: 11px; color: var(--primary); }
.ai__demo-row { display: flex; justify-content: space-between; padding: 6px 8px; background: #fff; border-radius: 6px; border: 1px solid var(--border); }
.ai__demo-row span:first-child { color: var(--ink-3); font-size: 11px; }

.gauge { display: flex; flex-direction: column; gap: 6px; }
.gauge__bar { height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; position: relative; }
.gauge__bar span { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--mint), var(--primary)); border-radius: 999px; transition: width 1.2s ease; }
.gauge__labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--ink-3); }
.gauge__val { color: var(--mint); font-weight: 700; }

.alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px;
  background: rgba(208, 133, 21, 0.08);
  border: 1px solid rgba(208, 133, 21, 0.25);
  border-radius: 8px;
  color: var(--amber);
  font-size: 12px;
  line-height: 1.45;
}
.alert__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 4px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(208, 133, 21, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(208, 133, 21, 0); }
}

/* =========================================================
   COMPARATIVA
   ========================================================= */
.compare__wrap { max-width: 980px; margin: 0 auto; overflow-x: auto; }
.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare__table th, .compare__table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border-2);
}
.compare__table thead th { background: #FBFAFD; font-weight: 600; font-size: 13px; color: var(--ink-2); }
.compare__table tbody td:first-child, .compare__table thead th:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.compare__table tbody tr:last-child td { border-bottom: 0; }
.compare__highlight { background: var(--primary-soft); position: relative; font-weight: 700; color: var(--primary); }
.compare__table th.compare__highlight { color: var(--primary); }
.compare__highlight .mono { color: var(--primary); }
.cmp-line {
  display: inline-block;
  width: 16px; height: 2px;
  background: var(--border);
  border-radius: 999px;
}
.cmp-x { position: relative; display: inline-block; width: 14px; height: 14px; }
.cmp-x::before, .cmp-x::after {
  content: ""; position: absolute; inset: 50% 0; height: 2px; background: #C9C5DC; border-radius: 999px;
}
.cmp-x::before { transform: rotate(45deg); }
.cmp-x::after { transform: rotate(-45deg); }
.compare__table .check {
  display: inline-flex; width: 18px; height: 18px;
}

/* =========================================================
   QUOTES
   ========================================================= */
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { display: flex; flex-direction: column; justify-content: space-between; gap: 22px; text-align: left; }
.quote__text {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
}
.quote__person { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.quote__meta { display: flex; flex-direction: column; }
.quote__meta strong { font-size: 14px; font-weight: 700; }
.quote__meta span { font-size: 12px; color: var(--ink-3); }

/* =========================================================
   VERTICALS
   ========================================================= */
.verticals__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vcard { text-align: left; padding: 22px; }
.vcard__icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 10px;
  margin-bottom: 14px;
}
.vcard h4 { margin: 0 0 6px; font-size: 16px; font-weight: 700; }
.vcard p { margin: 0; color: var(--ink-2); font-size: 13.5px; line-height: 1.5; }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-final__mesh {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 20% 100%, rgba(109,73,224,0.28) 0%, rgba(109,73,224,0) 60%),
    radial-gradient(60% 60% at 90% 0%, rgba(43,184,154,0.22) 0%, rgba(43,184,154,0) 60%),
    linear-gradient(180deg, #FBFAFD, #fff);
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 700;
  max-width: 860px;
  margin: 0 auto 18px;
}
.cta-final__sub { font-size: 18px; color: var(--ink-2); max-width: 620px; margin: 0 auto 36px; }
.cta-final__actions { display: inline-flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.cta-final__badges { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 44px; }
.badge-comp {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.foot { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.foot__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.foot__brand p { color: var(--ink-2); font-size: 13.5px; max-width: 320px; margin: 16px 0 0; line-height: 1.55; }
.foot__col h5 { margin: 0 0 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.foot__col li { margin-bottom: 8px; }
.foot__col a { font-size: 14px; color: var(--ink-2); transition: color .15s; }
.foot__col a:hover { color: var(--primary); }
.foot__bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 12px; color: var(--ink-3); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .hero { padding: 130px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__copy { max-width: none; }
  .dash { transform: none; }
  .kpis__inner { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .kpi:nth-child(3) { border-left: 0; padding-left: 0; }
  .pain__grid, .how__grid, .ai__grid, .quotes__grid, .verticals__grid { grid-template-columns: 1fr; }
  .verticals__grid { grid-template-columns: repeat(2, 1fr); }
  .foot__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 72px 0; }
  .compare__table { font-size: 12px; }
  .compare__table th, .compare__table td { padding: 12px 10px; }
}
@media (max-width: 560px) {
  .verticals__grid { grid-template-columns: 1fr; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1; justify-content: center; }
  .dash { transform: scale(0.62); transform-origin: top left; margin-bottom: -230px; width: 162%; }
  .dash__body { grid-template-columns: 140px 1fr; min-height: auto; }
  .foot__bottom { flex-direction: column; gap: 8px; }
  .kpi__num { font-size: 36px; }
}
@media (max-width: 420px) {
  .dash { transform: scale(0.54); margin-bottom: -260px; width: 186%; }
}
