/* ============================================================
   VOLUNTARIAT ESPORTIU — homepage.css
   Brand Book 2026 — Barlow Condensed + Barlow
   Color: Roig #C9231D · Blau #1B57A0 · Taronja #F5A100
   ============================================================ */

/* ── Homepage design tokens — Brand Book 2026 ────────────── */
:root {
  --ink:        #0B1929;                  /* Negre Nit */
  --ink-80:     rgba(11,25,41,0.8);
  --cream:      #F4F3EF;                  /* Blanc Sorra */
  --cream-dark: #E4E3DE;
  --white:      #FFFFFF;
  --brand:      #C9231D;                  /* Roig Energia — Principal */
  --brand-dark: #9E1B16;
  --brand-glow: rgba(201,35,29,0.18);
  --blue:       #1B57A0;                  /* Blau Compromís — Institucional */
  --blue-glow:  rgba(27,87,160,0.15);
  --orange:     #F5A100;                  /* Taronja Comunitat — Accentuació */
  --teal:       #0E7A74;
  --purple:     #5C33B2;
  --z-muted:    #6B7280;
  --z-border-l: rgba(255,255,255,0.1);   /* light on dark */
  --z-border-d: rgba(11,25,41,0.08);     /* dark on light */
  --r-card:     20px;
  --r-pill:     999px;
  --dur:        250ms;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ── Fuente body global (Barlow) ─────────────────────────── */
.hp-main, .hp-main * {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.hp-main .syne, .hp-main h1, .hp-main h2 {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
}

/* ── Animaciones de entrada ─────────────────────────────── */
@keyframes hp-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hp-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.hp-reveal.hp-visible {
  opacity: 1;
  transform: translateY(0);
}
.hp-reveal[data-delay="1"] { transition-delay: 80ms; }
.hp-reveal[data-delay="2"] { transition-delay: 160ms; }
.hp-reveal[data-delay="3"] { transition-delay: 240ms; }
.hp-reveal[data-delay="4"] { transition-delay: 320ms; }
.hp-reveal[data-delay="5"] { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .hp-reveal { opacity: 1; transform: none; transition: none; }
  .hp-card { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   1. HERO — Layout asimétrico: texto | imagen diagonal
   ═══════════════════════════════════════════════════════════ */
.hp-hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Franja tricolor separadora (header → hero) */
.hp-hero__top-stripe {
  display: flex;
  height: 4px;
  flex-shrink: 0;
}
.hp-hero__top-stripe span:nth-child(1) { flex: 3; background: var(--brand); }
.hp-hero__top-stripe span:nth-child(2) { flex: 3; background: var(--blue); }
.hp-hero__top-stripe span:nth-child(3) { flex: 2; background: var(--orange); }

/* Franja tricolor cierre hero — menos saturada */
.hp-hero__bottom-stripe {
  display: flex;
  height: 3px;
  flex-shrink: 0;
  opacity: 0.28;
}
.hp-hero__bottom-stripe span:nth-child(1) { flex: 3; background: var(--brand); }
.hp-hero__bottom-stripe span:nth-child(2) { flex: 3; background: var(--blue); }
.hp-hero__bottom-stripe span:nth-child(3) { flex: 2; background: var(--orange); }

/* Grid principal: texto izq | imagen der */
.hp-hero__layout {
  display: grid;
  grid-template-columns: 1fr 43%;
  align-items: stretch;
}

/* ── Columna texto ── */
.hp-hero__left {
  position: relative;
  z-index: 1;
  padding: 4rem clamp(1.5rem, 6vw, 5rem) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Filigrana "V" decorativa de fondo */
.hp-hero__left::before {
  content: 'V';
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(18rem, 28vw, 26rem);
  line-height: 0.82;
  color: var(--brand);
  opacity: 0.04;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Eyebrow ── */
.hp-hero__eyebrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
  animation: hp-fade-up 0.6s var(--ease) both;
}
.hp-hero__eyebrow-bar {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.hp-eyebrow-short { display: none; }

/* Envuelve título + párrafo: el párrafo hereda el ancho del título */
.hp-hero__copy {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 2.25rem;
}

/* ── Titular ── */
.hp-hero__title {
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-size: clamp(3.25rem, 6.5vw, 6.25rem);
  line-height: 0.93;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.5rem;
  animation: hp-fade-up 0.7s var(--ease) 0.1s both;
}
.hp-hero__title span { display: block; }
.hp-hero__title-accent {
  display: block;
  color: var(--brand);
}

/* ── Descripción ── */
.hp-hero__desc {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: var(--ink-80);
  line-height: 1.75;
  animation: hp-fade-up 0.7s var(--ease) 0.2s both;
}

/* ── CTAs ── */
.hp-hero__ctas {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: hp-fade-up 0.7s var(--ease) 0.3s both;
}
.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.hp-btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,35,29,0.35);
}
.hp-btn-primary:active { transform: translateY(0); }
.hp-btn-primary svg { transition: transform var(--dur); }
.hp-btn-primary:hover svg { transform: translateX(3px); }

.hp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 26px;
  color: var(--ink-80);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: 1.5px solid rgba(11,25,41,0.22);
  background: transparent;
  cursor: pointer;
  transition: color var(--dur), border-color var(--dur), background var(--dur);
  text-decoration: none;
}
.hp-btn-ghost:hover {
  color: var(--ink);
  border-color: rgba(11,25,41,0.45);
  background: rgba(11,25,41,0.04);
}

/* ── Trust row ── */
.hp-hero__trust {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  animation: hp-fade-in 0.8s var(--ease) 0.45s both;
}
.hp-hero__trust span:not(.hp-hero__trust-sep) {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--z-muted);
}
.hp-hero__trust i {
  font-size: 13px;
  color: var(--orange);
}
.hp-hero__trust-sep {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cream-dark);
}

/* ── Columna imagen con corte diagonal ── */
.hp-hero__media {
  position: relative;
  overflow: hidden;
  /* Corte diagonal: borde izquierdo sesgado, siguiendo el motiu de marca a 14 deg */
  clip-path: polygon(clamp(48px, 8vw, 96px) 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hp-hero__media-img {
  position: absolute;
  inset: 0;
  /* Placeholder hasta que se asigne imagen desde el Customizer */
  background:
    linear-gradient(135deg, #dfe3e8 0%, #c8cfd8 100%)
    center / cover no-repeat;
  transition: transform 8s linear;
}
.hp-hero__media:hover .hp-hero__media-img {
  transform: scale(1.04);
}

/* Velo suave en el borde izquierdo para la transición con el blanco */
.hp-hero__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.18) 0%,
    transparent 22%
  );
  pointer-events: none;
  z-index: 1;
}

/* Franja tricolor vertical en el borde del corte diagonal */
.hp-hero__media-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.hp-hero__media-stripe span:nth-child(1) { flex: 3; background: var(--brand); }
.hp-hero__media-stripe span:nth-child(2) { flex: 3; background: var(--blue); }
.hp-hero__media-stripe span:nth-child(3) { flex: 2; background: var(--orange); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hp-hero__layout { grid-template-columns: 1fr 46%; }
  .hp-hero__title  { font-size: clamp(3.5rem, 6.5vw, 6rem); }
}

@media (max-width: 860px) {
  .hp-hero__layout {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  /* Texto primero en móvil: el CTA es la prioridad, la imagen es decorativa */
  .hp-hero__left {
    padding: 3.5rem clamp(1.25rem, 5vw, 2.5rem) 2.5rem;
    order: 0;
  }
  .hp-hero__media {
    height: clamp(220px, 52vw, 380px);
    clip-path: none;
    order: 1;
  }
  .hp-hero__media-stripe { width: 4px; }
  .hp-hero__left::before { display: none; }
}

@media (max-width: 520px) {
  .hp-hero__title { font-size: clamp(2.5rem, 11.5vw, 3.25rem); }
  .hp-hero__trust { gap: 0.625rem; }
  .hp-eyebrow-full  { display: none; }
  .hp-eyebrow-short { display: inline; }
  .hp-hero__ctas { flex-direction: column; gap: 8px; }
  .hp-btn-primary,
  .hp-btn-ghost   { width: 100%; justify-content: center; }
  /* fit-content causes overflow at narrow widths — disable on mobile */
  .hp-hero__copy { width: 100%; }
}




/* ═══════════════════════════════════════════════════════════
   3. HP-ABOUT — Sobre el Programa + Pilares + Paneles CTA
   ═══════════════════════════════════════════════════════════ */
.hp-about {
  background: var(--cream);
  padding: 6rem 1.5rem 5rem;
  overflow: hidden;
}
.hp-about__inner {
  max-width: 1200px;
  margin-inline: auto;
}

/* ── Cabecera ── */
.hp-about__header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}
.hp-about__title {
  margin-bottom: 1rem;
}
.hp-about__title-accent {
  color: var(--brand);
  font-weight: 800;
  font-family: 'Barlow Condensed', system-ui, sans-serif;
}
.hp-about__sub {
  font-size: 0.9375rem;
  color: var(--z-muted);
  line-height: 1.72;
  margin-bottom: 1.75rem;
}
.hp-about__cta {
  margin-top: 0;
}

/* ── Pilares informativos ── */
.hp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(11,25,41,0.06);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 2px;
}

