/* ==========================================================================
   Sedella — Landing V2.1
   Fondo blanco + crema pastel · Verde primavera · Rojo urgencia
   ========================================================================== */

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}
.ticker-item { color: var(--color-text-light); }
.ticker-sep  { color: rgba(255, 255, 255, 0.35); }

/* ============ HERO (imagen full-width arriba) ============ */
.hero {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(46, 139, 87, 0.06), transparent 70%),
    var(--color-bg);
  padding: 0 0 var(--s-7);
}
.hero__image-fw {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  background: var(--color-cream);
}
/* En desktop la imagen hook (3:4) se ve completa, centrada y sin recorte */
@media (min-width: 760px) {
  .hero__image-fw {
    max-width: 540px;
    border-radius: var(--radius-lg);
  }
}
.hero__content {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--s-6) var(--container-padding) 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: center;
}
.hero__badge-offer-inline {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--color-urgency-bg);
  color: var(--color-urgency);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.18);
}
.hero__badge-offer-inline::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-urgency);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: var(--fw-medium);
}
.hero__rating-stars {
  color: #FBBF24;
  letter-spacing: 0.05em;
  font-size: 1rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw + 1rem, 3.25rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  max-width: 18ch;
}
.hero__title em {
  color: var(--color-title-accent);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  background: var(--color-title-accent-soft);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.7;
}
.hero__sub {
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.55;
  max-width: 38ch;
}
.hero__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-1);
}
.hero__price-now {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2rem + 1vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.hero__price-old {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
.hero__price-save {
  display: inline-block;
  background: var(--color-mint);
  color: var(--color-accent-hover);
  font-size: 0.72rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
}
.hero__cta-wrap { margin-top: var(--s-3); width: 100%; max-width: 380px; }
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
  margin-top: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--color-border);
  width: 100%;
  max-width: 480px;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.3;
}
.hero__trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

/* ============ BOTÓN CTA PRINCIPAL (verde con shimmer + glow) ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  width: 100%;
  max-width: 380px;
  min-height: 58px;
  padding: 0 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, #3FB87A 0%, var(--color-accent) 100%);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow:
    0 4px 16px rgba(46, 139, 87, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: shimmer 3.2s infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0% { left: -120%; }
  100% { left: 220%; }
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(46, 139, 87, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary svg { flex-shrink: 0; }

/* ============ SECTIONS ============ */
.section { padding: var(--s-7) 0; position: relative; }
.section--cream { background: var(--color-cream); }
.section--mint  { background: var(--color-mint); }

.section__head {
  text-align: center;
  margin-bottom: var(--s-6);
}
.section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-3);
  padding: 0.3rem 0.7rem;
  background: var(--color-mint);
  border-radius: var(--radius-full);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.4rem + 2vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-text);
  max-width: 24ch;
  margin: 0 auto;
}
.section__title em {
  color: var(--color-title-accent);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.section__title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 5px;
  background: var(--color-title-accent-soft);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.7;
}
.section__sub {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 44ch;
  margin: var(--s-3) auto 0;
  line-height: 1.55;
}

/* ============ PAIN BULLETS ============ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .pain-grid:not(.pain-grid--with-image) { grid-template-columns: repeat(4, 1fr); }
}
.pain-grid--with-image {
  max-width: 720px;
}
.pain-image {
  grid-column: 1 / -1;
  margin: var(--s-2) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: var(--color-bg-alt);
}
.pain-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.pain-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--s-4) var(--s-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.04);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}
.pain-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-urgency-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-urgency);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.12);
}
.pain-card__icon svg { width: 22px; height: 22px; }
.pain-card__text {
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  line-height: 1.35;
}

/* ============ VIDEO DEMO ============ */
.video-demo__wrap {
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-cream);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}
.video-demo__wrap video {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ CAROUSEL BASE (pasos + reseñas) ============ */
.carousel-wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  transition: transform 0.4s var(--ease-out);
}
.carousel-track > * {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 var(--s-2);
}
.carousel-arrow {
  position: absolute;
  top: 38%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.1);
  z-index: 5;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  min-height: auto;
}
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow--prev { left: -8px; }
.carousel-arrow--next { right: -8px; }
.carousel-arrow:hover:not(:disabled) {
  background: var(--color-accent);
  color: white;
  transform: scale(1.06);
}
.carousel-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel-dots {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  margin-top: var(--s-4);
}
.carousel-dot {
  width: 8px;
  height: 8px;
  min-height: auto;
  border-radius: 50%;
  background: var(--color-border-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--t-fast), width var(--t-fast);
}
.carousel-dot.active {
  background: var(--color-accent);
  width: 22px;
  border-radius: var(--radius-full);
}

