/* ══════════════════════════════════════
   Vista Immigration — Shared Stylesheet
   ══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@400;500;700;900&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: 'Inter', -apple-system, system-ui, sans-serif; color: #181d26; background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
input:focus, textarea:focus, select:focus { outline: 2px solid #1b61c9; outline-offset: 1px; }

/* ── Tokens ── */
:root {
  --blue:         #1b61c9;
  --blue-deep:    #0f3d82;
  --navy:         #181d26;
  --navy-soft:    #2e3a4e;
  --subtle:       #f8fafc;
  --text:         #181d26;
  --text-w:       rgba(4,14,32,0.69);
  --text-ww:      rgba(4,14,32,0.55);
  --border:       #e0e2e6;
  --border-s:     #c8ccd2;
  --shadow-btn:   rgba(0,0,0,0.32) 0 0 1px, rgba(0,0,0,0.08) 0 0 2px, rgba(45,127,249,0.28) 0 1px 3px, rgba(0,0,0,0.06) 0 0 0 0.5px inset;
  --shadow-card:  rgba(15,48,106,0.05) 0 0 20px;
  --r-sm:  6px; --r-md: 12px; --r-lg: 16px;
  --r-xl:  24px; --r-2xl: 32px; --r-pill: 999px;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section    { padding: 120px 0; }

/* ── Typography ── */
.eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.display {
  font-family: 'Inter Tight', sans-serif; font-size: 48px; font-weight: 900;
  line-height: 1.15; letter-spacing: -0.01em; color: var(--text);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 500; letter-spacing: 0.08px; line-height: 1.25;
  padding: 13px 22px; border-radius: var(--r-md); border: 1px solid transparent;
  cursor: pointer; transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
  white-space: nowrap;
}
.btn-sm { font-size: 14px; padding: 9px 16px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: var(--blue-deep); }
.btn-white  { background: #fff; color: var(--navy); border-color: var(--border); box-shadow: var(--shadow-btn); }
.btn-white:hover  { background: var(--subtle); border-color: var(--border-s); }
.btn-ghost  { background: transparent; color: var(--blue); border: none; box-shadow: none; }
.btn-ghost:hover  { color: var(--blue-deep); }
.btn-navy   { background: #fff; color: var(--navy); box-shadow: var(--shadow-btn); }
.btn-navy:hover   { background: var(--subtle); }
.btn-wa-outline {
  background: #fff; color: #128c47; border: 1.5px solid #25d366;
  box-shadow: var(--shadow-btn); gap: 8px;
}
.btn-wa-outline:hover { background: #f0fff6; border-color: #128c47; }

/* ── Card ── */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}
.card:hover { box-shadow: rgba(15,48,106,0.08) 0 4px 16px; border-color: var(--border-s); }
.card-p24 { padding: 24px; } .card-p28 { padding: 28px; }
.card-p32 { padding: 32px; } .card-p36 { padding: 36px; }
.card-p40 { padding: 40px; } .card-p0  { padding: 0; }

/* ── Stat ── */
.stat-value { font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: 56px; line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.stat-label { margin-top: 12px; font-size: 16px; font-weight: 500; letter-spacing: 0.08px; }
.stat-sub   { margin-top: 4px; font-size: 14px; color: var(--text-w); letter-spacing: 0.1px; }

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */
#nav {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid transparent;
  transition: background 140ms ease, border-color 140ms ease;
}
#nav.scrolled {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.lockup { display: flex; align-items: center; gap: 10px; }
.lockup-name .brand { font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: 20px; letter-spacing: -0.01em; color: #181d26; line-height: 1; }
.lockup-name .sub   { font-weight: 500; font-size: 8.4px; letter-spacing: 0.32em; margin-top: 3px; color: var(--blue); }
.nav-links { display: flex; gap: 24px; align-items: center; flex: 1; justify-content: center; }
.nav-link {
  font-size: 14px; font-weight: 500; letter-spacing: 0.08px; color: var(--navy);
  padding-bottom: 4px; border-bottom: 1.5px solid transparent;
  transition: color 140ms ease, border-color 140ms ease; white-space: nowrap;
}
.nav-link:hover { color: var(--blue); }
.nav-link.active { color: var(--blue); border-bottom-color: var(--blue); }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer { background: var(--navy); color: #fff; padding-top: 80px; padding-bottom: 32px; }
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid var(--navy-soft);
}
.footer-brand-body { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 320px; margin: 16px 0 20px; letter-spacing: 0.1px; }
.social-dots { display: flex; gap: 12px; }
.social-dot {
  width: 36px; height: 36px; border-radius: var(--r-pill);
  border: 1px solid var(--navy-soft); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: #fff;
  transition: background 140ms ease, border-color 140ms ease;
}
.social-dot:hover { background: var(--blue); border-color: var(--blue); }
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,0.7); letter-spacing: 0.08px; transition: color 140ms ease; }
.footer-link:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 0.1px; }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 140ms ease; }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 60;
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: 2px;
  padding: 20px 24px; box-shadow: rgba(15,48,106,0.12) 0 8px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