.hp-pillar {
  background: var(--white);
  padding: 2.25rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(11,25,41,0.05), 0 4px 16px rgba(11,25,41,0.06);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.hp-pillar:hover {
  box-shadow: 0 4px 24px rgba(11,25,41,0.11);
  transform: translateY(-2px);
}

/* Franja de color superior por pillar */
.hp-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(1);
  transform-origin: left;
  transition: height 0.3s var(--ease), opacity 0.3s var(--ease);
  border-radius: 0;
  opacity: 0.55;
}
.hp-pillar:nth-child(1)::before { background: var(--brand); }
.hp-pillar:nth-child(2)::before { background: var(--blue); }
.hp-pillar:nth-child(3)::before { background: var(--orange); }
.hp-pillar:hover::before  { opacity: 1; height: 4px; }
.hp-pillar:hover          { background: var(--cream); }

/* Número fantasma de fondo */
.hp-pillar__num-bg {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: 0.04;
  position: absolute;
  right: -0.75rem;
  bottom: -1.25rem;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.45s var(--ease);
}
.hp-pillar:hover .hp-pillar__num-bg {
  opacity: 0.08;
  transform: scale(1.1) translateY(-6px);
}

/* Icono */
.hp-pillar__header {
  margin-bottom: 1.25rem;
}
.hp-pillar__header i {
  font-size: 1.9rem;
  display: block;
  transition: transform 0.3s var(--ease);
}
.hp-pillar:nth-child(1) .hp-pillar__header i { color: var(--brand); }
.hp-pillar:nth-child(2) .hp-pillar__header i { color: var(--blue); }
.hp-pillar:nth-child(3) .hp-pillar__header i { color: var(--orange); }
.hp-pillar:hover .hp-pillar__header i { transform: scale(1.15) rotate(-4deg); }

