/* Land in Spain — main.css */

:root {
  --sand:        #f5f0e8;
  --sand-dark:   #ede6d6;
  --sand-deeper: #e0d5c0;
  --terra:       #c4572a;
  --terra-soft:  #d4704a;
  --terra-pale:  #faf0eb;
  --terra-deep:  #8a2e0e;
  --ink:         #1c1917;
  --ink-soft:    #44403c;
  --ink-muted:   #a8a29e;
  --white:       #ffffff;
  --green:       #2d6a4f;
  --green-pale:  #eaf4ef;
  --border:      rgba(28,25,23,0.08);
  --border-mid:  rgba(28,25,23,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--sand);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 500;
  color: var(--ink); text-decoration: none; letter-spacing: -0.01em;
}
.logo .dot { color: var(--terra); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--terra); color: var(--white) !important;
  padding: 9px 22px; border-radius: 100px;
  font-size: 13px !important; font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--terra-soft) !important; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero { min-height: 100vh; padding-top: 64px; display: grid; grid-template-rows: 1fr auto; }
.hero-main { display: grid; grid-template-columns: 1fr 1fr; }

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px 72px 72px;
  border-right: 1px solid var(--border);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra-pale); border: 1px solid rgba(196,87,42,0.18);
  border-radius: 100px; padding: 5px 14px 5px 8px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.eyebrow-text { font-size: 12px; font-weight: 600; color: var(--terra); letter-spacing: 0.02em; }

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 5.5vw, 80px); font-weight: 300;
  line-height: 1.06; letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s ease 0.35s forwards;
}
.hero-h1 em { font-style: italic; color: var(--terra); }

.hero-body {
  font-size: 17px; font-weight: 400; line-height: 1.72;
  color: var(--ink-soft); max-width: 400px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp 0.7s ease 0.65s forwards;
}
.btn-primary {
  background: var(--ink); color: var(--sand);
  padding: 14px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--terra); transform: translateY(-1px); }
.btn-text {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.btn-text:hover { color: var(--terra); }
.btn-text .arr { transition: transform 0.2s; display: inline-block; }
.btn-text:hover .arr { transform: translateX(3px); }

/* hero right panel */
.hero-right {
  background: var(--sand-dark); position: relative;
  overflow: hidden; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 48px;
  min-height: 540px;
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196,87,42,0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196,87,42,0.08) 0%, transparent 50%);
}
.arch-pattern {
  position: absolute; inset: 0; opacity: 0.055;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(28,25,23,0.6) 59px, rgba(28,25,23,0.6) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(28,25,23,0.6) 59px, rgba(28,25,23,0.6) 60px);
}
.hero-circle {
  position: absolute; width: 380px; height: 380px;
  border-radius: 50%; border: 1px solid rgba(196,87,42,0.18);
  top: 50%; left: 50%; transform: translate(-50%,-52%);
}
.hero-circle-inner {
  position: absolute; width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,87,42,0.1) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-52%);
}
.hero-big-text {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 120px; line-height: 1; letter-spacing: -0.04em;
  color: rgba(28,25,23,0.05); position: absolute;
  bottom: -16px; right: -8px; pointer-events: none; user-select: none;
}

/* floating cards */
.hero-chip {
  position: absolute; top: 40px; right: 40px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9); border-radius: 14px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 20px rgba(28,25,23,0.07);
  opacity: 0; animation: fadeDown 0.7s ease 1.1s forwards;
}
@keyframes fadeDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
.chip-flag { font-size: 22px; }
.chip-info strong { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.chip-info span { font-size: 11px; color: var(--ink-muted); }

.hero-quote-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-radius: 16px; padding: 22px 26px; max-width: 280px;
  box-shadow: 0 8px 32px rgba(28,25,23,0.09);
  opacity: 0; animation: fadeUp 0.7s ease 1.3s forwards;
}
.quote-stars { color: var(--terra); font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; }
.quote-text {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 14px; line-height: 1.55; color: var(--ink); margin-bottom: 12px;
}
.quote-author { font-size: 11px; font-weight: 600; color: var(--ink-muted); }

