/* =============================================
   ErLabs Fabricación - Landing
   ============================================= */

:root {
  --erl-font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --erl-serif: 'Noto Serif', Georgia, serif;

  /* Colores marca */
  --erl-black: #0a0a0a;
  --erl-text: #0a0a0a;
  --erl-muted: #555;
  --erl-bg: #ffffff;
  --erl-cream: #eef0d4;
  --erl-cream-light: #f8faea;
  --erl-green: #9ec53b;
  --erl-orange: #d96f2c;
  --erl-orange-dark: #b85a23;
  --erl-border: #e5e5e5;

  /* Container */
  --erl-container: 1280px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--erl-font);
  color: var(--erl-text);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.erl-container {
  max-width: var(--erl-container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ TIPOGRAFÍA H2 (patrón 2 partes) ============ */
.erl-h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.3em;
  row-gap: 0.05em;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: 44px;
}
.erl-h2--center { justify-content: center; text-align: center; }
.erl-h2__p1 {
  font-family: var(--erl-font);
  font-weight: 700;
  color: var(--erl-text);
}
.erl-h2__p2 {
  font-family: var(--erl-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--erl-green);
  letter-spacing: -0.01em;
}
.erl-h2--light .erl-h2__p1 { color: #fff; }
.erl-h2--light .erl-h2__p2 { color: #fff; opacity: 0.95; }

/* ============ TOPNAV ============ */
.erl-topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.erl-topnav__inner {
  max-width: var(--erl-container);
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.erl-topnav__cta {
  padding: 10px 22px;
  background: var(--erl-black);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.erl-topnav__cta:hover { opacity: 0.9; }
.erl-topnav__cta:active { transform: scale(0.97); }

/* ============ LOGO ============ */
.erl-logo {
  display: inline-flex;
  align-items: center;
}
.erl-logo__img {
  height: 48px;
  width: auto;
  display: block;
}

/* ============ HERO ============ */
.erl-hero {
  background: var(--erl-black);
  color: #fff;
  padding: 64px 32px 72px;
}
.erl-hero__inner {
  max-width: var(--erl-container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
}
.erl-hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.erl-hero__eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--erl-green);
  font-weight: 700;
}
.erl-hero__title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.erl-hero__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}

/* ============ FORM CARD ============ */
.erl-hero__form-card {
  background: #ebebe7;
  border-radius: 22px;
  padding: 30px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.erl-form__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--erl-green);
  font-weight: 700;
}
.erl-form__title {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
  color: var(--erl-black);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.erl-form__sub {
  margin: 0 0 20px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #666;
}
.erl-form__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.erl-form__field {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #d8d8d4;
  border-radius: 10px;
  color: var(--erl-black);
  font-family: inherit;
  font-size: 14.5px;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease;
}
.erl-form__field::placeholder { color: #888; opacity: 1; }
.erl-form__field:focus {
  outline: none;
  border-color: var(--erl-green);
}
.erl-form__field--textarea {
  min-height: 90px;
  resize: vertical;
  font-family: inherit;
}
.erl-form__honeypot {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.erl-form__submit {
  position: relative;
  margin-top: 8px;
  align-self: flex-start;
  padding: 16px 38px;
  background: var(--erl-black);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  min-width: 140px;
  min-height: 50px;
}
.erl-form__submit:hover { opacity: 0.92; }
.erl-form__submit:active { transform: scale(0.97); }
.erl-form__submit.is-loading { pointer-events: none; }
.erl-form__submit.is-loading .erl-form__submit-text { opacity: 0; }
.erl-form__submit-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  opacity: 0;
  animation: erl-spin 0.7s linear infinite;
}
.erl-form__submit.is-loading .erl-form__submit-loader { opacity: 1; }
@keyframes erl-spin { to { transform: rotate(360deg); } }

.erl-form__success {
  padding: 14px 18px;
  background: rgba(158, 197, 59, 0.18);
  border: 1px solid var(--erl-green);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--erl-black);
}
.erl-form__error {
  padding: 14px 18px;
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.4);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #c84444;
}

/* ============ VIDEOS ============ */
.erl-videos {
  background: #fff;
  padding: 88px 0;
}
.erl-videos__header {
  margin-bottom: 40px;
}

.erl-videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.erl-video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #d4d4d0;
  cursor: pointer;
}
.erl-video-card__img {
  position: absolute;
  inset: 0;
}
.erl-video-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.erl-video-card.is-playing .erl-video-card__play {
  opacity: 0;
  pointer-events: none;
}
.erl-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s ease, opacity 0.25s ease;
}
.erl-video-card__play svg { width: 22px; height: 22px; margin-left: 3px; }
.erl-video-card:hover .erl-video-card__play {
  background: rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%) scale(1.08);
}

