/* ============================================================
   HIDROLIT — home.css | Home premium v1.0
   Cargado SOLO en la home (is_front_page).
   Animaciones: Intersection Observer + CSS keyframes + hover 3D.
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --hlp-h-blue-dark: #023C7F;
  --hlp-h-blue:      #449FDC;
  --hlp-h-blue-glow: rgba(68, 159, 220, 0.35);
  --hlp-h-white:     #ffffff;
  --hlp-h-off:       #f4f8fc;
  --hlp-h-text:      #0a1628;
  --hlp-h-muted:     #4a6380;
  --hlp-h-transition: cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset home específico ─────────────────────────────── */
.hlp-home { overflow-x: hidden; }
.hlp-home * { box-sizing: border-box; }
.hlp-home a { text-decoration: none; }

/* ═══════════════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════════════ */
.hlp-hero {
  position: relative;
  min-height: 80vh; /* Reducido en desktop; era 100vh */
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #011d3f 0%, var(--hlp-h-blue-dark) 50%, #0a4a8a 100%);
  overflow: hidden;
}

/* Burbujas de agua animadas en el fondo */
.hlp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hlp-hero__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(68,159,220,.3), rgba(68,159,220,.05));
  border: 1px solid rgba(68,159,220,.2);
  animation: hlp-bubble-float linear infinite;
}
.hlp-hero__bubble:nth-child(1) { width:320px;height:320px;left:-60px;bottom:-80px;animation-duration:18s; }
.hlp-hero__bubble:nth-child(2) { width:180px;height:180px;right:8%;top:10%;animation-duration:14s;animation-delay:-4s; }
.hlp-hero__bubble:nth-child(3) { width:90px;height:90px;left:40%;top:20%;animation-duration:10s;animation-delay:-7s; }
.hlp-hero__bubble:nth-child(4) { width:240px;height:240px;right:-50px;bottom:-60px;animation-duration:16s;animation-delay:-2s; }

@keyframes hlp-bubble-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-20px) rotate(5deg); }
  66%  { transform: translateY(10px) rotate(-5deg); }
}

/* ── OLAS SVG ──────────────────────────────────────────── */
.hlp-hero__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;   /* doble — para el loop */
  pointer-events: none;
  z-index: 0;
}
.hlp-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
}
/* Ola 1: oscura, lenta */
.hlp-hero__wave--1 {
  height: 220px;
  fill: rgba(1,15,38,.55);
  animation: hlp-wave-slide 18s linear infinite;
}
/* Ola 2: media, dirección inversa */
.hlp-hero__wave--2 {
  height: 180px;
  fill: rgba(2,28,68,.65);
  animation: hlp-wave-slide 12s linear infinite reverse;
  bottom: 20px;
}
/* Ola 3: más oscura, rápida */
.hlp-hero__wave--3 {
  height: 140px;
  fill: rgba(3,52,110,.5);
  animation: hlp-wave-slide 7s linear infinite;
  bottom: 40px;
}
@keyframes hlp-wave-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── FLOTADORES ────────────────────────────────────────── */
.hlp-hero__floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hlp-hero__floater {
  position: absolute;
  will-change: transform;
}
/* Anillos de ripple */
.hlp-hero__floater--ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(68,159,220,.3);
  animation: hlp-ring-pulse 4s ease-in-out infinite;
}
.hlp-hero__floater--ring::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(68,159,220,.15);
  animation: hlp-ring-pulse 4s ease-in-out infinite reverse;
}
.hlp-hero__floater--ring-lg {
  width: 130px;
  height: 130px;
  animation-duration: 6s;
  border-color: rgba(68,159,220,.2);
}
@keyframes hlp-ring-pulse {
  0%,100% { transform: scale(1);   opacity: .6; }
  50%      { transform: scale(1.12); opacity: 1; }
}
/* Gotas SVG */
.hlp-hero__floater--drop {
  width: 36px;
  height: 48px;
  animation: hlp-drop-sway 5s ease-in-out infinite;
}
.hlp-hero__floater--drop-sm {
  width: 22px;
  height: 30px;
  animation-duration: 3.5s;
}
@keyframes hlp-drop-sway {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-14px) rotate(4deg); }
}
/* Diamantes */
.hlp-hero__floater--diamond {
  width: 18px;
  height: 18px;
  background: rgba(68,159,220,.3);
  border: 1px solid rgba(68,159,220,.5);
  transform: rotate(45deg);
  animation: hlp-diamond-float 5s ease-in-out infinite;
}
.hlp-hero__floater--diamond-sm {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.35);
  animation-duration: 3.8s;
  animation-delay: -1.5s;
}
@keyframes hlp-diamond-float {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(-12px); }
}