/* hero bar */
.hero-bar { border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(4,1fr); }
.hero-bar-item {
  padding: 22px 48px; border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.7s ease calc(0.8s + var(--i)*0.1s) forwards;
}
.hero-bar-item:last-child { border-right: none; }
.bar-num {
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 400;
  color: var(--ink); line-height: 1; letter-spacing: -0.02em;
}
.bar-num .t { color: var(--terra); }
.bar-label { font-size: 12px; color: var(--ink-muted); font-weight: 500; line-height: 1.4; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 72px;
  display: flex; align-items: center; justify-content: center; gap: 56px;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { font-size: 18px; }
.trust-text { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.trust-text span { color: var(--ink-muted); font-weight: 400; }
.trust-sep { width: 1px; height: 24px; background: var(--border-mid); }

/* ─── SHARED ─── */
.s-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 14px;
}
.s-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 54px); font-weight: 300;
  line-height: 1.1; letter-spacing: -0.03em; color: var(--ink);
}
.s-h2 em { font-style: italic; color: var(--terra); }

/* ─── WHO ─── */
.who {
  padding: 100px 72px;
  display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start;
  border-bottom: 1px solid var(--border);
}
.who-sub { font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--ink-soft); margin-top: 20px; max-width: 320px; }
.who-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.who-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; cursor: default;
}
.who-card:hover { border-color: rgba(196,87,42,0.3); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,25,23,0.06); }
.who-card-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.who-card-title { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.who-card-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }
.who-card-req { font-size: 12px; font-weight: 500; color: var(--ink-soft); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.who-card-req strong { color: var(--terra); }
.who-card-tag { display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 600; color: var(--terra); background: var(--terra-pale); padding: 3px 10px; border-radius: 100px; }

/* ─── PROCESS ─── */
.process { padding: 100px 72px; background: var(--white); border-bottom: 1px solid var(--border); }
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.process-sub { font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--ink-soft); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.step { padding: 40px 36px; border-right: 1px solid var(--border); position: relative; transition: background 0.25s; }
.step:last-child { border-right: none; }
.step:hover { background: var(--sand); }
.step-num {
  font-family: 'Fraunces', serif; font-size: 13px; font-weight: 400;
  font-style: italic; color: var(--terra); margin-bottom: 20px;
}
.step-title { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1.3; }
.step-body { font-size: 13px; color: var(--ink-muted); line-height: 1.7; margin-bottom: 20px; }
.step-time {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--ink-soft);
  background: var(--sand); padding: 4px 12px; border-radius: 100px;
  border: 1px solid var(--border);
}

/* ─── VS SECTION ─── */
.vs {
  padding: 100px 72px; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.vs-left {}
.vs-sub { font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--ink-soft); margin-top: 20px; max-width: 380px; }
.vs-table { width: 100%; border-collapse: collapse; }
.vs-table thead tr { border-bottom: 2px solid var(--border-mid); }
.vs-table thead th { padding: 14px 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-muted); text-align: left; }
.vs-table thead th:nth-child(2) { text-align: center; color: var(--ink-muted); }
.vs-table thead th:nth-child(3) { text-align: center; color: var(--terra); background: var(--terra-pale); border-radius: 8px 8px 0 0; }
.vs-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.vs-table tbody tr:hover { background: var(--sand); }
.vs-table tbody tr:last-child { border-bottom: none; }
.vs-table td { padding: 16px 16px; font-size: 13px; color: var(--ink-soft); font-weight: 400; vertical-align: middle; }
.vs-table td:nth-child(2) { text-align: center; font-size: 18px; }
.vs-table td:nth-child(3) { text-align: center; font-size: 18px; background: var(--terra-pale); }
.vs-table tfoot td { padding: 18px 16px; font-size: 14px; font-weight: 600; color: var(--ink); border-top: 2px solid var(--border-mid); }
.vs-table tfoot td:nth-child(3) { color: var(--terra); background: var(--terra-pale); }
.icon-no { color: #d1d5db; }
.icon-yes { color: var(--green); }

/* ─── VISAS ─── */
.visas { padding: 100px 72px; background: var(--white); border-bottom: 1px solid var(--border); }
.visas-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.visas-sub { font-size: 15px; font-weight: 400; line-height: 1.7; color: var(--ink-soft); max-width: 380px; }

.visa-cards { display: flex; flex-direction: column; gap: 16px; }
.visa-card {
  background: var(--sand); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; transition: border-color 0.2s;
}
.visa-card:hover { border-color: rgba(196,87,42,0.25); }
.visa-card-header {
  display: grid; grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 20px; padding: 28px 32px;
  cursor: pointer;
}
.visa-card-num {
  font-family: 'Fraunces', serif; font-size: 14px; font-style: italic;
  color: var(--ink-muted); font-weight: 400;
}
.visa-card-name { font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.visa-card-for { font-size: 13px; color: var(--ink-muted); margin-top: 3px; }
.visa-card-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.visa-pill {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 600; background: var(--terra-pale);
  color: var(--terra); border: 1px solid rgba(196,87,42,0.15);
  white-space: nowrap;
}
.visa-toggle { font-size: 18px; color: var(--ink-muted); transition: transform 0.3s; }
.visa-card.open .visa-toggle { transform: rotate(45deg); color: var(--terra); }

.visa-card-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  border-top: 0px solid var(--border);
}
.visa-card.open .visa-card-body {
  max-height: 500px;
  padding: 0 32px 28px;
  border-top-width: 1px;
}
.visa-details { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 20px; padding-top: 24px; }
.visa-detail-item {}
.visa-detail-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 6px; }
.visa-detail-val { font-size: 15px; font-weight: 600; color: var(--ink); }
.visa-detail-val.terra { color: var(--terra); }
.visa-desc-text { font-size: 13px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; }
.visa-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--terra);
  text-decoration: none; transition: gap 0.2s;
}
.visa-card-cta:hover { gap: 12px; }

