/* ============================================================
   Spain Business Services — Landing Page
   Stack: HTML + CSS + JS puro · Mobile-first
============================================================ */

:root {
  --bg: #080808;
  --bg-elevated: #0e0e0e;
  --bg-card: #111111;
  --bg-card-hover: #161616;

  --line: rgba(201, 168, 76, 0.18);
  --line-soft: rgba(255, 255, 255, 0.06);

  --gold: #c9a84c;
  --gold-soft: #e0c272;
  --gold-deep: #a98b35;
  --gold-glow: rgba(201, 168, 76, 0.35);

  --fg: #f5f1e6;
  --fg-soft: #cfc8b5;
  --fg-mute: #8a8470;
  --fg-dim: #5a5648;

  --danger: #e26c6c;

  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 14px 50px rgba(201, 168, 76, 0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1200px;
  --container-narrow: 760px;
}

/* ----------- RESET ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #000; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--fg);
}
h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

p { margin: 0; }

/* ----------- LAYOUT HELPERS --------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  position: relative;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .section { padding: 120px 0; }
}
.section + .section { border-top: 1px solid var(--line-soft); }

/* La primera sección después del hero tiene menos espacio arriba
   para que se asome desde la primera vista. */
.section--value { padding-top: 56px; }
@media (min-width: 768px) {
  .section--value { padding-top: 72px; }
}

.section__head { margin-bottom: 48px; max-width: 720px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  position: relative;
  padding-left: 36px;
}
.section__eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.section__head--center .section__eyebrow { padding-left: 0; }
.section__head--center .section__eyebrow::before { display: none; }

.section__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.015em;
}
.section__lead {
  margin-top: 20px;
  color: var(--fg-soft);
  font-size: 1.05rem;
  max-width: 60ch;
}
.section__head--center .section__lead { margin-inline: auto; }

/* ----------- HERO ------------------------------------------- */
.hero {
  position: relative;
  min-height: 78vh;
  min-height: 78dvh;
  padding: 0 22px 48px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(120% 80% at 50% 0%, #121008 0%, #080808 55%, #050505 100%);
}
@media (min-width: 900px) {
  .hero { min-height: 82vh; min-height: 82dvh; }
}
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}
.hero__glow {
  position: absolute;
  z-index: 0;
  top: -30%;
  left: 50%;
  width: 90vmax;
  height: 90vmax;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0) 65%);
  pointer-events: none;
  animation: heroPulse 8s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, 0) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, 0) scale(1.08); }
}

.nav {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  text-shadow: 0 0 22px rgba(201, 168, 76, 0.18);
}
.nav__brand-text {
  background: linear-gradient(180deg, #ffe9b3 0%, var(--gold-soft) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 760px) {
  .nav__brand { font-size: 1.7rem; }
}
.nav__cta {
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--fg);
  transition: all 0.3s var(--ease);
}
.nav__cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: auto;
  text-align: center;
  padding: 24px 0 8px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.04);
}
.hero__title {
  font-size: clamp(2.4rem, 7vw, 5.25rem);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 30%, #d8d2bf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--fg-soft);
  line-height: 1.65;
}
.hero__subtitle strong {
  color: var(--gold-soft);
  font-weight: 600;
}
.hero__values {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fg-soft);
  max-width: 360px;
}
@media (min-width: 760px) {
  .hero__values {
    grid-template-columns: repeat(3, auto);
    column-gap: 40px;
    row-gap: 0;
    max-width: none;
  }
}
.hero__values li {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  white-space: nowrap;
}
@media (min-width: 760px) {
  .hero__values li { justify-content: center; }
}
.check {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  font-size: 13px;
  border: 1px solid var(--line);
}

