/* ==========================================================================
   thevisa.app - site styles (static, no build step)
   Loaded after Tailwind CDN. Components, layout, dark mode, maps, mobile.
   ========================================================================== */

[x-cloak] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
html.dark { color-scheme: dark; }
html:not(.dark) { color-scheme: light; }
body {
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(26, 86, 219, 0.15);
  overflow-x: hidden;
  max-width: 100vw;
}
/* iOS: prevent auto-zoom on focus (needs ≥16px font on inputs) */
@media (max-width: 1023px) {
  input, select, textarea {
    font-size: 16px !important;
    line-height: 1.4;
  }
  /* Prefer dynamic viewport height (mobile browser chrome) */
  .modal-sheet {
    max-height: 90vh;
    max-height: 90dvh;
  }
}
/* Touch-friendly controls */
button, a, [role="button"], label.quiz-opt {
  touch-action: manipulation;
}
.tap-target {
  min-height: 44px;
  min-width: 44px;
}
/* Horizontal table scroll cue on small screens */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  max-width: 100%;
}
.table-scroll-hint {
  display: none;
  font-size: 11px;
  color: #6b7c93;
  margin-bottom: 0.35rem;
}
@media (max-width: 767px) {
  .table-scroll-hint { display: block; }
  .table-scroll {
    mask-image: linear-gradient(to right, #000 85%, transparent 100%);
  }
  .table-scroll:focus-within,
  .table-scroll:hover {
    mask-image: none;
  }
}
.text-balance { text-wrap: balance; }
.progress-bar { transition: width 250ms ease; }
.fade-enter { animation: fadeIn 200ms ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: none; } }
.slide-in { animation: slideIn 200ms ease; }
.dim-bar { transition: width 300ms ease; }
input:focus-visible, button:focus-visible, select:focus-visible, a:focus-visible, textarea:focus-visible {
  outline: 2px solid #1a56db; outline-offset: 2px;
}
.dark input:focus-visible, .dark button:focus-visible, .dark select:focus-visible, .dark a:focus-visible, .dark textarea:focus-visible {
  outline-color: #4d7ef0;
}
@media print {
  .no-print { display: none !important; }
  .print-only { display: block !important; }
  body { background: white !important; color: black !important; }
  .print-break { page-break-inside: avoid; }
}
.print-only { display: none; }
.scrollbar-thin::-webkit-scrollbar { width: 6px; height: 6px; }
.scrollbar-thin::-webkit-scrollbar-thumb { background: #c9d4e5; border-radius: 3px; }
/* Leaflet: keep below sticky chrome but above cards; fix tile/filter quirks */
.leaflet-container { font: inherit; z-index: 1; background: #e8eef6; }
.results-map, .country-map { width: 100%; border-radius: 1rem; z-index: 0; }
.results-map { height: min(360px, 55vh); min-height: 240px; }
.country-map { height: 220px; min-height: 180px; }
@media (min-width: 640px) {
  .results-map { height: 380px; }
  .country-map { height: 260px; }
}
.leaflet-popup-content-wrapper { border-radius: 12px; box-shadow: 0 8px 24px rgba(11,21,38,0.12); }
.leaflet-popup-content { margin: 10px 12px; font-size: 13px; line-height: 1.4; }
.map-rank-badge {
  background: #1a56db; color: #fff; border-radius: 999px; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px;
  border: 2px solid #fff; box-shadow: 0 2px 8px rgba(26,86,219,0.4);
}
.map-rank-badge.rank-1 { background: #ff5a36; width: 30px; height: 30px; font-size: 12px; }
.map-rank-badge.rank-2, .map-rank-badge.rank-3 { background: #00b4a6; }
.results-map, .country-map { touch-action: pan-x pan-y; -webkit-tap-highlight-color: transparent; }
@media (max-width: 640px) {
  .results-map { height: 260px; min-height: 220px; }
  .country-map { height: 200px; }
  .leaflet-control-zoom a { width: 40px !important; height: 40px !important; line-height: 40px !important; font-size: 18px !important; }
  /* Keep sticky header content clear of notches */
  header { padding-left: env(safe-area-inset-left, 0); padding-right: env(safe-area-inset-right, 0); }
}
.quiz-opt:focus-within { outline: 2px solid #1a56db; outline-offset: 2px; }
.dark .quiz-opt:focus-within { outline-color: #4d7ef0; }
.toast-enter { animation: fadeIn 200ms ease; }
.skeleton { background: linear-gradient(90deg, #e4eaf3 25%, #f0f4fa 50%, #e4eaf3 75%); background-size: 200% 100%; animation: shimmer 1.2s infinite; border-radius: 0.75rem; }
.dark .skeleton { background: linear-gradient(90deg, #1a2740 25%, #243352 50%, #1a2740 75%); background-size: 200% 100%; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.focus\:not-sr-only:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; white-space: normal; }
.map-fallback {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #e8eef6 0%, #f6f8fc 50%, #e6f9f7 100%);
  color: #3d4f6a; text-align: center; padding: 1.5rem;
}
.dark .map-fallback { background: linear-gradient(145deg, #111b2e, #1a2740); color: rgba(255,255,255,0.7); }
/* Unified messaging chips */
.msg-chip {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.3rem;
  border-radius: 0.5rem; font-size: 0.75rem; font-weight: 600; line-height: 1;
  padding: 0.5rem 0.75rem; border: 1px solid transparent;
  min-height: 36px;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .msg-chip { min-height: 40px; padding: 0.55rem 0.8rem; }
}
.msg-chip:hover { transform: translateY(-1px); }
.msg-chip:active { transform: translateY(0); }
.msg-chip-wa { border-color: #86efac; color: #166534; background: #f0fdf4; }
.dark .msg-chip-wa { border-color: rgba(34,197,94,0.35); color: #86efac; background: rgba(34,197,94,0.12); }
.msg-chip-tg { border-color: #7dd3fc; color: #0369a1; background: #f0f9ff; }
.dark .msg-chip-tg { border-color: rgba(56,189,248,0.35); color: #7dd3fc; background: rgba(14,165,233,0.12); }
.msg-chip-sg { border-color: #a5b4fc; color: #3730a3; background: #eef2ff; }
.dark .msg-chip-sg { border-color: rgba(129,140,248,0.4); color: #a5b4fc; background: rgba(99,102,241,0.12); }
.msg-chip-wx { border-color: #6ee7b7; color: #065f46; background: #ecfdf5; }
.dark .msg-chip-wx { border-color: rgba(16,185,129,0.4); color: #6ee7b7; background: rgba(16,185,129,0.12); }
.msg-chip-lg { border-radius: 0.75rem; font-size: 0.8125rem; padding: 0.55rem 0.9rem; }
.lawyer-card { transition: box-shadow 200ms ease, border-color 200ms ease, transform 200ms ease; }
.lawyer-card:hover { border-color: rgba(26,86,219,0.28); }
.dark .lawyer-card:hover { border-color: rgba(77,126,240,0.35); }
/* Premier / Lux boutique firms — gold treatment */
.lawyer-card.is-premier {
  border-color: rgba(201, 162, 39, 0.55);
  background:
    linear-gradient(145deg, rgba(251, 246, 228, 0.95), #fff 45%, rgba(251, 246, 228, 0.55)),
    #fff;
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.18),
    0 10px 32px rgba(201, 162, 39, 0.12),
    0 4px 12px rgba(11, 21, 38, 0.04);
  position: relative;
}
.dark .lawyer-card.is-premier {
  border-color: rgba(232, 200, 74, 0.4);
  background:
    linear-gradient(155deg, rgba(201, 162, 39, 0.14), rgba(17, 27, 46, 0.98) 50%, rgba(201, 162, 39, 0.06));
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.22),
    0 14px 36px rgba(0, 0, 0, 0.4);
}
.lawyer-card.is-premier:hover {
  border-color: rgba(201, 162, 39, 0.75);
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.28),
    0 16px 40px rgba(201, 162, 39, 0.18);
}
.dark .lawyer-card.is-premier:hover {
  border-color: rgba(232, 200, 74, 0.55);
  box-shadow: 0 0 0 1px rgba(232, 200, 74, 0.3), 0 18px 44px rgba(0, 0, 0, 0.5);
}
.lawyer-card.is-premier::before {
  content: '';
  position: absolute; left: 0; top: 0.75rem; bottom: 0.75rem; width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #e8c84a, #c9a227, #9a7a12);
}
.premier-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; line-height: 1.15;
  padding: 0.28rem 0.55rem; border-radius: 999px;
  background: linear-gradient(135deg, #e8c84a, #c9a227 50%, #a8841a);
  color: #1a1408;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
  white-space: nowrap;
}
.dark .premier-badge {
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.45);
}
.premier-mini {
  display: inline-flex; align-items: center;
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem; border-radius: 0.3rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: rgba(251, 246, 228, 0.95);
  color: #9a7a12;
}
.dark .premier-mini {
  background: rgba(201, 162, 39, 0.18);
  color: #e8c84a;
  border-color: rgba(232, 200, 74, 0.35);
}
.premier-tile {
  border-color: rgba(201, 162, 39, 0.45) !important;
  background: linear-gradient(145deg, rgba(251,246,228,0.7), #fff) !important;
  box-shadow: 0 0 0 1px rgba(201,162,39,0.12), 0 8px 24px rgba(201,162,39,0.08);
}
.dark .premier-tile {
  background: linear-gradient(145deg, rgba(201,162,39,0.12), #111b2e) !important;
  border-color: rgba(232, 200, 74, 0.35) !important;
}
.lawyer-profile-premier {
  border-color: rgba(201, 162, 39, 0.5) !important;
  box-shadow: 0 0 0 1px rgba(201,162,39,0.15), 0 20px 50px rgba(201,162,39,0.1) !important;
}
.dark .lawyer-profile-premier {
  border-color: rgba(232, 200, 74, 0.4) !important;
  box-shadow: 0 0 0 1px rgba(201,162,39,0.2), 0 24px 56px rgba(0,0,0,0.45) !important;
}
.lawyer-profile-premier .premier-hero-band {
  background: linear-gradient(90deg, #9a7a12, #c9a227 40%, #e8c84a 70%, #c9a227) !important;
}
::selection { background: #c7d7fc; color: #0b1526; }
.dark ::selection { background: #1a56db; color: #fff; }
/* Safe areas (notched phones) */
.safe-pb { padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px)); }
.safe-pt { padding-top: max(0px, env(safe-area-inset-top, 0px)); }
/* Match score ring */
.score-ring {
  --p: 0; width: 2.75rem; height: 2.75rem; border-radius: 999px;
  background: conic-gradient(#00b4a6 calc(var(--p) * 1%), #e4eaf3 0);
  display: grid; place-items: center; flex-shrink: 0;
}
.dark .score-ring { background: conic-gradient(#00b4a6 calc(var(--p) * 1%), #1a2740 0); }
.score-ring > span {
  width: 2.1rem; height: 2.1rem; border-radius: 999px;
  background: #fff; display: grid; place-items: center;
  font-size: 0.65rem; font-weight: 700; color: #008f84;
}
.dark .score-ring > span { background: #111b2e; color: #5eead4; }
/* Bottom mobile nav */
.mobile-tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  border-top: 1px solid rgba(228,234,243,0.9);
  background: rgba(246,248,252,0.92); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-bottom: max(0.35rem, env(safe-area-inset-bottom, 0px));
}
.dark .mobile-tabbar {
  border-top-color: rgba(255,255,255,0.1);
  background: rgba(10,18,32,0.94);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
}
@media (min-width: 1024px) {
  .mobile-tabbar { display: none !important; }
  .has-mobile-tab { padding-bottom: 0 !important; }
}
@media (max-width: 1023px) {
  .has-mobile-tab { padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px)); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-enter, .slide-in, .toast-enter, .progress-bar, .dim-bar, .msg-chip, .lawyer-card,
  .skeleton, .animate-bounce, .animate-pulse, .animate-spin { animation: none !important; transition: none !important; }
}
/* Offline strip */
.offline-bar {
  background: linear-gradient(90deg, #ff5a36, #e04320);
  color: #fff; font-size: 0.75rem; font-weight: 600; text-align: center;
  padding: 0.4rem 1rem;
}
/* Floating chrome clears mobile tab bar + home indicator */
.float-above-tab {
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}
.toast-float {
  bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 1024px) {
  .float-above-tab { bottom: 2rem; }
  .toast-float { bottom: 2rem; }
}
.mobile-tab-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
  padding: 0.35rem 0.15rem; border-radius: 0.75rem;
  min-height: 48px;
  font-size: 10px; font-weight: 600; color: #6b7c93;
  transition: color 150ms ease, background 150ms ease;
  -webkit-tap-highlight-color: transparent;
}
.mobile-tab-btn.is-active {
  color: #1a56db;
  background: rgba(26, 86, 219, 0.08);
}
.dark .mobile-tab-btn { color: rgba(255,255,255,0.45); }
.dark .mobile-tab-btn.is-active {
  color: #4d7ef0;
  background: rgba(77, 126, 240, 0.12);
}
.score-ring.is-top {
  background: conic-gradient(#ff5a36 calc(var(--p) * 1%), #e4eaf3 0);
}
.dark .score-ring.is-top {
  background: conic-gradient(#ff5a36 calc(var(--p) * 1%), #1a2740 0);
}
.score-ring.is-top > span { color: #e04320; }
.dark .score-ring.is-top > span { color: #fb923c; }
.header-elevated {
  box-shadow: 0 1px 0 rgba(11,21,38,0.04), 0 8px 24px rgba(11,21,38,0.06);
}
.dark .header-elevated {
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 24px rgba(0,0,0,0.35);
}
.dark .scrollbar-thin::-webkit-scrollbar-thumb { background: #3d4f6a; }
.dark .scrollbar-thin::-webkit-scrollbar-track { background: transparent; }
kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}
/* —— Polish: cards, CTAs, modals, toast —— */
.card-lift {
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.card-lift:hover {
  box-shadow: 0 12px 40px rgba(11, 21, 38, 0.1);
  transform: translateY(-2px);
}
.dark .card-lift:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.result-card {
  transition: box-shadow 220ms ease, border-color 220ms ease, transform 180ms ease;
  background: #fff;
}
.dark .result-card { background: #111b2e; }
.result-card:hover {
  border-color: rgba(26, 86, 219, 0.28);
  box-shadow: 0 10px 32px rgba(26, 86, 219, 0.08);
}
.dark .result-card:hover {
  border-color: rgba(77, 126, 240, 0.35);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}
.result-card.is-rank-1 {
  border-color: rgba(255, 90, 54, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 90, 54, 0.12), 0 12px 36px rgba(255, 90, 54, 0.08);
}
.dark .result-card.is-rank-1 {
  border-color: rgba(255, 90, 54, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 90, 54, 0.15), 0 12px 36px rgba(0, 0, 0, 0.35);
}
.btn-press {
  transition: transform 120ms ease, background-color 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}
.btn-press:active:not(:disabled) { transform: scale(0.98); }
.modal-sheet {
  box-shadow: 0 -8px 40px rgba(11, 21, 38, 0.12), 0 24px 48px rgba(11, 21, 38, 0.08);
}
.dark .modal-sheet {
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5), 0 24px 48px rgba(0, 0, 0, 0.4);
}
.modal-handle {
  width: 2.5rem; height: 0.25rem; border-radius: 999px;
  background: rgba(11, 21, 38, 0.12); margin: 0 auto 1rem;
}
.dark .modal-handle { background: rgba(255, 255, 255, 0.15); }
@media (min-width: 640px) {
  .modal-handle { display: none; }
}
.toast-float {
  box-shadow: 0 12px 40px rgba(11, 21, 38, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dark .toast-float {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(11, 21, 38, 0.08);
}
/* Home hero padding + stacking (copy above decorative mesh) */
.home-hero {
  overflow-x: hidden;
  overflow-y: visible;
}
.home-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .home-hero-inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .home-hero-inner {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  z-index: 0;
}
.hero-mesh::before {
  content: '';
  position: absolute; width: 42rem; height: 42rem; border-radius: 999px;
  top: -12rem; right: -8rem;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.14) 0%, transparent 70%);
}
.hero-mesh::after {
  content: '';
  position: absolute; width: 28rem; height: 28rem; border-radius: 999px;
  bottom: -8rem; left: -6rem;
  background: radial-gradient(circle, rgba(0, 180, 166, 0.12) 0%, transparent 70%);
}
.dark .hero-mesh::before {
  background: radial-gradient(circle, rgba(77, 126, 240, 0.18) 0%, transparent 70%);
}
.dark .hero-mesh::after {
  background: radial-gradient(circle, rgba(0, 180, 166, 0.1) 0%, transparent 70%);
}
.compare-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  border-radius: 999px; padding: 0.35rem 0.35rem 0.35rem 0.75rem;
  font-size: 0.75rem; font-weight: 600;
  background: #1a56db; color: #fff;
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.25);
  transition: transform 120ms ease, opacity 120ms ease;
}
.compare-pill:hover { transform: translateY(-1px); }
.status-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 999px;
  background: #00b4a6; box-shadow: 0 0 0 3px rgba(0, 180, 166, 0.2);
  animation: statusPulse 2s ease infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 180, 166, 0.2); }
  50% { box-shadow: 0 0 0 5px rgba(0, 180, 166, 0.08); }
}
@media (prefers-reduced-motion: reduce) {
  .status-dot, .card-lift, .result-card, .btn-press, .compare-pill, .hero-mesh::before, .hero-mesh::after {
    animation: none !important; transition: none !important; transform: none !important;
  }
}
.input-field {
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}
.input-field:focus {
  border-color: rgba(26, 86, 219, 0.45);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}
.dark .input-field:focus {
  border-color: rgba(77, 126, 240, 0.5);
  box-shadow: 0 0 0 3px rgba(77, 126, 240, 0.18);
}
/* Soft divider glow for dark sections */
.section-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 234, 243, 0.9), transparent);
}
.dark .section-rule {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
/* Compact primary nav + More dropdown (all pages still reachable) */
.site-header-inner {
  min-height: 3.25rem;
}
@media (min-width: 640px) {
  .site-header-inner { min-height: 3.75rem; }
}
.nav-main {
  display: none;
}
@media (min-width: 1024px) {
  .nav-main {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.15rem;
    min-width: 0;
  }
  .nav-main-btn {
    padding: 0.4rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 0.55rem;
    line-height: 1.2;
    transition: color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
  }
  .nav-main-btn.is-active {
    box-shadow: inset 0 0 0 1px rgba(26, 86, 219, 0.18);
  }
  .dark .nav-main-btn.is-active {
    box-shadow: inset 0 0 0 1px rgba(77, 126, 240, 0.28);
  }
  .nav-main-btn.is-active.is-lux {
    box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.35);
  }
  .dark .nav-main-btn.is-active.is-lux {
    box-shadow: inset 0 0 0 1px rgba(232, 200, 74, 0.35);
  }
  .nav-drop {
    position: relative;
  }
  .nav-drop-panel {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 15.5rem;
    max-width: 18rem;
    padding: 0.4rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(228, 234, 243, 0.95);
    background: #fff;
    box-shadow: 0 12px 40px rgba(11, 21, 38, 0.12);
    z-index: 60;
  }
  .dark .nav-drop-panel {
    border-color: rgba(255, 255, 255, 0.1);
    background: #111b2e;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  }
  .nav-drop-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.55rem 0.75rem;
    border-radius: 0.55rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #3d4f6a;
    transition: background 140ms ease, color 140ms ease;
  }
  .dark .nav-drop-item { color: rgba(255, 255, 255, 0.75); }
  .nav-drop-item:hover {
    background: rgba(232, 239, 252, 0.9);
    color: #1a56db;
  }
  .dark .nav-drop-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }
  .nav-drop-item.is-active {
    background: rgba(26, 86, 219, 0.1);
    color: #1a56db;
  }
  .dark .nav-drop-item.is-active {
    background: rgba(77, 126, 240, 0.15);
    color: #4d7ef0;
  }
  .nav-drop-hint {
    font-size: 0.65rem;
    font-weight: 500;
    color: #6b7c93;
    display: block;
    margin-top: 0.1rem;
  }
  .dark .nav-drop-hint { color: rgba(255, 255, 255, 0.4); }
}
@media (min-width: 1280px) {
  .nav-main { gap: 0.2rem; }
  .nav-main-btn {
    padding: 0.45rem 0.65rem;
    font-size: 0.84rem;
  }
}
@media (min-width: 1536px) {
  .nav-main { gap: 0.3rem; }
  .nav-main-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}
.country-card-media {
  background: linear-gradient(135deg, #dbe7ff 0%, #e6f9f7 50%, #f0f4fa 100%);
}
.dark .country-card-media {
  background: linear-gradient(135deg, #1a2740 0%, #0f1f2e 50%, #111b2e 100%);
}
.line-clamp-3 {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.line-clamp-4 {
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.price-tier-featured {
  position: relative;
}
.price-tier-featured::before {
  content: '';
  position: absolute; inset: -1px; border-radius: 1.05rem; z-index: -1;
  background: linear-gradient(135deg, rgba(26,86,219,0.35), rgba(0,180,166,0.25));
  opacity: 0.9;
}
.dark .price-tier-featured::before {
  background: linear-gradient(135deg, rgba(77,126,240,0.45), rgba(0,180,166,0.3));
}
/* Social auth buttons — clean OAuth-style */
.social-auth-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.social-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(228, 234, 243, 0.95);
  background: #fff;
  color: #0b1526;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  transition: background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.social-auth-btn:hover {
  background: #f6f8fb;
  border-color: rgba(180, 192, 210, 0.9);
}
.social-auth-btn:active { transform: scale(0.99); }
.dark .social-auth-btn {
  background: #111b2e;
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}
.dark .social-auth-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}
.social-auth-btn .social-ico {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}
.social-auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.85rem 0 0.65rem;
  color: #6b7c93;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.social-auth-divider::before,
.social-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(228, 234, 243, 0.95);
}
.dark .social-auth-divider { color: rgba(255, 255, 255, 0.4); }
.dark .social-auth-divider::before,
.dark .social-auth-divider::after {
  background: rgba(255, 255, 255, 0.1);
}
.chip-soft {
  display: inline-flex; align-items: center; gap: 0.25rem;
  border-radius: 999px; font-size: 0.65rem; font-weight: 700;
  padding: 0.2rem 0.55rem; letter-spacing: 0.02em;
}
/* Regional / political bloc tags (EU, GCC, Mercosur, …) */
.bloc-tag {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.07em;
  text-transform: uppercase; line-height: 1.15;
  padding: 0.32rem 0.55rem; border-radius: 0.4rem;
  border: 1px solid transparent; white-space: nowrap;
  box-shadow: 0 1px 2px rgba(11, 21, 38, 0.06);
}
.bloc-tag-lg {
  font-size: 0.72rem; padding: 0.42rem 0.7rem; letter-spacing: 0.08em;
  border-radius: 0.5rem;
}
.bloc-row { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.bloc-eu { background: #e8eefc; color: #1a3a8f; border-color: rgba(26, 58, 143, 0.22); }
.dark .bloc-eu { background: rgba(59, 104, 232, 0.22); color: #a8c0ff; border-color: rgba(168, 192, 255, 0.28); }
.bloc-gcc { background: #e6f7f2; color: #0b6b54; border-color: rgba(11, 107, 84, 0.22); }
.dark .bloc-gcc { background: rgba(0, 180, 166, 0.18); color: #5eead4; border-color: rgba(94, 234, 212, 0.28); }
.bloc-mercosur { background: #e8f5e9; color: #1b5e20; border-color: rgba(27, 94, 32, 0.2); }
.dark .bloc-mercosur { background: rgba(76, 175, 80, 0.16); color: #86efac; border-color: rgba(134, 239, 172, 0.25); }
.bloc-andean { background: #fff3e0; color: #b45309; border-color: rgba(180, 83, 9, 0.22); }
.dark .bloc-andean { background: rgba(245, 158, 11, 0.16); color: #fcd34d; border-color: rgba(252, 211, 77, 0.28); }
.bloc-commonwealth { background: #f3e8ff; color: #6b21a8; border-color: rgba(107, 33, 168, 0.2); }
.dark .bloc-commonwealth { background: rgba(168, 85, 247, 0.18); color: #d8b4fe; border-color: rgba(216, 180, 254, 0.28); }
.bloc-ecowas { background: #ecfdf5; color: #047857; border-color: rgba(4, 120, 87, 0.22); }
.dark .bloc-ecowas { background: rgba(16, 185, 129, 0.16); color: #6ee7b7; border-color: rgba(110, 231, 183, 0.28); }
.bloc-sahel { background: #fef3c7; color: #92400e; border-color: rgba(146, 64, 14, 0.2); }
.dark .bloc-sahel { background: rgba(217, 119, 6, 0.18); color: #fbbf24; border-color: rgba(251, 191, 36, 0.28); }
.bloc-eac { background: #e0f2fe; color: #0369a1; border-color: rgba(3, 105, 161, 0.2); }
.dark .bloc-eac { background: rgba(14, 165, 233, 0.16); color: #7dd3fc; border-color: rgba(125, 211, 252, 0.28); }
.bloc-sadc { background: #fce7f3; color: #9d174d; border-color: rgba(157, 23, 77, 0.18); }
.dark .bloc-sadc { background: rgba(236, 72, 153, 0.14); color: #f9a8d4; border-color: rgba(249, 168, 212, 0.25); }
.bloc-cplp { background: #fff1f2; color: #9f1239; border-color: rgba(159, 18, 57, 0.18); }
.dark .bloc-cplp { background: rgba(244, 63, 94, 0.14); color: #fda4af; border-color: rgba(253, 164, 175, 0.25); }
.bloc-schengen { background: #eef2ff; color: #3730a3; border-color: rgba(55, 48, 163, 0.18); }
.dark .bloc-schengen { background: rgba(99, 102, 241, 0.16); color: #a5b4fc; border-color: rgba(165, 180, 252, 0.25); }
.chip-dual-ok {
  background: rgba(0, 180, 166, 0.12); color: #008f84;
}
.dark .chip-dual-ok {
  background: rgba(0, 180, 166, 0.18); color: #5eead4;
}
.chip-dual-limited {
  background: rgba(255, 90, 54, 0.1); color: #c2410c;
}
.dark .chip-dual-limited {
  background: rgba(255, 90, 54, 0.15); color: #fdba74;
}
.drawer-section-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: #6b7c93; padding: 0.75rem 1rem 0.35rem;
}
.dark .drawer-section-label { color: rgba(255,255,255,0.4); }
/* Lux / White Glove page — private atelier (distinct from rest of site) */
.lux-page {
  --lux-ink: #0c0a07;
  --lux-panel: #14110c;
  --lux-panel-2: #1c1812;
  --lux-gold: #d4af37;
  --lux-gold-soft: #f0d78c;
  --lux-gold-dim: rgba(212, 175, 55, 0.14);
  --lux-line: rgba(212, 175, 55, 0.28);
  --lux-mist: rgba(255, 248, 230, 0.72);
  background:
    radial-gradient(ellipse 90% 60% at 8% -10%, rgba(212, 175, 55, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(90, 60, 10, 0.35), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(212, 175, 55, 0.06), transparent 60%),
    linear-gradient(180deg, #0a0907 0%, #12100c 40%, #0e0c09 100%);
  color: var(--lux-mist);
  position: relative;
  isolation: isolate;
}
.lux-page::before {
  content: '';
  pointer-events: none;
  position: absolute; inset: 0; z-index: 0; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.lux-page > * { position: relative; z-index: 1; }
.lux-page .lux-kicker {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--lux-gold-soft);
}
.lux-page h1, .lux-page h2, .lux-page h3, .lux-page .lux-display {
  font-family: Fraunces, Georgia, serif;
  color: #fff8e7;
}
.lux-page .lux-body { color: rgba(255, 248, 230, 0.72); }
.lux-page .lux-muted { color: rgba(255, 248, 230, 0.45); }
.lux-hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), transparent);
}
.lux-frame {
  border: 1px solid var(--lux-line);
  background: linear-gradient(160deg, rgba(28, 24, 18, 0.95), rgba(16, 14, 10, 0.98));
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 24px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(212,175,55,0.08);
}
.lux-frame-corner {
  position: relative;
}
.lux-frame-corner::before,
.lux-frame-corner::after {
  content: '';
  position: absolute; width: 1.25rem; height: 1.25rem;
  border-color: var(--lux-gold); border-style: solid; opacity: 0.55;
  pointer-events: none;
}
.lux-frame-corner::before {
  top: 0.65rem; left: 0.65rem;
  border-width: 1px 0 0 1px;
}
.lux-frame-corner::after {
  bottom: 0.65rem; right: 0.65rem;
  border-width: 0 1px 1px 0;
}
.lux-pillar {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  border: 1px solid var(--lux-line);
  background: rgba(20, 17, 12, 0.85);
}
.lux-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.12);
  background: rgba(28, 24, 18, 0.95);
}
.lux-program-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border: 1px solid var(--lux-line);
  background: var(--lux-panel);
  min-width: min(18.5rem, 82vw);
}
.lux-program-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}
.lux-program-card:hover .lux-program-img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.05);
}
.lux-program-img {
  transition: transform 500ms ease, filter 500ms ease;
  filter: saturate(0.85) contrast(1.05);
}
.lux-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.85rem; height: 1.85rem; border-radius: 999px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  background: linear-gradient(145deg, #e0c15a, #a8841a 55%, #7a6210);
  color: #1a1408; box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}
.lux-rail {
  display: flex; gap: 1rem; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.4) transparent;
}
.lux-rail > * { scroll-snap-align: start; flex-shrink: 0; }
.lux-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--lux-line);
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 639px) {
  .lux-compare-grid { grid-template-columns: 1fr; }
}
.lux-compare-col {
  padding: 1.5rem 1.35rem;
}
.lux-compare-col + .lux-compare-col {
  border-left: 1px solid var(--lux-line);
}
@media (max-width: 639px) {
  .lux-compare-col + .lux-compare-col {
    border-left: none;
    border-top: 1px solid var(--lux-line);
  }
}
.lux-compare-col.is-lux {
  background: linear-gradient(180deg, rgba(212,175,55,0.12), rgba(20,17,12,0.4));
}
.lux-compare-col.is-market {
  background: rgba(10, 9, 7, 0.5);
}
.lux-quote {
  font-family: Fraunces, Georgia, serif;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: #fff8e7;
}
.lux-seal {
  width: 4.5rem; height: 4.5rem; border-radius: 999px;
  border: 2px solid var(--lux-gold);
  display: grid; place-items: center;
  font-family: Fraunces, Georgia, serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--lux-gold-soft);
  background: radial-gradient(circle at 35% 30%, rgba(212,175,55,0.25), transparent 60%), #1a1408;
  box-shadow: 0 0 0 6px rgba(212,175,55,0.08), inset 0 0 20px rgba(212,175,55,0.1);
  text-align: center; line-height: 1.15;
}
.lux-step-line {
  position: relative;
  padding-left: 2.5rem;
}
.lux-step-line > .lux-num {
  position: absolute; left: 0; top: 0;
}
.lux-step-line::before {
  content: '';
  position: absolute; left: 0.85rem; top: 2rem; bottom: -0.25rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(212,175,55,0.5), transparent);
}
.lux-step-line:last-child::before { display: none; }
.lux-btn-primary {
  background: linear-gradient(135deg, #e0c15a, #c9a227 45%, #9a7a12);
  color: #1a1408;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.28);
}
.lux-btn-primary:hover { filter: brightness(1.06); }
.lux-btn-ghost {
  border: 1px solid var(--lux-line);
  color: var(--lux-gold-soft);
  background: transparent;
}
.lux-btn-ghost:hover { background: var(--lux-gold-dim); }
.lux-page .lux-link-quiet {
  color: rgba(255, 248, 230, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lux-page .lux-link-quiet:hover { color: var(--lux-gold-soft); }
/* Ultra-exclusive Lux layout refinements */
.lux-page .lux-narrow { max-width: 42rem; }
.lux-page .lux-section { margin-bottom: 5.5rem; }
@media (min-width: 640px) {
  .lux-page .lux-section { margin-bottom: 7rem; }
}
.lux-page .lux-rule {
  width: 3rem; height: 1px;
  background: var(--lux-gold);
  opacity: 0.7;
}
.lux-page .lux-firm-card {
  border: 1px solid var(--lux-line);
  background: linear-gradient(165deg, rgba(36, 30, 18, 0.9), rgba(14, 12, 9, 0.98));
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.lux-page .lux-firm-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,175,55,0.12);
  transform: translateY(-2px);
}
.lux-page .lux-prog {
  border-top: 1px solid var(--lux-line);
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.lux-page .lux-prog:first-of-type { border-top: none; padding-top: 0; }
.lux-page .lux-price {
  font-family: Fraunces, Georgia, serif;
  font-variant-numeric: tabular-nums;
  color: var(--lux-gold-soft);
  letter-spacing: -0.02em;
}
.lux-page .lux-soft-panel {
  border: 1px solid var(--lux-line);
  background: rgba(20, 17, 12, 0.55);
}
@media (prefers-reduced-motion: reduce) {
  .lux-pillar, .lux-program-card, .lux-program-img, .lux-firm-card, .card-lift, .result-card, .btn-press {
    transition: none !important; transform: none !important;
  }
}
img.country-photo {
  background: linear-gradient(110deg, #e4eaf3 25%, #f0f4fa 40%, #e4eaf3 55%);
  background-size: 200% 100%;
}
.dark img.country-photo {
  background: linear-gradient(110deg, #1a2740 25%, #243352 40%, #1a2740 55%);
  background-size: 200% 100%;
}

/* Dark mode form polish */
.dark input, .dark select, .dark textarea {
  color-scheme: dark;
}
.dark ::placeholder { color: rgba(255,255,255,0.35); }
.dark .leaflet-container { background: #111b2e; }
.dark .leaflet-popup-content-wrapper {
  background: #1a2740; color: #f0f4fa;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.dark .leaflet-popup-tip { background: #1a2740; }
.dark .leaflet-control-zoom a {
  background: #1a2740 !important; color: #fff !important;
  border-color: rgba(255,255,255,0.12) !important;
}
.dark .leaflet-control-attribution {
  background: rgba(17,27,46,0.85) !important; color: rgba(255,255,255,0.5) !important;
}
/* Subtle page depth in dark */
.dark .fade-enter {
  animation: fadeInDark 220ms ease;
}
@keyframes fadeInDark {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ========== SUPER MOBILE (phones + tablets < lg) ========== */
@media (max-width: 1023px) {
  html { scroll-padding-top: 4.75rem; scroll-padding-bottom: 5.5rem; }
  .mx-auto.max-w-7xl.px-4,
  .mx-auto.max-w-6xl.px-4,
  .mx-auto.max-w-5xl.px-4,
  .mx-auto.max-w-4xl.px-4,
  .mx-auto.max-w-3xl.px-4 { padding-left: 1rem; padding-right: 1rem; }
  .mob-stack > * { width: 100%; }
  .mob-btn-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .mob-btn-row > * { width: 100%; justify-content: center; text-align: center; min-height: 44px; }
  .mob-btn-row > *.mob-span-2 { grid-column: 1 / -1; }
  /* Sticky quiz action bar above mobile tab */
  .quiz-sticky-actions {
    position: sticky;
    bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    z-index: 40;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding: 0.65rem 0.5rem;
    background: linear-gradient(to top, rgba(246,248,252,0.98) 70%, rgba(246,248,252,0));
    backdrop-filter: blur(8px);
  }
  .dark .quiz-sticky-actions {
    background: linear-gradient(to top, rgba(10,18,32,0.98) 70%, rgba(10,18,32,0));
  }
  .h-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.35rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .h-scroll > * { scroll-snap-align: start; flex-shrink: 0; }
  .hero-title-mob {
    font-size: clamp(1.65rem, 7.2vw, 1.95rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em;
  }
  /* Home hero: full top content visible on small screens (no vertical crop) */
  .home-hero {
    overflow-x: hidden;
    overflow-y: visible;
  }
  .home-hero-inner {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
  }
  .home-hero-copy {
    padding-bottom: 0.25rem;
  }
  .home-hero-preview {
    margin-top: 0.25rem;
  }
  /* Soft spacing under sticky chrome (Lux strip + header + banners) */
  section.fade-enter:has(.home-hero) {
    scroll-margin-top: 0;
  }
  .dir-filter-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(228,234,243,0.9);
    background: #fff;
    font-weight: 600;
    font-size: 0.875rem;
  }
  .dark .dir-filter-toggle {
    background: #111b2e;
    border-color: rgba(255,255,255,0.1);
  }
  .msg-chip:hover { transform: none; }
  .msg-chip:active { transform: scale(0.98); }
  .lawyer-card:active { transform: scale(0.995); }
  .result-actions button,
  .result-actions a {
    min-height: 42px;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }
  .lux-strip-btn { min-height: 36px; padding: 0.35rem 0.75rem; }
  .table-scroll table { font-size: 0.8125rem; }
  .table-scroll th, .table-scroll td { padding: 0.65rem 0.75rem; }
  .table-scroll th.sticky,
  .table-scroll td.sticky { max-width: 7.5rem; }
}
@media (min-width: 1024px) {
  .mob-btn-row {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .mob-btn-row > * { width: auto; min-height: 0; }
  .mob-btn-row > *.mob-span-2 { grid-column: auto; }
  .dir-filter-toggle { display: none !important; }
}
@media (max-width: 379px) {
  .font-display.text-lg { font-size: 1rem; }
  .mobile-tab-btn { font-size: 9px; }
}
/* Safe area for landscape notches */
@supports (padding: max(0px)) {
  body {
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
  }
}