/* Partículas tipo gotas pequeñas */
.hlp-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hlp-hero__drop {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(68,159,220,.5);
  animation: hlp-drop-fall linear infinite;
}
.hlp-hero__drop:nth-child(odd) { background: rgba(255,255,255,.3); }
@keyframes hlp-drop-fall {
  0%   { transform: translateY(-20px); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* Layout del hero */
.hlp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 2rem 3.5rem; /* Reducido para desktop */
}

/* Texto del hero */
.hlp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--hlp-h-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.hlp-hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--hlp-h-blue);
  display: inline-block;
}

.hlp-hero__title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -.03em;
  margin: 0 0 1.5rem;
  font-style: normal;
}
/* Accent: color sólido marca — legible, sin animación */
.hlp-hero__title-accent {
  font-style: normal;
  color: #449FDC;
  display: inline;
}

.hlp-hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 0 2.5rem;
}

.hlp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hlp-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  background: var(--hlp-h-blue);
  color: var(--hlp-h-white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: transform .25s var(--hlp-h-transition), box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.hlp-hero__cta-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}
.hlp-hero__cta-primary:hover::after { transform: translateX(100%); }
.hlp-hero__cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(68,159,220,.5);
  color: var(--hlp-h-white);
}
.hlp-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,.4);
  color: var(--hlp-h-white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all .25s;
}
.hlp-hero__cta-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  color: var(--hlp-h-white);
  transform: translateY(-3px);
}

/* Visual lado derecho hero — grid de 4 mini-cards */
.hlp-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hlp-hero__visual--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: center;
}
.hlp-hero__mini-card {
  background: rgba(1,20,50,.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(68,159,220,.28);
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  transition: box-shadow .3s var(--hlp-h-transition), border-color .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hlp-hero__mini-card:hover {
  border-color: rgba(68,159,220,.6);
  box-shadow: 0 16px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(68,159,220,.3);
}
.hlp-hero__mini-card:nth-child(1) { animation: hlp-float 4s ease-in-out infinite; }
.hlp-hero__mini-card:nth-child(2) { animation: hlp-float 4s ease-in-out infinite; animation-delay: 0.8s; }
.hlp-hero__mini-card:nth-child(3) { animation: hlp-float 4.5s ease-in-out infinite; animation-delay: 0.4s; }
.hlp-hero__mini-card:nth-child(4) { animation: hlp-float 4.5s ease-in-out infinite; animation-delay: 1.2s; }
@keyframes hlp-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hlp-hero__mini-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(68,159,220,.18);
  border: 1px solid rgba(68,159,220,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .8rem;
  flex-shrink: 0;
}
.hlp-hero__mini-icon svg {
  width: 40px;
  height: 40px;
  stroke: #7ec8f0;
}
.hlp-hero__mini-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: .3rem;
  letter-spacing: -.02em;
}
.hlp-hero__mini-label {
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* ═══════════════════════════════════════════════════════
   2. TRUST STRIP
═══════════════════════════════════════════════════════ */
.hlp-trust {
  background: var(--hlp-h-white);
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}
/* Versión highlight (2 items grandes) */
.hlp-trust--highlight {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f2ff 100%);
  border-bottom: none;
  padding: 3.5rem 0;
  border-top: 1px solid #d6e8ff;
}
.hlp-trust--highlight .hlp-trust__inner--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: unset;
}
.hlp-trust__item--big {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  border-radius: 20px;
  padding: 2rem 2rem;
  box-shadow: 0 4px 24px rgba(2,60,127,.08);
  border: 1px solid rgba(2,60,127,.07);
  transition: transform .3s, box-shadow .3s;
}
.hlp-trust__item--big:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(2,60,127,.14);
}
.hlp-trust__big-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(2,60,127,.08), rgba(68,159,220,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(2,60,127,.12);
}
.hlp-trust__big-content strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hlp-h-blue-dark);
  margin-bottom: .4rem;
  line-height: 1.3;
}
.hlp-trust__big-content span {
  font-size: .9rem;
  color: var(--hlp-h-muted);
  line-height: 1.5;
}
@media (max-width: 700px) {
  .hlp-trust--highlight .hlp-trust__inner--two {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hlp-trust__item--big {
    flex-direction: column;
    text-align: center;
    width: 100%;
    align-items: center;
    min-height: 0;
  }
}
.hlp-trust__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hlp-trust__item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--hlp-h-blue-dark);
}
.hlp-trust__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(68,159,220,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   3. PRODUCTOS
═══════════════════════════════════════════════════════ */
.hlp-products {
  padding: 3.5rem 0;
  background: var(--hlp-h-off);
}
.hlp-section-header {
  display: block;
  text-align: center;
  margin-bottom: 4rem;
}
/* ── EYEBROW ─────────────────────────────────────────── */
.hlp-section-eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  color: var(--hlp-h-blue);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: .9rem;
  width: 100%;
}
/* ── H2 SECTION TITLE ────────────────────────────────── */
.hlp-section-title {
  display: block;
  width: 100%;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--hlp-h-blue-dark);
  margin: 0 0 1rem;
  letter-spacing: -.03em;
  line-height: 1.12;
  position: relative;
}
.hlp-section-title::after { display: none; }

