/* ============================================================
   Banco Delta · "Arma tu jugada" — landing styles
   Design tokens extracted from Figma (node 61:2). Do not guess.
   ============================================================ */

:root {
  --bg: #0d0219;
  --bg-grad-end: #160529;
  --primary: #de003a;        /* CTA crimson */
  --primary-glow: rgba(222, 0, 58, 0.5); /* resplandor crimson para hover/focus de botones */
  --eyebrow: #7c36c2;        /* parallelogram purple */
  --text: #fbfbf9;           /* off-white */
  --text-white: #fefefe;
  --text-muted: rgba(251, 251, 249, 0.8);
  --accent-lilac: #a760ef;

  --card-bg: rgba(217, 217, 217, 0.05);
  --card-border: rgba(255, 255, 255, 0.04);
  --input-border: rgba(255, 255, 255, 0.09);
  --faq-bg: rgba(194, 134, 255, 0.12);
  --faq-border: rgba(255, 255, 255, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.06);

  --radius: 4px;
  --radius-lg: 12px;

  --font-display: "Work Sans", sans-serif;
  --font-body: "Work Sans", sans-serif;
  --font-faq: "Instrument Sans", sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

/* ---------- Container: design content = 1140px (1440 - 150*2) ---------- */
@media (min-width: 1200px) {
  .container { max-width: 1140px; padding-left: 0; padding-right: 0; }
}
@media (max-width: 1199.98px) {
  .container { max-width: 100%; padding-left: 32px; padding-right: 32px; }
}

/* ============================================================
   Typography helpers
   ============================================================ */
.display-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

.lead-18 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
}
.lead-16 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text);
  margin: 0;
}
.lead-15-muted {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(254, 254, 254, 0.64);
  margin: 0;
}

