/* =====================================================
   ALTIMEA.COM · LANDING LIBRO DE RECLAMACIONES DIGITAL
   Migración 1:1 del WordPress/Elementor (page-libro-reclamaciones.php +
   landing-libro-reclamaciones.css), adaptada al Design System V2.

   Scope: .lr-landing (wrapper en <main>) para evitar colisiones.
   Tokens: reusan los definidos en /assets/css/main.css (DS V2).
   Header + footer + .btn base vienen de /assets/css/main.css.

   CORRECCIONES APLICADAS vs. source (documentadas en PR):
     · Tokens ad-hoc → DS V2:
         --shadow / --shadow-lg → --shadow-sm / --shadow-lg (main.css)
         --radius    → --radius-md
         --radius-lg 20px → --radius-lg 16px
         --gray-700 #364151 → #3D4A5C
     · .section-label font-size 14px → 13px (DS V2)
     · .section-label.dark → .on-light (consistencia con homepage/CTO/contacto)
     · Flat design (gradiente sólo en hero):
         - solution-visual:  gradient navy → flat navy
         - social-proof:     gradient navy → flat navy
         - cta-final:        gradient + 2 ::before radial → flat navy-deep
         - workflow line:    gradient blue→mint → flat mint
     · Hero gradient 3-stop ad-hoc simplificado a 2-stop navy-deep → navy
     · SVGs Material reemplazados por Feather auténticos (ver index.html)
     · Footer gap fix: body > .site-footer { margin-top: 0 } — la landing
       termina en navy-deep y el margin-top default crearía franja blanca.

   NOMBRE COMERCIAL: "Libro de Reclamaciones Digital" (nunca "LR Digital"
   en el copy — el prefijo .lr- es solo el scope CSS interno).
   ===================================================== */


/* ===== WRAPPER + scoped reset ===== */
.lr-landing {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  line-height: 1.7;
  width: 100%;
}
.lr-landing *,
.lr-landing *::before,
.lr-landing *::after { box-sizing: border-box; }
.lr-landing img { max-width: 100%; height: auto; }
.lr-landing a   { text-decoration: none; color: inherit; }

.lr-landing .lr-container {
  max-width: var(--container);       /* 1140px del DS V2 */
  margin: 0 auto;
  padding: 0 24px;
}


/* ===== TIPOGRAFÍA (scoped override) ===== */
.lr-landing h1,
.lr-landing h2,
.lr-landing h3,
.lr-landing h4 { font-family: 'Montserrat', sans-serif; }

.lr-landing h1 {
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  color: var(--white);
}
.lr-landing h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 20px;
}
.lr-landing h3 {
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.lr-landing h4 {
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.lr-landing p { margin-bottom: 16px; font-size: 17px; }
.lr-landing .lead {
  font-size: 19px;
  line-height: 1.8;
  color: var(--gray-500);
}


/* ===== SECTION LABEL / EYEBROW ===== */
/* Override del .section-label base de main.css (que es badge mint). Aquí es
   eyebrow texto uppercase. Renombrado .dark → .on-light para consistencia. */
.lr-landing .section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);          /* default: sobre fondos navy */
  background: none;            /* anula el bg de .section-label base */
  padding: 0;
  border-radius: 0;
  margin-bottom: 12px;
}
.lr-landing .section-label.on-light { color: var(--blue-a11y); }


/* ===== BUTTONS (override mínimo; .btn base viene de main.css) ===== */
/* En .lr-landing los <a> tienen color:inherit vía reset. Sin override los
   .btn-primary heredarían navy del wrapper; forzamos white (mismo fix que
   en cto-on-demand.css). */
.lr-landing .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lr-landing .btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.lr-landing .btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.lr-landing .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.lr-landing .btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.lr-landing .btn-sm { padding: 12px 28px; font-size: 14px; }


/* ======================================================
   1 · HERO
   Gradient permitido por el DS V2. Simplificado a 2-stop.
   ====================================================== */