#cookie-banner.hidden { display: none; }
.cookie-text { flex: 1; min-width: 280px; font-size: 14px; line-height: 1.5; color: var(--navy); letter-spacing: 0.08px; }
.cookie-btns { display: flex; gap: 8px; }

/* ════════════════════════════════════
   CITY IMAGE (illustrated placeholder)
════════════════════════════════════ */
.city-image { border-radius: var(--r-xl); overflow: hidden; position: relative; }
.city-image-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(24,29,38,0) 40%, rgba(24,29,38,0.45) 100%); }
.city-label { position: absolute; top: 20px; left: 24px; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; opacity: 0.8; }

/* ════════════════════════════════════
   SHARED SECTION PATTERNS
════════════════════════════════════ */
.section-header-centered { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header-centered h2, .section-header-centered p { margin-bottom: 16px; }
.section-header-left { max-width: 720px; margin-bottom: 56px; }
.body-text { font-size: 18px; line-height: 1.55; color: var(--text-w); letter-spacing: 0.18px; }

/* ── Page Hero (shared pattern) ── */
.page-hero { padding: 80px 0 64px; background: #fff; }
.page-hero h1 { font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: 64px; line-height: 1.05; letter-spacing: -0.02em; margin: 12px 0 20px; }
.page-hero p  { font-size: 19px; line-height: 1.55; color: var(--text-w); letter-spacing: 0.1px; max-width: 640px; }

/* ── Dark section on navy ── */
.dark-section { background: var(--navy); color: #fff; }
.dark-section .eyebrow { color: var(--blue); }
.dark-card { background: rgba(255,255,255,0.04); border: 1px solid var(--navy-soft); border-radius: var(--r-lg); }

/* ── Check list item ── */
.check-item { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.55; color: rgba(4,14,32,0.72); letter-spacing: 0.1px; }
.check-item-dark { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.8); letter-spacing: 0.1px; }

/* ── Icon box ── */
.icon-box { width: 48px; height: 48px; border-radius: var(--r-md); background: #e8f1fb; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box-blue { background: var(--blue); }
.icon-box-lg { width: 64px; height: 64px; border-radius: var(--r-lg); }

/* ── Comparison table ── */
.v-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.v-table th { text-align: left; padding: 14px 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; background: var(--navy); color: #fff; }
.v-table td { padding: 16px 20px; vertical-align: top; letter-spacing: 0.08px; line-height: 1.5; border-top: 1px solid var(--border); }
.v-table tr:nth-child(even) td { background: #fafbfc; }

/* ── Pills / badges ── */
.tag-pill { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); background: #e8f1fb; padding: 3px 8px; border-radius: var(--r-pill); }

/* ── Form fields ── */
.field-label { font-size: 13px; font-weight: 500; color: var(--navy); letter-spacing: 0.08px; display: flex; flex-direction: column; gap: 6px; }
.field-input { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--r-md); font-size: 15px; background: #fff; letter-spacing: 0.08px; color: var(--navy); transition: border-color 140ms; }
.field-input:focus { border-color: var(--blue); }
textarea.field-input { resize: vertical; font-family: inherit; }

/* ── Tab switcher ── */
.tab-bar { display: inline-flex; background: var(--subtle); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px; margin-bottom: 28px; }
.tab-btn { background: transparent; color: var(--navy); border: none; border-radius: var(--r-pill); padding: 10px 20px; font-size: 14px; font-weight: 500; letter-spacing: 0.08px; cursor: pointer; transition: all 140ms; }
.tab-btn.active { background: var(--navy); color: #fff; }

/* ── Progress bar ── */
.progress-bar { flex: 1; height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; margin: 0 20px; }
.progress-fill { height: 100%; background: var(--blue); transition: width 300ms ease; border-radius: 4px; }

/* ── Blog card image ── */
.blog-img { overflow: hidden; border-radius: 0; }

/* ── Visa detail grid ── */
.visa-detail-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: start; }

/* ════════════════════════════════════
   HAMBURGER / MOBILE NAV
════════════════════════════════════ */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-cta-btn { display: flex; }
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px; background: transparent; border: none;
  cursor: pointer; padding: 10px; border-radius: var(--r-md);
  transition: background 140ms; flex-shrink: 0;
}
.hamburger:hover { background: var(--subtle); }
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform 220ms ease, opacity 180ms ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; background: #fff; border-top: 1px solid var(--border);
  padding: 12px 16px 20px; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.mobile-nav-link {
  display: flex; align-items: center; padding: 12px 16px; font-size: 16px;
  font-weight: 500; color: var(--navy); border-radius: var(--r-md);
  transition: background 140ms, color 140ms; min-height: 44px;
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--subtle); color: var(--blue); }

/* ════════════════════════════════════
   RESPONSIVE — 1024px (tablet)
════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .nav-links { gap: 14px; }
  .nav-link { font-size: 13px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero h1 { font-size: 52px; }
  .display { font-size: 40px; }
  .stat-value { font-size: 44px; }
  .section { padding: 80px 0; }
}

/* ════════════════════════════════════
   RESPONSIVE — 768px (mobile)
════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 60px; }

  /* Layout */
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  /* Typography */
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 { font-size: 36px; line-height: 1.08; margin: 10px 0 16px; }
  .page-hero p  { font-size: 16px; }
  .display { font-size: 28px; line-height: 1.15; }
  .body-text { font-size: 16px; }
  .eyebrow { font-size: 11px; }
  .stat-value { font-size: 40px; }

  /* Buttons — 44px touch targets */
  .btn { min-height: 44px; padding: 12px 18px; }
  .btn-sm { min-height: 40px; }

  /* Footer */
  footer { padding-top: 48px; padding-bottom: 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 16px; }

  /* Cookie banner */
  #cookie-banner { left: 12px; right: 12px; bottom: 12px; flex-direction: column; align-items: flex-start; }
  .cookie-text { min-width: 0; }

  /* Cards */
  .card-p40 { padding: 24px; }
  .card-p36 { padding: 24px; }
  .card-p32 { padding: 20px; }
  .card-p28 { padding: 20px; }

  /* Section headers */
  .section-header-centered { margin-bottom: 36px; }

  /* Tab bar */
  .tab-bar { width: 100%; }
  .tab-btn { flex: 1; text-align: center; padding: 10px 8px; font-size: 13px; }

  /* Tables */
  .v-table th, .v-table td { padding: 12px 14px; }
  .v-table { font-size: 13px; }

  /* City image */
  .city-image { border-radius: var(--r-lg); }

  /* Visa detail */
  .visa-detail-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════
   RESPONSIVE — 480px (small mobile)
════════════════════════════════════ */
@media (max-width: 480px) {
  .page-hero h1 { font-size: 28px; }
  .display { font-size: 24px; }
  .stat-value { font-size: 36px; }
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
}

/* ════════════════════════════════════
   QUIZ MODAL
════════════════════════════════════ */
#qz-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
}
#qz-modal[style*="flex"] { display: flex !important; }
#qz-backdrop {
  position: absolute; inset: 0;
  background: rgba(24,29,38,0.65);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
#qz-panel {
  position: relative; background: #fff;
  border-radius: 24px; width: 100%; max-width: 520px;
  max-height: 88vh; overflow-y: auto;
  padding: 44px 40px 40px; margin: 0 16px;
  box-shadow: rgba(15,48,106,0.22) 0 24px 64px;
  animation: qz-in 200ms cubic-bezier(0.2,0.8,0.2,1);
}
@keyframes qz-in { from { opacity:0; transform: translateY(12px) scale(0.97); } to { opacity:1; transform: none; } }

#qz-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--subtle); border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: rgba(4,14,32,0.55); transition: background 140ms, color 140ms;
}
#qz-close:hover { background: var(--border); color: var(--navy); }