/* ============================================================
   Eyebrow — solid purple parallelogram (skewX from Figma ≈ 30°)
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 22px;
  background: var(--eyebrow);
  transform: skewX(-30deg);
}
.eyebrow > span {
  display: inline-block;
  transform: skewX(30deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1;
  white-space: nowrap;
}

/* Plain eyebrow (CTA banner) — text only, no parallelogram */
.eyebrow-plain {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --bs-btn-padding-x: 0;
  --bs-btn-padding-y: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: var(--radius);
  border: 0.5px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:focus-visible { outline: 2px solid var(--accent-lilac); outline-offset: 2px; }

.btn-crimson {
  background: var(--primary);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-crimson:hover,
.btn-crimson:focus-visible {
  background: var(--primary); /* re-afirma el fill frente al .btn:hover de Bootstrap (var sin definir = transparente) */
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -8px var(--primary-glow);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }

.btn-arrow__icon { width: 20px; height: 13px; display: block; flex: 0 0 auto; transition: transform 0.18s ease; }
.btn-arrow:hover .btn-arrow__icon,
.btn-arrow:focus-visible .btn-arrow__icon { transform: translateX(4px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 0.8px solid var(--border-subtle);
}
.site-header .navbar { padding: 0; min-height: 96px; }
.navbar-brand { padding: 0; margin: 0; }
.brand-logo { width: 201px; height: auto; display: block; }

.nav-links { gap: 44px; align-items: center; }
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--text) !important;
  padding: 6px 0;
}
.nav-link:hover { color: #fff !important; }

.header-cta { min-height: 48px; padding: 0 24px; margin-left: 44px; }

.navbar-toggler { border-color: rgba(255, 255, 255, 0.2); padding: 6px 10px; }
.navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(124, 54, 194, 0.4); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(251,251,249,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 62%;
  z-index: 1;
  overflow: hidden;
}
/* Capa de imagen con sangrado: el overscan deja margen para el parallax con el
   cursor (initHeroParallax en main.js) sin que asomen bordes vacíos al
   desplazarse. El transform por variables se compone con el Ken Burns del
   contenedor (que escala) sin conflicto. */
.hero__photo::before {
  content: "";
  position: absolute;
  inset: -6%;
  background: url("../assets/hero-fans.png") center right / cover no-repeat;
  transform: translate3d(var(--hero-px, 0px), var(--hero-py, 0px), 0);
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, var(--bg) 44%, rgba(19, 4, 35, 0) 81%);
}
.hero__glow {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero__glow--1 {
  left: -362px; top: 470px;
  width: 1104px; height: 910px;
  background: url("../assets/glow-1.svg") center / contain no-repeat;
}
.hero__glow--2 {
  left: 13px; top: -19px;
  width: 1060px; height: 843px;
  background: url("../assets/glow-2.svg") center / contain no-repeat;
}
.hero__inner {
  position: relative;
  z-index: 4;
  padding-top: 100px;
  padding-bottom: 112px;
}
.hero__content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.hero__lockup {
  width: 475px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 475 / 287.111;
  transform: rotate(2deg);
  transform-origin: left center;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
  max-width: 520px;
}
.hero__subtitle strong { font-weight: 700; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__actions .btn { min-height: 50px; font-size: 17px; padding: 0 28px; }
.hero__legal {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 509px;
}

/* ---------- Hero · entrada orquestada (respeta reduced-motion) ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* Reveal escalonado del contenido */
  .hero__lockup,
  .hero__subtitle,
  .hero__actions,
  .hero__legal {
    opacity: 0;
    animation: heroRise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  /* El lockup es el protagonista: se "estampa" y aterriza en su rotación de 2° */
  .hero__lockup {
    animation: heroLockupIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    will-change: transform, filter;
  }
  .hero__subtitle { animation-delay: 0.42s; }
  .hero__actions  { animation-delay: 0.56s; }
  .hero__legal    { animation-delay: 0.68s; }

  /* Glows: aparecen primero (ambiente) y respiran suavemente */
  .hero__glow { opacity: 0; }
  .hero__glow--1 {
    animation: glowIn 1.6s ease 0.1s both,
               glowBreath 9s ease-in-out 1.8s infinite;
  }
  .hero__glow--2 {
    animation: glowIn 1.8s ease 0.25s both,
               glowBreath 12s ease-in-out 2.1s infinite;
  }

  /* Foto del hero: asentamiento cinematográfico (Ken Burns) */
  .hero__photo {
    animation: heroPhotoZoom 10s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* "Sello de impacto": cae desde arriba más grande y con desenfoque de
   movimiento, se estampa con sobre-impulso (compresión + rebote) y aterriza
   enfocándose en el golpe. Termina exacto en su pose de reposo (rotate 2°)
   para que no haya salto al acabar (both). */
@keyframes heroLockupIn {
  0% {
    opacity: 0;
    transform: translateY(-30px) rotate(-7deg) scale(1.16);
    filter: blur(12px);
  }
  40% { opacity: 1; }
  50% {
    opacity: 1;
    transform: translateY(5px) rotate(3.2deg) scale(0.95);
    filter: blur(0);
  }
  70% { transform: translateY(-3px) rotate(1.2deg) scale(1.02); }
  85% { transform: translateY(1px) rotate(2.4deg) scale(0.994); }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(2deg) scale(1);
    filter: blur(0);
  }
}
@keyframes glowIn {
  to { opacity: 1; }
}
@keyframes glowBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.045); }
}
@keyframes heroPhotoZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

/* ---------- Reveal al hacer scroll (bloques bajo el fold) ----------
   Mismo lenguaje visual que el hero: fade + translateY con easing expo-out.
   Solo se oculta el contenido si hay JS (.js) para revelarlo, y solo si el
   usuario no pidió reducir movimiento. El stagger se aplica por JS
   (transition-delay inline) según el índice del hermano. */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: 108px 0; }

.section-head { display: flex; flex-direction: column; }
.section-head--left {
  align-items: flex-start;
  max-width: 560px;
  gap: 18px;
  margin-bottom: 52px;
}
.section-head--center {
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 56px;
  gap: 18px;
}
.section-head__copy { display: flex; flex-direction: column; gap: 8px; }

