/* =============================================================
   ROA Credit — credit.roahost.com
   Cinematic dark hero → light editorial body
   Cormorant Garamond (display) + Plus Jakarta Sans (UI)
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* dark cinematic */
  --ink: #05080A;
  --ink-2: #0A1013;
  --teal-deep: #0D5C63;
  --teal-glow: rgba(13, 92, 99, 0.55);
  --gold: #B08D57;
  --cream: #FDFBF7;
  --cream-2: #E8EDEC;

  /* light editorial */
  --canvas: #FDFBF7;
  --text: #0F1B2D;
  --text-2: #475569;
  --primary: #0D5C63;
  --primary-hover: #0A4A50;
  --money: #15803D;
  --surface: #F5F7FA;
  --hairline: #E2E8F0;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 24px 60px -30px rgba(15, 27, 45, 0.28);
  --shadow-card: 0 12px 40px -24px rgba(15, 27, 45, 0.22);

  --wrap: 1200px;
  --wrap-narrow: 780px;
  --radius-shell: 2rem;
  --radius-core: 1.5rem;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

.page { overflow-x: hidden; }
.mono {
  font-family: 'Plus Jakarta Sans', ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.01em;
}
.no-break { white-space: nowrap; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--primary); color: var(--cream);
  padding: 0.75rem 1.25rem; border-radius: 0 0 1rem 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding: 7rem 0; }
.section-dark { padding: 7rem 0; }
@media (max-width: 680px) {
  .section, .section-dark { padding: 4rem 0; }
}

/* ---------- Type ---------- */
.h-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
h2.h-serif, .trato-title, .como-title, .red-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin: 0.6rem 0 1.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-2);
  margin: 0 0 0.4rem;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.18);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  transition: transform 0.6s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.98); }
.btn-lg { padding: 1.05rem 1.5rem 1.05rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.7s var(--ease), background 0.4s var(--ease);
}
.btn-arrow svg { width: 15px; height: 15px; }
.btn:hover .btn-arrow { transform: translate(3px, -3px) scale(1.08); }

.btn-primary { background: var(--primary); color: var(--cream); box-shadow: 0 14px 34px -18px rgba(13, 92, 99, 0.7); }
.btn-primary:hover { background: var(--primary-hover); }
.btn-primary .btn-arrow { background: rgba(253, 251, 247, 0.18); }

.btn-line {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(253, 251, 247, 0.28);
}
.btn-line:hover { border-color: var(--gold); color: #fff; }

.btn-ghost {
  background: rgba(253, 251, 247, 0.08);
  color: var(--cream);
  border: 1px solid rgba(253, 251, 247, 0.2);
  padding: 0.6rem 0.7rem 0.6rem 1.1rem;
  font-size: 0.85rem;
}
.btn-ghost .btn-arrow { width: 26px; height: 26px; background: rgba(253, 251, 247, 0.14); }
.btn-ghost:hover { border-color: var(--gold); }

/* ---------- Nav (floating glass pill) ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 1.5rem 1rem 0;
}
.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  max-width: calc(100vw - 2rem);
  padding: 0.5rem 0.5rem 0.5rem 1.4rem;
  border-radius: 999px;
  background: rgba(10, 16, 19, 0.55);
  border: 1px solid rgba(253, 251, 247, 0.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav-pill.is-solid {
  background: rgba(5, 8, 10, 0.82);
  box-shadow: 0 18px 50px -28px rgba(0, 0, 0, 0.8);
}
.nav-logo { display: inline-flex; align-items: center; }
/* Gold wordmark sits on a clean white chip so it never shows a murky square on the dark nav */
.nav-logo img {
  height: 26px; width: auto;
  background: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0,0,0,.14), inset 0 0 0 1px rgba(0,0,0,.04);
}
.nav-logo-text {
  display: none;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--cream);
}
.nav-cta { flex-shrink: 0; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.08);
  border: 1px solid rgba(253, 251, 247, 0.18);
}
.nav-burger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-burger.is-open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-burger.is-open span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 10, 0.9);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.nav-overlay-inner { display: flex; flex-direction: column; gap: 1.75rem; text-align: center; }
.nav-overlay-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.nav-overlay.is-open .nav-overlay-link { opacity: 1; transform: translateY(0); }
.nav-overlay.is-open .nav-overlay-link:nth-child(1) { transition-delay: 0.08s; }
.nav-overlay.is-open .nav-overlay-link:nth-child(2) { transition-delay: 0.16s; }
.nav-overlay.is-open .nav-overlay-link:nth-child(3) { transition-delay: 0.24s; }
.nav-overlay.is-open .nav-overlay-link:nth-child(4) { transition-delay: 0.32s; }
.nav-overlay-cta { color: var(--gold); }

