/* ============================================================
   ARM SISTEMAS — Landing ARM Taller + Mi Vehículo
   Design tokens
   ============================================================ */
:root {
  --navy-900: #030711;
  --navy-800: #060c1c;
  --navy-700: #0a1428;
  --navy-600: #0e1c38;
  --navy-500: #142a4d;
  --blue-600: #1652ff;
  --blue-500: #2f6bff;
  --blue-400: #4d8bff;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --white: #f7fafc;
  --gray-300: #a9b7cc;
  --gray-400: #7e8fab;
  --gray-500: #5c6c87;

  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-bg-strong: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.09);

  --grad-primary: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  --grad-text: linear-gradient(135deg, #ffffff 0%, #cfe4ff 50%, var(--cyan-300) 100%);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 50px rgba(0, 8, 30, 0.45);
  --shadow-glow-cyan: 0 0 50px rgba(34, 211, 238, 0.22);
  --shadow-glow-blue: 0 0 60px rgba(22, 82, 255, 0.28);

  --font: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;

  color-scheme: dark;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy-900);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.16,.8,.24,1), transform 0.8s cubic-bezier(.16,.8,.24,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(3, 7, 17, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.header.scrolled {
  border-bottom-color: var(--glass-border);
  background: rgba(3, 7, 17, 0.82);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; flex-shrink: 0; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--grad-primary);
  box-shadow: 0 0 18px rgba(34,211,238,0.45);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute; inset: 7px;
  background: var(--navy-900);
  border-radius: 4px;
}
.logo-text strong { font-weight: 800; }

.nav { display: flex; gap: 32px; margin: 0 auto; }
.nav a { font-size: 0.92rem; color: var(--gray-300); font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--white); }

.nav-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(5, 10, 24, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  padding: 20px 24px 28px;
  gap: 4px;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.16,.8,.24,1), opacity 0.35s;
  z-index: 99;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav a { padding: 14px 4px; font-size: 1.02rem; color: var(--gray-300); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a.btn { margin-top: 12px; text-align: center; border-bottom: none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.16,.8,.24,1), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: #04101f;
  box-shadow: 0 10px 30px rgba(22, 82, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(34, 211, 238, 0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--glass-border);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
  width: 100%;
}
.btn-outline:hover { border-color: var(--cyan-400); color: var(--cyan-300); }
.btn-sm { padding: 9px 20px; font-size: 0.86rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 168px 0 110px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.hero-glow-1 { width: 520px; height: 520px; top: -180px; left: -120px; background: var(--blue-600); }
.hero-glow-2 { width: 480px; height: 480px; top: 60px; right: -160px; background: var(--cyan-400); opacity: 0.22; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);
}

.hero-inner { position: relative; z-index: 1; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--cyan-300);
  margin-bottom: 18px;
  padding: 6px 16px;
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 999px;
  background: rgba(34,211,238,0.06);
}

.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 22px;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 38px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--gray-300);
  font-weight: 400;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 80px; }

/* ---- Hero showcase (dashboard + phone) ---- */
.hero-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 980px;
  margin: 0 auto;
}
.mock { position: relative; }
.mock-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan-300);
  margin-bottom: 12px;
  text-align: center;
}

