/* ========================================================================
   RedTaller — Sitio web · Sistema de diseño completo
   La red del taller automotor
   ======================================================================== */

/* ====== TOKENS DE DISEÑO ====== */
:root {
  /* Colores · navy + amber */
  --navy-950: #050E18;
  --navy-900: #0A1B2A;
  --navy-800: #0F2A3F;
  --navy-700: #16364F;
  --navy-600: #1E4868;
  --navy-500: #2A5A82;
  --navy-400: #4D7BA8;

  --amber-700: #B45309;
  --amber-600: #D97706;
  --amber-500: #F59E0B;
  --amber-400: #FBBF24;
  --amber-300: #FCD34D;
  --amber-100: #FEF3C7;

  --bg: #F4F6F8;
  --surface: #FFFFFF;
  --surface-2: #F8FAFC;
  --ink: #0F172A;
  --ink-2: #334155;
  --muted: #64748B;
  --muted-2: #94A3B8;
  --line: #E2E8F0;
  --line-2: #CBD5E1;

  --ok: #10B981;
  --ok-bg: #D1FAE5;
  --err: #DC2626;
  --warn: #F59E0B;
  --info: #3B82F6;
  --purple: #7C3AED;
  --teal: #14B8A6;
  --cyan: #0891B2;
  --pink: #DB2777;
  --green: #059669;

  /* Tipografía */
  --f-display: 'Bricolage Grotesque', 'Playfair Display', Georgia, serif;
  --f-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Layout */
  --container: 1240px;
  --container-narrow: 960px;
  --container-wide: 1400px;
  --space-section: clamp(72px, 10vw, 144px);
  --radius: 14px;
  --radius-lg: 22px;

  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(15, 42, 63, 0.04), 0 1px 2px rgba(15, 42, 63, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(15, 42, 63, 0.08), 0 4px 10px -3px rgba(15, 42, 63, 0.04);
  --shadow-lg: 0 25px 50px -12px rgba(15, 42, 63, 0.16);
  --shadow-product: 0 30px 60px -15px rgba(15, 42, 63, 0.35), 0 18px 30px -10px rgba(15, 42, 63, 0.18);

  /* Animation */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ====== TIPOGRAFÍA ====== */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(44px, 7vw, 84px); line-height: 0.96; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.02; letter-spacing: -0.025em; }
h3 { font-size: clamp(22px, 3vw, 30px); line-height: 1.15; }
h4 { font-size: clamp(17px, 2vw, 20px); line-height: 1.25; }
p { font-size: clamp(15px, 1.5vw, 17px); line-height: 1.6; color: var(--ink-2); }
.accent { color: var(--amber-500); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--amber-500);
}
.eyebrow.light { color: var(--amber-400); }
.eyebrow.light::before { background: var(--amber-400); }

/* ====== UTILIDADES ====== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--space-section) 0; position: relative; }
.section-dark { background: var(--navy-900); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, 0.72); }

/* Patrón de cuadrícula (network background) */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.grid-bg.light {
  background-image:
    linear-gradient(to right, rgba(15, 42, 63, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 42, 63, 0.04) 1px, transparent 1px);
}

/* Brillo radial */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.6;
}
.glow.amber { background: radial-gradient(circle, var(--amber-500), transparent 70%); }
.glow.navy { background: radial-gradient(circle, var(--navy-500), transparent 70%); }