/* Word-split: cada palabra de los H2 entra con slide-up */
.hlp-word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hlp-word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .65s cubic-bezier(.22,1,.36,1), opacity .5s ease;
}
.is-visible .hlp-word-inner,
[data-hlp-anim].is-visible .hlp-word-inner {
  transform: translateY(0);
  opacity: 1;
}

.hlp-section-desc {
  font-size: 1.1rem;
  color: var(--hlp-h-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.hlp-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hlp-product-card {
  position: relative;
  background: var(--hlp-h-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .4s var(--hlp-h-transition), box-shadow .4s;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.hlp-product-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 24px 60px rgba(2,60,127,.18);
}
.hlp-product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--hlp-h-transition);
}
.hlp-product-card:hover .hlp-product-card__img { transform: scale(1.05); }
.hlp-product-card__img-wrap {
  overflow: hidden;
  line-height: 0;
  /* Reserva espacio antes de cargar la imagen = no layout shift */
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #e8f0fb, #dceefb);
  contain: layout paint; /* navegador no recalcula layout al cargar */
}
.hlp-product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--hlp-h-transition);
  /* Evita que el navegador espere el decodeo antes de mostrar */
  content-visibility: auto;
}
.hlp-product-card:hover .hlp-product-card__img-wrap img { transform: scale(1.05); }
.hlp-product-card__body {
  padding: 1.5rem;
}
.hlp-product-card__label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--hlp-h-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .5rem;
}
.hlp-product-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hlp-h-blue-dark);
  margin: 0 0 .6rem;
}
.hlp-product-card__desc {
  font-size: .9rem;
  color: var(--hlp-h-muted);
  line-height: 1.5;
  margin: 0;
}
.hlp-product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.2rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--hlp-h-blue-dark);
  padding: .6rem 1.2rem;
  border: 2px solid var(--hlp-h-blue-dark);
  border-radius: 50px;
  transition: all .2s;
}
.hlp-product-card:hover .hlp-product-card__cta {
  background: var(--hlp-h-blue-dark);
  color: white;
}
.hlp-product-card__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(68,159,220,.15), transparent 70%);
  transition: opacity .3s;
  pointer-events: none;
}
.hlp-product-card:hover .hlp-product-card__glow { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   4. POR QUÉ HIDROLIT
═══════════════════════════════════════════════════════ */
/* ─── 4. MAPA DEL AGUA ARGENTINA ───────────────────── */
.hlp-mapa {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(160deg, #011e45 0%, #023C7F 55%, #0a4f9e 100%);
  overflow: hidden;
}
.hlp-mapa__bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hlp-mapa__bg-deco svg {
  width: 100%;
  height: 100%;
}
.hlp-mapa__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
/* Especificidad mayor que .hlp-section-eyebrow solo — sin !important */
.hlp-mapa .hlp-section-eyebrow,
.hlp-mapa__eyebrow {
  color: #7ec8f0;
}
.hlp-mapa__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.4rem;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.hlp-mapa__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}
.hlp-mapa__desc strong {
  color: #fff;
  font-weight: 700;
}
/* Feature cards: 2 cols x 2 filas */
.hlp-mapa__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hlp-mapa__feat {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background .3s, transform .3s, box-shadow .3s;
}
.hlp-mapa__feat:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.hlp-mapa__feat-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.hlp-mapa__feat-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .5rem;
}
.hlp-mapa__feat-text {
  font-size: .85rem;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  margin: 0;
}
/* CTA */
.hlp-mapa__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}
.hlp-mapa__btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: #fff;
  color: var(--hlp-h-blue-dark);
  font-weight: 800;
  font-size: 1.08rem;
  padding: 1.1rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  transition: transform .3s, box-shadow .3s, background .3s;
  letter-spacing: -.01em;
}
.hlp-mapa__btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 48px rgba(0,0,0,.32);
  background: #f0f7ff;
}