/* ─── PRICING ─── */
.pricing { padding: 100px 72px; border-bottom: 1px solid var(--border); }
.pricing-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 48px; }
.pricing-note { font-size: 15px; font-weight: 400; line-height: 1.7; color: var(--ink-soft); }
.pricing-note strong { color: var(--ink); font-weight: 600; }
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.plan {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  padding: 36px 32px; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.plan:hover { border-color: var(--border-mid); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(28,25,23,0.07); }
.plan.featured { background: var(--ink); border-color: var(--ink); }
.plan.featured:hover { box-shadow: 0 12px 32px rgba(28,25,23,0.2); }
.plan-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 24px; }
.plan.featured .plan-label { color: rgba(245,240,232,0.4); }
.plan-price { font-family: 'Fraunces', serif; font-size: 56px; font-weight: 300; letter-spacing: -0.04em; color: var(--ink); line-height: 0.9; margin-bottom: 4px; }
.plan-price .sym { font-size: 28px; vertical-align: top; line-height: 1.3; }
.plan.featured .plan-price { color: var(--sand); }
.plan-period { font-size: 12px; color: var(--ink-muted); margin-bottom: 24px; font-weight: 400; }
.plan.featured .plan-period { color: rgba(245,240,232,0.4); }
.plan-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); flex: 0; }
.plan.featured .plan-desc { color: rgba(245,240,232,0.45); border-bottom-color: rgba(245,240,232,0.08); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 32px; }
.plan-features li { font-size: 13px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.plan.featured .plan-features li { color: rgba(245,240,232,0.65); }
.pcheck { color: var(--terra); flex-shrink: 0; font-size: 13px; }
.plan.featured .pcheck { color: #6ee7b7; }
.plan-btn {
  display: block; text-align: center; padding: 14px 24px;
  border-radius: 100px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.btn-plan-outline { border: 1.5px solid var(--border-mid); color: var(--ink); }
.btn-plan-outline:hover { border-color: var(--terra); color: var(--terra); }
.btn-plan-solid { background: var(--terra); color: var(--white); }
.btn-plan-solid:hover { background: var(--terra-soft); }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 72px; background: var(--sand-dark); border-bottom: 1px solid var(--border); }
.testimonials-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 56px; }
.testimonials-sub { font-size: 15px; font-weight: 400; line-height: 1.7; color: var(--ink-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 56px; }
.t-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; transition: transform 0.2s, box-shadow 0.2s;
}
.t-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,25,23,0.07); }
.t-card.featured { background: var(--ink); border-color: var(--ink); }
.t-stars { color: var(--terra); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.t-card.featured .t-stars { color: #fbbf24; }
.t-text { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: 16px; line-height: 1.55; color: var(--ink); margin-bottom: 24px; }
.t-card.featured .t-text { color: rgba(245,240,232,0.85); }
.t-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.t-card.featured .t-author { border-top-color: rgba(245,240,232,0.08); }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sand-deeper); display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 15px; font-style: italic;
  color: var(--ink-soft); flex-shrink: 0;
}
.t-card.featured .t-avatar { background: rgba(245,240,232,0.1); color: rgba(245,240,232,0.6); }
.t-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.t-card.featured .t-name { color: rgba(245,240,232,0.85); }
.t-role { font-size: 11px; color: var(--ink-muted); font-weight: 400; margin-top: 1px; }
.t-card.featured .t-role { color: rgba(245,240,232,0.35); }