/* ============ FEATURES (2 grupos) ============ */
.erl-features {
  padding: 88px 0;
}
.erl-features--white { background: #fff; }
.erl-features--cream { background: var(--erl-cream); }

.erl-features__header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.erl-features__sub {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--erl-muted);
  max-width: 640px;
}
.erl-features__sub strong {
  color: var(--erl-text);
  font-weight: 700;
}
.erl-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.erl-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.erl-feature__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--erl-text);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.erl-feature__icon svg { width: 100%; height: 100%; }
.erl-feature:hover .erl-feature__icon { transform: translateY(-3px); }
.erl-feature__title {
  margin: 6px 0 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--erl-text);
}
.erl-feature__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--erl-muted);
  max-width: 240px;
}

/* ============ REASONS (fondo naranja) ============ */
.erl-reasons {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}
.erl-reasons__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--erl-orange) 0%, var(--erl-orange-dark) 100%);
  z-index: 0;
}
.erl-reasons__bg::after {
  /* Imagen de viales sutil a la derecha */
  content: "";
  position: absolute;
  right: -10%;
  top: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center right, rgba(0, 0, 0, 0.15), transparent 70%);
  pointer-events: none;
}
.erl-reasons__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
  z-index: 0;
}
.erl-reasons__inner {
  position: relative;
  z-index: 2;
}
.erl-reasons__header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.erl-reasons__pill {
  display: inline-block;
  padding: 14px 26px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  max-width: 740px;
  text-align: center;
}

.erl-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.erl-reason-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
}
.erl-reason-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.13);
}
.erl-reason-card__title {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.005em;
}
.erl-reason-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

/* ============ COMPARISON ============ */
.erl-comparison {
  background: #fff;
  padding: 88px 0;
}
.erl-comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.erl-comparison__left {
  display: flex;
  flex-direction: column;
}

.erl-comparison__table-wrap {
  position: relative;
}
.erl-comparison__header-erlabs {
  position: absolute;
  top: -32px;
  right: 80px;
  width: 80px;
  height: 36px;
  background: var(--erl-green);
  border-radius: 999px 999px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  z-index: 2;
}
.erl-comparison__erlabs-bottom {
  position: absolute;
  bottom: -16px;
  right: 80px;
  width: 80px;
  height: 32px;
  background: var(--erl-green);
  border-radius: 0 0 999px 999px;
  z-index: 1;
}
.erl-comparison__header-otros {
  position: absolute;
  top: -28px;
  right: 0;
  width: 80px;
  text-align: center;
  color: var(--erl-text);
  font-size: 15px;
  font-weight: 700;
  z-index: 1;
  padding-top: 8px;
}

