/* Lokrio Visa Desk — institutional desk shell */
:root {
  --vd-bg: #f3f4f6;
  --vd-bg-2: #e9ecef;
  --vd-ink: #111827;
  --vd-ink-soft: #6b7280;
  --vd-panel: #ffffff;
  --vd-line: rgba(17, 24, 39, 0.09);
  --vd-line-strong: rgba(17, 24, 39, 0.16);
  --vd-teal: #ff6900;
  --vd-teal-bright: #e85f00;
  --vd-navy: #1a1a1a;
  --vd-warn: #b45309;
  --vd-ok: #047857;
  --vd-err: #b91c1c;
  --vd-radius: 10px;
  --vd-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 8px 24px rgba(17, 24, 39, 0.04);
  --vd-shadow-lg: 0 12px 40px rgba(17, 24, 39, 0.08);
  --vd-font: "IBM Plex Sans", "Segoe UI", sans-serif;
  --vd-display: "Source Serif 4", "Times New Roman", serif;
  --vd-max: 1120px;
  --vd-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

.vd-body {
  margin: 0;
  min-height: 100vh;
  color: var(--vd-ink);
  font-family: var(--vd-font);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(180deg, #fafbfc 0%, var(--vd-bg) 55%, #eceff2 100%);
}

.vd-skip {
  position: absolute; left: -999px; top: 0;
  background: #fff; color: #000; padding: 8px 12px; z-index: 100;
}
.vd-skip:focus { left: 12px; top: 12px; }

/* —— Nav —— */
.vd-shell-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(11, 21, 36, 0.06);
}
.vd-shell-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(11, 21, 36, 0.07);
}
.vd-shell-inner {
  position: relative;
  width: min(var(--vd-max), calc(100% - 28px));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; min-height: 68px;
}
.vd-shell-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: inherit; text-decoration: none;
  min-width: 0;
}
.vd-shell-logo {
  height: 34px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
.vd-shell-mark {
  color: var(--vd-teal);
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 105, 0, 0.16), rgba(30, 58, 95, 0.06));
  border: 1px solid rgba(255, 105, 0, 0.18);
}
.vd-shell-brand-text {
  display: flex; flex-direction: column; justify-content: center;
  gap: 0; line-height: 1;
}
.vd-shell-brand-text strong {
  font-family: var(--vd-display);
  font-size: 1.28rem; font-weight: 700; line-height: 1;
  color: #0b1524; letter-spacing: -0.02em;
  white-space: nowrap;
}
/* subtitle permanently removed from header */
.vd-shell-brand-text small { display: none !important; }
.vd-shell-menu {
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: flex-end; gap: 4px 14px;
}
.vd-shell-menu a {
  color: var(--vd-ink-soft); text-decoration: none;
  font-size: 0.9rem; font-weight: 600; padding: 8px 2px;
  transition: color 0.2s var(--vd-ease);
}
.vd-shell-menu a:hover, .vd-shell-menu a.is-active { color: #ff6900; }
.vd-shell-menu a.is-active::after {
  content: ""; display: block; height: 2px; margin-top: 4px;
  background: #ff6900; border-radius: 2px;
}
.vd-shell-cta {
  display: inline-flex !important; align-items: center; gap: 6px;
  padding: 9px 14px !important;
  border-radius: 999px;
  background: var(--vd-teal) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: none;
}
.vd-shell-cta:hover { filter: brightness(1.06); }
.vd-shell-cta.is-active::after { display: none !important; }

.vd-shell-toggle {
  display: none; align-items: center; gap: 8px;
  border: 1px solid rgba(11, 21, 36, 0.12); background: #fff;
  border-radius: 999px; padding: 9px 14px;
  font: inherit; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.02em; color: #0b1524; cursor: pointer;
  box-shadow: 0 1px 0 rgba(11, 21, 36, 0.04);
}
.vd-shell-toggle span {
  display: block; width: 14px; height: 1.5px; background: #0b1524; margin: 3px 0;
  border-radius: 2px;
}

.vd-main { padding-bottom: 48px; min-height: 60vh; }

.vd-flash {
  width: min(720px, calc(100% - 32px));
  margin: 18px auto 0; padding: 12px 14px;
  border-radius: 12px; font-weight: 600; font-size: 0.92rem;
}
.vd-flash-ok { background: #ecfdf5; color: var(--vd-ok); border: 1px solid #a7f3d0; }
.vd-flash-err { background: #fef2f2; color: var(--vd-err); border: 1px solid #fecaca; }
.vd-flash ul { margin: 0; padding-left: 18px; }

.vd-site-banner { width: 100%; border-bottom: 1px solid transparent; }
.vd-site-banner-inner {
  width: min(var(--vd-max), calc(100% - 28px));
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}
.vd-site-banner-inner strong { font-weight: 800; }
.vd-site-banner-inner a {
  margin-left: auto;
  font-weight: 800;
  text-decoration: underline;
  color: inherit;
}
.vd-site-banner-info { background: #eff6ff; color: #1e3a8a; border-bottom-color: #bfdbfe; }
.vd-site-banner-warn { background: #fff7ed; color: #9a3412; border-bottom-color: #fed7aa; }
.vd-site-banner-ok { background: #ecfdf5; color: #166534; border-bottom-color: #a7f3d0; }
.vd-site-banner-alert { background: #fef2f2; color: #991b1b; border-bottom-color: #fecaca; }

.vd-shell-foot {
  border-top: 1px solid var(--vd-line);
  background: #fff;
  margin-top: 40px;
}
.vd-shell-foot-inner {
  width: min(var(--vd-max), calc(100% - 28px));
  margin: 0 auto; padding: 28px 0;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.vd-shell-foot strong {
  font-family: var(--vd-display); font-size: 1.25rem; color: var(--vd-navy);
}
.vd-shell-foot p { margin: 6px 0 0; color: var(--vd-ink-soft); max-width: 36rem; font-size: 0.92rem; }
.vd-shell-foot-links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.vd-shell-foot-links a {
  color: var(--vd-teal); text-decoration: none; font-weight: 700; font-size: 0.9rem;
}

/* —— Buttons —— */
.vd-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px; border-radius: 8px; border: 1px solid transparent;
  font: inherit; font-weight: 600; font-size: 0.94rem;
  text-decoration: none; cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.vd-btn:hover { filter: brightness(1.03); }
.vd-btn-primary {
  background: var(--vd-teal);
  color: #fff;
  box-shadow: none;
}
.vd-btn-secondary, .vd-btn-ghost {
  background: #fff; color: var(--vd-navy); border-color: var(--vd-line-strong);
}
.vd-btn-teal { background: var(--vd-teal); color: #fff; }
.vd-btn-light { background: #fff; color: var(--vd-navy); box-shadow: var(--vd-shadow); }
.vd-btn-ghost-light { background: transparent; color: var(--vd-navy); border-color: var(--vd-line-strong); }

/* —— Home —— */
.vd-simple-home {
  width: min(820px, calc(100% - 32px));
  margin: 36px auto 8px;
  padding: 40px 36px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82)),
    linear-gradient(120deg, rgba(255, 105, 0, 0.12), rgba(30, 58, 95, 0.06));
  border: 1px solid var(--vd-line);
  box-shadow: var(--vd-shadow-lg);
  display: grid; gap: 14px; justify-items: start;
  animation: vd-rise 0.7s var(--vd-ease) both;
}
.vd-kicker {
  margin: 0; color: var(--vd-teal);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.vd-simple-home h1, .vd-brand-hero {
  margin: 0;
  font-family: var(--vd-display);
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  line-height: 1.05; color: var(--vd-navy); letter-spacing: -0.02em;
}
.vd-simple-home .vd-lead, .vd-lead {
  margin: 0; max-width: 34rem;
  color: var(--vd-ink-soft); font-size: 1.05rem;
}

.vd-verify-box {
  margin: 14px 0;
  padding: 14px;
  border: 1px solid var(--vd-line);
  border-radius: 14px;
  background: #f8fafc;
}
.vd-verify-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 6px 0;
  align-items: center;
}
.vd-verify-status {
  margin: 4px 0 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--vd-teal);
}
@media (max-width: 640px) {
  .vd-verify-row { grid-template-columns: 1fr; }
}
.vd-band { padding: 28px 0 48px; }
.vd-band-head { margin-bottom: 16px; }
.vd-band-head h2 {
  margin: 0; font-family: var(--vd-display); font-size: 1.8rem; color: var(--vd-navy);
}
.vd-band-head p { margin: 6px 0 0; color: var(--vd-ink-soft); }

.vd-country-rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.vd-country-tile {
  display: grid; gap: 6px; padding: 18px 16px;
  border-radius: 18px; background: #fff;
  border: 1px solid var(--vd-line); text-decoration: none; color: inherit;
  box-shadow: var(--vd-shadow);
  transition: transform 0.2s var(--vd-ease), border-color 0.2s, box-shadow 0.2s;
}
.vd-country-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 105, 0, 0.35);
  box-shadow: var(--vd-shadow-lg);
}
.vd-country-flag { font-size: 1.6rem; }
.vd-country-name { font-weight: 700; color: var(--vd-navy); }
.vd-country-go { color: var(--vd-teal); font-size: 0.85rem; font-weight: 700; }

/* —— Apply simple form —— */
.vd-crumb {
  width: min(680px, calc(100% - 32px));
  margin: 22px auto 0; color: var(--vd-ink-soft); font-size: 0.88rem; font-weight: 600;
}
.vd-crumb a { color: var(--vd-teal); text-decoration: none; }

.vd-simple-head {
  width: min(680px, calc(100% - 32px));
  margin: 18px auto 10px;
}
.vd-simple-head h1 {
  margin: 0 0 6px;
  font-family: var(--vd-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--vd-navy);
}
.vd-simple-head p { margin: 0; color: var(--vd-ink-soft); }

.vd-callout {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto 14px; padding: 12px 14px;
  border-radius: 14px; background: #fff7ed; color: #9a3412;
  border: 1px solid #fed7aa; font-weight: 600;
}
.vd-callout a { color: #c2410c; font-weight: 800; }

.vd-simple-form {
  width: min(680px, calc(100% - 32px));
  margin: 8px auto 56px;
}
.vd-block {
  margin: 0 0 14px; padding: 22px 20px;
  border-radius: 20px; background: var(--vd-panel);
  border: 1px solid var(--vd-line); box-shadow: var(--vd-shadow);
}
.vd-block h2 {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 14px; font-size: 1.15rem; color: var(--vd-navy);
}
.vd-block h2 span {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(180deg, #ff7a1a 0%, #ff6900 100%);
  color: #fff; font-size: 0.85rem; font-weight: 800;
}
.vd-label {
  display: block; margin: 12px 0 6px;
  font-size: 0.78rem; font-weight: 700; color: var(--vd-ink-soft);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.vd-simple-form select,
.vd-simple-form input[type="text"],
.vd-simple-form input[type="email"],
.vd-simple-form textarea,
.vd-form input, .vd-form select, .vd-form textarea {
  width: 100%; padding: 12px 14px;
  border-radius: 12px; border: 1px solid var(--vd-line-strong);
  background: #fbfcfe; color: var(--vd-ink); font: inherit; font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vd-simple-form select:focus,
.vd-simple-form input:focus,
.vd-simple-form textarea:focus,
.vd-form input:focus, .vd-form select:focus, .vd-form textarea:focus {
  outline: none; border-color: rgba(255, 105, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.15);
}
.vd-simple-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vd-simple-checks { display: grid; gap: 8px; margin-top: 4px; }
.vd-simple-check {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; border-radius: 14px;
  border: 1px solid var(--vd-line); background: #fbfcfe; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.vd-simple-check:has(input:checked) {
  border-color: rgba(255, 105, 0, 0.45);
  background: rgba(255, 105, 0, 0.08);
}
.vd-simple-check span { display: grid; gap: 2px; color: var(--vd-ink); }
.vd-simple-check em {
  font-style: normal; font-size: 0.85rem; color: var(--vd-teal); font-weight: 700;
}
.vd-fee-line {
  margin-top: 12px; padding: 12px 14px; border-radius: 12px;
  background: rgba(255, 105, 0, 0.08); color: var(--vd-navy); font-size: 0.95rem;
}
.vd-hint, .vd-muted { color: var(--vd-ink-soft); font-size: 0.9rem; margin: 0 0 8px; }
.vd-submit-btn { width: 100%; margin-top: 16px; }
.vd-check-confirm {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 16px; color: var(--vd-ink); font-weight: 600;
}

.vd-doc-fields { display: grid; gap: 10px; }
.vd-upload-slot {
  padding: 14px; border-radius: 14px;
  border: 1px dashed rgba(255, 105, 0, 0.35);
  background: #f8fffd; color: var(--vd-ink);
}
.vd-upload-slot input[type="file"] {
  display: block; width: 100%; margin-top: 10px; color: var(--vd-ink-soft);
}
.vd-field-panel {
  margin: 14px 0 0;
  padding: 14px;
  border: 1px solid rgba(255, 105, 0, 0.18);
  border-radius: 14px;
  background: #f8fffd;
}
.vd-field-panel h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--vd-ink);
}
.vd-dyn-field { margin-bottom: 4px; }
.vd-dyn-field input,
.vd-dyn-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.95rem;
  box-sizing: border-box;
}
.vd-upload-head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }

/* —— Shared content —— */
.vd-hero, .vd-section, .vd-card {
  width: min(var(--vd-max), calc(100% - 32px));
  margin-left: auto; margin-right: auto;
}
.vd-hero { margin-top: 24px; margin-bottom: 18px; }
.vd-brand {
  margin: 0 0 6px; font-family: var(--vd-display);
  font-size: 1.1rem; color: var(--vd-teal); font-weight: 700;
}
.vd-hero h1 {
  margin: 0 0 8px; font-family: var(--vd-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--vd-navy);
}
.vd-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.vd-section.vd-card, .vd-card {
  background: #fff; border: 1px solid var(--vd-line);
  border-radius: 18px; padding: 18px; box-shadow: var(--vd-shadow);
  margin-bottom: 14px;
}
.vd-section h2, .vd-card h2 {
  margin: 0 0 10px; font-size: 1.05rem; color: var(--vd-navy);
}
.vd-split {
  width: min(var(--vd-max), calc(100% - 32px));
  margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px;
}
.vd-stack { display: grid; gap: 14px; align-content: start; }

.vd-chip {
  display: inline-flex; align-items: center;
  padding: 3px 8px; border-radius: 999px; font-size: 0.72rem; font-weight: 800;
  background: #e2e8f0; color: #334155;
}
.vd-chip-ok { background: #d1fae5; color: #065f46; }
.vd-chip-warn { background: #ffedd5; color: #9a3412; }
.vd-chip-navy { background: #fff7f0; color: #c45200; }

.vd-list { margin: 0; padding-left: 18px; }
.vd-list li { margin: 4px 0; }
.vd-checklist { margin: 0; padding-left: 18px; }
.vd-kv { display: grid; grid-template-columns: 140px 1fr; gap: 6px 12px; margin: 0; }
.vd-kv dt { color: var(--vd-ink-soft); font-size: 0.85rem; font-weight: 700; }
.vd-kv dd { margin: 0; font-weight: 600; }
.vd-meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.vd-timeline { list-style: none; margin: 0; padding: 0; }
.vd-timeline li {
  padding: 8px 0 8px 14px; border-left: 2px solid #cbd5e1; margin-left: 6px;
}
.vd-timeline li.is-done { border-color: var(--vd-teal); }
.vd-table-wrap { overflow-x: auto; }
.vd-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.vd-table th, .vd-table td {
  padding: 8px 6px; border-bottom: 1px solid #f1f5f9; text-align: left; vertical-align: top;
}
.vd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vd-field { margin-bottom: 10px; }
.vd-field label {
  display: block; margin-bottom: 4px;
  font-size: 0.78rem; font-weight: 700; color: var(--vd-ink-soft); text-transform: uppercase;
}
.vd-hint { color: var(--vd-ink-soft); }

.vd-service-mosaic {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px;
}
.vd-service-tile {
  padding: 16px; border-radius: 16px; background: #fff;
  border: 1px solid var(--vd-line); box-shadow: var(--vd-shadow);
}
.vd-service-tile h3 { margin: 0 0 6px; font-size: 1rem; color: var(--vd-navy); }
.vd-service-fee { margin: 0; color: var(--vd-teal); font-weight: 700; font-size: 0.9rem; }

.vd-confirm-box, .vd-fee-box { margin-top: 8px; }
.vd-fee-total { margin-top: 10px; font-size: 1.05rem; color: var(--vd-navy); }
.vd-process-box { margin-top: 12px; }
.vd-process-card {
  margin: 0 0 10px; padding: 14px 16px; border-radius: 14px;
  border: 1px solid rgba(255, 105, 0, 0.2); background: rgba(255, 105, 0, 0.06);
}
.vd-process-card ol { margin: 8px 0 0; padding-left: 18px; color: var(--vd-ink-soft); }

.vd-docs-summary {
  margin: 0 0 12px; padding: 12px 14px; border-radius: 12px;
  background: rgba(255, 105, 0, 0.08); color: var(--vd-navy); font-size: 0.92rem;
}

/* legacy wizard leftovers still light */
.vd-wizard-head, .vd-wizard {
  width: min(720px, calc(100% - 32px)); margin-left: auto; margin-right: auto;
}
.vd-wizard {
  padding: 24px; border-radius: 20px; background: #fff;
  border: 1px solid var(--vd-line); box-shadow: var(--vd-shadow);
}
.vd-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.vd-steps li {
  padding: 6px 10px; border-radius: 999px; border: 1px solid var(--vd-line);
  color: var(--vd-ink-soft); font-size: 0.75rem; font-weight: 700;
}
.vd-steps li.is-active { color: #fff; background: var(--vd-teal); border-color: var(--vd-teal); }
.vd-choice-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px;
}
.vd-choice { display: block; cursor: pointer; }
.vd-choice input { position: absolute; opacity: 0; pointer-events: none; }
.vd-choice > span {
  display: block; padding: 14px; border-radius: 14px;
  border: 1px solid var(--vd-line); background: #fbfcfe;
}
.vd-choice input:checked + span {
  border-color: rgba(255, 105, 0, 0.45); background: rgba(255, 105, 0, 0.08);
}

@keyframes vd-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .vd-split { grid-template-columns: 1fr; }
  .vd-shell-inner {
    min-height: 60px;
    width: min(100% - 24px, var(--vd-max));
    gap: 10px;
  }
  .vd-shell-logo { height: 30px; max-width: 108px; }
  .vd-shell-brand { gap: 8px; }
  .vd-shell-brand-text strong {
    font-size: 1.05rem;
    letter-spacing: -0.01em;
  }
  .vd-shell-toggle { display: inline-flex; }
  .vd-shell-menu {
    display: none; position: absolute; left: 0; right: 0; top: calc(100% + 6px);
    flex-direction: column; align-items: stretch;
    padding: 10px; background: rgba(255,255,255,0.98);
    border: 1px solid rgba(11, 21, 36, 0.08);
    border-radius: 18px; box-shadow: 0 18px 40px rgba(11, 21, 36, 0.12);
    backdrop-filter: blur(12px);
  }
  .vd-shell-menu.is-open { display: flex; }
  .vd-shell-menu a {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
  }
  .vd-shell-menu a.is-active {
    background: rgba(15, 118, 110, 0.08);
    color: #0f766e;
  }
  .vd-shell-menu a.is-active::after { display: none; }
  .vd-shell-cta {
    justify-content: center;
    margin-top: 4px;
    border-radius: 12px !important;
    padding: 12px 14px !important;
  }
  .vd-shell-auth, .vd-shell-auth__link, .vd-shell-auth__btn {
    width: 100%;
  }
  .vd-shell-auth__btn, .vd-shell-auth__link {
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
  }
}
@media (max-width: 640px) {
  .vd-simple-row, .vd-form-row { grid-template-columns: 1fr; }
  .vd-simple-home { padding: 28px 20px; }
  .vd-kv { grid-template-columns: 1fr; }
  .vd-shell-brand-text strong { font-size: 1rem; }
  .vd-shell-toggle {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
}

/* —— Premium home hero (sample-matched split) —— */
.vd-body.vd-home {
  background: #fff;
}
.vd-body.vd-home .vd-main { padding-bottom: 0; }

.vd-hero-split {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.vd-hero-split-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 28px 36px;
  align-items: center;
  min-height: min(78vh, 640px);
  padding: 28px 0 88px;
}
.vd-hero-split-copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}
.vd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e8f7ef;
  color: #0f6b4c;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.vd-hero-brandline {
  margin: 0 0 8px;
  font-family: var(--vd-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
.vd-hero-headline {
  margin: 0 0 14px;
  font-family: var(--vd-display);
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  font-weight: 700;
}
.vd-hero-lead {
  margin: 0 0 18px;
  max-width: 30rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #64748b;
  font-weight: 500;
}
.vd-hero-trust {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.vd-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 650;
}
.vd-hero-trust-ico {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #eef8f4;
  color: #ff6900;
  flex: 0 0 auto;
}
.vd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.vd-btn-arrow { padding-inline: 20px; }
.vd-btn-outline {
  background: #fff;
  color: #1a1a1a;
  border: 1.5px solid #e7e5e4;
  box-shadow: none;
}
.vd-btn-outline:hover { border-color: #ff6900; color: #ff6900; }
.vd-play {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: inline-grid;
  place-items: center;
  position: relative;
}
.vd-play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 1px;
}

.vd-hero-split-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: min(58vh, 520px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
  isolation: isolate;
}
.vd-hero-split-media .vd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  min-height: min(58vh, 520px);
  transform: scale(1.04);
  animation: vd-kenburns 18s var(--vd-ease) infinite alternate;
}
.vd-hero-script {
  position: absolute;
  right: 18px;
  bottom: 18px;
  margin: 0;
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.01em;
  opacity: 0.95;
}

.vd-svc-strip-wrap {
  width: min(1180px, calc(100% - 28px));
  margin: -64px auto 0;
  position: relative;
  z-index: 5;
}
.vd-svc-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.vd-svc-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 14px;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid #eef2f7;
  transition: background 0.2s var(--vd-ease);
}
.vd-svc-item:last-child { border-right: 0; }
.vd-svc-item:hover { background: #f8fafc; }
.vd-svc-ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.vd-svc-ico-blue { background: #e8f1ff; color: #2563eb; }
.vd-svc-ico-green { background: #e8f8ef; color: #059669; }
.vd-svc-ico-violet { background: #f1e8ff; color: #7c3aed; }
.vd-svc-ico-amber { background: #fff3e6; color: #d97706; }
.vd-svc-ico-teal { background: #fff7f0; color: #ff6900; }
.vd-svc-text { display: grid; gap: 4px; min-width: 0; }
.vd-svc-text strong {
  font-size: 0.82rem;
  line-height: 1.25;
  color: #0f172a;
  font-weight: 800;
}
.vd-svc-text small {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}

.vd-section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 0;
}
.vd-section-rule span {
  height: 1px;
  width: min(120px, 18vw);
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}
.vd-section-rule h2 {
  margin: 0;
  font-family: var(--vd-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #1a1a1a;
  font-weight: 700;
}
.vd-home-services-head { padding-top: 42px; padding-bottom: 0; }

.vd-anim { opacity: 0; transform: translateY(18px); animation: vd-rise-in 0.85s var(--vd-ease) forwards; }
.vd-anim-1 { animation-delay: 0.12s; }
.vd-anim-2 { animation-delay: 0.28s; }
.vd-anim-3 { animation-delay: 0.42s; }
.vd-anim-4 { animation-delay: 0.55s; }

.vd-home-section { padding: 48px 0 24px; }
.vd-home-head { margin-bottom: 18px; }
.vd-home-head h2 {
  margin: 0;
  font-family: var(--vd-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--vd-navy);
}
.vd-home-head p { margin: 6px 0 0; color: var(--vd-ink-soft); }

.vd-home .vd-country-tile {
  transition: transform 0.35s var(--vd-ease), box-shadow 0.35s, border-color 0.35s;
}
.vd-home .vd-country-tile:hover {
  transform: translateY(-6px) scale(1.01);
}

.vd-home-story {
  width: min(var(--vd-max), calc(100% - 28px));
  margin: 12px auto 40px;
  display: grid;
  gap: 22px;
}
.vd-story-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--vd-line);
  box-shadow: var(--vd-shadow-lg);
  min-height: 340px;
}
.vd-story-panel-flip { grid-template-columns: 0.85fr 1.15fr; }
.vd-story-panel-flip .vd-story-media { order: 2; }
.vd-story-panel-flip .vd-story-copy { order: 1; }
.vd-story-media { position: relative; overflow: hidden; min-height: 280px; }
.vd-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--vd-ease);
}
.vd-story-panel:hover .vd-story-media img { transform: scale(1.05); }
.vd-story-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 36px 32px;
  justify-items: start;
}
.vd-story-copy h2 {
  margin: 0;
  font-family: var(--vd-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--vd-navy);
  line-height: 1.15;
}
.vd-story-copy p { margin: 0; color: var(--vd-ink-soft); max-width: 28rem; }

.vd-home-cta {
  padding: 28px 0 64px;
}
.vd-home-cta-inner {
  border-radius: 28px;
  padding: 42px 32px;
  background:
    linear-gradient(135deg, rgba(255, 105, 0, 0.1), rgba(30, 58, 95, 0.06)),
    #fff;
  border: 1px solid var(--vd-line);
  box-shadow: var(--vd-shadow);
  text-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.vd-home-cta-inner h2 {
  margin: 0;
  font-family: var(--vd-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--vd-navy);
}
.vd-home-cta-inner p { margin: 0 0 8px; color: var(--vd-ink-soft); }

.vd-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--vd-ease), transform 0.7s var(--vd-ease);
  transition-delay: var(--d, 0s);
}
.vd-reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes vd-kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -0.8%, 0); }
}
@keyframes vd-rise-in {
  to { opacity: 1; transform: none; }
}
@keyframes vd-scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

@media (max-width: 1080px) {
  .vd-svc-strip { grid-template-columns: 1fr 1fr; }
  .vd-svc-item { border-bottom: 1px solid #eef2f7; }
  .vd-svc-item:nth-child(2n) { border-right: 0; }
  .vd-svc-item:last-child { border-bottom: 0; grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .vd-hero-split-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px 0 72px;
    gap: 20px;
  }
  .vd-hero-split-copy { max-width: none; }
  .vd-hero-split-media,
  .vd-hero-split-media .vd-hero-img { min-height: 280px; }
  .vd-svc-strip-wrap { margin-top: -48px; }
  .vd-story-panel,
  .vd-story-panel-flip { grid-template-columns: 1fr; }
  .vd-story-panel-flip .vd-story-media { order: 0; }
  .vd-story-panel-flip .vd-story-copy { order: 0; }
  .vd-story-media { min-height: 220px; }
}
@media (max-width: 640px) {
  .vd-svc-strip { grid-template-columns: 1fr; }
  .vd-svc-item { border-right: 0; }
  .vd-svc-item:last-child { grid-column: auto; }
  .vd-hero-trust { flex-direction: column; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .vd-hero-img,
  .vd-anim,
  .vd-reveal,
  .vd-hero-scroll span::after,
  .vd-story-media img { animation: none !important; transition: none !important; }
  .vd-anim, .vd-reveal { opacity: 1; transform: none; }
}

.vd-country-rail-rich {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.vd-country-card {
  display: grid;
  gap: 8px;
  padding: 20px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--vd-line);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--vd-shadow);
  transition: transform 0.35s var(--vd-ease), box-shadow 0.35s, border-color 0.35s;
  min-height: 168px;
  align-content: start;
}
.vd-country-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 105, 0, 0.35);
  box-shadow: var(--vd-shadow-lg);
}
.vd-country-blurb {
  color: var(--vd-ink-soft);
  font-size: 0.84rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vd-country-name { font-family: var(--vd-display); font-size: 1.2rem; font-weight: 700; color: #1a1a1a; }
.vd-country-flag { font-size: 1.5rem; }
.vd-country-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 105, 0, 0.12);
  color: var(--vd-teal);
  font-size: 0.82rem;
  font-weight: 800;
  width: fit-content;
}

/* —— V913 institutional apply / track / confirm —— */
.vd-body.vd-apply-page,
.vd-body.vd-track-page,
.vd-body.vd-confirm-page {
  background: #f1f3f5;
}

.vd-apply,
.vd-track,
.vd-confirm {
  width: min(760px, calc(100% - 28px));
  margin: 28px auto 64px;
}

.vd-apply-head,
.vd-track-head,
.vd-confirm-head {
  margin-bottom: 22px;
}
.vd-apply-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vd-teal);
}
.vd-apply-head h1,
.vd-track-head h1,
.vd-confirm-head h1 {
  margin: 0 0 8px;
  font-family: var(--vd-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vd-navy);
  line-height: 1.15;
}
.vd-apply-lead,
.vd-track-head p,
.vd-confirm-head p {
  margin: 0;
  max-width: 40rem;
  color: var(--vd-ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.vd-apply .vd-steps {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid var(--vd-line);
  padding-top: 14px;
}
.vd-apply .vd-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--vd-ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
}
.vd-apply .vd-steps li span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #e5e7eb;
  color: #374151;
  font-size: 0.72rem;
  font-weight: 700;
}
.vd-apply .vd-steps li.is-active { color: var(--vd-navy); }
.vd-apply .vd-steps li.is-active span {
  background: var(--vd-teal);
  color: #fff;
}