/* Stats visuales */
/* Bloque de stats eliminado del layout — oculto */
.hlp-why__stats { display: none; }
.hlp-stat-card {
  background: var(--hlp-h-blue-dark);
  color: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform .3s;
}
.hlp-stat-card:hover { transform: scale(1.04); }
.hlp-stat-card:nth-child(even) { background: var(--hlp-h-blue); }
.hlp-stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.hlp-stat-label {
  font-size: .85rem;
  opacity: .85;
  margin-top: .5rem;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   5. CÓMO FUNCIONA
═══════════════════════════════════════════════════════ */
.hlp-how {
  padding: 7rem 0;
  background: var(--hlp-h-blue-dark);
  position: relative;
  overflow: hidden;
}
.hlp-how::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(68,159,220,.15), transparent 70%);
  pointer-events: none;
}
.hlp-how .hlp-section-title { color: white; }
.hlp-how .hlp-section-desc { color: rgba(255,255,255,.75); }
.hlp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.hlp-steps::before {
  content: '';
  position: absolute;
  top: 32px; /* centro exacto del círculo de 64px */
  left: calc(50% / 3 + 32px);
  right: calc(50% / 3 + 32px);
  height: 2px;
  background: linear-gradient(90deg, rgba(68,159,220,.5), var(--hlp-h-blue), rgba(68,159,220,.5));
  z-index: 0;
}
.hlp-step {
  position: relative;
  text-align: center;
  color: white;
}
.hlp-step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--hlp-h-blue);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(68,159,220,.2);
  transition: transform .3s, box-shadow .3s;
}
.hlp-step:hover .hlp-step__num {
  transform: scale(1.15);
  box-shadow: 0 0 0 12px rgba(68,159,220,.3);
}
.hlp-step__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.hlp-step__text {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.hlp-step__link {
  color: #7ec8f0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.hlp-step__link:hover { color: #fff; }
/* Ocultar reCAPTCHA badge — no afecta funcionalidad */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ═══════════════════════════════════════════════════════
   6. CTA BANNER
═══════════════════════════════════════════════════════ */
.hlp-cta-banner {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--hlp-h-blue) 0%, #1a8fe3 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hlp-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hlp-cta-banner__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin: 0 0 1rem;
  position: relative;
}
.hlp-cta-banner__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  margin: 0 auto 2.5rem;
  max-width: 550px;
  position: relative;
}
.hlp-cta-banner .hlp-hero__cta-primary {
  background: white;
  color: var(--hlp-h-blue-dark);
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
}
.hlp-cta-banner .hlp-hero__cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  color: var(--hlp-h-blue-dark);
}