/* En desktop: convertir el carrusel en grid */
@media (min-width: 1024px) {
  .steps-carousel .carousel-viewport { overflow: visible; }
  .steps-carousel .carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
    transform: none !important;
  }
  .steps-carousel .carousel-track > * { padding: 0; }
  .steps-carousel .carousel-arrow,
  .steps-carousel .carousel-dots { display: none; }
}
@media (min-width: 768px) {
  .reviews-carousel .carousel-viewport { overflow: visible; }
  .reviews-carousel .carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
    transform: none !important;
  }
  .reviews-carousel .carousel-track > * { padding: 0; }
  .reviews-carousel .carousel-arrow,
  .reviews-carousel .carousel-dots { display: none; }
}

/* ============ 3 PASOS ============ */
.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--s-5) var(--s-3) var(--s-4);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
  border: 1px solid var(--color-border);
  height: 100%;
}
.step-card__image {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-cream);
  position: relative;
}
@media (min-width: 1024px) {
  .step-card__image { max-width: 100%; }
}
.step-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.step-card__num {
  position: absolute;
  top: var(--s-2);
  left: var(--s-2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3FB87A, var(--color-accent));
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-extrabold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.35);
}
.step-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
}
.step-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  max-width: 28ch;
}

/* ============ ANTES / DESPUÉS ============ */
.beforeafter { background: var(--color-cream); }
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 928 / 1152;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  background: white;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.15);
}
.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-slider__img--before {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}
.ba-tag {
  position: absolute;
  top: var(--s-3);
  z-index: 3;
  background: rgba(17, 24, 39, 0.85);
  color: white;
  font-size: 0.7rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
}
.ba-tag--before { left: var(--s-3); }
.ba-tag--after  { right: var(--s-3); background: var(--color-accent); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  z-index: 4;
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  touch-action: none;
}
.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.ba-handle-knob svg { width: 20px; height: 20px; }
.ba-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: var(--s-3);
  letter-spacing: 0.04em;
  font-weight: var(--fw-medium);
}

.kits-image {
  margin: 0 0 var(--s-6);
}
.kits-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ PACK SELECTOR ============ */
.pricing-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
}
.price-card {
  background: white;
  border: 2px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: var(--s-5) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.04);
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
}
.price-card--featured {
  border-color: var(--color-accent);
  box-shadow: 0 16px 36px rgba(46, 139, 87, 0.2);
}
@media (min-width: 760px) {
  .price-card--featured { transform: scale(1.04); }
}
.price-card--selected {
  border-color: var(--color-accent);
  background: var(--color-mint);
}
.price-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3FB87A, var(--color-accent));
  color: white;
  font-size: 0.7rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(46, 139, 87, 0.35);
}
.price-card-badge--alt {
  background: linear-gradient(135deg, #F87171, var(--color-urgency));
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.32);
}
.price-card-badge--ghost { display: none; }
.price-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
}
.price-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.price-card-amount {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.price-card-now {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.price-card-old {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
.price-card-discount {
  background: var(--color-urgency-bg);
  color: var(--color-urgency);
  font-size: 0.7rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}
.price-card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-card-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
}
.price-card-features li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: var(--fw-extrabold);
  flex-shrink: 0;
}
.price-card__btn {
  margin-top: auto;
  width: 100%;
  min-height: 48px;
  padding: 0 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-text);
  background: white;
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.price-card__btn:hover { background: var(--color-text); color: white; }
.price-card__btn--primary {
  background: linear-gradient(135deg, #3FB87A, var(--color-accent));
  border-color: var(--color-accent);
  color: white;
  box-shadow: 0 4px 14px rgba(46, 139, 87, 0.28);
}
.price-card__btn--primary:hover {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  border-color: var(--color-accent-hover);
  color: white;
  box-shadow: 0 8px 20px rgba(46, 139, 87, 0.4);
}
.pricing__note {
  text-align: center;
  margin-top: var(--s-5);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ============ SHIPPING CHECKPOINTS (Shrine pattern) ============ */
.checkpoints {
  width: 100%;
  max-width: 480px;
  margin: var(--s-2) auto 0;
  padding: var(--s-4) var(--s-4);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}
.checkpoints__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
}
/* Línea conectora gris (fondo) */
.checkpoints__track::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--color-border-strong);
  z-index: 0;
}
/* Línea conectora verde (solo el primer tramo, paso completado) */
.checkpoints__track::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 16.66%;
  width: 33.33%;
  height: 2px;
  background: var(--color-accent);
  z-index: 0;
}
.checkpoint {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  text-align: center;
  min-width: 0;
}
.checkpoint__circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--color-border-strong);
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.checkpoint__circle svg {
  width: 22px;
  height: 22px;
}
.checkpoint--done .checkpoint__circle {
  background: linear-gradient(135deg, #3FB87A, var(--color-accent));
  border-color: var(--color-accent);
  color: white;
  box-shadow: 0 6px 16px rgba(46, 139, 87, 0.32);
}
.checkpoint__tick {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(17, 24, 39, 0.15);
}
.checkpoint__tick svg {
  width: 11px;
  height: 11px;
}
.checkpoint__label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.2;
}
.checkpoint__date {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
  line-height: 1.2;
}
.checkpoint--done .checkpoint__date {
  color: var(--color-accent);
  font-weight: var(--fw-bold);
}
@media (max-width: 380px) {
  .checkpoints { padding: var(--s-4) var(--s-3); }
  .checkpoint__circle { width: 42px; height: 42px; }
  .checkpoint__circle svg { width: 20px; height: 20px; }
  .checkpoints__track::before,
  .checkpoints__track::after { top: 20px; }
  .checkpoint__label { font-size: 0.78rem; }
  .checkpoint__date { font-size: 0.68rem; }
}