.lr-landing .hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.lr-landing .hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(114, 245, 196, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.lr-landing .hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 103, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.lr-landing .hero .lr-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lr-landing .hero-content { max-width: 560px; }

/* Hero badge: acento rojo permitido — urgencia regulatoria real
   (Ley 29571 y Ley 32495 obligan a los comercios digitales). */
.lr-landing .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #FCA5A5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.lr-landing .hero h1 { margin-bottom: 24px; }
.lr-landing .hero h1 span { color: var(--mint); }

.lr-landing .hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}
.lr-landing .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  flex-direction: row;
}

/* Hero visual card — stats dashboard */
.lr-landing .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lr-landing .hero-visual-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 440px;
}
.lr-landing .hero-visual-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--mint);
}
.lr-landing .hero-visual-card .stat-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lr-landing .hero-visual-card .stat-row:last-child { border-bottom: none; }
.lr-landing .hero-visual-card .stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.lr-landing .hero-visual-card .stat-value {
  color: var(--mint);
  font-family: 'Poppins', sans-serif;  /* Poppins DS V2: solo números/precios */
  font-weight: 700;
  font-size: 18px;
}
.lr-landing .hero-visual-card .stat-value.alert { color: #FCA5A5; }


/* ======================================================
   2 · TRUST BAR (grid compacto, 5 métricas)
   ====================================================== */
.lr-landing .trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}
.lr-landing .trust-bar .lr-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 24px;
  max-width: 800px;
  justify-items: center;
  align-items: start;
}
.lr-landing .trust-item { grid-column: span 2; text-align: center; }
.lr-landing .trust-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--navy);
  line-height: 1;
}
.lr-landing .trust-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ======================================================
   3 · PAIN POINTS
   ====================================================== */
.lr-landing .pain {
  padding: var(--section-padding);
  background: var(--gray-50);
}
.lr-landing .pain .lr-container { max-width: 900px; }
.lr-landing .pain h2 { text-align: center; margin-bottom: 12px; }
.lr-landing .pain > .lr-container > .section-label { display: block; text-align: center; }
.lr-landing .pain > .lr-container > p {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 40px;
}
.lr-landing .pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.lr-landing .pain-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border-left: 4px solid var(--mint);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lr-landing .pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.lr-landing .pain-card .icon { margin-bottom: 12px; }
.lr-landing .pain-card .icon svg {
  width: 28px; height: 28px;
  stroke: var(--navy); stroke-width: 1.5;
  fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.lr-landing .pain-card h3 { font-size: 16px; color: var(--gray-900); margin-bottom: 8px; }
.lr-landing .pain-card p {
  font-size: 15px; color: var(--gray-500);
  margin-bottom: 0; line-height: 1.6;
}


/* ======================================================
   4 · SOLUTION
   ====================================================== */
.lr-landing .solution {
  padding: var(--section-padding);
  background: var(--white);
}
.lr-landing .solution .lr-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lr-landing .solution-content h2 { margin-bottom: 24px; }
.lr-landing .solution-content p  { margin-bottom: 24px; }

/* Flat navy (antes: gradient navy → #1a3a7a). DS V2 flat-only. */
.lr-landing .solution-visual {
  background-color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--white);
}
.lr-landing .solution-feature {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.lr-landing .solution-feature:last-child { border-bottom: none; }
.lr-landing .solution-feature .icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(114, 245, 196, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lr-landing .solution-feature .icon svg {
  width: 22px; height: 22px;
  stroke: var(--mint); stroke-width: 1.5;
  fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.lr-landing .solution-feature h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--mint);
  margin-bottom: 4px;
}
.lr-landing .solution-feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  line-height: 1.5;
}


/* ======================================================
   5 · FEATURES
   ====================================================== */
.lr-landing .features {
  padding: var(--section-padding);
  background: var(--light-bg);
}
.lr-landing .features .lr-container { text-align: center; max-width: 900px; }
.lr-landing .features h2 { margin-bottom: 12px; }
.lr-landing .features > .lr-container > p {
  margin-bottom: 60px;
  color: var(--gray-500);
}
.lr-landing .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.lr-landing .feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lr-landing .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.lr-landing .feature-card .icon { margin: 0 auto 20px; }
.lr-landing .feature-card .icon svg {
  width: 28px; height: 28px;
  stroke: var(--navy); stroke-width: 1.5;
  fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.lr-landing .feature-card h3 { font-size: 18px; margin-bottom: 12px; }
.lr-landing .feature-card p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.6;
}