/* ═══════════════════════════════════════════════════════
   7. TESTIMONIOS CELEBRIDADES
═══════════════════════════════════════════════════════ */
.hlp-celeb {
  padding: 5rem 0 4rem;
  background: linear-gradient(170deg, #f0f6ff 0%, #e8f0fb 100%);
  overflow: hidden;
  position: relative;
}
.hlp-celeb::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68,159,220,.12), transparent 70%);
  pointer-events: none;
}
.hlp-celeb__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
/* Especificidad doble para ganar a .hlp-section-eyebrow */
.hlp-celeb .hlp-section-eyebrow,
.hlp-celeb__eyebrow { color: var(--hlp-h-blue); }
.hlp-celeb__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--hlp-h-blue-dark);
  margin: 0 0 .8rem;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.hlp-celeb__desc {
  font-size: 1rem;
  color: var(--hlp-h-muted);
  margin: 0;
}

/* Track wrapper */
.hlp-celeb__track-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.hlp-celeb__track-wrap:active { cursor: grabbing; }
.hlp-celeb__track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 2rem 1.5rem;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* Card */
.hlp-celeb__card {
  flex: 0 0 300px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 30px rgba(2,60,127,.1);
  transition: transform .35s var(--hlp-h-transition), box-shadow .35s;
  position: relative;
}
.hlp-celeb__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(2,60,127,.18);
}
.hlp-celeb__img-wrap {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.hlp-celeb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s ease;
}
.hlp-celeb__card:hover .hlp-celeb__img { transform: scale(1.06); }
.hlp-celeb__img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(2,20,60,.55) 100%);
}
/* Fallback sin foto: iniciales grandes */
.hlp-celeb__initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.18);
  letter-spacing: -.04em;
  font-family: Poppins, sans-serif;
  user-select: none;
}
.hlp-celeb__body {
  padding: 1.1rem 1.2rem 1.3rem;
}
.hlp-celeb__who {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: .6rem;
}
.hlp-celeb__handle {
  font-weight: 800;
  font-size: .95rem;
  color: var(--hlp-h-blue-dark);
}
.hlp-celeb__verified {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.hlp-celeb__cat {
  font-size: .72rem;
  color: var(--hlp-h-muted);
  width: 100%;
  margin-top: -.2rem;
}
.hlp-celeb__quote {
  font-size: .88rem;
  line-height: 1.6;
  color: #374151;
  margin: 0;
  font-style: italic;
  border-left: 3px solid var(--hlp-h-blue);
  padding-left: .8rem;
}

/* Botones nav */
.hlp-celeb__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--hlp-h-blue-dark);
  box-shadow: 0 4px 20px rgba(2,60,127,.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.hlp-celeb__btn:hover {
  background: var(--hlp-h-blue-dark);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 28px rgba(2,60,127,.3);
}
.hlp-celeb__btn--prev { left: 1rem; }
.hlp-celeb__btn--next { right: 1rem; }

/* Dots */
.hlp-celeb__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.2rem;
}
.hlp-celeb__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(2,60,127,.2);
  cursor: pointer;
  transition: background .3s, width .3s, border-radius .3s;
  padding: 0;
}
.hlp-celeb__dot.is-active {
  background: var(--hlp-h-blue-dark);
  width: 24px;
  border-radius: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .hlp-celeb__card { flex: 0 0 260px; }
  .hlp-celeb__img-wrap { height: 300px; }
  .hlp-celeb__btn { display: none; }
  .hlp-celeb { order: 5; }

  /* Dots: mayor separación y área de tap (44px mínimo) para mobile */
  .hlp-celeb__dots {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .hlp-celeb__dot {
    /* Padding amplía el área táctil sin cambiar el aspecto visual */
    padding: 18px 10px;
    background-clip: content-box; /* el color de fondo aplica solo al dot de 8×8px */
    box-sizing: content-box;
  }
}

/* ═══════════════════════════════════════════════════════
   8. BLOG RECIENTE
═══════════════════════════════════════════════════════ */
/* Hint "deslizá" — oculto globalmente en todas las versiones */
.hlp-home-blog__swipe-hint { display: none; }

/* ── BLOG RECIENTE ────────────────────────────────────── */
.hlp-home-blog {
  padding: 6rem 0 5rem;
  background: #f7faff;
  position: relative;
}
.hlp-home-blog::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hlp-h-blue-dark), var(--hlp-h-blue), var(--hlp-h-blue-dark));
}