.qz-progress-wrap {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.qz-step-lbl {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue); white-space: nowrap;
}
.qz-bar { flex: 1; height: 3px; background: var(--border); border-radius: 4px; overflow: hidden; }
.qz-fill { height: 100%; background: var(--blue); border-radius: 4px; transition: width 300ms ease; }

.qz-title {
  font-family: 'Inter Tight', sans-serif; font-weight: 900;
  font-size: 24px; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--navy); margin-bottom: 20px;
}
.qz-subtitle { font-size: 15px; color: var(--text-w); line-height: 1.6; margin-bottom: 20px; }

.qz-opts { display: flex; flex-direction: column; gap: 8px; }

.qz-opt {
  width: 100%; text-align: left; background: #fff;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  padding: 0; cursor: pointer; font-family: inherit;
  transition: border-color 140ms, background 140ms, box-shadow 140ms;
}
.qz-opt:hover { border-color: var(--blue); background: #f0f5ff; box-shadow: 0 2px 8px rgba(27,97,201,0.08); }
.qz-opt:active { transform: scale(0.99); }
.qz-opt-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 18px;
}
.qz-opt-text { flex: 1; }
.qz-opt-main { font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.3; }
.qz-opt-sub { font-size: 12px; color: var(--text-ww); margin-top: 3px; line-height: 1.45; }
.qz-secondary .qz-opt-main { font-size: 14px; color: var(--text-w); }
.qz-secondary .qz-opt-sub { font-size: 12px; }

