/* ============================================================
   ZeroCore — Landing page stylesheet
   Static, self-contained. No build step. Deploy by copy.
   Brand: ZeroCore Brand Book v1.0 (Azul Profundo / Azul Principal /
   Turquesa como acento / Grafito / Blanco). Tipografía: Inter.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --zrc-deep-blue:  #0D1B2A;   /* Azul Profundo — predominante institucional */
  --zrc-primary:    #184E77;   /* Azul Principal — isotipo/logotipo */
  --zrc-turquoise:  #00B4D8;   /* Turquesa — únicamente acento */
  --zrc-graphite:   #2B2D42;   /* Gris Grafito — textos y secundarios */
  --zrc-white:      #FFFFFF;   /* Blanco — claridad y espacio */

  --bg: var(--zrc-deep-blue);
  --bg-2: #101F34;
  --surface: #13263F;
  --surface-2: #182E4C;
  --surface-3: #1E3759;
  --border: rgba(0, 180, 216, 0.16);
  --border-strong: rgba(0, 180, 216, 0.34);
  --text: #F4F8FF;
  --muted: rgba(228, 240, 255, 0.72);
  --muted-2: rgba(228, 240, 255, 0.48);

  --primary: var(--zrc-primary);
  --primary-2: var(--zrc-turquoise);
  --accent: var(--zrc-turquoise);
  --success: #34D399;
  --warning: #FBBF24;
  --danger: #F87171;
  --info: #00B4D8;

  --grad: linear-gradient(120deg, #184E77 0%, #1E6E96 45%, #00B4D8 100%);
  --grad-soft: linear-gradient(120deg, rgba(0, 180, 216, 0.14), rgba(24, 78, 119, 0.2));

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 60px rgba(2, 8, 18, 0.55);
  --maxw: 1160px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font); line-height: 1.2; margin: 0 0 .5em; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul { padding-left: 0; list-style: none; margin: 0; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }
::selection { background: rgba(0, 180, 216, 0.35); color: #fff; }

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-2);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--grad); border-radius: 2px; }
.h2 { font-size: clamp(28px, 4.4vw, 42px); margin-bottom: 14px; }
.lead { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 700px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.quote-msg { color: var(--primary-2); }

/* ---------- Backgrounds / glows ---------- */
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 216, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 216, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
}
.glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .42; pointer-events: none;
  animation: glowFloat 14s ease-in-out infinite alternate;
}
.glow-blue { background: radial-gradient(circle, rgba(24, 78, 119, 0.6), transparent 65%); }
.glow-cyan { background: radial-gradient(circle, rgba(0, 180, 216, 0.28), transparent 65%); }
@keyframes glowFloat {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(40px) scale(1.12); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.28), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0, 180, 216, 0.4), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-ghost { color: var(--text); background: rgba(255,255,255,0.04); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 14px; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .25s ease, border-color .25s ease, padding .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(13, 27, 42, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.logo img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14.5px; color: var(--muted); font-weight: 500; transition: color .15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav .btn { padding: 10px 18px; font-size: 14px; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border-strong);
  border-radius: 10px; width: 42px; height: 42px; color: var(--text);
  font-size: 18px; place-items: center;
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(13, 27, 42, 0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-size: 24px; font-weight: 600; color: var(--text); }
.mobile-menu .btn { font-size: 17px; }

/* ---------- Hero ---------- */
.hero { padding: 170px 0 0; position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; left: 50%; bottom: -260px; transform: translateX(-50%);
  width: 1200px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.1), transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--grad-soft); border: 1px solid var(--border-strong);
  font-size: 13px; font-weight: 600; color: var(--primary-2); margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px var(--success); }