/* Grid desktop */
.hlp-home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Card: fix el conflicto is-revealed vs stagger */
.hlp-home-blog .hlp-card {
  opacity: 0;
  transform: translateY(28px);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(2,60,127,.07);
  box-shadow: 0 2px 12px rgba(2,60,127,.06);
  transition:
    opacity   .6s var(--hlp-h-transition),
    transform .6s var(--hlp-h-transition),
    box-shadow .35s ease;
  position: relative;
}
/* Línea acento superior animada */
.hlp-home-blog .hlp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hlp-h-blue-dark), var(--hlp-h-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: 2;
}
.hlp-home-blog .hlp-card:hover::before { transform: scaleX(1); }
.hlp-home-blog .hlp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(2,60,127,.14);
}

/* Reveal via stagger (home.js adds is-visible al grid) */
.hlp-home-blog__grid.is-visible .hlp-card:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:.05s; }
.hlp-home-blog__grid.is-visible .hlp-card:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:.18s; }
.hlp-home-blog__grid.is-visible .hlp-card:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:.31s; }

/* Imagen */
.hlp-home-blog .hlp-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.hlp-home-blog .hlp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.hlp-home-blog .hlp-card:hover .hlp-card__img { transform: scale(1.07); }

/* Body */
.hlp-home-blog .hlp-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.hlp-home-blog .hlp-card__cat {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(2,60,127,.07);
  color: var(--hlp-h-blue-dark);
  padding: .28rem .8rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: .7rem;
}
.hlp-home-blog .hlp-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--hlp-h-blue-dark);
  margin: 0 0 .5rem;
}
.hlp-home-blog .hlp-card__excerpt {
  font-size: .88rem;
  color: var(--hlp-h-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.hlp-home-blog .hlp-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--hlp-h-muted);
  border-top: 1px solid rgba(2,60,127,.08);
  padding-top: .9rem;
}
/* Flecha "Leer más" */
.hlp-home-blog .hlp-card__meta::after {
  content: '→';
  font-size: 1rem;
  color: var(--hlp-h-blue);
  transition: transform .3s ease;
}
.hlp-home-blog .hlp-card:hover .hlp-card__meta::after { transform: translateX(4px); }

/* ── MOBILE BLOG: scroll horizontal snap ─────────────── */
@media (max-width: 768px) {
  .hlp-home-blog { padding: 3.5rem 0 3rem; }
  .hlp-home-blog__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.2rem;
    gap: 1rem;
    padding: .5rem 1.2rem 1.5rem;
    margin: 0;
    max-width: 100%;
    /* Scroll suave */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hlp-home-blog__grid::-webkit-scrollbar { display: none; }
  .hlp-home-blog .hlp-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
    /* Reset stagger en mobile — especificidad mayor que nth-child */
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }
  /* Indicador de scroll */
  .hlp-home-blog__grid::after {
    content: '';
    flex: 0 0 .5rem;
    display: block;
  }
  /* Espacio final del track */
}

/* ═══════════════════════════════════════════════════════
   8. ANIMACIONES REVEAL (Intersection Observer)
═══════════════════════════════════════════════════════ */
[data-hlp-anim] {
  opacity: 0;
  transition: opacity .7s var(--hlp-h-transition), transform .7s var(--hlp-h-transition);
}
[data-hlp-anim="fade-up"]    { transform: translateY(40px); }
[data-hlp-anim="fade-left"]  { transform: translateX(-40px); }
[data-hlp-anim="fade-right"] { transform: translateX(40px); }
[data-hlp-anim="zoom-in"]    { transform: scale(.9); }
[data-hlp-anim].is-visible {
  opacity: 1;
  transform: none;
}
/* Delay stagger para hijos */
[data-hlp-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--hlp-h-transition), transform .6s var(--hlp-h-transition);
}
[data-hlp-stagger].is-visible > *:nth-child(1) { opacity:1;transform:none;transition-delay:.05s; }
[data-hlp-stagger].is-visible > *:nth-child(2) { opacity:1;transform:none;transition-delay:.15s; }
[data-hlp-stagger].is-visible > *:nth-child(3) { opacity:1;transform:none;transition-delay:.25s; }
[data-hlp-stagger].is-visible > *:nth-child(4) { opacity:1;transform:none;transition-delay:.35s; }
[data-hlp-stagger].is-visible > *:nth-child(5) { opacity:1;transform:none;transition-delay:.45s; }
[data-hlp-stagger].is-visible > *:nth-child(6) { opacity:1;transform:none;transition-delay:.55s; }