/* ====== LOGO ====== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.logo svg { width: 34px; height: 34px; flex-shrink: 0; }
.logo .acc { color: var(--amber-500); }
.logo.light { color: #fff; }

/* ====== NAVIGATION ====== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber-400); }
.nav.scrolled {
  background: rgba(10, 27, 42, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-cta {
  background: var(--amber-500);
  color: var(--navy-900);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--amber-400); transform: translateY(-1px); }
.nav-menu-btn { display: none; color: #fff; background: rgba(255, 255, 255, 0.1); padding: 8px 12px; border-radius: 8px; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  font-family: var(--f-body);
}
.btn-primary {
  background: var(--amber-500);
  color: var(--navy-900);
}
.btn-primary:hover { background: var(--amber-400); transform: translateY(-2px); box-shadow: 0 8px 22px -4px rgba(245, 158, 11, 0.5); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--navy-700); background: var(--navy-700); color: #fff; }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-600) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero .glow.amber {
  top: -10%;
  right: -15%;
  width: 700px;
  height: 700px;
  opacity: 0.35;
}
.hero .glow.navy {
  bottom: -20%;
  left: -20%;
  width: 800px;
  height: 800px;
  opacity: 0.6;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}
.hero-content { max-width: 640px; }
.hero h1 { color: #fff; margin: 18px 0 24px; }
.hero h1 .accent { color: var(--amber-400); }
.hero p { font-size: clamp(17px, 1.7vw, 20px); color: rgba(255, 255, 255, 0.78); max-width: 560px; margin-bottom: 36px; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-actors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.hero-actors strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

/* Hero product shot */
.hero-visual {
  position: relative;
  perspective: 1500px;
}
.hero-shot {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 4px;
  box-shadow: var(--shadow-product);
  transform: rotate(-1.5deg);
  transition: transform 0.6s var(--ease);
}
.hero-shot:hover { transform: rotate(0deg); }
.hero-shot img {
  width: 100%;
  border-radius: 14px;
  display: block;
}
.hero-shot::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.35), transparent 40%);
  border-radius: 20px;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}

.hero-floating {
  position: absolute;
  background: rgba(15, 42, 63, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: #fff;
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.hero-floating .lbl { font-family: var(--f-mono); font-size: 9px; color: var(--amber-400); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.hero-floating .val { font-weight: 700; font-size: 14px; font-family: var(--f-display); }
.hero-floating.f1 { top: 20%; left: -12px; }
.hero-floating.f2 { bottom: 18%; right: -18px; }

/* ====== TRUST STRIP ====== */
.trust-strip {
  background: var(--navy-900);
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  position: relative;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item .num {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--amber-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.trust-item .desc {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ====== SECTION HEADERS ====== */
.section-header {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin: 16px 0 20px; }
.section-header p { font-size: clamp(16px, 1.8vw, 19px); color: var(--muted); max-width: 680px; }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.7); }

/* ====== PROBLEM CARDS ====== */
.problem { background: #fff; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.pain-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.pain-card:hover {
  border-color: var(--amber-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pain-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--amber-500);
  transition: height 0.4s var(--ease);
}
.pain-card:hover::before { height: 100%; }
.pain-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--err);
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.pain-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.15;
}
.pain-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ====== SOLUTION / ECOSYSTEM ====== */
.solution {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.solution .grid-bg { opacity: 0.7; }
.solution .glow.amber { top: 30%; right: 5%; width: 500px; height: 500px; opacity: 0.25; }
.solution-inner { position: relative; z-index: 2; }
.eco-wrapper {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 900px) { .eco-wrapper { height: auto; flex-direction: column; gap: 16px; padding: 30px 0; } }

.eco-hub {
  position: relative;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--navy-500) 0%, var(--navy-900) 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 30px 60px -15px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 3;
  border: 2px solid rgba(245, 158, 11, 0.3);
}
.eco-hub svg { width: 56px; height: 56px; margin-bottom: 10px; }
.eco-hub b { font-family: var(--f-display); font-size: 22px; font-weight: 700; line-height: 1; }
.eco-hub b .acc { color: var(--amber-400); }
.eco-hub small { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.6); margin-top: 6px; text-transform: uppercase; }

.eco-node {
  position: absolute;
  width: 200px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
  z-index: 2;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.eco-node:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--amber-400);
}
.eco-node h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 4px;
}
.eco-node .role {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}
.eco-node ul {
  list-style: none;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.eco-node ul li {
  padding: 3px 0 3px 12px;
  position: relative;
}
.eco-node ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber-500);
}
.eco-n1 { top: 0%; left: 50%; transform: translateX(-50%); }
.eco-n2 { top: 18%; right: 5%; }
.eco-n3 { bottom: 18%; right: 5%; }
.eco-n4 { bottom: 18%; left: 5%; }
.eco-n5 { top: 18%; left: 5%; }
.eco-n1 .role { color: var(--purple); }
.eco-n2 .role { color: var(--teal); }
.eco-n3 .role { color: var(--pink); }
.eco-n4 .role { color: var(--green); }
.eco-n5 .role { color: var(--amber-400); }