.section--arma { background: var(--bg); }
.section--prizes { background: var(--bg); border-bottom: 1px solid var(--border-subtle); }
.section--form { background: var(--bg); }
.section--faq { background: var(--bg); }

/* ============================================================
   Arma tu jugada — loan cards
   ============================================================ */
.arma__cards { --bs-gutter-x: 50px; --bs-gutter-y: 28px; }

.loan-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.loan-card__head { display: flex; align-items: center; gap: 16px; }
.loan-card__icon {
  width: 30px;
  height: 27px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  display: block;
}
.loan-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}
.loan-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
}
.tier {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 22px;
  border-top: 0.5px solid var(--border-subtle);
}
.tier__range {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(251, 251, 249, 0.7);
}
.tier__prize {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-white);
}
/* Eyebrow pequeño dentro de cada tramo (más chico que el .eyebrow de sección). */
.tier__eyebrow {
  align-self: flex-start;
  margin-bottom: 6px;
}
.eyebrow--sm {
  height: 22px;
  padding: 0 12px;
}
.eyebrow--sm > span {
  font-size: 11px;
  letter-spacing: 0.03em;
}

.arma__footnote {
  margin: 44px 0 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-white);
}
.arma__footnote-lead {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-lilac);
  margin-bottom: 6px;
}

/* ============================================================
   Prizes (Vive la emoción del Mundial)
   ============================================================ */
.prize-row { --bs-gutter-x: 50px; --bs-gutter-y: 32px; margin-top: 64px; }
.prize-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}
.prize-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 525px;
}
.prize-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}
.prize-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}
.prize-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.45;
  color: var(--text);
  margin: 0;
}
.prize-chips-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: rgba(254, 254, 254, 0.64);
  margin: 6px 0 0;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  height: 33px;
  padding: 0 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
}

/* ============================================================
   Steps (Sé parte de la jugada)
   ============================================================ */
.section--steps {
  background: linear-gradient(to right, var(--bg), var(--bg-grad-end));
  border-top: 1px solid var(--border-subtle);
}
.steps__row { --bs-gutter-x: 50px; --bs-gutter-y: 28px; }
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--primary);
}
.step-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 23px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}
.step-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.45;
  color: var(--text);
  margin: 0;
}

/* ============================================================
   CTA Banner
   ============================================================ */
.section--banner {
  background: linear-gradient(to right, var(--bg), var(--bg-grad-end));
  padding: 0 0 108px;
}
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--eyebrow);
  border-radius: var(--radius);
  padding: 62px 60px;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.cta-banner__photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 60%;
  background: url("../assets/banner-fans.png") center / cover no-repeat;
  z-index: 1;
}
.cta-banner__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  z-index: 2;
  background: linear-gradient(to right, #7c36c2 13.218%, rgba(124, 54, 194, 0) 61.707%);
}
.cta-banner__content {
  position: relative;
  z-index: 3;
  max-width: 549px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 42px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  max-width: 537px;
}
.cta-banner__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33;
  color: #fff;
  margin: 0;
  max-width: 528px;
}

/* ============================================================
   Form
   ============================================================ */
.form-row { --bs-gutter-x: 0; }
@media (min-width: 992px) {
  .form-row { flex-wrap: nowrap; }
  .form-row > .col-lg-5 { flex: 0 0 444px; width: 444px; max-width: 444px; }
  .form-row > .col-lg-6 { flex: 0 0 644px; width: 644px; max-width: 644px; }
}
.quote-form .row { --bs-gutter-x: 30px; --bs-gutter-y: 28px; }
.form-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 444px;
}
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 40px;
}
.form-card__head { margin-bottom: 32px; }
.form-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 10px;
}
.form-card__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
  margin: 0;
}