/* Título pregunta */
.hp-pillar__q {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

/* Texto respuesta */
.hp-pillar__a {
  font-size: 0.9rem;
  color: var(--z-muted);
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

/* ── Separador visual entre pilares y paneles CTA ── */
.hp-about__panels-wrap {
  margin-top: 4rem;
}

.hp-about__panels-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hp-about__panels-eyebrow span:first-child,
.hp-about__panels-eyebrow span:last-child {
  flex: 1;
  height: 0.5px;
  background: var(--z-border-d);
}
.hp-about__panels-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.35;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* ── Paneles CTA con acento cromático por rol ── */
.hp-panels {
  margin-top: 0;
}

/* Box-shadow inset para la franja superior (no queda clippeada por overflow:hidden del padre) */
.hp-panel--red    { box-shadow: inset 0 3px 0 var(--brand); }
.hp-panel--blue   { box-shadow: inset 0 3px 0 var(--blue); }
.hp-panel--orange { box-shadow: inset 0 3px 0 var(--orange); }

.hp-panel--red    .hp-panel__num { color: rgba(201,35,29,0.14); }
.hp-panel--blue   .hp-panel__num { color: rgba(27,87,160,0.13); }
.hp-panel--orange .hp-panel__num { color: rgba(245,161,0,0.18); }

.hp-panel--red    .hp-panel__arrow { color: var(--brand); }
.hp-panel--blue   .hp-panel__arrow { color: var(--blue); }
.hp-panel--orange .hp-panel__arrow { color: var(--orange); }

/* El fondo dark on-hover hereda tono del acento */
.hp-panel--blue::before   { background: var(--blue); }
.hp-panel--orange::before { background: #c27e00; /* naranja oscuro */ }

/* Responsive */
@media (max-width: 768px) {
  .hp-pillars {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .hp-pillar__num-bg { font-size: 6rem; }
}
@media (max-width: 480px) {
  .hp-about { padding: 4rem 1rem; }
}
.hp-sec-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-sec-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.hp-sec-title {
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.hp-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-radius: var(--r-card);
  overflow: visible;
}
.hp-panel {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--r-card);
  border: 0.5px solid var(--z-border-d);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(11,25,41,0.05), 0 6px 20px rgba(11,25,41,0.07);
  transition: background var(--dur) var(--ease), color var(--dur), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  cursor: pointer;
}
.hp-panel:last-child { border-right: 0.5px solid var(--z-border-d); }
.hp-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(11,25,41,0.13);
  border-color: transparent;
}
.hp-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.hp-panel:hover::before { transform: translateY(0); }
.hp-panel > * { position: relative; z-index: 1; }

.hp-panel__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(10,9,8,0.1);
  transition: color var(--dur);
}
.hp-panel:hover .hp-panel__num { color: rgba(255,255,255,0.12); }

.hp-panel__content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 6px;
  transition: color var(--dur);
}
.hp-panel:hover .hp-panel__content h3 { color: white; }

