/* ============================================================
   ADT Landing Page — Clase de Cortesía
   style.css — Estilos específicos de la landing
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Montserrat:wght@400;500;600;700&family=Inter:wght@400;500&family=Playfair+Display:ital@0;1&display=swap');

/* ── Variables (mismas del sitio principal) ────────────────── */
:root {
  --negro:         #1A1A1A;
  --naranja:       #E8650A;
  --naranja-hover: #C4540A;
  --naranja-suave: #FFF3E8;
  --blanco:        #FFFFFF;
  --gris-piedra:   #F5F5F5;
  --gris-texto:    #4A4A4A;
  --gris-borde:    #E0E0E0;

  --font-titulo:   'Oswald', sans-serif;
  --font-sub:      'Montserrat', sans-serif;
  --font-cuerpo:   'Inter', sans-serif;
  --font-cita:     'Playfair Display', serif;

  --s1: 8px;  --s2: 16px;  --s3: 24px;  --s4: 32px;
  --s5: 40px; --s6: 48px;  --s8: 64px;  --s10: 80px;  --s12: 96px;

  --max-width:   1100px;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.16);
  --t-fast:  150ms ease;
  --t-base:  250ms ease;
  --t-slow:  400ms ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-cuerpo);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gris-texto);
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--naranja); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--naranja-hover); }

h1, h2, h3, h4 {
  font-family: var(--font-titulo);
  color: var(--negro);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

/* ── Container ────────────────────────────────────────────── */
.lp-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s3);
}

/* ── Badge ────────────────────────────────────────────────── */
.lp-badge {
  display: inline-block;
  padding: 4px 14px;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  background: var(--naranja-suave);
  color: var(--naranja);
}

.lp-badge--outline {
  background: var(--blanco);
  border: 1.5px solid var(--naranja);
  color: var(--naranja);
}


/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: var(--s2) 0;
  transition: background var(--t-base), box-shadow var(--t-base);
}

.lp-header.is-scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
}

.lp-header.is-scrolled .lp-header__logo {
  color: var(--negro);
}

.lp-header.is-scrolled .lp-header__logo-text span {
  opacity: .5;
}

.lp-header .lp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-header__logo {
  display: flex;
  align-items: center;
  gap: var(--s1);
  color: var(--negro);
  text-decoration: none;
}

.lp-header__logo img {
  width: 44px;
  height: 44px;
}

.lp-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.lp-header__logo-text strong {
  font-family: var(--font-titulo);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.lp-header__logo-text span {
  font-size: 0.7rem;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 12px 28px;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blanco);
  background: var(--naranja);
  border: 2px solid var(--naranja);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t-base);
  text-decoration: none;
  text-align: center;
  justify-content: center;
}

.lp-btn:hover {
  background: var(--naranja-hover);
  border-color: var(--naranja-hover);
  color: var(--blanco);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lp-btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.lp-btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.lp-btn--full {
  width: 100%;
}

.lp-btn--whatsapp {
  background: #25D366;
  border-color: #25D366;
}

.lp-btn--whatsapp:hover {
  background: #1EBE57;
  border-color: #1EBE57;
}


/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  background: linear-gradient(135deg, #FFF3E8 0%, #FFE4CC 50%, #FFD6B0 100%);
  padding: 140px 0 100px;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,101,10,.1) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero .lp-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s8);
  align-items: center;
}

.lp-hero__content {
  position: relative;
  z-index: 2;
}

.lp-hero h1 {
  color: var(--negro);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: var(--s2);
  text-transform: none;
}

.lp-hero h1 em {
  color: var(--naranja);
  font-style: normal;
}

.lp-hero__sub {
  color: var(--gris-texto);
  font-size: 1.1rem;
  margin-top: var(--s3);
  max-width: 540px;
}

.lp-hero__actions {
  margin-top: var(--s4);
}

.lp-hero__note {
  margin-top: var(--s2);
  color: var(--gris-texto);
  opacity: .6;
  font-size: 0.85rem;
}

.lp-hero__visual {
  position: relative;
  z-index: 1;
}

.lp-hero__img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


/* ══════════════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════════════ */
.lp-stats {
  background: var(--naranja);
  padding: var(--s5) 0;
}

.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  text-align: center;
}

.lp-stat__number {
  display: block;
  font-family: var(--font-titulo);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--blanco);
}

.lp-stat__label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,.85);
  margin-top: 4px;
}


/* ══════════════════════════════════════════════════════════════
   SECTIONS (genérico)
   ══════════════════════════════════════════════════════════════ */
.lp-section {
  padding: var(--s10) 0;
}

.lp-section--gray {
  background: var(--gris-piedra);
}

.lp-section--dark {
  background: var(--negro);
  color: rgba(255,255,255,.85);
}