.vd-alert {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.vd-alert-err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.vd-alert ul { margin: 6px 0 0; padding-left: 18px; }

.vd-panel {
  margin: 0 0 12px;
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid var(--vd-line);
  border-radius: 10px;
  box-shadow: var(--vd-shadow);
}
.vd-panel-h {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--vd-line);
}
.vd-panel-h h2 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vd-navy);
  letter-spacing: -0.01em;
}
.vd-panel-h p {
  margin: 0;
  color: var(--vd-ink-soft);
  font-size: 0.88rem;
}

.vd-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}
.vd-apply .vd-field,
.vd-track .vd-field,
.vd-confirm .vd-field {
  margin: 0;
}
.vd-apply .vd-field label,
.vd-track .vd-field label,
.vd-confirm .vd-field label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4b5563;
  text-transform: none;
  letter-spacing: 0;
}
.vd-opt { color: var(--vd-ink-soft); font-weight: 500; }

.vd-apply input[type="text"],
.vd-apply input[type="email"],
.vd-apply input[type="date"],
.vd-apply select,
.vd-apply textarea,
.vd-track input[type="text"],
.vd-confirm input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: var(--vd-ink);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.vd-apply input:focus,
.vd-apply select:focus,
.vd-apply textarea:focus,
.vd-track input:focus {
  outline: none;
  border-color: rgba(10, 79, 71, 0.55);
  box-shadow: 0 0 0 3px rgba(10, 79, 71, 0.12);
}

