/* ============================================
   Nomadora V3 — B2C Landing Styles
   Cuberto-inspired: minimal, bold typography,
   smooth animations
   ============================================ */

/* --- Custom Properties --- */
:root {
  --spain-red: #c60b1e;
  --spain-orange: #e8750a;
  --spain-yellow: #ffc400;
  --gradient: linear-gradient(135deg, var(--spain-red), var(--spain-orange), var(--spain-yellow));

  --bg-dark: #000;
  --bg-light: #f8f7f4;
  --bg-card-dark: #111;
  --bg-card-light: #fff;

  --text-dark: #000;
  --text-light: #fff;
  --text-muted: #888;
  --text-muted-light: #aaa;

  --border-light: rgba(255,255,255,.1);
  --border-dark: rgba(0,0,0,.08);

  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;

  --container: 1240px;
  --gap: 24px;

  --ease: cubic-bezier(.16,1,.3,1);
  --dur: .6s;

  --nav-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

/* --- Mouse Follower Overrides --- */
.mf-cursor { z-index: 99999; }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }

/* --- Typography --- */
.eyebrow {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--text-muted-light); }
.eyebrow--dark { color: var(--text-muted); }

h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.03em;
}
h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
}
h4 {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.3;
}
.text-lg { font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
.text-md { font-size: 16px; line-height: 1.6; }
.text-sm { font-size: 14px; line-height: 1.5; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.whitespace-pre { white-space: pre-line; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--text-light);
  color: var(--text-dark);
  border: 2px solid var(--text-light);
}
.btn--primary:hover {
  background: transparent;
  color: var(--text-light);
}
.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,.3);
}
.btn--ghost:hover {
  border-color: var(--text-light);
}
.btn--gradient {
  background: var(--gradient);
  color: var(--text-light);
  border: none;
  font-size: 18px;
  padding: 20px 40px;
}
.btn--gradient:hover {
  opacity: .9;
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--text-dark);
  color: var(--text-light);
  border: 2px solid var(--text-dark);
}
.btn--dark:hover {
  background: transparent;
  color: var(--text-dark);
}
.btn--full { width: 100%; }
.btn--lg { font-size: 18px; padding: 20px 40px; }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Sections --- */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
.section--light {
  background: var(--bg-light);
  color: var(--text-dark);
}
.section__header {
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* ============================
   1. NAV
   ============================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), transform .4s var(--ease);
}
.nav--solid {
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav--hidden {
  transform: translateY(-100%);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: color .3s;
}
.nav__link:hover { color: #fff; }
.nav__agency {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  transition: color .3s;
}
.nav__agency::after {
  content: ' \2192';
}
.nav__agency:hover { color: rgba(255,255,255,.8); }
.nav__cta {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  transition: all .3s;
}
.nav__cta:hover {
  background: #fff;
  color: #000;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav__burger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.nav__mobile.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile a {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

/* ============================
   2. HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__blend {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__shape {
  position: absolute;
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .6;
  will-change: transform;
}
.hero__shape--red { background: var(--spain-red); }
.hero__shape--orange { background: var(--spain-orange); }
.hero__shape--yellow { background: var(--spain-yellow); }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: clamp(60px, 8vw, 100px) 0;
}
.hero__eyebrow {
  color: var(--text-muted-light);
  margin-bottom: 24px;
}
.hero__title {
  mix-blend-mode: difference;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
}
.hero__stat-value {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.hero__stat-label {
  font-size: 14px;
  color: var(--text-muted-light);
  margin-top: 4px;
}

/* ============================
   3. TRUST BAR
   ============================ */
.trust-bar {
  background: var(--bg-light);
  padding: 20px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}
.trust-bar__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.trust-bar__item {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-bar__item::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spain-orange);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================
   4. VISA COMPARISON
   ============================ */
.visa-comparison {
  background: var(--bg-light);
}
.visa-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 0 24px;
}
.visa-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
}
.visa-table thead th {
  font-size: 18px;
  font-weight: 800;
  padding: 20px 24px;
  text-align: center;
  vertical-align: bottom;
}
.visa-table thead th:first-child { text-align: left; }
.visa-table thead th.is-highlight {
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.visa-table tbody td {
  padding: 16px 24px;
  font-size: 15px;
  text-align: center;
  border-bottom: 1px solid var(--border-dark);
}
.visa-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
}
.visa-table tbody td.is-highlight {
  background: rgba(232, 117, 10, .06);
  font-weight: 700;
}
.visa-table tbody tr:last-child td.is-highlight {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.visa-conclusion {
  margin-top: 32px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--spain-orange);
}

/* ============================
   5. QUIZ
   ============================ */
.quiz-section {
  background: var(--bg-dark);
  color: var(--text-light);
}
.quiz-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
}
.quiz-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.quiz-progress__bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.quiz-progress__fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
  transition: width .4s var(--ease);
}
.quiz-step {
  display: none;
}
.quiz-step.is-active {
  display: block;
  animation: quizIn .4s var(--ease);
}
@keyframes quizIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.quiz-step__q {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 24px;
}
.quiz-step__counter {
  font-size: 13px;
  color: var(--text-muted-light);
  margin-bottom: 8px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-option {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,.15);
  color: #fff;
  background: transparent;
  transition: all .3s var(--ease);
}
.quiz-option:hover {
  border-color: var(--spain-orange);
  background: rgba(232,117,10,.1);
}
.quiz-option.is-selected {
  border-color: var(--spain-orange);
  background: rgba(232,117,10,.15);
}