.hp-panel__content p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--z-muted);
  transition: color var(--dur);
}
.hp-panel:hover .hp-panel__content p { color: rgba(255,255,255,0.55); }

.hp-panel__arrow {
  font-size: 1.4rem;
  color: var(--brand);
  margin-top: auto;
  display: inline-block;
  transition: transform var(--dur), color var(--dur);
}
.hp-panel:hover .hp-panel__arrow {
  color: var(--brand);
  transform: translate(4px, -2px);
}


/* ═══════════════════════════════════════════════════════════
   4. EVENTS — Bento Grid
   ═══════════════════════════════════════════════════════════ */
.hp-events {
  background: var(--white);
  padding: 6rem 1.5rem;
}
.hp-events__inner {
  max-width: 1200px;
  margin-inline: auto;
}
.hp-events__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.hp-events__sub {
  font-size: 0.9375rem;
  color: var(--z-muted);
  line-height: 1.72;
  margin-bottom: 0;
}

/* ── Event cards grid ── */
.hp-ev-cards { margin-top: 1.5rem; }

.hp-ev-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--z-muted);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--z-border-d);
}

.hp-ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 2rem;
}

.hp-ev-card {
  border-radius: var(--r-card);
  border: 0.5px solid var(--z-border-d);
  overflow: hidden;
  background: white;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}

.hp-ev-card__topbar { height: 3px; flex-shrink: 0; }
.hp-ev-card--red    .hp-ev-card__topbar { background: var(--brand); }
.hp-ev-card--blue   .hp-ev-card__topbar { background: var(--blue); }
.hp-ev-card--orange .hp-ev-card__topbar { background: var(--orange); }