/* ═══════════════════════════════════════════════════════
   9. RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hlp-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hlp-hero__visual--grid {
    grid-template-columns: repeat(4, 1fr); /* 4 en fila en tablet */
    gap: .8rem;
  }
  .hlp-hero__desc { margin-left: auto; margin-right: auto; }
  .hlp-hero__ctas { justify-content: center; }
  .hlp-products__grid { grid-template-columns: repeat(2, 1fr); }
  .hlp-why__grid { grid-template-columns: 1fr; }
  .hlp-why__stats { order: -1; }
  .hlp-home-blog__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (max-width: 768px) {
  /* Hero */
  .hlp-hero { min-height: auto; }
  .hlp-hero__inner { padding: 4rem 1.5rem 3rem; }
  .hlp-hero__title { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  /* Mini-cards: 2x2 en mobile, igual alto */
  .hlp-hero__visual--grid {
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    align-items: stretch;
  }
  .hlp-hero__mini-card { height: 100%; }
  /* Reordenar trust strip: aparece DESPUÉS de productos en mobile */
  .hlp-home { display: flex; flex-direction: column; }
  .hlp-hero           { order: 1; }
  .hlp-products       { order: 2; }
  .hlp-mapa           { order: 3; }
  .hlp-how            { order: 4; }
  .hlp-trust--highlight { order: 5; } /* justo antes del blog */
  .hlp-home-blog      { order: 6; }
  /* Grids mobile */
  .hlp-products__grid,
  .hlp-home-blog__grid { grid-template-columns: 1fr; }
  .hlp-steps { grid-template-columns: 1fr; }
  .hlp-steps::before,
  .hlp-steps::after { display: none; }
  /* Flotadores: ocultos en mobile */
  .hlp-hero__floaters { display: none; }
  /* Olas mobile */
  .hlp-hero__wave--1 { height: 120px; }
  .hlp-hero__wave--2 { height: 100px; }
  .hlp-hero__wave--3 { height: 80px; }
  .hlp-why__stats { grid-template-columns: 1fr 1fr; }
  .hlp-products,.hlp-mapa,.hlp-how,.hlp-home-blog { padding: 4rem 0; }
  /* Mapa: 2 cols en mobile (6 cards = 3 filas) */
  .hlp-mapa__features { grid-template-columns: 1fr 1fr; gap: .85rem; }
  .hlp-mapa__feat { padding: 1.2rem .9rem; }
  .hlp-mapa__feat-icon { width: 52px; height: 52px; }
  .hlp-mapa__feat-title { font-size: .9rem; }
  .hlp-mapa__feat-text { font-size: .78rem; }
  .hlp-mapa__btn { font-size: .96rem; padding: 1rem 1.8rem; gap: .5rem; }
}

/* ═══════════════════════════════════════════════════════
   10. EFECTOS ESPECTACULARES
═══════════════════════════════════════════════════════ */

/* Step number: pulso + brillo al hacer scroll */
.hlp-step__num {
  animation: hlp-pulse-ring 3s ease-in-out infinite;
}
@keyframes hlp-pulse-ring {
  0%,100% { box-shadow: 0 0 0 6px rgba(68,159,220,.2), 0 0 0 0 rgba(68,159,220,.0); }
  50%      { box-shadow: 0 0 0 10px rgba(68,159,220,.15), 0 4px 24px rgba(68,159,220,.4); }
}
.hlp-step.is-active .hlp-step__num {
  background: linear-gradient(135deg, var(--hlp-h-blue), #1a8fe3);
  transform: scale(1.12);
  box-shadow: 0 0 0 14px rgba(68,159,220,.25), 0 8px 32px rgba(68,159,220,.5);
}

/* Línea de steps: animación de llenado al hacer visible */
.hlp-steps::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% / 3 + 32px);
  right: calc(50% / 3 + 32px);
  height: 2px;
  background: linear-gradient(90deg, #449FDC, #7ec8f0, #449FDC);
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(.4,0,.2,1) .3s;
}
.hlp-steps.is-visible::after { transform: scaleX(1); }

/* Mapa features: shimmer en hover */
.hlp-mapa__feat::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.hlp-mapa__feat { position: relative; }
.hlp-mapa__feat:hover::before { opacity: 1; }

/* Botón mapa: shimmer sweep */
.hlp-mapa__btn {
  position: relative;
  overflow: hidden;
}
.hlp-mapa__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: none;
}
.hlp-mapa__btn:hover::after {
  animation: hlp-shimmer .6s ease forwards;
}
@keyframes hlp-shimmer {
  from { left: -75%; }
  to   { left: 125%; }
}