.erl-comparison__table {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 80px 80px;
}
.erl-comparison__row { display: contents; }
.erl-comparison__row > * {
  padding: 18px 24px;
  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: center;
}
.erl-comparison__row:last-child > * { border-bottom: 0; }
.erl-comparison__feature {
  font-size: 16px;
  font-weight: 700;
  color: var(--erl-text);
  background: #fff;
}
.erl-comparison__cell { justify-content: center; }
.erl-comparison__cell--erlabs { background: var(--erl-green); }
.erl-comparison__cell--otros { background: #f5f5e9; }
.erl-comparison__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}
.erl-comparison__icon svg { width: 100%; height: 100%; }
.erl-comparison__icon--check svg { stroke: #fff; }
.erl-comparison__icon--cross svg { stroke: var(--erl-text); }

/* ============ PROCESS STEPS ============ */
.erl-process {
  background: var(--erl-cream);
  padding: 88px 0;
}
.erl-process__header { margin-bottom: 56px; }
.erl-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.erl-step {
  padding: 36px 32px;
  background: var(--erl-cream-light);
  border: 1px solid #dde0c5;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.erl-step:hover {
  border-color: var(--erl-green);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.erl-step__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.erl-step__number {
  font-family: var(--erl-serif);
  font-style: italic;
  font-size: 88px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1.5px var(--erl-green);
  color: transparent;
}
.erl-step__line {
  width: 32px;
  height: 2px;
  background: var(--erl-green);
  border-radius: 2px;
}
.erl-step__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--erl-text);
}
.erl-step__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--erl-muted);
}

/* ============ REVIEWS ============ */
.erl-reviews {
  background: #fff;
  padding: 80px 0;
}
.erl-reviews__header {
  margin-bottom: 40px;
}
.erl-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.erl-review {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.erl-review__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--erl-green);
}
.erl-review__stars svg { width: 16px; height: 16px; }
.erl-review__rating {
  margin-left: 8px;
  font-size: 14px;
  color: var(--erl-muted);
}
.erl-review__text {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
  color: var(--erl-text);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.erl-review__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}
.erl-review__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.erl-review__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--erl-text);
}
.erl-review__role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--erl-muted);
}

/* ============ FAQs ============ */
.erl-faqs {
  background: #fff;
  padding: 88px 0;
}
.erl-faqs__header { margin-bottom: 56px; }
.erl-faqs__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.erl-faq {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.erl-faq[open] { border-color: var(--erl-green); }
.erl-faq__head {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.erl-faq__head::-webkit-details-marker { display: none; }
.erl-faq__head::marker { display: none; content: ''; }
.erl-faq__q {
  font-size: 16px;
  font-weight: 600;
  color: var(--erl-text);
  line-height: 1.4;
}
.erl-faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.erl-faq__icon::before,
.erl-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--erl-text);
  border-radius: 1px;
}
.erl-faq__icon::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 2px;
  transform: translateY(-50%);
}
.erl-faq__icon::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.erl-faq[open] .erl-faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.erl-faq__body {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--erl-muted);
}
.erl-faq__body p { margin: 0; }

/* ============ CTA FINAL ============ */
.erl-cta {
  background: var(--erl-cream);
  padding: 100px 0;
}
.erl-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.erl-cta__sub {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--erl-muted);
  max-width: 640px;
}
.erl-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 38px;
  background: var(--erl-black);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, transform 0.15s ease;
  margin-top: 8px;
}
.erl-cta__btn:hover { opacity: 0.9; }
.erl-cta__btn:active { transform: scale(0.97); }

/* ============ FOOTER ============ */
.erl-footer {
  background: var(--erl-black);
  color: #fff;
  padding: 80px 0 32px;
}
.erl-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.erl-footer__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Brand col */
.erl-footer__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.erl-footer__title-p1 {
  font-family: var(--erl-font);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
}
.erl-footer__title-p2 {
  font-family: var(--erl-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--erl-green);
  letter-spacing: -0.005em;
  margin-top: 2px;
}
.erl-footer__tag {
  margin: 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  max-width: 380px;
}