.qz-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.qz-cta-btn {
  width: 100%; justify-content: center;
  min-height: 50px; font-size: 16px; font-weight: 600;
}

/* Quiz result (consult / thanks) */
.qz-result { text-align: center; padding: 12px 0 4px; }
.qz-result-icon { margin-bottom: 20px; }
.qz-hint {
  font-size: 12px; color: var(--blue); background: #e8f1fb;
  border-radius: var(--r-md); padding: 8px 14px; margin-bottom: 16px;
  line-height: 1.5;
}
.qz-icon-circle {
  width: 72px; height: 72px; border-radius: 999px;
  background: #e8f1fb; display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.qz-icon-green { background: #22c55e; }
.qz-icon-amber { background: #f59e0b; }

.qz-alt-hint {
  display: flex; gap: 8px; align-items: flex-start;
  background: #f0f5ff; border: 1px solid #c7ddf6; border-radius: var(--r-md);
  padding: 12px 16px; margin-bottom: 20px; font-size: 13px;
  line-height: 1.55; color: rgba(4,14,32,0.8); text-align: left;
}
.qz-alt-hint svg { flex-shrink: 0; margin-top: 2px; }

.qz-back-btn {
  display: block; width: 100%; background: transparent; border: none;
  color: rgba(4,14,32,0.55); font-size: 14px; font-weight: 500;
  cursor: pointer; padding: 12px 0 4px; text-align: center;
  font-family: inherit; transition: color 140ms;
}
.qz-back-btn:hover { color: var(--navy); }

.qz-qualified-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #e6f9ee; border: 1px solid #86efac;
  border-radius: var(--r-pill); padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: #128c47;
  margin-bottom: 16px;
}
.qz-result-title {
  font-family: 'Inter Tight', sans-serif; font-weight: 900;
  font-size: 26px; letter-spacing: -0.01em; color: var(--navy);
  margin-bottom: 12px; line-height: 1.2;
}
.qz-result-body {
  font-size: 15px; line-height: 1.65; color: var(--text-w);
  margin-bottom: 28px; max-width: 360px; margin-left: auto; margin-right: auto;
}
.qz-wa-btn {
  display: flex; width: 100%; justify-content: center; align-items: center;
  gap: 8px; min-height: 48px; margin-top: 10px;
  background: #25d366; color: #fff; border-radius: var(--r-md);
  border: none; font-size: 15px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  transition: background 140ms;
}
.qz-wa-btn:hover { background: #1db954; color: #fff; }

/* Quiz modal — mobile: bottom sheet */
@media (max-width: 640px) {
  #qz-modal { align-items: flex-end; }
  #qz-panel {
    margin: 0; border-radius: 24px 24px 0 0;
    max-height: 94vh; padding: 32px 20px 40px;
    animation: qz-slide-up 240ms cubic-bezier(0.2,0.8,0.2,1);
  }
  @keyframes qz-slide-up { from { transform: translateY(48px); opacity:0; } to { transform: none; opacity:1; } }
  .qz-title { font-size: 21px; }
  .qz-opt-main { font-size: 14px; }
  .qz-opt-inner { padding: 14px 16px; }
}

/* ════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════ */
#wa-float {
  position: fixed; bottom: 32px; right: 28px; z-index: 39;
  display: flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; border-radius: 999px;
  padding: 14px 20px 14px 16px;
  box-shadow: rgba(37,211,102,0.35) 0 4px 20px, rgba(0,0,0,0.12) 0 2px 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: transform 140ms, box-shadow 140ms;
}
#wa-float:hover { transform: scale(1.05); box-shadow: rgba(37,211,102,0.45) 0 8px 28px, rgba(0,0,0,0.15) 0 4px 12px; }
.wa-float-label { white-space: nowrap; }