.hero h1 {
  font-size: clamp(38px, 5.8vw, 60px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  max-width: 900px;
}
.hero .sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 660px;
  margin-bottom: 16px;
}
.hero .brand-msg {
  font-size: 15px;
  color: var(--primary-2);
  min-height: 1.6em;
  margin-bottom: 28px;
  font-weight: 500;
  transition: opacity .4s ease;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero-micro { font-size: 13px; color: var(--muted-2); display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; }
.hero-micro span { display: inline-flex; align-items: center; gap: 7px; }
.hero-micro svg { width: 14px; height: 14px; color: var(--accent); }

/* ---------- App mockup (pure CSS) ---------- */
.mockup-wrap { margin: 70px 0 0; position: relative; }
.mockup {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #0F1F34, #0C1A2C);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0,0,0,0.4);
  overflow: hidden;
  position: relative;
}
.mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.mockup-bar .t { width: 12px; height: 12px; border-radius: 50%; }
.mockup-bar .t:nth-child(1) { background: #ff5f57; }
.mockup-bar .t:nth-child(2) { background: #febc2e; }
.mockup-bar .t:nth-child(3) { background: #28c840; }
.mockup-bar .url {
  margin-left: 12px; flex: 1; max-width: 320px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 12px; font-size: 12px; color: var(--muted-2);
}
.mockup-body { display: grid; grid-template-columns: 190px 1fr; min-height: 420px; }
.mockup-side { border-right: 1px solid var(--border); padding: 16px 12px; display: flex; flex-direction: column; gap: 4px; }
.m-side-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--muted); padding: 8px 10px; border-radius: 8px;
}
.m-side-item.active { background: var(--grad-soft); color: var(--text); font-weight: 600; }
.m-side-item .ic { width: 15px; height: 15px; border-radius: 4px; background: rgba(0,180,216,0.22); flex: none; }
.mockup-main { padding: 20px 22px; }
.m-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.m-kpi { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; }
.m-kpi .label { font-size: 11px; color: var(--muted-2); margin-bottom: 6px; }
.m-kpi .val { font-size: 22px; font-weight: 600; }
.m-kpi .trend { font-size: 11px; color: var(--success); }
.m-table-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.m-table-title strong { font-size: 13.5px; }
.m-table-title span { font-size: 11px; color: var(--muted-2); background: var(--surface-2); border: 1px solid var(--border); padding: 4px 9px; border-radius: 999px; }
.m-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 10px;
  align-items: center; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 10px; background: var(--surface); margin-bottom: 8px; font-size: 12.5px;
}
.m-row:first-of-type { border-color: var(--border-strong); background: var(--surface-2); }
.m-row .c-name { font-weight: 600; display: flex; align-items: center; gap: 8px; }
.m-row .c-name .ava { width: 24px; height: 24px; border-radius: 50%; flex: none; background: var(--grad-soft); border: 1px solid var(--border-strong); display: grid; place-items: center; font-size: 10px; font-weight: 700; color: var(--primary-2); }
.m-row .amt { font-weight: 600; }
.m-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.m-pill.high { background: rgba(248,113,113,0.14); color: var(--danger); }
.m-pill.med { background: rgba(251,191,36,0.14); color: var(--warning); }
.m-pill.low { background: rgba(52,211,153,0.14); color: var(--success); }
.m-pill.done { background: rgba(52,211,153,0.14); color: var(--success); }
.score-bar { width: 56px; height: 5px; border-radius: 99px; background: rgba(255,255,255,0.08); overflow: hidden; }
.score-bar i { display: block; height: 100%; border-radius: 99px; background: var(--grad); }

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(19, 38, 63, 0.92);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 18px 40px rgba(2, 8, 18, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: floatY 6s ease-in-out infinite;
  z-index: 3;
}
.float-card .fc-top { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600; margin-bottom: 6px; }
.float-card .fc-top .ico { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-size: 13px; }
.float-card .fc-body { font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.float-card .fc-body b { color: var(--text); }
.fc-1 { top: 12%; right: -40px; animation-delay: 0s; }
.fc-2 { bottom: 8%; left: -46px; animation-delay: 2.5s; }
.fc-1 .ico { background: rgba(52,211,153,0.16); }
.fc-2 .ico { background: rgba(0,180,216,0.16); }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Stats bar ---------- */
.stats { padding: 60px 0 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 26px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg-2)); }
.stat .n { font-size: clamp(30px, 4vw, 44px); font-weight: 600; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* ---------- Section scaffolding ---------- */
.section { padding: 110px 0; }
.section-head { margin-bottom: 54px; }

/* ---------- Pain / problem ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pain-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: relative; overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.pain-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.pain-card .ic {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px;
  display: grid; place-items: center; font-size: 20px;
  background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.25);
}
.pain-card h3 { font-size: 18px; }
.pain-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Loop / continuum ---------- */
.loop { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; align-items: stretch; margin-top: 8px; }
.loop-step { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px 12px; text-align: center; position: relative; transition: border-color .2s ease; }
.loop-step:hover { border-color: var(--border-strong); }
.loop-step .n { font-size: 12px; font-weight: 600; color: var(--primary-2); margin-bottom: 6px; }
.loop-step strong { display: block; font-size: 13.5px; margin-bottom: 4px; }
.loop-step span { font-size: 11.5px; color: var(--muted); }
@media (min-width: 900px) {
  .loop-step::after {
    content: "→"; position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
    color: var(--muted-2); font-size: 15px; z-index: 2;
  }
  .loop-step:last-child::after { display: none; }
}

/* ---------- Benefits ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .2s ease, border-color .2s ease;
}
.benefit:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.benefit .ic {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px;
  display: grid; place-items: center; font-size: 20px;
  background: var(--grad-soft); border: 1px solid var(--border-strong);
}
.benefit h3 { font-size: 18px; }
.benefit p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: relative; transition: transform .2s ease, border-color .2s ease;
}
.step:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-weight: 600; font-size: 30px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 14px;
}
.step h3 { font-size: 17px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- Modules ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px;
}
.pillar .p-head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.pillar .p-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--border-strong); display: grid; place-items: center; font-size: 20px; flex: none; }
.pillar h3 { font-size: 19px; margin: 0; }
.pillar > p { color: var(--muted); font-size: 14px; }
.pillar ul { margin-top: 14px; display: grid; gap: 8px 14px; }
.pillar ul li { font-size: 13.5px; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }
.pillar ul li::before { content: "—"; color: var(--primary-2); font-weight: 600; flex: none; }
.pillar .status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 999px;
  margin-top: 12px;
}
.pillar .status.now { background: rgba(0,180,216,0.14); color: var(--primary-2); }
.pillar .status.next { background: rgba(251,191,36,0.12); color: var(--warning); }
.pillar .status.soon { background: rgba(148,163,184,0.14); color: var(--muted); }

/* ---------- Roadmap ---------- */
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.road-col { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: 26px; }
.road-col h3 { font-size: 18px; display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.road-col > p { color: var(--muted); font-size: 14px; }
.road-col ul { margin-top: 16px; display: grid; gap: 10px; }
.road-col ul li { font-size: 13.5px; color: var(--text); display: flex; gap: 10px; align-items: flex-start; }
.road-col ul li::before { content: "·"; color: var(--primary-2); font-weight: 700; flex: none; }
.road-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; margin-bottom: 14px; }
.road-tag.today { background: rgba(0,180,216,0.14); color: var(--primary-2); }
.road-tag.next { background: rgba(251,191,36,0.12); color: var(--warning); }
.road-tag.soon { background: rgba(148,163,184,0.14); color: var(--muted); }
.road-col .sub { font-size: 12.5px; color: var(--muted-2); margin-top: 14px; }

/* ---------- Differentiators ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.diff {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: transform .2s ease, border-color .2s ease;
}
.diff:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.diff .ic { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px; display: grid; place-items: center; font-size: 19px; background: var(--grad-soft); border: 1px solid var(--border-strong); }
.diff h3 { font-size: 16.5px; }
.diff p { color: var(--muted); font-size: 13.5px; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px;
}
.testi .quote { font-size: 14.5px; color: var(--text); line-height: 1.6; }
.testi .quote::before { content: "“"; color: var(--primary-2); font-size: 28px; line-height: 0; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--border-strong); display: grid; place-items: center; font-weight: 600; color: var(--primary-2); font-size: 14px; }
.testi .who b { display: block; font-size: 14px; }
.testi .who span { font-size: 12.5px; color: var(--muted); }

/* ---------- Use cases ---------- */
.usecase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.usecase { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.usecase .u-ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; font-size: 20px; background: var(--grad-soft); border: 1px solid var(--border-strong); }
.usecase h3 { font-size: 17px; }
.usecase p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; padding: 20px 22px;
  color: var(--text); font-size: 16px; font-weight: 600; text-align: left;
}
.faq-q .chev { transition: transform .25s ease; color: var(--muted); font-size: 18px; flex: none; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- CTA final ---------- */
.cta-panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #0E2236, #123049 45%, #0A1E30);
  border: 1px solid var(--border-strong);
  padding: 70px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-panel .glow { opacity: .3; }
.cta-panel h2 { font-size: clamp(30px, 4.6vw, 44px); max-width: 720px; margin: 0 auto 16px; }
.cta-panel .lead { margin: 0 auto 34px; }
.cta-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto 16px; flex-wrap: wrap; justify-content: center; }
.cta-form input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-strong);
  border-radius: 12px; padding: 15px 18px; color: var(--text); font-size: 15px;
  outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.cta-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.18); }