.vd-svc-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--vd-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.vd-svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 12px 14px;
  border-bottom: 1px solid var(--vd-line);
  cursor: pointer;
  background: #fff;
}
.vd-svc-row:last-child { border-bottom: 0; }
.vd-svc-row:hover { background: #f9fafb; }
.vd-svc-row:has(input:checked) {
  background: #f3faf8;
}
.vd-svc-row input { margin: 0; width: 16px; height: 16px; accent-color: var(--vd-teal); }
.vd-svc-copy strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--vd-ink);
}
.vd-svc-fee {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--vd-teal);
  white-space: nowrap;
}
.vd-fee-bar {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f3faf8;
  border: 1px solid rgba(10, 79, 71, 0.14);
  color: var(--vd-navy);
  font-size: 0.9rem;
}

.vd-id-verify {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.vd-id-row {
  padding: 14px;
  border: 1px solid var(--vd-line);
  border-radius: 8px;
  background: #fafafa;
}
.vd-id-row.is-ok {
  background: #f3faf8;
  border-color: rgba(10, 79, 71, 0.28);
}
.vd-id-main label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4b5563;
}
.vd-id-controls,
.vd-id-otp {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}
.vd-id-otp { margin-top: 8px; }
.vd-btn-quiet,
.vd-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.vd-btn-quiet {
  border: 1px solid #d1d5db;
  background: #fff;
  color: var(--vd-navy);
}
.vd-btn-quiet:hover { border-color: #9ca3af; }
.vd-btn-solid {
  border: 1px solid var(--vd-teal);
  background: var(--vd-teal);
  color: #fff;
}
.vd-id-status {
  margin: 8px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vd-ink-soft);
}
.vd-id-row.is-ok .vd-id-status { color: var(--vd-ok); }