.t-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden; }
.t-stat { background: var(--white); padding: 28px 24px; text-align: center; transition: background 0.2s; }
.t-stat:hover { background: var(--sand); }
.t-stat-num { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 400; color: var(--terra); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.t-stat-label { font-size: 12px; font-weight: 500; color: var(--ink-muted); line-height: 1.4; }

/* ─── QUIZ ─── */
.quiz { padding: 100px 72px; background: var(--white); border-bottom: 1px solid var(--border); }
.quiz-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.quiz-left {}
.quiz-sub { font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--ink-soft); margin-top: 20px; margin-bottom: 36px; max-width: 380px; }
.quiz-promise { display: flex; flex-direction: column; gap: 12px; }
.quiz-promise-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.quiz-promise-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }

.quiz-form { background: var(--sand); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.quiz-q { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 300; color: var(--ink); margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.02em; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 12px;
  padding: 14px 18px; font-size: 14px; font-weight: 500; color: var(--ink-soft);
  cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 12px;
  text-align: left;
}
.quiz-opt:hover { border-color: rgba(196,87,42,0.4); color: var(--ink); background: var(--terra-pale); }
.quiz-opt.selected { border-color: var(--terra); color: var(--terra); background: var(--terra-pale); }
.quiz-opt-icon { font-size: 18px; flex-shrink: 0; }
.quiz-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
.quiz-back { font-size: 13px; font-weight: 500; color: var(--ink-muted); background: none; border: none; cursor: pointer; transition: color 0.2s; }
.quiz-back:hover { color: var(--ink); }
.quiz-next {
  background: var(--ink); color: var(--sand); border: none;
  padding: 12px 28px; border-radius: 100px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background 0.2s; font-family: 'Instrument Sans', sans-serif;
}
.quiz-next:hover { background: var(--terra); }
.quiz-progress { height: 2px; background: var(--border); border-radius: 1px; margin-bottom: 28px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: var(--terra); border-radius: 1px; transition: width 0.4s ease; }

.quiz-result { display: none; text-align: center; }
.quiz-result.active { display: block; }
.result-icon { font-size: 48px; margin-bottom: 16px; }
.result-title { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 300; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em; }
.result-title em { font-style: italic; color: var(--terra); }
.result-text { font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 28px; max-width: 340px; margin-left: auto; margin-right: auto; }
.result-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra); color: var(--white);
  padding: 14px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.result-btn:hover { background: var(--terra-soft); }
.result-restart { display: block; margin-top: 14px; font-size: 13px; color: var(--ink-muted); cursor: pointer; background: none; border: none; font-family: 'Instrument Sans', sans-serif; transition: color 0.2s; }
.result-restart:hover { color: var(--ink); }

/* ─── FAQ ─── */
.faq { padding: 100px 72px; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 320px 1fr; gap: 80px; }
.faq-sticky { position: sticky; top: 80px; align-self: start; }
.faq-sub { font-size: 15px; font-weight: 400; line-height: 1.7; color: var(--ink-muted); margin-top: 16px; }
.faq-contact { margin-top: 36px; padding: 24px; background: var(--terra-pale); border-radius: 14px; border: 1px solid rgba(196,87,42,0.15); }
.faq-contact p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }
.faq-contact a { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--terra); text-decoration: none; transition: gap 0.2s; }
.faq-contact a:hover { gap: 12px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  gap: 24px; cursor: pointer; text-align: left;
}
.faq-q-text { font-family: 'Instrument Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; line-height: 1.4; }
.faq-q:hover .faq-q-text, .faq-item.open .faq-q-text { color: var(--ink); }
.faq-toggle {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; color: var(--ink-muted);
  transition: all 0.25s; font-family: 'Instrument Sans', sans-serif; line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--terra); border-color: var(--terra); color: var(--white); transform: rotate(45deg); }
.faq-a { font-size: 14px; line-height: 1.75; color: var(--ink-muted); max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding-bottom 0.35s; }
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 22px; }