.lp-section--dark h2 {
  color: var(--blanco);
}

.lp-section--warm {
  background: var(--naranja-suave);
}

.lp-section--warm .lp-section__header p {
  color: var(--gris-texto);
}

.lp-section--form {
  background: linear-gradient(180deg, var(--gris-piedra) 0%, var(--blanco) 100%);
}

.lp-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--s6);
}

.lp-section__header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  margin-bottom: var(--s2);
}

.lp-section__header p {
  font-size: 1.05rem;
  color: var(--gris-texto);
}


/* ══════════════════════════════════════════════════════════════
   BENEFITS
   ══════════════════════════════════════════════════════════════ */
.lp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s4);
}

.lp-benefit {
  padding: var(--s4);
  background: var(--blanco);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gris-borde);
  transition: all var(--t-base);
}

.lp-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--naranja);
}

.lp-benefit__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--naranja-suave);
  border-radius: 12px;
  color: var(--naranja);
  margin-bottom: var(--s2);
}

.lp-benefit h3 {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: none;
  margin-bottom: var(--s1);
}

.lp-benefit p {
  font-size: 0.93rem;
  line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════════
   STEPS
   ══════════════════════════════════════════════════════════════ */
.lp-steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--s3);
}

.lp-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: var(--s4) var(--s3);
  background: var(--blanco);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.lp-step__number {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s2);
  font-family: var(--font-titulo);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blanco);
  background: var(--naranja);
  border-radius: 50%;
}

.lp-step h3 {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: none;
  margin-bottom: var(--s1);
}

.lp-step p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.lp-step__arrow {
  display: flex;
  align-items: center;
  padding-top: var(--s6);
  color: var(--gris-borde);
}


/* ══════════════════════════════════════════════════════════════
   AUTHORITY
   ══════════════════════════════════════════════════════════════ */
.lp-authority {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s8);
  align-items: center;
}

.lp-authority__photo {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.lp-authority__content .lp-badge {
  margin-bottom: var(--s2);
}

.lp-authority__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: var(--s3);
}

.lp-authority__content p {
  margin-bottom: var(--s2);
  font-size: 1rem;
  line-height: 1.75;
}

.lp-authority__content blockquote {
  margin-top: var(--s3);
  padding-left: var(--s3);
  border-left: 4px solid var(--naranja);
  font-family: var(--font-cita);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--negro);
}


/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.lp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s3);
}

.lp-testimonial {
  padding: var(--s4);
  background: var(--blanco);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gris-borde);
  box-shadow: var(--shadow-sm);
}

.lp-testimonial__stars {
  display: flex;
  gap: 2px;
  color: #F5A623;
  margin-bottom: var(--s2);
}

.lp-testimonial__text {
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--s2);
}

.lp-testimonial__author {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--naranja);
}


/* ══════════════════════════════════════════════════════════════
   HORARIOS Y COSTOS
   ══════════════════════════════════════════════════════════════ */
.lp-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.lp-info-card {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: var(--radius-lg);
  padding: var(--s4);
  transition: all var(--t-base);
}

.lp-info-card:hover {
  border-color: var(--naranja);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.lp-info-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--naranja-suave);
  color: var(--naranja);
  border-radius: 14px;
  margin-bottom: var(--s3);
}

.lp-info-card h3 {
  font-family: var(--font-sub);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--negro);
  text-transform: none;
  margin-bottom: var(--s3);
}

/* Schedule */
.lp-schedule__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-schedule__days {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gris-texto);
}

.lp-schedule__time {
  font-family: var(--font-titulo);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--naranja);
  letter-spacing: 0.02em;
}

.lp-schedule__divider {
  width: 100%;
  height: 1px;
  background: var(--gris-borde);
  margin: var(--s2) 0;
}

/* Pricing */
.lp-pricing__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-pricing__label {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gris-texto);
}

.lp-pricing__value {
  font-family: var(--font-titulo);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--naranja);
  line-height: 1.1;
}

.lp-pricing__value small {
  font-size: 0.55em;
  font-weight: 400;
  color: var(--gris-texto);
  margin-left: 4px;
}

.lp-pricing__note {
  font-size: 0.82rem;
  color: var(--gris-texto);
  margin-top: 2px;
}

.lp-pricing__divider {
  width: 100%;
  height: 1px;
  background: var(--gris-borde);
  margin: var(--s2) 0;
}

/* Location */
.lp-location__address {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--negro);
  line-height: 1.4;
}

.lp-location__city {
  font-size: 0.9rem;
  color: var(--gris-texto);
  margin-top: 2px;
}

.lp-location__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--s3);
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--naranja);
  transition: color var(--t-fast);
}

.lp-location__link:hover {
  color: var(--naranja-hover);
}


/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.lp-faq {
  max-width: 720px;
  margin: 0 auto;
}