.quote-form .form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 13px;
}
/* Asterisco de campo obligatorio — idéntico al de la versión de Gravity Forms
   (carmesí, Work Sans 700, 17px). Todos los campos del formulario son
   obligatorios, por eso se pinta en cada etiqueta; la semántica de "requerido"
   la aporta el atributo required de cada input/select. */
.quote-form .form-label::after {
  content: "*";
  margin-left: 4px;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
}
.quote-form .form-control,
.quote-form .form-select {
  background: var(--card-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius);
  min-height: 53px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 0 16px;
}
.quote-form .form-control::placeholder { color: rgba(254, 254, 254, 0.45); }
.quote-form .form-control:focus,
.quote-form .form-select:focus {
  background: var(--card-bg);
  border-color: var(--eyebrow);
  box-shadow: 0 0 0 2px rgba(124, 54, 194, 0.25);
  color: var(--text);
}

/* Custom select with chevron */
.select-wrap { position: relative; }
.select-wrap .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
  padding-right: 46px;
  color: rgba(254, 254, 254, 0.64);
  font-weight: 500;
}
.select-wrap .form-select.has-value { color: var(--text); font-weight: 400; }
.select-wrap .form-select option { color: #14091f; }
.select-wrap__chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 13px;
  height: 9px;
  transform: translateY(-50%) rotate(180deg);
  pointer-events: none;
}