@media (max-width: 900px) {
  .eco-wrapper { position: relative; }
  .eco-node { position: relative; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; transform: none !important; width: 100%; max-width: 420px; }
  .eco-hub { position: relative; width: 160px; height: 160px; order: 99; margin-top: 20px; }
}

/* ====== MODULES ====== */
.modules { background: #fff; }
.module-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.module-row:last-child { border-bottom: none; }
@media (min-width: 900px) {
  .module-row { grid-template-columns: 1fr 1.2fr; gap: 72px; padding: 80px 0; }
  .module-row.reverse .module-text { order: 2; }
  .module-row.reverse .module-shot { order: 1; }
}
.module-text .eyebrow { margin-bottom: 18px; }
.module-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
  line-height: 1.05;
}
.module-text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--muted);
}
.module-features {
  list-style: none;
  margin-top: 20px;
}
.module-features li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.module-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 18px; height: 1.5px;
  background: var(--amber-500);
  border-radius: 2px;
}
.module-features li b { color: var(--ink); font-weight: 700; }

.module-shot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}
.module-shot:hover { transform: translateY(-6px); box-shadow: var(--shadow-product); }
.module-shot img { width: 100%; display: block; }

/* ====== AUDIENCES ====== */
.audiences {
  background: var(--surface-2);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .audience-grid { grid-template-columns: repeat(4, 1fr); } }
.audience-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s var(--ease);
  border-top: 4px solid;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.audience-card.taller { border-top-color: var(--navy-800); }
.audience-card.aseguradora { border-top-color: var(--purple); }
.audience-card.proveedor { border-top-color: var(--teal); }
.audience-card.financiera { border-top-color: var(--green); }
.audience-card .actor-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.audience-card.taller .actor-label { color: var(--navy-700); }
.audience-card.aseguradora .actor-label { color: var(--purple); }
.audience-card.proveedor .actor-label { color: var(--teal); }
.audience-card.financiera .actor-label { color: var(--green); }
.audience-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.audience-card .bullets {
  list-style: none;
  margin-bottom: 22px;
  flex: 1;
}
.audience-card .bullets li {
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0 4px 14px;
  position: relative;
  line-height: 1.5;
}
.audience-card .bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 4px;
  color: var(--amber-500);
  font-weight: 700;
}
.audience-card .price-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink);
  background: var(--surface-2);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px dashed var(--line-2);
}