/* ======================================================
   6 · WORKFLOW (timeline horizontal, 4 pasos)
   ====================================================== */
.lr-landing .workflow {
  padding: var(--section-padding);
  background: var(--white);
}
/* Cabecera del bloque "Cómo funciona": label + h2 centrados.
   .section-label es inline-block → hay que centrarlo desde el contenedor.
   La grid .workflow-steps no se ve afectada porque grid items se posicionan
   por la propia grid, independiente de text-align del padre. */
.lr-landing .workflow .lr-container > .section-label,
.lr-landing .workflow .lr-container > h2 {
  display: block;
  text-align: center;
}
.lr-landing .workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
/* Línea decorativa: antes gradient blue→mint, flat mint por DS V2. */
.lr-landing .workflow-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background-color: var(--mint);
  border-radius: 2px;
}
.lr-landing .step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.lr-landing .step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--mint);
  font-family: 'Poppins', sans-serif;  /* DS V2: Poppins solo para números */
  font-weight: 700;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.lr-landing .step h3 { font-size: 16px; margin-bottom: 8px; }
.lr-landing .step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}


/* ======================================================
   7 · SOCIAL PROOF
   Flat navy (antes: gradient). DS V2 flat-only.
   ====================================================== */
.lr-landing .social-proof {
  padding: var(--section-padding);
  background-color: var(--navy);
  color: var(--white);
}
.lr-landing .social-proof h2 { color: var(--white); }

.lr-landing .testimonial-slider {
  position: relative;
  margin: 40px auto;
  max-width: 700px;
}
.lr-landing .testimonial-track {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.lr-landing .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.lr-landing .testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}
.lr-landing .testimonial-quote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.lr-landing .testimonial-author {
  color: var(--mint);
  font-weight: 700;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}
.lr-landing .testimonial-role {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  margin-top: 4px;
}
.lr-landing .testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.lr-landing .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.lr-landing .dot.active {
  background: var(--mint);
  border-color: var(--mint);
}

/* Client logos grid */
.lr-landing .client-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}
.lr-landing .client-logo-img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 36px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.lr-landing .client-logo-img[src$="/cementos-pacasmayo.png"] { height: 20px; }
.lr-landing .client-logo-img[src$="/interbank.png"],
.lr-landing .client-logo-img[src$="/sodimac.png"],
.lr-landing .client-logo-img[src$="/entel.png"],
.lr-landing .client-logo-img[src$="/afp-integra.png"] { height: 72px; }
@media (hover: hover) {
  .lr-landing .client-logo-img:hover { opacity: 1; transform: scale(1.04); }
}


/* ======================================================
   8 · PRICING
   ====================================================== */
.lr-landing .pricing {
  padding: var(--section-padding);
  background: var(--white);
}
.lr-landing .pricing .lr-container { text-align: center; max-width: 1100px; }
.lr-landing .pricing h2 { margin-bottom: 60px; }
.lr-landing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.lr-landing .pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  /* Flex column para que .pricing-features crezca y pegue el CTA al fondo.
     Starter tiene 5 features, Business y Enterprise tienen 7: sin esto,
     el CTA del Starter quedaba 2 líneas arriba del de los otros planes. */
  display: flex;
  flex-direction: column;
}
.lr-landing .pricing-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.lr-landing .pricing-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}
.lr-landing .pricing-badge {
  position: absolute;
  top: -15px;
  left: 20px;
  /* Estilo canónico DS V2 (.badge-mint): mint bg + navy text.
     Contraste 11.2:1 AAA. Reservado para flagship/servicio destacado
     — el plan "Más Popular" encaja en esa personalidad. */
  background: var(--mint);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: none;
}
.lr-landing .pricing-card.featured .pricing-badge { display: block; }