/* Franja de fecha horizontal, pegada al top del card */
.hp-ev-card__date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: var(--ink);
  color: white;
  width: 100%;
}
.hp-ev-card--blue   .hp-ev-card__date { background: var(--blue); }
.hp-ev-card--orange .hp-ev-card__date { background: var(--orange); color: var(--ink); }

.hp-ev-card__dow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.hp-ev-card__day {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
}
.hp-ev-card__month {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hp-ev-card__date--range { gap: 0.375rem; }
.hp-ev-card__date-pair   { display: flex; flex-direction: row; align-items: baseline; gap: 4px; }
.hp-ev-card__range-sep   { font-size: 13px; opacity: 0.45; }

/* Cuerpo: título + ubicación */
.hp-ev-card__body {
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  flex: 1;
}

.hp-ev-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 0;
}
.hp-ev-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  transition: color var(--dur);
}

.hp-ev-card__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hp-ev-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--z-muted);
}
.hp-ev-card__meta-item i { font-size: 13px; }

.hp-ev-card__arrow {
  font-size: 1.1rem;
  color: var(--z-muted);
  flex-shrink: 0;
  align-self: center;
  transition: transform var(--dur), color var(--dur);
}

@media (max-width: 768px) {
  .hp-ev-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hp-ev-grid { grid-template-columns: 1fr; }
}

/* CTA inferior "Ver todos" */
.hp-events__footer {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.hp-events__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background var(--dur), transform var(--dur);
}
.hp-events__all-btn:hover {
  background: var(--brand);
  transform: translateY(-2px);
}
.hp-events__all-btn svg { transition: transform var(--dur); }
.hp-events__all-btn:hover svg { transform: translateX(3px); }

.hp-events__more {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--dur), gap var(--dur);
  white-space: nowrap;
}
.hp-events__more:hover {
  border-color: var(--brand);
  gap: 8px;
}

/* Bento grid */
.hp-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

/* Card base */
.hp-ec {
  border-radius: var(--r-card);
  border: 0.5px solid var(--z-border-d);
  overflow: hidden;
  background: white;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
  cursor: pointer;
}
.hp-ec:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,9,8,0.1);
  border-color: transparent;
}

/* Featured event (2 rows) */
.hp-ec--featured {
  grid-row: 1 / 3;
  background: var(--ink);
  color: white;
  border-color: transparent;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.hp-ec--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.9) 0%, rgba(10,9,8,0.2) 60%, transparent 100%);
  pointer-events: none;
}
.hp-ec--featured .hp-ec__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 1.75rem;
}
.hp-ec--featured .hp-ec__name {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.hp-ec--featured .hp-ec__date {
  color: rgba(255,255,255,0.5);
}
.hp-ec--featured .hp-ec__cta {
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.hp-ec--featured .hp-ec__cta:hover {
  background: white;
  color: var(--ink);
}
/* Big number bg decoration on featured */
.hp-ec--featured .hp-ec__deco {
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 11rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
}

/* CTA card (brand orange) */
.hp-ec--cta {
  grid-column: 2 / 4;
  background: var(--brand);
  border-color: transparent;
  color: white;
  flex-direction: row;
  align-items: center;
  padding: 1.75rem 2rem;
  gap: 1.5rem;
  min-height: auto;
}
.hp-ec--cta:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}
.hp-ec--cta .hp-ec__cta-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  flex: 1;
  line-height: 1.15;
}
.hp-ec--cta .hp-ec__cta-arrow {
  font-size: 1.75rem;
  flex-shrink: 0;
  transition: transform var(--dur);
}
.hp-ec--cta:hover .hp-ec__cta-arrow {
  transform: translate(4px, -2px);
}