/* Quiz result */
.quiz-result {
  display: none;
  text-align: center;
}
.quiz-result.is-active { display: block; animation: quizIn .4s var(--ease); }
.quiz-result__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.quiz-result__icon svg { width: 32px; height: 32px; }
.quiz-result__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
.quiz-result__text {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}
.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
.quiz-form input {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,.15);
  background: transparent;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color .3s;
}
.quiz-form input::placeholder { color: rgba(255,255,255,.4); }
.quiz-form input:focus { border-color: var(--spain-orange); }

/* ============================
   6. CASES
   ============================ */
.cases-section { background: var(--bg-light); }
.cases-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.case-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--bg-card-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.case-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.case-card__body { flex: 1; }
.case-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.case-card__prof {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.case-card__quote {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
}
.case-card__duration {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(232,117,10,.08);
  font-size: 13px;
  font-weight: 700;
  color: var(--spain-orange);
}

/* ============================
   7. PROCESS
   ============================ */
.process-section { background: var(--bg-dark); color: var(--text-light); }
.process-timeline {
  position: relative;
  padding-left: 48px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.1);
}
.process-step {
  position: relative;
  padding-bottom: 48px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step__dot {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.process-step__title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 6px;
}
.process-step__desc {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  margin-bottom: 4px;
}
.process-step__time {
  font-size: 13px;
  font-weight: 700;
  color: var(--spain-orange);
}
.process-total {
  margin-top: 48px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

/* ============================
   8. FEATURES
   ============================ */
.features-section { background: var(--bg-light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px;
  background: var(--bg-card-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.feature-card__num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================
   9. PRICING + GUARANTEE
   ============================ */
.pricing-section { background: var(--bg-dark); color: var(--text-light); }
.pricing-block {
  max-width: 800px;
  margin: 0 auto;
}
.pricing-main {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-price {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.pricing-label {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.pricing-family {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
}
.pricing-family span {
  color: var(--spain-orange);
}

/* Included list */
.pricing-included {
  margin-bottom: 48px;
}
.pricing-included__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pricing-included__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pricing-included__item {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
}
.pricing-included__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--spain-orange);
}

/* Payment steps */
.pricing-payment {
  margin-bottom: 48px;
}
.pricing-payment__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.payment-steps {
  display: flex;
  gap: 16px;
}
.payment-step {
  flex: 1;
  padding: 24px;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
}
.payment-step__percent {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.payment-step__amount {
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}
.payment-step__label {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}
.payment-step__note {
  font-size: 12px;
  color: var(--spain-orange);
  margin-top: 4px;
  font-weight: 600;
}

/* Guarantee */
.pricing-guarantee {
  padding: 32px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.pricing-guarantee__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-guarantee__icon svg { width: 24px; height: 24px; fill: #fff; }
.pricing-guarantee__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-guarantee__text {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  line-height: 1.6;
}
.pricing-guarantee__note {
  font-size: 14px;
  color: var(--spain-orange);
  font-weight: 600;
}

/* ============================
   10. TEAM
   ============================ */
.team-section { background: var(--bg-light); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.team-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
}
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
}
.team-card__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 14px;
  color: var(--spain-orange);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.team-footer {
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================
   11. FAQ
   ============================ */
.faq-section { background: var(--bg-light); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-dark);
}
.faq-item:first-child { border-top: 1px solid var(--border-dark); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: color .3s;
}
.faq-question:hover { color: var(--spain-orange); }
.faq-question__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-question__icon::before,
.faq-question__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 2px;
}
.faq-question__icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-question__icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}
.faq-item.is-open .faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer__inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================
   12. CONTACT
   ============================ */
.contact-section { background: var(--bg-dark); color: var(--text-light); }
.contact-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.contact-card {
  padding: 28px 20px;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color .3s, transform .3s var(--ease);
}
.contact-card:hover {
  border-color: var(--spain-orange);
  transform: translateY(-4px);
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-card__icon svg { width: 22px; height: 22px; fill: #fff; }
.contact-card__label {
  font-size: 15px;
  font-weight: 600;
}
.contact-future {
  margin-top: 64px;
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.5);
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================
   13. FOOTER
   ============================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.5);
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}
.footer__brand { flex-shrink: 0; }
.footer__logo {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.footer__copy { font-size: 13px; }
.footer__columns {
  display: flex;
  gap: 64px;
}
.footer__col-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.4);
  padding: 4px 0;
  transition: color .3s;
}
.footer__col a:hover { color: #fff; }
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__social a {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  transition: color .3s;
}
.footer__social a:hover { color: #fff; }

/* ============================
   STICKY MOBILE CTA
   ============================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-channels { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__agency { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__content { padding: clamp(40px, 6vw, 60px) 0; }
  .hero__shape { opacity: .4; filter: blur(60px); }

  .features-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: 1fr; }

  .payment-steps { flex-direction: column; }

  .pricing-included__list { grid-template-columns: 1fr; }

  .pricing-guarantee { flex-direction: column; }

  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__columns { gap: 40px; }

  /* Sticky CTA shows on mobile */
  .sticky-cta { display: block; }

  /* Blend-effect fallback: gradient text */
  .hero__title {
    mix-blend-mode: normal;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero__blend { display: none; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .case-card { flex-direction: column; }
  .case-card__avatar { width: 48px; height: 48px; font-size: 16px; }
}