.vd-dyn-wrap { margin-top: 14px; }
.vd-subpanel {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--vd-line);
}
.vd-subpanel h3 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vd-navy);
}

.vd-doc-grid { display: grid; gap: 8px; }
.vd-upload {
  padding: 12px 14px;
  border: 1px solid var(--vd-line);
  border-radius: 8px;
  background: #fafafa;
}
.vd-upload-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.vd-upload-meta strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vd-ink);
}
.vd-upload-meta .req,
.vd-upload-meta .opt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vd-upload-meta .req { color: #b45309; }
.vd-upload-meta .opt { color: var(--vd-ink-soft); }
.vd-upload input[type="file"] {
  width: 100%;
  font-size: 0.86rem;
  color: var(--vd-ink-soft);
}

.vd-confirm-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 0;
  font-size: 0.9rem;
  color: var(--vd-ink);
  font-weight: 500;
  line-height: 1.45;
}
.vd-confirm-check input { margin-top: 3px; accent-color: var(--vd-teal); }

.vd-submit {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 13px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--vd-teal);
  color: #fff;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
}
.vd-submit:hover { background: var(--vd-teal-bright); }

.vd-track-form,
.vd-confirm .vd-panel { margin-top: 4px; }
.vd-track-form { max-width: 420px; }
.vd-track-form .vd-field { margin-bottom: 12px; }
.vd-track-foot {
  margin: 18px 0 0;
  color: var(--vd-ink-soft);
  font-size: 0.9rem;
}
.vd-track-foot a { color: var(--vd-teal); font-weight: 600; text-decoration: none; }
.vd-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.vd-confirm .vd-kv { margin-top: 4px; }