/* Small event card */
.hp-ec__topbar { height: 3px; flex-shrink: 0; }
.hp-ec__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hp-ec__date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hp-ec__date--purple { color: var(--purple); }
.hp-ec__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  flex: 1;
}
.hp-ec__meta {
  font-size: 12px;
  color: var(--z-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.hp-ec__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 4px;
  width: fit-content;
}
.hp-ec__badge--green { background: rgba(34,197,94,0.1); color: #16a34a; }
.hp-ec__badge--orange { background: rgba(245,161,0,0.12); color: var(--orange); }
.hp-ec__badge--purple { background: rgba(92,51,178,0.1); color: var(--purple); }
.hp-ec__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 7px;
  border: 0.5px solid rgba(201,35,29,0.25);
  margin-top: 10px;
  width: fit-content;
  transition: background var(--dur), border-color var(--dur);
}
.hp-ec__cta:hover {
  background: rgba(201,35,29,0.07);
  border-color: var(--brand);
}


/* ═══════════════════════════════════════════════════════════
   5. HP-WHY — ¿Por Qué Ser Voluntario? (grid de 6 tarjetas)
   ═══════════════════════════════════════════════════════════ */
.hp-why {
  background: var(--ink);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
/* Textura de grano sutil */
.hp-why::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hp-why__inner {
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* ── Cabecera ── */
.hp-why__header {
  margin-bottom: 3.5rem;
}
.hp-why .hp-sec-label { color: var(--orange); }
.hp-why .hp-sec-title { color: white; }
.hp-why__sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
  max-width: 56ch;
  margin-top: 0;
}

/* ── Grid de tarjetas ── */
.hp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hp-why-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-card);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease), border-color var(--dur), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.hp-why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* Línea de acento superior por color */
.hp-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.hp-why-card:hover::before { opacity: 1; }

.hp-why-card--red::before    { background: var(--brand); }
.hp-why-card--blue::before   { background: var(--blue); }
.hp-why-card--orange::before { background: var(--orange); }
.hp-why-card--teal::before   { background: var(--teal); }
.hp-why-card--purple::before { background: var(--purple); }

/* ── Icono ── */
.hp-why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s var(--ease);
}
.hp-why-card:hover .hp-why-card__icon { transform: scale(1.1); }
.hp-why-card__icon i { font-size: 1.4rem; }