.form-consent {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
}
.form-consent__input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-consent__input:focus-visible {
  outline: 2px solid var(--accent-lilac);
  outline-offset: 2px;
}
.form-consent__label {
  flex: 1 1 0;
  min-width: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
}
.form-consent .invalid-feedback { flex-basis: 100%; }
.form-consent__label a,
.footer__terms a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.18s ease;
}
.form-consent__label a:hover,
.form-consent__label a:focus-visible,
.footer__terms a:hover,
.footer__terms a:focus-visible { color: var(--primary); }
.form-submit { width: 100%; min-height: 57px; font-size: 18px; }
.form-status {
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
}
.form-status--ok { color: #4ade80; }
.form-status--err { color: var(--primary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__head { max-width: 920px; margin-bottom: 48px; }
.faq.accordion {
  max-width: 942px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 19px;
  --bs-accordion-border-color: var(--faq-border);
  --bs-accordion-bg: transparent;
}
.faq .accordion-item {
  background: var(--faq-bg);
  border: 1px solid var(--faq-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
}
.faq .accordion-header { margin: 0; }
.faq .accordion-button {
  background: transparent;
  color: var(--text-white);
  font-family: var(--font-faq);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  padding: 26px 31px;
  box-shadow: none;
  border-radius: var(--radius-lg);
}
.faq .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--text-white);
  box-shadow: none;
}
.faq .accordion-button:focus-visible {
  box-shadow: 0 0 0 2px rgba(124, 54, 194, 0.35);
}
.faq .accordion-button::after {
  width: 14px;
  height: 10px;
  background-image: url("../assets/chevron.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}
.faq .accordion-button:not(.collapsed)::after { transform: rotate(0deg); }
.faq .accordion-body {
  padding: 0 31px 26px;
  font-family: var(--font-faq);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(254, 254, 254, 0.72);
}

/* ============================================================
   Contact
   ============================================================ */
.section--contact {
  background: linear-gradient(to right, var(--bg), var(--bg-grad-end));
  border-top: 1px solid var(--border-subtle);
  padding: 72px 0;
}
.contact__row { align-items: center; }
.contact__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 545px;
}
.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact__item { display: flex; align-items: center; gap: 16px; }
.contact__icon {
  width: 26px;
  height: 25px;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
}
.contact__item a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
}
.contact__item a:hover { color: #fff; text-decoration: underline; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 0.8px solid rgba(255, 255, 255, 0.1);
  padding: 80px 0;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo { width: 201px; height: auto; display: block; }
.footer__cta { min-height: 50px; }
.footer__divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 37px 0;
  opacity: 1;
}
.footer__terms {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px;
}
.footer__copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: rgba(251, 251, 249, 0.6);
  margin: 0;
}

/* ============================================================
   Responsive — tablet < 992px
   ============================================================ */
@media (max-width: 991.98px) {
  .section { padding: 72px 0; }
  .section--banner { padding: 0 0 72px; }
  .display-title { font-size: 40px; }

  .navbar-collapse {
    background: var(--bg);
    margin-top: 12px;
    padding: 12px 0 16px;
    border-top: 1px solid var(--border-subtle);
  }
  .nav-links { gap: 4px; }
  .nav-link { padding: 10px 0; }
  .header-cta { margin-top: 14px; width: 100%; margin-left: 0; }

  .hero__inner { padding-top: 64px; padding-bottom: 80px; }
  .hero__content { max-width: 100%; }
  .hero__lockup { width: 400px; }
  .hero__photo { width: 100%; opacity: 0.45; }
  .hero__overlay {
    background: linear-gradient(to bottom, rgba(13, 2, 25, 0.55) 0%, var(--bg) 88%);
  }

  .section-head--left { margin-bottom: 40px; }
  .section-head--center { margin-bottom: 44px; }

  .loan-card__title { font-size: 26px; }
  .prize-row { margin-top: 48px; }

  .cta-banner { padding: 48px 40px; min-height: 0; }
  .cta-banner__photo { width: 100%; opacity: 0.4; }
  .cta-banner__overlay {
    right: auto;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #7c36c2 35%, rgba(124, 54, 194, 0.15) 100%);
  }
  .cta-banner__title { font-size: 32px; }

  .form-row { --bs-gutter-y: 40px; }
  .form-intro { max-width: 100%; }
}

/* ============================================================
   Responsive — mobile < 576px
   ============================================================ */
@media (max-width: 575.98px) {
  .section { padding: 56px 0; }
  .section--banner { padding: 0 0 56px; }
  .display-title { font-size: 30px; }

  .hero__lockup { width: 100%; max-width: 320px; align-self: center; }
  .hero__actions { width: 100%; flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  .loan-card,
  .step-card { padding: 24px; }
  .loan-card__title { font-size: 24px; }

  .prize-title { font-size: 22px; }

  .cta-banner { padding: 36px 24px; }
  .cta-banner__title { font-size: 26px; }
  .cta-banner__content .btn { width: 100%; }

  .form-card { padding: 24px; }
  .form-card__title { font-size: 24px; }

  .faq .accordion-button { font-size: 16px; padding: 22px 22px; }
  .faq .accordion-body { padding: 0 22px 22px; }

  .contact__item a { font-size: 18px; }

  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__cta { width: 100%; }
}

/* ============================================================
   Página de gracias (confirmación dedicada)
   ============================================================ */
.thanks {
  position: relative;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
  padding: 64px 0;
}
.thanks::before,
.thanks::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.thanks::before {
  width: 680px; height: 680px;
  top: -240px; left: 50%;
  transform: translateX(-62%);
  background: radial-gradient(circle, rgba(222, 0, 58, 0.28), rgba(222, 0, 58, 0) 68%);
}
.thanks::after {
  width: 760px; height: 760px;
  bottom: -300px; left: 50%;
  transform: translateX(-38%);
  background: radial-gradient(circle, rgba(167, 96, 239, 0.22), rgba(167, 96, 239, 0) 70%);
}
.thanks__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.thanks__lockup {
  width: 320px;
  max-width: 70%;
  margin: 0 auto 6px;
  transform-origin: center;
}
.thanks__title {
  font-size: clamp(34px, 6vw, 52px);
}
.thanks__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: var(--text);
  margin: 0;
  max-width: 520px;
}
.thanks__lead--muted {
  font-size: 16px;
  color: rgba(254, 254, 254, 0.64);
}
@media (max-width: 575.98px) {
  .thanks { padding: 48px 0; }
  .thanks__lockup { width: 240px; }
}