/* Home polish */
.vd-hero-badge { display: none !important; }
.vd-hero-script { display: none !important; }
.vd-hero-trust li {
  padding: 0;
  border: 0;
  background: transparent;
  color: #4b5563;
  font-size: 0.88rem;
  font-weight: 500;
}
.vd-hero-trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vd-teal);
  flex: 0 0 auto;
}
.vd-hero-trust-ico { display: none !important; }
.vd-hero-split-media {
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}
.vd-svc-strip {
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}
.vd-svc-ico-blue,
.vd-svc-ico-green,
.vd-svc-ico-violet,
.vd-svc-ico-amber,
.vd-svc-ico-teal {
  background: #eef6f4;
  color: var(--vd-teal);
  border-radius: 8px;
}
.vd-country-card {
  border-radius: 10px;
  min-height: 150px;
}
.vd-country-card:hover { transform: translateY(-2px); }
.vd-country-cta {
  border-radius: 6px;
  background: transparent;
  border: 1px solid rgba(10, 79, 71, 0.25);
  color: var(--vd-teal);
  font-weight: 600;
  padding: 7px 10px;
}

@media (max-width: 720px) {
  .vd-grid-2,
  .vd-apply .vd-steps,
  .vd-id-controls,
  .vd-id-otp { grid-template-columns: 1fr; }
  .vd-apply, .vd-track, .vd-confirm { margin-top: 18px; }
  .vd-panel { padding: 16px; }
}