.lp-faq__item {
  border-bottom: 1px solid var(--gris-borde);
}

.lp-faq__item summary {
  padding: var(--s3) 0;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  color: var(--negro);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--t-fast);
}

.lp-faq__item summary::-webkit-details-marker { display: none; }

.lp-faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--naranja);
  transition: transform var(--t-base);
  flex-shrink: 0;
  margin-left: var(--s2);
}

.lp-faq__item[open] summary::after {
  transform: rotate(45deg);
}

.lp-faq__item summary:hover {
  color: var(--naranja);
}

.lp-faq__item p {
  padding-bottom: var(--s3);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gris-texto);
}


/* ══════════════════════════════════════════════════════════════
   FORM
   ══════════════════════════════════════════════════════════════ */
.lp-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: start;
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gris-borde);
}

.lp-form__info h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--s2);
}

.lp-form__info > p {
  font-size: 1rem;
  color: var(--gris-texto);
  margin-bottom: var(--s4);
}

.lp-form__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.lp-form__checks li {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--negro);
}

.lp-form__checks svg {
  color: var(--naranja);
  flex-shrink: 0;
}

/* Form fields */
.lp-form__group {
  margin-bottom: var(--s3);
}

.lp-form__group label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--negro);
  margin-bottom: 6px;
}

.lp-form__group input,
.lp-form__group select,
.lp-form__group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-cuerpo);
  font-size: 1rem;
  color: var(--negro);
  background: var(--gris-piedra);
  border: 2px solid transparent;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.lp-form__group input:focus,
.lp-form__group select:focus,
.lp-form__group textarea:focus {
  border-color: var(--naranja);
  box-shadow: 0 0 0 3px rgba(232,101,10,.15);
  background: var(--blanco);
}

.lp-form__group textarea {
  resize: vertical;
  min-height: 80px;
}

.lp-form__group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.lp-form__privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gris-texto);
  margin-top: var(--s2);
}

.lp-form__privacy svg {
  flex-shrink: 0;
  opacity: .6;
}

/* Feedback */
.lp-form__feedback {
  display: none;
  align-items: center;
  gap: var(--s1);
  padding: var(--s2) var(--s3);
  border-radius: var(--radius);
  margin-top: var(--s3);
  font-size: 0.95rem;
  font-weight: 500;
}

.lp-form__feedback svg { flex-shrink: 0; }

.lp-form__feedback--success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.lp-form__feedback--error {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}


/* ══════════════════════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════════════════════ */
.lp-cta-final {
  text-align: center;
  padding: var(--s8) 0;
  background: var(--naranja);
}

.lp-cta-final h2 {
  color: var(--blanco);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--s2);
}

.lp-cta-final p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  margin-bottom: var(--s4);
}

.lp-cta-final .lp-btn--whatsapp {
  background: var(--blanco);
  border-color: var(--blanco);
  color: var(--naranja);
  font-weight: 700;
}

.lp-cta-final .lp-btn--whatsapp:hover {
  background: var(--negro);
  border-color: var(--negro);
  color: var(--blanco);
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.lp-footer {
  text-align: center;
  padding: var(--s4) 0;
  border-top: 1px solid var(--gris-borde);
}

.lp-footer p {
  font-size: 0.85rem;
  color: var(--gris-texto);
}

.lp-footer p + p { margin-top: 4px; }

.lp-footer a {
  color: var(--naranja);
  font-weight: 500;
}


/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOATING
   ══════════════════════════════════════════════════════════════ */
.lp-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: var(--blanco);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 90;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.lp-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  color: var(--blanco);
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .lp-hero .lp-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-hero__sub { margin-left: auto; margin-right: auto; }
  .lp-hero__visual { display: none; }

  .lp-authority {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-authority__img { display: none; }

  .lp-authority__content blockquote {
    border-left: none;
    border-top: 3px solid var(--naranja);
    padding-left: 0;
    padding-top: var(--s2);
  }

  .lp-info-grid {
    grid-template-columns: 1fr;
  }

  .lp-form-wrapper {
    grid-template-columns: 1fr;
    padding: var(--s4);
  }
}

@media (max-width: 768px) {
  .lp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s3);
  }

  .lp-steps__grid {
    flex-direction: column;
    align-items: center;
  }

  .lp-step__arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .lp-step { max-width: 100%; }

  .lp-hero { padding: 120px 0 var(--s8); }

  .lp-section { padding: var(--s8) 0; }
}

@media (max-width: 480px) {
  .lp-container { padding: 0 var(--s2); }

  .lp-hero h1 { font-size: 1.8rem; }

  .lp-btn--lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .lp-benefits__grid {
    grid-template-columns: 1fr;
  }

  .lp-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .lp-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s2);
  }

  .lp-form-wrapper {
    padding: var(--s3);
  }
}