/* ─── CTA ─── */
.cta { padding: 120px 72px; background: var(--ink); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; overflow: hidden; }
.cta::before {
  content: 'España'; position: absolute;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 260px; line-height: 1; color: rgba(245,240,232,0.025);
  right: -20px; bottom: -40px; pointer-events: none; letter-spacing: -0.04em; user-select: none;
}
.cta-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.35); margin-bottom: 16px; }
.cta-h { font-family: 'Fraunces', serif; font-size: clamp(40px, 4.5vw, 60px); font-weight: 300; line-height: 1.08; letter-spacing: -0.03em; color: var(--sand); margin-bottom: 20px; }
.cta-h em { font-style: italic; color: var(--terra-soft); }
.cta-body { font-size: 15px; font-weight: 400; line-height: 1.7; color: rgba(245,240,232,0.45); margin-bottom: 40px; max-width: 400px; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.btn-cta-p {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra); color: var(--white);
  padding: 16px 32px; border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta-p:hover { background: var(--terra-soft); transform: translateY(-1px); }
.btn-cta-g {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(245,240,232,0.15); color: rgba(245,240,232,0.55);
  padding: 16px 32px; border-radius: 100px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: all 0.2s;
}
.btn-cta-g:hover { border-color: rgba(245,240,232,0.35); color: var(--sand); }

.cta-right { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(245,240,232,0.07); border-radius: 18px; overflow: hidden; position: relative; z-index: 1; }
.cta-promise { padding: 28px 32px; border-bottom: 1px solid rgba(245,240,232,0.07); display: flex; align-items: flex-start; gap: 16px; transition: background 0.2s; }
.cta-promise:last-child { border-bottom: none; }
.cta-promise:hover { background: rgba(245,240,232,0.03); }
.promise-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(196,87,42,0.15); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.promise-title { font-size: 14px; font-weight: 600; color: rgba(245,240,232,0.8); margin-bottom: 5px; }
.promise-desc { font-size: 13px; color: rgba(245,240,232,0.35); line-height: 1.6; }

/* ─── FOOTER ─── */
footer { background: #111110; padding: 64px 72px 40px; border-top: 1px solid rgba(245,240,232,0.05); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand {}
.footer-logo { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 500; color: rgba(245,240,232,0.7); text-decoration: none; letter-spacing: -0.01em; display: block; margin-bottom: 14px; }
.footer-logo .dot { color: var(--terra); }
.footer-tagline { font-size: 13px; color: rgba(245,240,232,0.25); line-height: 1.6; max-width: 220px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(245,240,232,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.social-link:hover { border-color: rgba(245,240,232,0.3); background: rgba(245,240,232,0.05); }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.3); margin-bottom: 20px; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links-list a { font-size: 13px; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links-list a:hover { color: rgba(245,240,232,0.8); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact-item a { font-size: 13px; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: rgba(245,240,232,0.8); }
.footer-contact-icon { font-size: 15px; }
.footer-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  padding: 10px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  margin-top: 8px; transition: background 0.2s;
}
.footer-whatsapp:hover { background: #1ebe5a; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(245,240,232,0.05); }
.footer-copy { font-size: 11px; color: rgba(245,240,232,0.18); letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: rgba(245,240,232,0.18); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(245,240,232,0.5); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links li:not(:last-child) { display: none; }
  .hero-main { grid-template-columns: 1fr; }
  .hero-right { min-height: 280px; }
  .hero-left { padding: 56px 24px; }
  .hero-bar { grid-template-columns: repeat(2,1fr); }
  .hero-bar-item { padding: 18px 24px; }
  .trust-bar { flex-wrap: wrap; gap: 20px; padding: 20px 24px; }
  .trust-sep { display: none; }
  .who, .vs, .visas-top, .process-header, .pricing-header, .testimonials-header, .quiz-wrap, .cta { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }
  .process, .visas, .pricing, .testimonials, .quiz, .faq { padding: 64px 24px; }
  .steps, .plans, .testimonials-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .faq { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky { position: static; }
  .t-stats { grid-template-columns: repeat(2,1fr); }
  .visa-details { grid-template-columns: 1fr 1fr; }
  .who-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta::before { font-size: 140px; }
}

/* ── LEAD FORM (inside quiz result) ── */
.lead-form { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.lf-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border-mid); border-radius: 12px;
  font-family: 'Instrument Sans', sans-serif; font-size: 14px;
  color: var(--ink); background: var(--white);
  transition: border-color 0.2s; outline: none;
}
.lf-input:focus { border-color: var(--terra); }
.lf-input::placeholder { color: var(--ink-muted); }
.lf-note { font-size: 11px; color: var(--ink-muted); text-align: center; margin-top: 4px; }