.lr-landing .pricing-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.lr-landing .pricing-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  min-height: 40px;
}
.lr-landing .pricing-price {
  font-family: 'Poppins', sans-serif;  /* DS V2: Poppins solo en precios */
  font-weight: 700;
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 24px;
  white-space: nowrap;
}
.lr-landing .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  /* Crece para rellenar el espacio disponible → el .pricing-cta queda
     pegado al fondo del card, alineando los 3 CTAs entre planes. */
  flex-grow: 1;
}
.lr-landing .pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--gray-700);
}
.lr-landing .pricing-features li:last-child { border-bottom: none; }
.lr-landing .pricing-features li::before {
  content: '✓';
  display: inline-block;
  width: 20px;
  color: var(--mint);
  font-weight: 700;
}
.lr-landing .pricing-cta { width: 100%; justify-content: center; }


/* ======================================================
   9 · FAQ
   ====================================================== */
.lr-landing .faq {
  padding: var(--section-padding);
  background: var(--gray-50);
}
.lr-landing .faq .lr-container { max-width: 900px; text-align: center; }
.lr-landing .faq h2 { margin-bottom: 60px; }
.lr-landing .faq-list { list-style: none; padding: 0; }
.lr-landing .faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lr-landing .faq-item > summary {
  list-style: none;                 /* quita el marker nativo */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
}
.lr-landing .faq-item > summary::-webkit-details-marker { display: none; }
.lr-landing .faq-item > summary:hover { background: var(--gray-50); }
.lr-landing .faq-item > summary h3 {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
  flex: 1;
}
.lr-landing .faq-item .faq-icon {
  width: 24px; height: 24px;
  color: var(--blue);
  stroke-width: 2.2;
  stroke-linecap: round;
  fill: none;
  stroke: currentColor;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.lr-landing .faq-item[open] .faq-icon { transform: rotate(45deg); }
.lr-landing .faq-answer {
  padding: 0 24px 24px;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}
.lr-landing .faq-answer p { font-size: inherit; line-height: inherit; color: inherit; margin: 0; }


/* ======================================================
   10 · CTA FINAL
   Flat navy-deep (antes: gradient + 2 radial glows). DS V2 flat-only.
   ====================================================== */
.lr-landing .cta-final {
  padding: 80px 0;
  background-color: var(--navy-deep);
  color: var(--white);
}
.lr-landing .cta-final .lr-container {
  text-align: center;
  max-width: 700px;
}
.lr-landing .cta-final h2 {
  color: var(--white);
  margin-bottom: 24px;
}
.lr-landing .cta-final p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 18px;
}


/* ===== Footer gap fix (landing termina en navy-deep) =====
   main.css define .site-footer { margin-top: 80px } pensado para
   páginas que terminan en fondo claro. Aquí el CTA final es
   navy-deep y el footer es navy-deep → el margen crearía una franja
   blanca visible. Override scoped a la landing. */
body > .site-footer { margin-top: 0; }


/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .lr-landing .hero .lr-container      { grid-template-columns: 1fr; }
  .lr-landing .hero-visual             { display: none; }
  .lr-landing .features-grid           { grid-template-columns: repeat(2, 1fr); }
  .lr-landing .workflow-steps          { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .lr-landing .workflow-steps::before  { display: none; }
  .lr-landing .pricing-grid            { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .lr-landing .pricing-card.featured   { transform: scale(1); }
  .lr-landing .solution .lr-container  { grid-template-columns: 1fr; }
  .lr-landing .client-logos            { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .lr-landing .features-grid     { grid-template-columns: 1fr; }
  .lr-landing .pain-grid         { grid-template-columns: 1fr; }
  .lr-landing .workflow-steps    { grid-template-columns: 1fr; }
  .lr-landing .trust-bar .lr-container { gap: 24px; }
  .lr-landing h1                 { font-size: 32px; }
  .lr-landing h2                 { font-size: 26px; }
  .lr-landing .hero              { padding: 60px 0; }
  .lr-landing .hero-buttons      { flex-direction: column; }
  .lr-landing .btn               { width: 100%; justify-content: center; }
  .lr-landing .client-logos      { grid-template-columns: repeat(2, 1fr); }
}


/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .lr-landing .pain-card,
  .lr-landing .feature-card,
  .lr-landing .pricing-card,
  .lr-landing .testimonial-card,
  .lr-landing .faq-item .faq-icon { transition: none; }
}