/* Contact col */
.erl-footer__heading {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--erl-orange);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.erl-footer__line {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.erl-footer__line a {
  color: inherit;
  transition: color 0.2s ease;
}
.erl-footer__line a:hover { color: var(--erl-orange); }

/* Bottom */
.erl-footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: center;
}
.erl-footer__copy {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

/* =============================================
   TABLET & MOBILE
   ============================================= */
@media (max-width: 1199px) {
  .erl-hero__inner {
    grid-template-columns: 1fr 420px;
    gap: 48px;
  }
  .erl-hero__title { font-size: 42px; }
  .erl-h2 { font-size: 38px; }
  .erl-features__grid { gap: 24px; }
}

@media (max-width: 989px) {
  .erl-container { padding: 0 24px; }
  .erl-hero {
    padding: 48px 24px 64px;
  }
  .erl-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .erl-hero__form-card {
    max-width: 100%;
    padding: 28px 26px;
  }
  .erl-comparison__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .erl-comparison__left {
    text-align: center;
  }
  .erl-h2:not(.erl-h2--center) {
    justify-content: center;
    text-align: center;
  }
  .erl-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
  .erl-reasons__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .erl-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .erl-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .erl-videos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .erl-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .erl-footer__tag { margin: 0; }
  .erl-footer__title-p1,
  .erl-footer__title-p2 { font-size: 26px; }
}

@media (max-width: 749px) {
  :root { --erl-container: 100%; }
  .erl-container { padding: 0 20px; }
  .erl-topnav__inner { padding: 10px 20px; }
  .erl-logo__img { height: 38px; }
  .erl-topnav__cta {
    padding: 8px 16px;
    font-size: 11px;
  }
  .erl-hero {
    padding: 36px 20px 56px;
  }
  .erl-hero__title { font-size: 30px; line-height: 1.12; }
  .erl-hero__desc { font-size: 15px; }
  .erl-hero__form-card {
    padding: 26px 22px;
    border-radius: 18px;
  }
  .erl-form__title { font-size: 22px; }
  .erl-form__submit {
    width: 100%;
    align-self: stretch;
  }
  .erl-h2 { font-size: 28px; }
  .erl-videos { padding: 56px 0; }
  .erl-features { padding: 56px 0; }
  .erl-features__header { margin-bottom: 40px; }
  .erl-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .erl-features--cream .erl-feature__desc {
    font-size: 12px;
  }
  .erl-reasons { padding: 64px 0; }
  .erl-reasons__pill { font-size: 13px; padding: 12px 20px; }
  .erl-reasons__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .erl-reason-card { padding: 24px 22px; }
  .erl-reason-card__title { font-size: 17px; }
  .erl-comparison { padding: 56px 0; }
  .erl-comparison__grid { gap: 40px; }
  .erl-comparison__table {
    grid-template-columns: 1fr 50px 50px;
  }
  .erl-comparison__row > * {
    padding: 14px 14px;
  }
  .erl-comparison__feature { font-size: 13px; }
  .erl-comparison__icon { width: 18px; height: 18px; }
  .erl-comparison__header-erlabs,
  .erl-comparison__header-otros,
  .erl-comparison__erlabs-bottom {
    width: 50px;
    font-size: 13px;
  }
  .erl-comparison__header-erlabs { right: 50px; }
  .erl-comparison__erlabs-bottom { right: 50px; }
  .erl-process { padding: 56px 0; }
  .erl-process__header { margin-bottom: 32px; }
  .erl-process__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .erl-step {
    flex-direction: row;
    padding: 22px 18px;
    align-items: flex-start;
    gap: 14px;
  }
  .erl-step__meta {
    flex-shrink: 0;
    min-width: 70px;
    align-items: center;
  }
  .erl-step__number { font-size: 56px; }
  .erl-step__line { width: 24px; }
  .erl-reviews { padding: 56px 0; }
  .erl-reviews__header { margin-bottom: 32px; }
  .erl-reviews__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .erl-review__text { font-size: 17px; }
  .erl-faqs { padding: 56px 0; }
  .erl-faqs__header { margin-bottom: 32px; }
  .erl-cta { padding: 64px 0; }
  .erl-cta__btn { padding: 16px 28px; font-size: 13px; }
}