.hero__urgency {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg-soft);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.hero__urgency-icon { font-size: 1rem; }
.hero__countdown {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.hero__scroll {
  position: absolute;
  z-index: 1;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: none;
}
.hero__scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--gold);
  margin: 6px auto 0;
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@media (min-width: 900px) { .hero__scroll { display: block; } }
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  40% { opacity: 1; }
  80% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* ----------- BUTTONS ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              box-shadow 0.35s var(--ease), color 0.3s var(--ease);
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
}
.btn--xl {
  padding: 18px 32px;
  font-size: 1.02rem;
}
.btn--block { width: 100%; justify-content: center; }
.btn__arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: #14110a;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.35);
}
.btn--primary:active { transform: translateY(0); }
.btn--primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--fg);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

/* ----------- REVEAL ANIMATION ------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__glow { animation: none; }
}

/* ----------- VALUE CARDS ------------------------------------ */
.cards {
  display: grid;
  gap: 22px;
}
.cards--3 { grid-template-columns: 1fr; }
@media (min-width: 760px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
              background 0.45s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(201, 168, 76, 0.4), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }
.card__icon {
  font-size: 1.85rem;
  margin-bottom: 18px;
  width: 54px; height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.card__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.card__text {
  color: var(--fg-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ----------- SERVICES --------------------------------------- */
.services {
  display: grid;
  gap: 22px;
}
@media (min-width: 900px) { .services { grid-template-columns: 1fr 1fr; gap: 28px; } }

.service {
  position: relative;
  padding: 40px 30px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  overflow: hidden;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}
.service__number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.service__title {
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.service__text {
  color: var(--fg-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.service__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.service__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--fg-soft);
}
.service__list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px; height: 8px;
  margin-top: 8px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}
.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.service__cta:hover {
  border-color: var(--gold);
  gap: 14px;
}
.service--gold {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(201, 168, 76, 0.08), transparent 60%),
    var(--bg-card);
  border-color: var(--line);
}

/* ----------- FORM ------------------------------------------- */
.form {
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  position: relative;
}
@media (min-width: 600px) { .form { padding: 44px 36px; } }

.form__row {
  display: grid;
  gap: 18px;
}
@media (min-width: 540px) { .form__row { grid-template-columns: 1fr 1fr; } }

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form__row .form__field { margin-bottom: 0; }
.form__row { margin-bottom: 18px; }

.form__field label, .form__choice legend {
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
}
.req { color: var(--gold); }

.form__field input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--fg);
  font: inherit;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form__field input::placeholder { color: var(--fg-dim); }
.form__field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}
.form__field input:focus-visible { box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18); }

.form__field.has-error input,
.form__choice.has-error .choice__card { border-color: var(--danger); }
.form__error {
  display: none;
  color: var(--danger);
  font-size: 0.82rem;
  margin-top: 2px;
}
.form__field.has-error .form__error,
.form__choice.has-error .form__error { display: block; }

/* ----------- CHOICE CARDS ----------------------------------- */
.form__choice {
  margin: 0 0 22px;
  padding: 0;
  border: none;
}
.form__choice legend { padding: 0; margin-bottom: 14px; }

.choice {
  display: grid;
  gap: 12px;
}
@media (min-width: 540px) { .choice { grid-template-columns: 1fr 1fr; } }

.choice__option { cursor: pointer; }
.choice__option input { position: absolute; opacity: 0; pointer-events: none; }
.choice__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
  min-height: 100px;
}
.choice__icon {
  font-size: 1.65rem;
  line-height: 1;
}
.choice__label {
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
  line-height: 1.3;
}
.choice__option:hover .choice__card {
  border-color: var(--line);
  background: rgba(201, 168, 76, 0.04);
}
.choice__option input:focus-visible + .choice__card {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}
.choice__option input:checked + .choice__card {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.form__legal {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--fg-mute);
  text-align: center;
  line-height: 1.55;
}