/* ====== PRICING ====== */
.pricing { background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; } }
.plan-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.plan-card.featured {
  border-color: var(--amber-500);
  box-shadow: 0 20px 50px -15px rgba(245, 158, 11, 0.25);
  background: linear-gradient(180deg, #fff 0%, #FFFBEB 100%);
}
.plan-card.featured::before {
  content: "MÁS ELEGIDO";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-500);
  color: var(--navy-900);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  font-family: var(--f-mono);
  letter-spacing: 0.12em;
}
.plan-name {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.plan-card.featured .plan-name { color: var(--amber-600); }
.plan-title {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 24px;
}
.plan-price .amount {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-card.featured .plan-price .amount { color: var(--amber-600); }
.plan-price .period {
  font-size: 14px;
  color: var(--muted);
}
.plan-sub {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  padding: 9px 0 9px 26px;
  font-size: 14.5px;
  color: var(--ink-2);
  position: relative;
  line-height: 1.45;
  border-bottom: 1px solid var(--line);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ok-bg);
}
.plan-features li::after {
  content: "✓";
  position: absolute;
  left: 3px; top: 8.5px;
  color: var(--ok);
  font-size: 10px;
  font-weight: 800;
}
.plan-card .btn { width: 100%; }

.pricing-note {
  margin-top: 48px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px 32px;
}
.pricing-note h4 {
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--ink);
}
.commission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}
@media (min-width: 640px) { .commission-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .commission-grid { grid-template-columns: repeat(4, 1fr); } }
.commission-item {
  padding: 14px 16px;
  background: var(--surface-2);
  border-radius: 8px;
  border-left: 3px solid;
}
.commission-item.taller { border-left-color: var(--navy-700); }
.commission-item.aseguradora { border-left-color: var(--purple); }
.commission-item.proveedor { border-left-color: var(--teal); }
.commission-item.financiera { border-left-color: var(--green); }
.commission-item .who {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}
.commission-item .what {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.commission-item .what b {
  font-family: var(--f-mono);
  color: var(--amber-700);
  font-weight: 700;
}

/* ====== FAQ ====== */
.faq { background: #fff; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item details {
  padding: 24px 0;
  cursor: pointer;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 300;
  color: var(--amber-500);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item details[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  margin-top: 14px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 700px;
}
.faq-item .faq-answer p + p { margin-top: 10px; }
.faq-item:hover summary { color: var(--navy-700); }

/* ====== CTA / FORM ====== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-600) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section .glow.amber { top: -20%; left: -10%; width: 600px; height: 600px; opacity: 0.3; }
.cta-section .glow.navy { bottom: -30%; right: -10%; width: 700px; height: 700px; opacity: 0.5; }
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
.cta-text h2 {
  font-size: clamp(34px, 5vw, 56px);
  color: #fff;
  margin: 18px 0 20px;
  line-height: 1.02;
}
.cta-text h2 .accent { color: var(--amber-400); }
.cta-text p { color: rgba(255, 255, 255, 0.75); font-size: 17px; margin-bottom: 32px; max-width: 540px; }
.cta-contact {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 24px;
}
.cta-contact .label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--amber-400);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-contact-rows { display: flex; flex-direction: column; gap: 12px; }
.cta-contact-rows .row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.cta-contact-rows .row .ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-400);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.cta-contact-rows .row .val {
  font-weight: 600;
  font-size: 15px;
}
.cta-contact-rows .row .val small { display: block; font-size: 11px; color: rgba(255, 255, 255, 0.5); font-weight: 400; margin-top: 1px; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--f-mono); }

/* Form */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--ink);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.4);
}
.form-card h3 {
  font-family: var(--f-display);
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-card .form-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 540px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.form-field input, .form-field select, .form-field textarea {
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 80px; }
.role-radio { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 4px; }
@media (min-width: 540px) { .role-radio { grid-template-columns: repeat(4, 1fr); } }
.role-radio label {
  display: block;
  padding: 10px 8px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--f-body);
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.role-radio input { position: absolute; opacity: 0; pointer-events: none; }
.role-radio input:checked + label, .role-radio label:has(input:checked) {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
}
.form-submit { margin-top: 20px; }
.form-submit .btn { width: 100%; }
.form-card .legal {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
  line-height: 1.45;
}
.form-feedback {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form-feedback.success { display: block; background: var(--ok-bg); color: #065F46; border-left: 3px solid var(--ok); }
.form-feedback.error { display: block; background: #FEE2E2; color: #991B1B; border-left: 3px solid var(--err); }

/* ====== FOOTER ====== */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 36px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; }
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: rgba(255, 255, 255, 0.55); font-size: 14px; line-height: 1.5; max-width: 400px; }
.footer h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--amber-400);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--amber-400); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

/* ====== ANIMACIONES ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-content > * { opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-content > *:nth-child(5) { animation-delay: 0.7s; }
.hero-visual { opacity: 0; animation: fadeUp 1.2s 0.6s var(--ease-out) forwards; }
.hero-floating.f1 { animation: fadeUp 0.8s 1.4s var(--ease-out) backwards, floaty 4s 2.2s ease-in-out infinite; }
.hero-floating.f2 { animation: fadeUp 0.8s 1.7s var(--ease-out) backwards, floaty 4s 2.5s ease-in-out infinite reverse; }

.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }
.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.scroll-reveal.delay-4 { transition-delay: 0.4s; }

/* ====== RESPONSIVE NAV ====== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; }
  .nav-cta { display: none; }
  .nav.menu-open { background: var(--navy-900); padding: 18px 0; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy-900);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px 24px;
    align-items: stretch;
  }
  .nav.menu-open .nav-links a {
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav.menu-open .nav-cta { display: inline-flex; margin-top: 14px; }
}

/* ====== HELPERS ====== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; }