/* ============ RESEÑAS ============ */
.reviews__summary {
  text-align: center;
  margin: 0 auto var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  align-items: center;
}
.reviews__summary-stars {
  color: #FBBF24;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.reviews__summary-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}
.reviews__summary-text strong { color: var(--color-text); }
.review-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
  height: 100%;
}
.review-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.review-card__body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}
.review-card__stars {
  color: #FBBF24;
  letter-spacing: 0.05em;
  font-size: 1rem;
}
.review-card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}
.review-card__author {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: auto;
}
.review-card__verified {
  display: inline-block;
  color: var(--color-accent);
  font-weight: var(--fw-bold);
}

/* ============ GARANTÍA ============ */
.guarantee { background: var(--color-cream); }
.guarantee__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}
.guarantee__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, white, #F8FBF6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  box-shadow:
    0 12px 28px rgba(46, 139, 87, 0.18),
    inset 0 1px 0 white;
  border: 1px solid var(--color-border);
}
.guarantee__icon svg { width: 46px; height: 46px; }
.guarantee__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.4rem + 2vw, 2.2rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.guarantee__text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 48ch;
}
.guarantee__bullets {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
  width: 100%;
  margin-top: var(--s-3);
}
@media (min-width: 600px) {
  .guarantee__bullets { grid-template-columns: 1fr 1fr; }
}
.guarantee__bullet {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  background: white;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--color-text);
  text-align: left;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.06);
  border: 1px solid var(--color-border);
}
.guarantee__bullet svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  min-height: auto;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-mint);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: var(--fw-regular);
  transition: transform var(--t-base), background var(--t-fast);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  color: white;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.faq-answer > div { overflow: hidden; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.faq-answer ul {
  padding: 0 0 1.25rem 1.2rem;
  margin: 0;
  list-style: disc;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ CTA FINAL ============ */
.cta-final {
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(46, 139, 87, 0.08), transparent 70%),
    var(--color-bg);
  text-align: center;
  padding: var(--s-7) 0;
}
.cta-final__image {
  width: 100%;
  max-width: 460px;
  margin: var(--s-2) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cta-final__image img {
  display: block;
  width: 100%;
  height: auto;
}
.cta-final--fullwidth { padding: 0 0 var(--s-6); }
.cta-final--fullwidth .cta-final__image {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  line-height: 0;
  font-size: 0;
}
.cta-final--fullwidth .cta-final__image img { vertical-align: bottom; }
.cta-final--fullwidth .cta-final__inner { margin-top: var(--s-5); gap: 0; }
.cta-final__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  padding: 0 var(--container-padding);
}
.cta-final__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--color-urgency-bg);
  color: var(--color-urgency);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.18);
}
.cta-final__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-urgency);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.4rem + 1.6vw, 2.2rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.cta-final__sub {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 42ch;
  line-height: 1.55;
}

/* ============ STICKY BOTTOM CTA BAR (mobile) ============ */
.floating-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem var(--container-padding);
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.floating-cta.is-visible { transform: translateY(0); }
@media (max-width: 1023px) {
  .floating-cta { display: block; }
}
.floating-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.floating-cta__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.floating-cta__name {
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
}
.floating-cta__price-row { display: flex; align-items: baseline; gap: var(--s-2); }
.floating-cta__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
}
.floating-cta__price-old {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}
.floating-cta__btn {
  flex-shrink: 0;
  min-height: 46px;
  padding: 0 1.1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #3FB87A, var(--color-accent));
  color: white;
  font-size: 0.78rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
  box-shadow: 0 4px 14px rgba(46, 139, 87, 0.32);
}
.floating-cta__btn:hover { background: var(--color-accent-hover); }

/* ============ HELPERS ============ */
.center-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--s-5);
}