/* Colores por variante */
.hp-why-card--red    .hp-why-card__icon { background: rgba(201,35,29,0.15);  }
.hp-why-card--red    .hp-why-card__icon i { color: #e84040; }
.hp-why-card--blue   .hp-why-card__icon { background: rgba(27,87,160,0.18); }
.hp-why-card--blue   .hp-why-card__icon i { color: #5b9bd5; }
.hp-why-card--orange .hp-why-card__icon { background: rgba(245,161,0,0.15); }
.hp-why-card--orange .hp-why-card__icon i { color: var(--orange); }
.hp-why-card--teal   .hp-why-card__icon { background: rgba(14,122,116,0.18); }
.hp-why-card--teal   .hp-why-card__icon i { color: #2dd4bf; }
.hp-why-card--purple .hp-why-card__icon { background: rgba(92,51,178,0.18); }
.hp-why-card--purple .hp-why-card__icon i { color: #a78bfa; }

/* ── Texto ── */
.hp-why-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  color: white;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.hp-why-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.68;
}


/* ═══════════════════════════════════════════════════════════
   6. PROCESS — ¿Cómo Funciona? (4 cards centradas)
   ═══════════════════════════════════════════════════════════ */
.hp-process {
  background: var(--cream);
  padding: 6rem 1.5rem;
  overflow: hidden;
}
.hp-process__inner {
  max-width: 1200px;
  margin-inline: auto;
}

/* Header centrado */
.hp-process__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.hp-process__header .hp-sec-label {
  justify-content: center;
}
.hp-process__header .hp-sec-label::before { display: none; }
.hp-process__subtitle {
  font-size: 0.9375rem;
  color: var(--z-muted);
  line-height: 1.72;
  margin: 0.5rem auto 0;
}

/* Botones de la sección proceso (reutilizados en CTA) */
.hp-btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--dur), transform var(--dur);
  letter-spacing: -0.01em;
}
.hp-btn-ink:hover { background: #1f1e1c; transform: translateY(-1px); }
.hp-btn-outline-ink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  border: 0.5px solid rgba(10,9,8,0.2);
  background: transparent;
  text-decoration: none;
  transition: border-color var(--dur), background var(--dur);
}
.hp-btn-outline-ink:hover { border-color: var(--ink); background: rgba(10,9,8,0.04); }

/* Step cards grid */
.hp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

/* Línea conectora que pasa por los badges */
.hp-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1.5px;
  background: linear-gradient(to right,
    rgba(201,35,29,0.35) 0%,
    rgba(27,87,160,0.25) 33%,
    rgba(14,122,116,0.25) 66%,
    rgba(245,161,0,0.35) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* Card base */
.hp-step {
  border-radius: var(--r-card);
  border: 0.5px solid var(--z-border-d);
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.hp-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(10,9,8,0.1);
  border-color: transparent;
}

/* Color tints */
.hp-step--red    { background: #fff8f8; }
.hp-step--blue   { background: #f5f8fd; }
.hp-step--teal   { background: #f2fbfa; }
.hp-step--orange { background: #fffbf0; }

/* Icon wrapper — now shows the step number */
.hp-step__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s var(--ease);
}
.hp-step:hover .hp-step__icon-wrap { transform: scale(1.05); }

.hp-step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.hp-step--red    .hp-step__icon-wrap { background: rgba(201,35,29,0.1); }
.hp-step--red    .hp-step__num       { color: var(--brand); }
.hp-step--blue   .hp-step__icon-wrap { background: rgba(27,87,160,0.1); }
.hp-step--blue   .hp-step__num       { color: var(--blue); }
.hp-step--teal   .hp-step__icon-wrap { background: rgba(14,122,116,0.1); }
.hp-step--teal   .hp-step__num       { color: var(--teal); }
.hp-step--orange .hp-step__icon-wrap { background: rgba(245,161,0,0.12); }
.hp-step--orange .hp-step__num       { color: #9a6800; }

.hp-step__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
}
.hp-step__title i {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hp-step--red    .hp-step__title i { color: var(--brand); }
.hp-step--blue   .hp-step__title i { color: var(--blue); }
.hp-step--teal   .hp-step__title i { color: var(--teal); }
.hp-step--orange .hp-step__title i { color: #9a6800; }
.hp-step__desc {
  font-size: 0.855rem;
  color: var(--z-muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════
   7. BICI-VOLUNTARIOS — Editorial naranja full
   ═══════════════════════════════════════════════════════════ */
.hp-bici {
  background: var(--brand);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hp-bici::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hp-bici__inner {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hp-bici__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.hp-bici__title {
  font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: white;
  margin-bottom: 1rem;
}
.hp-bici__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hp-bici__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2rem;
}
.hp-bici__perk {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.15);
  color: white;
  border: 0.5px solid rgba(255,255,255,0.2);
}
.hp-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: white;
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform var(--dur), box-shadow var(--dur);
  letter-spacing: -0.01em;
}
.hp-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,9,8,0.2);
}
.hp-bici__icon {
  font-size: 10rem;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  padding: 1rem;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   8. CTA + FORM — Fondo oscuro con badge y form flotante
   ═══════════════════════════════════════════════════════════ */
.hp-cta {
  background: var(--ink);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hp-cta__inner {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Badge pill */
.hp-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245,161,0,0.12);
  border: 0.5px solid rgba(245,161,0,0.28);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.hp-cta__badge i { font-size: 15px; }

.hp-cta__quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 1rem;
}

.hp-cta__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.72;
  margin-bottom: 1.75rem;
}

.hp-cta__steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-top: 0;
}
.hp-cta__step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.9rem 1.25rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: background var(--dur);
}
.hp-cta__step-item:last-child { border-bottom: none; }
.hp-cta__step-item:hover { background: rgba(255,255,255,0.04); }
.hp-cta__step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201,35,29,0.22);
  color: #e84040;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Form card (formulario nativo) */
.hp-form-card {
  background: white;
  border: 0.5px solid var(--z-border-d);
  border-radius: var(--r-card);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(10,9,8,0.06), 0 8px 32px rgba(10,9,8,0.06);
}

/* Wrapper neutro para formularios de plugin (Bit Form, CF7, WPForms…)
   No impone estilos propios: el plugin controla su propio diseño.
   Se restauran los defaults del navegador para margin/padding dentro
   del contenedor, cancelando el reset global de main.css. */
.hp-form-plugin-wrap {
  min-width: 0; /* evitar overflow en grid */
}
.hp-form-plugin-wrap *,
.hp-form-plugin-wrap *::before,
.hp-form-plugin-wrap *::after {
  margin: revert;
  padding: revert;
  box-sizing: revert;
}
.hp-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.hp-form-subtitle {
  font-size: 12px;
  color: var(--z-muted);
  margin-bottom: 1.5rem;
}
.hp-progress {
  display: flex;
  gap: 5px;
  margin-bottom: 1.5rem;
}
.hp-progress__seg {
  height: 3px;
  border-radius: 2px;
  flex: 1;
  background: var(--z-border-d);
}
.hp-progress__seg--on { background: var(--brand); }

.hp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hp-form-group { margin-bottom: 1rem; }
.hp-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--z-muted);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.hp-form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 9px;
  border: 0.5px solid #E4E4E7;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  color: var(--ink);
  background: #FAFAFA;
  outline: none;
  transition: border-color var(--dur), background var(--dur), box-shadow var(--dur);
}
.hp-form-input:focus {
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 3px rgba(201,35,29,0.12);
}
.hp-form-input::placeholder { color: #A1A1AA; }
.hp-form-submit {
  width: 100%;
  padding: 12px;
  background: var(--brand);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.hp-form-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,35,29,0.3);
}
.hp-form-note {
  font-size: 11px;
  color: var(--z-muted);
  text-align: center;
  margin-top: 0.75rem;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hp-hero__inner { grid-template-columns: 1fr; padding-top: 5rem; }
  .hp-cta__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hp-steps { grid-template-columns: 1fr 1fr; }
  .hp-steps::before { display: none; }
}

@media (max-width: 768px) {
  .hp-hero__title { font-size: clamp(2.5rem, 9vw, 4rem); }
  .hp-panels { grid-template-columns: 1fr; gap: 12px; }
  .hp-panel { border-right: 0.5px solid var(--z-border-d); }
  .hp-steps { grid-template-columns: 1fr 1fr; }
  .hp-steps::before { display: none; }
  .hp-cta__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hp-sec-title { font-size: clamp(2rem, 8vw, 3rem); }
}
/* Why cards: 2 cols only on tablet (481–768px), never on mobile */
@media (min-width: 481px) and (max-width: 768px) {
  .hp-why__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hp-hero { min-height: auto; }
  .hp-hero__inner { padding: 5rem 1rem 3rem; }
  .hp-hero__stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hp-stat { padding-right: 0; margin-right: 0; border-right: none; }
  .hp-steps { grid-template-columns: 1fr; }
  .hp-about, .hp-events, .hp-why, .hp-process, .hp-cta { padding: 4rem 1rem; }
  .hp-why__grid { grid-template-columns: 1fr; }
  .hp-why__header { margin-bottom: 2rem; }
  .hp-benefit { flex-direction: column; gap: 8px; padding: 1.5rem; }

  /* Form: stack phone + age vertically */
  .hp-form-row { grid-template-columns: 1fr; gap: 0; }

  /* About: tighter spacing between header and pillars/panels */
  .hp-about__header { margin-bottom: 2rem; }
  .hp-about__panels-wrap { margin-top: 2.5rem; }

  /* Pillar cards: reduce inner padding */
  .hp-pillar { padding: 1.5rem; }

  /* Audience panels: reduce padding when stacked */
  .hp-panel { padding: 1.75rem 1.5rem; }

  /* Process header: less breathing room before steps */
  .hp-process__header { margin-bottom: 2.5rem; }

  /* Why cards: reduce padding */
  .hp-why-card { padding: 1.5rem; }
}