/* ----------- FORM SUCCESS + CALENDLY ------------------------ */
.form-success {
  text-align: center;
  padding: 40px 24px 12px;
  animation: fadeUp 0.7s var(--ease) both;
}
.form-success__check {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #14110a;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}
.form-success__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.form-success__text {
  color: var(--fg-soft);
  max-width: 50ch;
  margin: 0 auto;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.calendly-wrap {
  margin: 28px auto 0;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  position: relative;
  /* Romper el ancho del container--narrow del formulario para que Calendly
     muestre su panel completo (necesita ~1000px para verse a 2 columnas). */
  width: min(1080px, calc(100vw - 32px));
  margin-left: 50%;
  transform: translateX(-50%);
}
.calendly-inline-widget {
  min-width: 320px;
  width: 100%;
  height: clamp(880px, 92vh, 1100px);
  background: #fff;
  border-radius: calc(var(--radius-xl) - 14px);
  overflow: hidden;
}
.calendly-inline-widget iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0 !important;
}

@media (max-width: 720px) {
  .calendly-wrap {
    width: calc(100vw - 24px);
    padding: 8px;
    margin-top: 20px;
  }
  .calendly-inline-widget {
    height: clamp(740px, 88vh, 1000px);
    border-radius: 14px;
  }
}

.calendly-pending {
  padding: 40px 24px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: rgba(201, 168, 76, 0.03);
}
.calendly-pending h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: var(--gold);
}
.calendly-pending p {
  color: var(--fg-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 55ch;
  margin: 0 auto 10px;
}
.calendly-pending code {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--gold-soft);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

/* ----------- FAQ -------------------------------------------- */
.faq {
  display: grid;
  gap: 14px;
  margin-bottom: 56px;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq__item[open] { border-color: var(--line); }
.faq__question {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--fg);
  font-weight: 500;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.35s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  top: 50%; left: 50%;
  transition: transform 0.3s var(--ease);
}
.faq__icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__icon { background: var(--gold); border-color: var(--gold); }
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: #14110a; }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__answer {
  padding: 0 24px 24px;
  color: var(--fg-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 65ch;
}

.faq__cta {
  text-align: center;
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.faq__cta p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 16px;
}

/* ----------- FOOTER ----------------------------------------- */
.footer {
  padding: 60px 0 36px;
  border-top: 1px solid var(--line-soft);
  background: #050505;
}
.footer__inner {
  display: grid;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 720px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr;
    align-items: start;
    gap: 60px;
  }
}
.footer__logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__tagline {
  color: var(--fg-mute);
  font-size: 0.95rem;
  max-width: 50ch;
  line-height: 1.65;
}
.footer__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 10px;
}
.footer__email {
  color: var(--gold);
  font-size: 1.02rem;
  transition: color 0.3s var(--ease);
  word-break: break-word;
}
.footer__email:hover { color: var(--gold-soft); }

.footer__legal {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--fg-dim);
  text-align: center;
}
@media (min-width: 720px) {
  .footer__legal {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__disclaimer { max-width: 60ch; }

/* ----------- MOBILE TUNE-UPS -------------------------------- */
@media (max-width: 480px) {
  .nav { padding: 14px 0; }
  .nav__cta { font-size: 0.8rem; padding: 9px 14px; }

  /* Hero compacto en mobile para que la siguiente sección asome */
  .hero { padding-bottom: 32px; min-height: 90vh; min-height: 90dvh; }
  .hero__inner { padding: 12px 0 0; }
  .hero__eyebrow { margin-bottom: 18px; padding: 5px 14px; font-size: 10px; }
  .hero__title { letter-spacing: -0.025em; margin-bottom: 18px; }
  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }
  .hero__values { margin-bottom: 22px; gap: 10px; }
  .hero__urgency {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.82rem;
    padding: 10px 16px;
    text-align: center;
    margin-top: 18px;
  }
  .btn--xl { padding: 16px 26px; font-size: 0.98rem; }

  .section { padding: 56px 0; }
  .section--value { padding-top: 40px; }
  .card { padding: 28px 22px; }
  .service { padding: 32px 22px; }
  .form { padding: 28px 20px; }
  .form__field input { font-size: 16px; /* evita zoom iOS */ }
  .faq__question { font-size: 1.1rem; padding: 18px 20px; }
  .faq__answer { padding: 0 20px 20px; }
}