.cta-form input::placeholder { color: var(--muted-2); }
.cta-note { font-size: 13px; color: var(--muted-2); }
.cta-success { display: none; color: var(--success); font-size: 16px; font-weight: 600; margin-bottom: 16px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 60px 0 40px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer h4 { font-size: 14px; margin-bottom: 14px; }
.footer a, .footer p { font-size: 13.5px; color: var(--muted); }
.footer .cols a { display: block; margin-bottom: 9px; transition: color .15s ease; }
.footer .cols a:hover { color: var(--text); }
.footer .logo { margin-bottom: 14px; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted-2); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .mockup-body { grid-template-columns: 150px 1fr; }
  .fc-1 { right: -10px; }
  .fc-2 { left: -10px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { display: grid; }
  .hero { padding-top: 140px; }
  .pain-grid, .usecase-grid { grid-template-columns: 1fr; }
  .benefit-grid, .diff-grid, .testi-grid, .steps, .stats-grid { grid-template-columns: 1fr 1fr; }
  .pillars, .roadmap { grid-template-columns: 1fr; }
  .loop { grid-template-columns: repeat(2, 1fr); }
  .loop-step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-side { display: none; }
  .float-card { display: none; }
}
@media (max-width: 560px) {
  .section { padding: 78px 0; }
  .benefit-grid, .diff-grid, .testi-grid, .steps, .stats-grid { grid-template-columns: 1fr; }
  .m-kpis { grid-template-columns: repeat(2, 1fr); }
  .m-row { grid-template-columns: 1fr; gap: 6px; }
  .cta-panel { padding: 48px 24px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