.mock-dashboard { flex: 1 1 480px; max-width: 560px; animation: float-slow 7s ease-in-out infinite; }
.mock-phone { flex: 0 0 auto; width: 190px; animation: float-slow 7s ease-in-out infinite 0.6s; }

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.connector { width: 60px; height: 40px; flex-shrink: 0; align-self: center; margin-top: 30px; }
.connector-line { stroke: url(#none); stroke: var(--cyan-400); stroke-width: 2; stroke-dasharray: 5 5; opacity: 0.7; animation: dash-move 1.5s linear infinite; }
.connector-dot { fill: var(--cyan-300); filter: drop-shadow(0 0 6px rgba(34,211,238,0.8)); }
@keyframes dash-move { to { stroke-dashoffset: -20; } }

/* ---- Dashboard mock ---- */
.dash-window {
  display: flex;
  background: #f1f5fb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft), var(--shadow-glow-blue);
  border: 1px solid rgba(255,255,255,0.08);
  height: 300px;
}
.dash-window.large { height: 400px; }

.dash-sidebar {
  width: 64px;
  background: linear-gradient(180deg, var(--navy-600), var(--navy-800));
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.dash-logo { width: 24px; height: 24px; border-radius: 7px; background: var(--grad-primary); margin-bottom: 8px; }
.dash-nav-item { width: 24px; height: 24px; border-radius: 7px; background: rgba(255,255,255,0.08); }
.dash-nav-item.active { background: var(--grad-primary); box-shadow: 0 0 12px rgba(34,211,238,0.6); }

.dash-main { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.dash-topbar { display: flex; align-items: center; justify-content: space-between; }
.dash-title-bar { width: 40%; height: 12px; border-radius: 4px; background: #d3ddec; }
.dash-avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-primary); flex-shrink: 0; }

.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-window.large .dash-kpis { grid-template-columns: repeat(4, 1fr); }
.dash-kpi {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(15,35,80,0.06);
}
.dash-kpi .kpi-label { width: 55%; height: 6px; border-radius: 3px; background: #dde5f0; }
.dash-kpi .kpi-value { font-size: 0.95rem; font-weight: 800; color: var(--navy-700); }
.dash-kpi.accent .kpi-value { color: var(--blue-600); }

.dash-chart {
  flex: 1;
  background: #ffffff;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(15,35,80,0.06);
}
.dash-chart .bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, #c3d3ec, #a9bedd);
  border-radius: 4px 4px 0 0;
}
.dash-chart .bar.accent { background: var(--grad-primary); }

.dash-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; flex: 1; min-height: 0; }
.dash-chart.tall { min-height: 0; }

.dash-table { background: #fff; border-radius: 10px; padding: 12px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 2px 8px rgba(15,35,80,0.06); }
.dash-row { height: 10px; border-radius: 4px; background: #e6ecf5; }
.dash-row:nth-child(2) { width: 80%; }
.dash-row:nth-child(3) { width: 60%; }

/* ---- Phone mock ---- */
.phone-frame {
  background: linear-gradient(180deg, var(--navy-600), var(--navy-800));
  border-radius: 32px;
  padding: 10px;
  box-shadow: var(--shadow-soft), var(--shadow-glow-cyan);
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-notch {
  width: 60px; height: 14px;
  background: var(--navy-900);
  border-radius: 0 0 12px 12px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #f1f5fb;
  border-radius: 22px;
  padding: 16px 14px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-phone-lg .phone-screen { min-height: 420px; }

.phone-header { display: flex; align-items: center; gap: 10px; }
.phone-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--grad-primary); flex-shrink: 0; }
.phone-headtext { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.line { display: block; height: 7px; border-radius: 4px; background: #dbe3f0; }
.w40 { width: 40%; } .w50 { width: 50%; } .w60 { width: 60%; } .w70 { width: 70%; } .w80 { width: 80%; }

.phone-card { background: #fff; border-radius: 12px; padding: 12px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 2px 8px rgba(15,35,80,0.06); }
.phone-card.glow-card { border: 1px solid rgba(34,211,238,0.4); box-shadow: 0 0 18px rgba(34,211,238,0.18); }
.phone-progress { height: 6px; background: #e6ecf5; border-radius: 4px; overflow: hidden; margin-top: 2px; }
.phone-progress-fill { width: 68%; height: 100%; background: var(--grad-primary); }

.phone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.phone-tile { aspect-ratio: 1.6; background: #fff; border-radius: 10px; box-shadow: 0 2px 8px rgba(15,35,80,0.06); }

/* ============================================================
   Sections generic
   ============================================================ */
.section { padding: 110px 0; position: relative; }
.section-dark { background: var(--navy-800); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 8px;
  margin-bottom: 16px;
  color: var(--white);
}
.section-lead { color: var(--gray-300); font-size: 1.05rem; max-width: 560px; }
.section-lead.center { margin: 0 auto; }

/* Browser mock wrapper */
.browser-mock {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  margin-bottom: 64px;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--navy-700);
  border-bottom: 1px solid var(--glass-border);
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; } .dot.yellow { background: #febc2e; } .dot.green { background: #28c840; }
.browser-url {
  margin-left: 12px;
  font-size: 0.78rem;
  color: var(--gray-400);
  background: rgba(255,255,255,0.05);
  padding: 4px 14px;
  border-radius: 6px;
  flex: 1;
  max-width: 320px;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(.16,.8,.24,1), border-color 0.3s, background 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,0.35);
  background: var(--glass-bg-strong);
}
.feature-card h3 { font-size: 0.96rem; font-weight: 600; color: var(--white); }

.feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-300);
}
.feature-icon svg { width: 20px; height: 20px; }

/* ============================================================
   Timeline
   ============================================================ */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  flex-wrap: wrap;
}
.timeline-line {
  position: absolute;
  top: 5px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-500) 8%, var(--cyan-400) 50%, var(--blue-500) 92%, transparent);
  box-shadow: 0 0 12px rgba(34,211,238,0.5);
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 100px;
  position: relative;
}
.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid var(--cyan-400);
  box-shadow: 0 0 10px rgba(34,211,238,0.7);
}
.timeline-step span { font-size: 0.85rem; color: var(--gray-300); font-weight: 600; text-align: center; }

/* ============================================================
   Split layout (Mi Vehículo / WhatsApp)
   ============================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-layout.reverse .split-text { order: 2; }
.split-layout.reverse .split-visual { order: 1; }

.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 24px 0 22px; }
.check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.94rem;
  color: var(--gray-300);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 5px;
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--grad-primary);
  box-shadow: 0 0 8px rgba(34,211,238,0.5);
}

.highlight-line {
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 26px;
}

.split-visual { display: flex; justify-content: center; }
.mock-phone-lg { width: 260px; }

/* Chat screen */
.chat-screen { gap: 10px; }
.chat-header { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  background: #fff;
  font-size: 0.82rem;
  color: var(--navy-800);
  box-shadow: 0 2px 8px rgba(15,35,80,0.06);
  align-self: flex-start;
}
.chat-bubble.accent {
  background: var(--grad-primary);
  color: #04101f;
  font-weight: 600;
}

/* ============================================================
   Ecosystem
   ============================================================ */
.ecosystem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.eco-node {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.eco-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-300);
  margin-bottom: 4px;
}
.eco-icon svg { width: 22px; height: 22px; }
.eco-label { font-weight: 800; letter-spacing: 0.06em; font-size: 0.85rem; color: var(--white); }
.eco-sub { font-size: 0.85rem; color: var(--gray-400); }
.eco-arrow { color: var(--cyan-400); font-size: 1.3rem; }
.eco-cycle { display: none; }

/* ============================================================
   Value grid
   ============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.3s cubic-bezier(.16,.8,.24,1), border-color 0.3s;
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(34,211,238,0.35); }
.value-card h3 { font-size: 1.05rem; font-weight: 700; margin: 16px 0 8px; }
.value-card p { color: var(--gray-400); font-size: 0.9rem; }

/* ============================================================
   Flow rows (facturación / comisión)
   ============================================================ */
.flow-row, .commission-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.flow-node {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.flow-node.accent {
  background: var(--grad-primary);
  color: #04101f;
  border-color: transparent;
  box-shadow: var(--shadow-glow-cyan);
}
.flow-arrow { color: var(--cyan-400); font-size: 1.2rem; font-weight: 700; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s, border-color 0.3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
  border-color: rgba(34,211,238,0.4);
  background: linear-gradient(160deg, rgba(34,211,238,0.08), rgba(22,82,255,0.05));
  box-shadow: var(--shadow-glow-cyan);
}
.price-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--gray-300);
  margin-bottom: 10px;
}
.price-tag.accent { background: rgba(34,211,238,0.15); color: var(--cyan-300); }
.price-card h3 { font-size: 1.2rem; font-weight: 700; }
.price-desc { color: var(--gray-400); font-size: 0.88rem; margin-bottom: 14px; }
.price-value { font-size: 1.9rem; font-weight: 800; margin-bottom: 22px; }
.price-value span { font-size: 0.85rem; font-weight: 500; color: var(--gray-400); margin-left: 4px; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.testimonial-card.placeholder { border-style: dashed; opacity: 0.75; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.testi-quote { color: var(--gray-300); font-size: 0.92rem; font-style: italic; margin-bottom: 16px; min-height: 60px; }
.testi-stars { color: var(--cyan-400); letter-spacing: 2px; font-size: 0.85rem; }

/* ============================================================
   CTA Final
   ============================================================ */
.cta-final {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-600) 60%, var(--navy-900));
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(34,211,238,0.28), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-final h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-final p { color: var(--gray-300); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-email {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--cyan-300);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.cta-email:hover { border-color: var(--cyan-300); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-900); border-top: 1px solid var(--glass-border); padding: 64px 0 24px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--gray-400); font-size: 0.9rem; margin-top: 14px; }
.footer-links { display: flex; gap: 64px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 16px; text-transform: uppercase; }
.footer-col a { display: block; color: var(--gray-300); font-size: 0.92rem; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan-300); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ============================================================
   WhatsApp floating button
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(18,140,126,0.45);
  z-index: 90;
  transition: transform 0.25s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}

@media (max-width: 900px) {
  .nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-layout.reverse .split-text { order: 1; }
  .split-layout.reverse .split-visual { order: 2; }
  .hero-showcase { flex-direction: column; }
  .connector { width: 2px; height: 50px; transform: rotate(90deg); margin: -4px 0; }
  .mock-dashboard, .mock-phone { max-width: 340px; width: 100%; }
}

@media (max-width: 640px) {
  .hero { padding: 140px 0 80px; }
  .section { padding: 76px 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; align-items: flex-start; gap: 26px; padding-left: 16px; }
  .timeline-line { top: 0; bottom: 0; left: 5px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, transparent, var(--blue-500) 8%, var(--cyan-400) 50%, var(--blue-500) 92%, transparent); }
  .timeline-step { flex-direction: row; min-width: 0; }
  .flow-row, .commission-flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
  .footer-inner { flex-direction: column; gap: 32px; }
  .hero-actions .btn, .cta-inner .hero-actions .btn { width: 100%; }
}