/* ---------- Hero (dark, scrubbed video) ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: 8rem clamp(1.25rem, 5vw, 3rem) 6rem;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero-wash {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 70% 20%, var(--teal-glow), transparent 60%),
    radial-gradient(100% 100% at 20% 90%, rgba(5,8,10,0.85), transparent 55%),
    linear-gradient(180deg, rgba(5,8,10,0.55) 0%, rgba(5,8,10,0.35) 40%, rgba(5,8,10,0.92) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  will-change: transform, opacity;
}
.hero-eyebrow { margin-bottom: 1.25rem; }
.hero-headline {
  max-width: 60rem;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  margin: 0 0 1.5rem;
  color: var(--cream);
}
.hero-sub {
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--cream-2);
  margin: 0 0 2.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.55);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollpulse 2.4s var(--ease-soft) infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Proof stripe (dark→light bridge) ---------- */
.proof {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 40%, var(--canvas) 100%);
  padding: 3.5rem 0 4rem;
}
.proof-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  color: var(--cream);
}
.proof-icon { color: var(--gold); margin-bottom: 0.25rem; }
.proof-icon svg { width: 20px; height: 20px; }
.proof-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(232, 237, 236, 0.6);
}
.proof-value { font-size: 1.05rem; font-weight: 600; color: var(--cream); }
a.proof-value:hover { color: var(--gold); }
.proof-line { width: 1px; height: 40px; background: rgba(253, 251, 247, 0.14); }
@media (max-width: 680px) { .proof-line { display: none; } }