/* CTA banner button */
.hlp-hero__cta-primary {
  position: relative;
  overflow: hidden;
}
.hlp-hero__cta-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
}
.hlp-hero__cta-primary:hover::after {
  animation: hlp-shimmer .7s ease forwards;
}

/* Mapa feat: entrada */
@keyframes hlp-feat-in {
  from { opacity:0; transform: translateY(24px) scale(.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

/* Mini-cards: entrada por opacidad — NO toca transform para no romper el float */
.hlp-mini-entry {
  animation: hlp-mini-fadein .7s ease both;
}
/* Delays escalonados via nth-child — sin inline styles */
.hlp-hero__visual--grid .hlp-mini-entry:nth-child(1) { animation-delay: .10s; }
.hlp-hero__visual--grid .hlp-mini-entry:nth-child(2) { animation-delay: .25s; }
.hlp-hero__visual--grid .hlp-mini-entry:nth-child(3) { animation-delay: .40s; }
.hlp-hero__visual--grid .hlp-mini-entry:nth-child(4) { animation-delay: .55s; }
@keyframes hlp-mini-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Número Empresa B */
.hlp-hero__mini-num--empresa-b {
  font-size: 1rem;
  letter-spacing: 0;
}
/* Floaters: posiciones absolutas extraídas de inline */
.hlp-hero__floater--a { left: 15%; top: 55%; }
.hlp-hero__floater--b { right: 20%; top: 15%; }
.hlp-hero__floater--c { right: 5%;  top: 60%; }
/* Eyebrow How: color específico */
.hlp-section-eyebrow--how { color: rgba(68,159,220,.9); }
/* Steps: delays escalonados */
.hlp-step--1 { transition-delay: .05s; }
.hlp-step--2 { transition-delay: .20s; }
.hlp-step--3 { transition-delay: .35s; }
/* Carrusel: fondo dinámico via CSS custom property */
.hlp-celeb__img-wrap { background: var(--celeb-bg, #023C7F); }
/* Hero desc y ctas: delays via CSS (no inline) */
.hlp-hero__desc  { transition-delay: .15s; }
.hlp-hero__ctas  { transition-delay: .30s; }
/* Blog CTA section */
.hlp-home-blog__cta {
  text-align: center;
  margin-top: 3rem;
}
/* Blog CTA link: variante oscura */
.hlp-hero__cta-secondary--dark {
  border-color: var(--hlp-h-blue-dark);
  color: var(--hlp-h-blue-dark);
}

/* ═══════════════════════════════════════════════════════
   11. REDUCED MOTION
═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  [data-hlp-anim], [data-hlp-stagger] > * { opacity:1; transform:none; transition:none; }
  .hlp-hero__bubble, .hlp-hero__drop,
  .hlp-hero__visual-ring, .hlp-hero__visual-card { animation: none; }
  [data-hlp-stagger].is-visible > * { transition: none; }
  .hlp-step__num { animation: none; }
  .hlp-steps::after { transition: none; transform: scaleX(1); }
}