/* ════════════════════════════════════
   MOBILE BOTTOM BAR
════════════════════════════════════ */
#mob-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: #fff; border-top: 1px solid var(--border);
  padding: 10px 16px 10px; gap: 8px;
  box-shadow: 0 -2px 20px rgba(15,48,106,0.07);
}
.mob-bar-quiz {
  flex: 1; justify-content: center; min-height: 46px;
  font-size: 14px; font-weight: 600; gap: 6px;
}
.mob-bar-wa {
  display: flex; align-items: center; gap: 6px;
  padding: 0 18px; min-height: 46px;
  background: #25d366; color: #fff;
  border-radius: var(--r-md); border: none;
  font-size: 14px; font-weight: 600;
  white-space: nowrap; text-decoration: none;
  transition: background 140ms;
}
.mob-bar-wa:hover { background: #1db954; color: #fff; }

/* Nav mobile menu CTA */
.mob-menu-cta {
  width: 100%; justify-content: center; min-height: 50px;
  font-size: 16px; margin-top: 4px;
}

/* Footer WA link */
.footer-wa-link { display: flex; align-items: center; gap: 6px; }

/* ════════════════════════════════════
   MOBILE REDESIGN — 768px
════════════════════════════════════ */
@media (max-width: 768px) {

  /* Bottom bar & float */
  #mob-bar { display: flex; }
  #wa-float { display: none; }
  body { padding-bottom: 72px; }

  /* ─ Global spacing ─ */
  .section { padding: 52px 0; }
  .section-header-centered { margin-bottom: 32px; }
  .section-header-left { margin-bottom: 32px; }

  /* ─ Typography ─ */
  .page-hero { padding: 44px 0 36px; }
  .page-hero h1 { font-size: 34px; line-height: 1.08; letter-spacing: -0.02em; margin: 10px 0 14px; }
  .page-hero p  { font-size: 16px; line-height: 1.65; }
  .display { font-size: 28px; line-height: 1.18; }
  .body-text { font-size: 16px; line-height: 1.65; }
  .eyebrow { font-size: 11px; letter-spacing: 0.15em; }
  .stat-value { font-size: 42px; }
  .stat-label { font-size: 15px; }

  /* ─ Buttons ─ */
  .btn { min-height: 46px; padding: 12px 20px; font-size: 15px; }
  .btn-sm { min-height: 40px; font-size: 13px; }

  /* ─ Cards ─ */
  .card { border-radius: var(--r-lg); }
  .card-p40 { padding: 22px; }
  .card-p36 { padding: 20px; }
  .card-p32 { padding: 18px; }
  .card-p28 { padding: 16px; }
  .card-p24 { padding: 16px; }

  /* ─ Nav ─ */
  .nav-links { display: none; }
  .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 60px; }

  /* ─ Mobile menu ─ */
  .mobile-menu { padding: 8px 12px 16px; }
  .mobile-nav-link { font-size: 17px; padding: 13px 14px; min-height: 48px; }

  /* ─ Hero CTAs — stacked ─ */
  .home-ctas, .hero-ctas {
    flex-direction: column; align-items: stretch; gap: 10px;
  }
  .home-ctas .btn, .hero-ctas .btn {
    width: 100%; justify-content: center;
  }

  /* ─ City images — cap height ─ */
  .city-image { height: 210px !important; }

  /* ─ Footer ─ */
  footer { padding-top: 44px; padding-bottom: 16px; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; padding-bottom: 28px; }
  .footer-brand-body { font-size: 14px; margin: 12px 0 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 24px; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
  .footer-legal a, .footer-copy { font-size: 12px; }

  /* ─ Cookie banner ─ */
  #cookie-banner {
    left: 10px; right: 10px; bottom: 82px;
    flex-direction: column; align-items: flex-start; padding: 16px;
    border-radius: var(--r-md);
  }
  .cookie-text { font-size: 13px; min-width: 0; }

  /* ─ Tab bar ─ */
  .tab-bar { width: 100%; }
  .tab-btn { flex: 1; text-align: center; padding: 10px 8px; font-size: 13px; }

  /* ─ Tables ─ */
  .v-table th, .v-table td { padding: 11px 13px; }
  .v-table { font-size: 13px; }

  /* ─ Visa detail ─ */
  .visa-detail-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ─ Progress bar ─ */
  .progress-bar { margin: 0 12px; }
}

/* ════════════════════════════════════
   MOBILE REDESIGN — 480px
════════════════════════════════════ */
@media (max-width: 480px) {
  .page-hero h1 { font-size: 28px; }
  .display { font-size: 23px; }
  .stat-value { font-size: 36px; }
  .section { padding: 44px 0; }
  .container { padding: 0 14px; }
  .city-image { height: 180px !important; }
  .card-p40, .card-p36 { padding: 18px; }
}