/* ---------- Double-bezel cards ---------- */
.bezel {
  padding: 6px;
  border-radius: var(--radius-shell);
  background: linear-gradient(160deg, rgba(15,27,45,0.04), rgba(15,27,45,0.01));
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
}
.bezel-core {
  border-radius: var(--radius-core);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 0 0 1px rgba(226, 232, 240, 0.7);
  padding: 2rem;
}
.bezel-dark {
  background: linear-gradient(160deg, rgba(253,251,247,0.06), rgba(253,251,247,0.02));
  border: 1px solid rgba(253, 251, 247, 0.1);
  box-shadow: 0 30px 60px -40px rgba(0,0,0,0.7);
}
.bezel-dark .bezel-core {
  background: linear-gradient(165deg, #0B1518, #071013);
  box-shadow: inset 0 1px 0 rgba(253,251,247,0.06), inset 0 0 0 1px rgba(253,251,247,0.05);
}

/* ---------- El trato ---------- */
.trato-lead {
  max-width: 46rem;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 3rem;
}
.scrub-words .word { display: inline-block; opacity: 0.15; transition: opacity 0.2s linear; }

.trato-callout { max-width: 52rem; margin: 0 auto 3.5rem; }
.trato-callout .bezel-core { padding: 2.5rem; text-align: center; }
.trato-callout-text {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 1rem;
}
.trato-callout-note { color: var(--text-2); font-size: 0.95rem; margin: 0; }

.trato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(13, 92, 99, 0.08);
  color: var(--primary);
  margin-bottom: 1.1rem;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title { font-size: 1.15rem; font-weight: 700; margin: 0 0 0.5rem; }
.feature-body { color: var(--text-2); font-size: 1rem; margin: 0; }

/* ---------- Cómo funciona ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.step-core {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 2.25rem;
  position: relative;
}
.step-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
  flex-shrink: 0;
  min-width: 3.5rem;
}
.step-title { font-size: 1.3rem; font-weight: 700; margin: 0 0 0.6rem; }
.step-body p { color: var(--text-2); margin: 0; }
.step-body em { color: var(--primary); font-style: italic; }
.roa-coin { flex-shrink: 0; width: 64px; height: 64px; align-self: center; }
.roa-coin svg { width: 100%; height: 100%; }
@media (max-width: 560px) {
  .step-core { flex-direction: column; gap: 1rem; }
  .roa-coin { align-self: flex-start; }
}

/* ---------- La Red Activa (dark, pinned) ---------- */
.red {
  position: relative;
  background: radial-gradient(120% 120% at 50% 0%, #0D3338 0%, var(--ink) 65%);
  color: var(--cream);
  overflow: hidden;
}
.red-glow {
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(circle, var(--teal-glow), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.red-inner { position: relative; z-index: 2; }
.red-pin { max-width: 40rem; }
.red-title { color: var(--cream); }
.red-sub { color: var(--cream-2); font-size: 1.1rem; max-width: 34rem; margin: 0 0 3rem; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.partner-card {
  transition: transform 0.6s var(--ease);
}
.partner-card .bezel-core { border: 1px solid rgba(176, 141, 87, 0.35); position: relative; overflow: hidden; }
.partner-card:hover .bezel-core { border-color: rgba(176, 141, 87, 0.9); border-width: 2px; }
.partner-core { padding: 1.75rem; min-height: 220px; display: flex; flex-direction: column; }
.partner-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(26, 58, 107, 0.5);
  border: 1px solid rgba(176, 141, 87, 0.4);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.partner-badge svg { width: 11px; height: 11px; }
.partner-open-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(253, 251, 247, 0.22);
  color: rgba(253, 251, 247, 0.55);
  margin-bottom: 1rem;
}
.partner-open-icon svg { width: 16px; height: 16px; }
.partner-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.partner-open .partner-category { color: rgba(232, 237, 236, 0.55); }
.partner-name { font-size: 1.5rem; color: var(--cream); margin: 0 0 0.4rem; }
.partner-barrio { color: var(--cream-2); font-size: 0.95rem; margin: 0 0 auto; padding-bottom: 1rem; }
.partner-metric { font-size: 0.85rem; color: rgba(232, 237, 236, 0.75); margin: 0; }
.partner-card.partner-open .partner-name { color: rgba(253, 251, 247, 0.7); }

.red-honest {
  margin-top: 2.5rem;
  max-width: 40rem;
  color: rgba(232, 237, 236, 0.7);
  font-size: 0.95rem;
}

/* ---------- Testimonial ---------- */
.testimonial-card { max-width: 46rem; margin-top: 1rem; }
.testimonial-core { padding: 2.75rem; position: relative; }
.testimonial-mark {
  position: absolute;
  top: 1rem; left: 1.75rem;
  font-size: 5rem;
  color: rgba(13, 92, 99, 0.12);
  line-height: 1;
}
.testimonial-quote {
  position: relative;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  margin: 1.5rem 0 1.75rem;
}
.testimonial-foot { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-avatar svg { width: 40px; height: 40px; border-radius: 50%; }
.testimonial-meta { display: flex; flex-direction: column; }
.testimonial-name { font-weight: 700; }
.testimonial-biz { color: var(--text-2); font-size: 0.9rem; }

/* ---------- Form ---------- */
.form-section { background: var(--surface); }
.form-shell { max-width: var(--wrap); margin: 0 auto; }
.form-core {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  padding: 3rem;
}
@media (max-width: 820px) { .form-core { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; } }
.form-copy .h-serif { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 0.4rem 0 0.75rem; }
.form-sub { color: var(--text-2); margin: 0 0 1.75rem; }
.form-promises { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.form-promises li { display: flex; align-items: center; gap: 0.75rem; color: var(--text); }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(21, 128, 61, 0.12);
  color: var(--money);
}
.check svg { width: 14px; height: 14px; }

.form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text-2); }
.field input {
  font-family: inherit;
  font-size: 16px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background: #fff;
  color: var(--text);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 92, 99, 0.12);
}
.form-submit { margin-top: 0.5rem; }
.form-privacy { font-size: 0.8rem; color: var(--text-2); margin: 0.75rem 0 0; }
.form-privacy a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0.25rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.faq-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.4s var(--ease);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a { overflow: hidden; }
.faq-a p { color: var(--text-2); margin: 0 0 1.4rem; max-width: 60ch; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream-2); padding: 4.5rem 0 2.5rem; }
.footer-inner { display: grid; gap: 3rem; }
.footer-brand { max-width: 20rem; }
.footer-logo { font-size: 1.6rem; color: var(--cream); }
.footer-tagline { color: rgba(232, 237, 236, 0.6); margin: 0.5rem 0 0; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin: 0 0 1rem; }
.footer-col p { margin: 0 0 0.4rem; font-size: 0.92rem; color: rgba(232, 237, 236, 0.75); }
.footer-nit { color: var(--cream) !important; }
.footer-col ul { list-style: none; margin: 0 0 1rem; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.92rem; color: rgba(232, 237, 236, 0.8); }
.footer-col a:hover { color: var(--gold); }
.footer-law { font-size: 0.82rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  font-size: 0.82rem;
  color: rgba(232, 237, 236, 0.55);
}
.footer-bottom p { margin: 0; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(5, 8, 10, 0.7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transform: translateY(120%);
  transition: transform 0.5s var(--ease);
  display: none;
}
.sticky-cta.is-shown { transform: translateY(0); }
.sticky-btn { box-shadow: 0 -6px 24px -12px rgba(0,0,0,0.5); }

/* ---------- Reveal (JS-driven; visible by default for no-JS / reduced-motion) ---------- */
.reveal-up { opacity: 1; transform: none; }
.js-anim .reveal-up { opacity: 0; transform: translateY(16px); filter: blur(4px); }
.js-anim .reveal-up.is-in {
  opacity: 1; transform: translateY(0); filter: blur(0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  /* Keep the white-chip logo on mobile too (it looks clean now); text only on img error */
  .nav-logo img { height: 24px; padding: 6px 10px; }
  .sticky-cta { display: block; }
}
@media (min-width: 821px) {
  .footer-inner { grid-template-columns: 1fr 2fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line { animation: none; }
  .btn, .btn-arrow, .faq-icon { transition: none; }
  .reveal-up { opacity: 1 !important; transform: none !important; filter: none !important; }
  .scrub-words .word { opacity: 1 !important; }
}