/* ============ BENEFICIOS ============ */
.benefits-image {
  width: 100%;
  margin: var(--s-6) 0 0;
  line-height: 0;
}
.section--flush-bottom { padding-bottom: 0; }
.benefits-image img {
  display: block;
  width: 100%;
  height: auto;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.benefit-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--s-5) var(--s-4);
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.benefit-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--s-3);
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-title-accent-soft);
  color: var(--color-title-accent);
}
.benefit-card__icon svg { width: 22px; height: 22px; }
.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin: 0 0 var(--s-2);
  line-height: 1.25;
}
.benefit-card__text {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.45;
  margin: 0;
}
@media (min-width: 720px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit-card { padding: var(--s-5); }
  .benefit-card__title { font-size: 1.05rem; }
  .benefit-card__text { font-size: 0.92rem; }
}

/* ============ COMPARATIVA (Shrine-style) ============ */
.compare-wrap {
  margin-top: var(--s-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.compare-table thead th {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 0.82rem;
  text-align: center;
  padding: var(--s-4) var(--s-2);
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.02em;
}
.compare-table thead th.compare-th--ours {
  color: var(--color-title-accent);
  background: var(--color-title-accent-soft);
  font-size: 0.92rem;
  position: relative;
}
.compare-table thead th.compare-th--ours::after {
  content: 'MEJOR ELECCIÓN';
  display: block;
  font-size: 0.58rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.08em;
  margin-top: 2px;
  color: var(--color-title-accent);
  opacity: 0.85;
}
.compare-table tbody td,
.compare-table tbody th {
  padding: var(--s-3) var(--s-2);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  vertical-align: middle;
}
.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: none; }
.compare-table tbody th {
  text-align: left;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  font-size: 0.85rem;
  padding-left: var(--s-3);
  padding-right: var(--s-2);
  width: 38%;
}
.compare-table td.compare-cell--ours {
  background: rgba(196, 114, 90, 0.06);
  border-left: 1px solid var(--color-title-accent-soft);
  border-right: 1px solid var(--color-title-accent-soft);
}
.compare-table tbody tr:last-child td.compare-cell--ours {
  border-bottom: none;
}
.compare-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
}
.compare-icon svg { width: 14px; height: 14px; stroke-width: 3; }
.compare-icon--yes {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.compare-icon--no {
  background: #FEE2E2;
  color: var(--color-urgency);
}
.compare-icon--mid {
  background: #FEF3C7;
  color: #B45309;
}
@media (min-width: 720px) {
  .compare-table { font-size: 0.95rem; }
  .compare-table thead th { font-size: 0.95rem; padding: var(--s-4); }
  .compare-table thead th.compare-th--ours { font-size: 1.05rem; }
  .compare-table tbody th { font-size: 0.95rem; padding-left: var(--s-5); }
  .compare-table tbody td, .compare-table tbody th { padding: var(--s-4); }
  .compare-icon { width: 32px; height: 32px; }
  .compare-icon svg { width: 16px; height: 16px; }
}

/* ============ FICHA TÉCNICA ============ */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.spec-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: var(--s-3);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--s-3) var(--s-4);
}
.spec-item__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: var(--color-mint);
  color: var(--color-accent);
}
.spec-item__icon svg { width: 22px; height: 22px; }
.spec-item__label {
  display: block;
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.spec-item__value {
  display: block;
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  line-height: 1.3;
}
.specs-box {
  margin-top: var(--s-5);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  border: 1px solid var(--color-border);
}
.specs-box__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin: 0 0 var(--s-3);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.specs-box__title svg { width: 20px; height: 20px; color: var(--color-title-accent); }
.specs-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-2);
}
.specs-box__list li {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}
.specs-box__list li svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}
@media (min-width: 720px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .spec-item__value { font-size: 1rem; }
}

/* ============ PAIN — IMAGEN FULL WIDTH ============ */
.pain-fullwidth-image {
  width: 100%;
  margin: 0 0 var(--s-6);
  line-height: 0;
}
.pain-fullwidth-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============ OFERTA / KIT TRANSFORMACIÓN ============ */
.section.offer-gift.section--flush-bottom { padding-bottom: var(--s-5); }
.offer-gift { padding-top: 0; }
.offer-gift__image {
  width: 100%;
  margin: 0;
  line-height: 0;
  font-size: 0;
}
.offer-gift__image img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 0;
}
.offer-gift__note {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  max-width: 620px;
  margin: var(--s-5) auto 0;
  padding: var(--s-4);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
  box-shadow: 0 4px 16px rgba(58, 36, 24, 0.05);
}
.offer-gift__note-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.offer-gift__note-icon svg { width: 20px; height: 20px; }
.offer-gift__note strong { color: var(--color-text); font-weight: 700; }

/* ============ GARANTÍA — IMAGEN ============ */
.guarantee__image {
  width: 100%;
  margin: var(--s-6) 0 0;
  line-height: 0;
  font-size: 0;
}
.guarantee__image img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 0;
}
.section.section--flush-bottom { padding-bottom: 0; }
