/* ═══════════════════════════════════════════════════════════
   visa-assistance.css — Study & Go Global
   Design tokens inherited from ../styles.css
   Palette: --primary #2563eb | --bg #f1f5f9 | --text #0f172a
═══════════════════════════════════════════════════════════ */

html { scrollbar-gutter: stable; }

/* ── Page fade-in ── */
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
body { animation: page-fade-in 0.38s ease both; }

/* ──────────────────────────────────────────────────────────
   PAGE WRAPPER  (matches .dashboard-content on index)
────────────────────────────────────────────────────────── */
.visa-page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ──────────────────────────────────────────────────────────
   HERO CARD  (matches index.html .hero-card)
────────────────────────────────────────────────────────── */
.visa-hero {
  background: linear-gradient(135deg, rgba(49,46,129,.84) 0%, rgba(30,58,138,.80) 45%, rgba(15,23,42,.92) 100%),
              url("../assets/photo%201.avif") center / cover no-repeat;
  border-radius: 24px;
  padding: 52px 52px 56px;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 4px 24px rgba(30,58,138,.25);
}

/* Animated background blobs */
.visa-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .18;
  animation: visa-blob-drift 10s ease-in-out infinite alternate;
  pointer-events: none;
}
.visa-blob-1 {
  width: 480px; height: 480px;
  background: #6366f1;
  top: -160px; right: -120px;
  animation-delay: 0s;
}
.visa-blob-2 {
  width: 340px; height: 340px;
  background: #3b82f6;
  bottom: -100px; left: -80px;
  animation-delay: -5s;
}
@keyframes visa-blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.visa-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.visa-hero-text { flex: 1; min-width: 0; }

/* Service badge */
.visa-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,255,255,.92);
  margin-bottom: 18px;
}
.visa-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52,211,153,.25);
  flex-shrink: 0;
}

.visa-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.visa-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.visa-breadcrumb a:hover { color: #fff; }
.visa-breadcrumb span:last-child { color: rgba(255,255,255,.9); font-weight: 500; }

.visa-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.visa-hero-sub {
  margin: 0 0 28px;
  font-size: clamp(14px, 1.1vw, 17px);
  color: rgba(255,255,255,.78);
  max-width: 500px;
  line-height: 1.65;
}

.visa-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.visa-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary-dark, #1d4ed8);
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.visa-hero-btn-primary:hover { background: var(--primary-50, #eff6ff); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(0,0,0,.2); }

.visa-hero-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background .15s, border-color .15s;
}
.visa-hero-btn-glass:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }

/* Hero illustration */
.visa-hero-art {
  flex-shrink: 0;
  width: 240px; height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vha-passport {
  width: 180px; height: 130px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

.vha-pp-mrz { margin-bottom: 8px; }
.vha-mrz-line { height: 7px; background: rgba(255,255,255,.28); border-radius: 4px; margin-bottom: 5px; }
.vha-mrz-line--short { width: 70%; }

.vha-pp-chip {
  width: 30px; height: 20px;
  background: rgba(255,255,255,.35);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.45);
  position: absolute;
  top: 14px; left: 14px;
}

.vha-stamp {
  position: absolute;
  top: -14px; right: -14px;
  width: 46px; height: 46px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  animation: stamp-float 4s ease-in-out infinite alternate;
}
.vha-stamp--sm {
  width: 34px; height: 34px;
  font-size: 15px;
  top: auto; bottom: -12px; right: 18px;
  animation-delay: -2s;
}
@keyframes stamp-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-6px); }
}

.vha-globe {
  position: absolute;
  bottom: 8px; left: -20px;
  font-size: 48px;
  opacity: .2;
}

.vha-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.vha-dot--1 { width: 56px; height: 56px; top: 0; right: 0; }
.vha-dot--2 { width: 28px; height: 28px; bottom: 18px; left: 0; }

/* ──────────────────────────────────────────────────────────
   HOW IT WORKS — 3 CARDS
────────────────────────────────────────────────────────── */
.visa-steps-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  background: transparent;
  padding: 0;
  border: none;
}

.visa-steps-inner {
  display: contents; /* let children participate in parent grid */
}

.visa-step {
  background: var(--surface, #fff);
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 20px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  transition: box-shadow .22s, transform .22s;
}
.visa-step:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-3px); }

.vs-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary, #2563eb);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(37,99,235,.35);
}

.vs-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px; /* align with center of card */
  flex: 0 0 36px;
  color: var(--border-slate, #e2e8f0);
}
.vs-connector::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  border-top: 2px dashed #cbd5e1;
}

.vs-body { display: flex; flex-direction: column; align-items: center; }

.vs-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-50, #eff6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.visa-step h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text, #0f172a);
}

.visa-step p {
  margin: 0;
  font-size: 12px;
  color: var(--muted, #64748b);
  line-height: 1.55;
  max-width: 180px;
}

/* ──────────────────────────────────────────────────────────
   FEE NOTICE BAR
────────────────────────────────────────────────────────── */
.visa-fee-bar {
  background: var(--primary-50, #eff6ff);
  border: 1px solid var(--primary-200, #bfdbfe);
  border-left: 4px solid var(--primary, #2563eb);
  border-radius: 16px;
  padding: 0;
}

.visa-fee-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  flex-wrap: wrap;
}

.vfb-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.visa-fee-bar-inner p {
  flex: 1;
  margin: 0;
  font-size: 13.5px;
  color: var(--primary-dark, #1d4ed8);
  line-height: 1.5;
}

.vfb-btn {
  flex-shrink: 0;
  height: 36px;
  padding: 0 18px;
  border: 1.5px solid var(--primary, #2563eb);
  border-radius: 8px;
  background: transparent;
  color: var(--primary, #2563eb);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.vfb-btn:hover { background: var(--primary, #2563eb); color: #fff; }

/* ──────────────────────────────────────────────────────────
   MAIN LAYOUT  (form + sidebar)
────────────────────────────────────────────────────────── */
.visa-main-section {
  background: transparent;
  padding: 0;
}

.visa-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

/* ──────────────────────────────────────────────────────────
   APPLICATION FORM CARD
────────────────────────────────────────────────────────── */
.visa-form-col { min-width: 0; }

.visa-card {
  background: var(--surface, #fff);
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 24px;
  padding: 36px 36px 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.visa-form-header {
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-slate, #e2e8f0);
}

.visa-form-header h2 {
  margin: 0 0 6px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--text, #0f172a);
  letter-spacing: -.02em;
}

.visa-form-header p {
  margin: 0;
  font-size: 13px;
  color: var(--muted, #64748b);
}

.req-star { color: #ef4444; font-weight: 600; }

/* ── Progress bar ── */
.visa-progress-wrap { margin-bottom: 28px; }

.vpr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}

.vpr-label {
  font-size: 11px;
  color: var(--muted, #64748b);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .3s;
}
.vpr-label.is-complete { color: #16a34a; }

.vpr-pct {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary, #2563eb);
  letter-spacing: -.01em;
  min-width: 34px;
  text-align: right;
  transition: color .3s;
  flex-shrink: 0;
}
.vpr-pct.is-complete { color: #16a34a; }

.vpr-bar {
  height: 6px;
  background: var(--border-slate, #e2e8f0);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.vpr-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary, #2563eb), #60a5fa);
  border-radius: 999px;
  width: 0%;
  transition: width .5s cubic-bezier(.4, 0, .2, 1);
}
.vpr-fill.is-complete {
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

/* Section milestone dots */
.vpr-sections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.vpr-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: default;
}

.vpr-sec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-slate, #e2e8f0);
  border: 2px solid var(--border-slate, #e2e8f0);
  position: relative;
  transition: background .3s, border-color .3s, transform .2s;
}

/* Partial — in progress */
.vpr-sec.is-partial .vpr-sec-dot {
  border-color: var(--primary, #2563eb);
  background: var(--primary-50, #eff6ff);
}

/* Complete — fully filled */
.vpr-sec.is-complete .vpr-sec-dot {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
  transform: scale(1.15);
}
.vpr-sec.is-complete .vpr-sec-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.vpr-sec-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--subtle, #94a3b8);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color .3s;
}
.vpr-sec.is-partial .vpr-sec-name { color: var(--primary, #2563eb); }
.vpr-sec.is-complete .vpr-sec-name { color: var(--primary, #2563eb); }

/* Form sections */
.visa-section {
  margin-bottom: 0;
  padding-bottom: 0;
  opacity: 1;
  transform: none;
  transition: opacity .25s, transform .25s;
}

.visa-section.is-entering {
  opacity: 0;
  transform: translateY(8px);
}

.visa-section + .visa-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-slate, #e2e8f0);
}

.vis-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.vis-letter {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.vis-blue   { background: var(--primary-100, #dbeafe); color: var(--primary-dark, #1d4ed8); }
.vis-green  { background: #dcfce7; color: #15803d; }
.vis-yellow { background: #fef9c3; color: #a16207; }
.vis-purple { background: #ede9fe; color: #7c3aed; }

.vis-header h3 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text, #0f172a);
}

.vis-header p {
  margin: 0;
  font-size: 12px;
  color: var(--muted, #64748b);
}

/* Field grid */
.vis-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vis-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vis-field--full { grid-column: 1 / -1; }

.vis-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2, #334155);
  letter-spacing: .01em;
}

.vis-field input,
.vis-field select,
.vis-field textarea {
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 8px;
  background: var(--bg-field, #f8fafc);
  color: var(--text, #0f172a);
  font-family: inherit;
  font-size: 13.5px;
  padding: 10px 12px;
  transition: border-color .15s, box-shadow .15s, background .15s;
  outline: none;
}

.vis-field input:focus,
.vis-field select:focus,
.vis-field textarea:focus {
  border-color: var(--primary, #2563eb);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

/* ── Field-level validation error ── */
@keyframes visa-field-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-7px); }
  40%       { transform: translateX( 7px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX( 4px); }
}

.vis-field input.is-error,
.vis-field select.is-error,
.vis-field textarea.is-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14) !important;
  animation: visa-field-shake 0.36s ease;
}

.vis-phone-wrap:has(input.is-error) {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
  animation: visa-field-shake 0.36s ease;
}

.vis-radio.is-error,
.vis-toggle-opt.is-error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.04) !important;
  animation: visa-field-shake 0.36s ease;
}

.vis-upload.is-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.10) !important;
  animation: visa-field-shake 0.36s ease;
}

.vis-field textarea { resize: vertical; min-height: 88px; }

/* Radio rows */
.vis-radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vis-radio {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text, #0f172a);
  padding: 8px 14px;
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 8px;
  background: var(--bg-field, #f8fafc);
  transition: border-color .15s, background .15s;
}
.vis-radio:has(input:checked) {
  border-color: var(--primary, #2563eb);
  background: var(--primary-50, #eff6ff);
  color: var(--primary, #2563eb);
}
.vis-radio input { accent-color: var(--primary, #2563eb); }

/* Toggle options (Yes/No) */
.vis-toggle-row { display: flex; gap: 10px; }

.vis-toggle-opt {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 13px;
  padding: 9px 18px;
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 8px;
  background: var(--bg-field, #f8fafc);
  font-family: inherit;
  font-weight: 500;
  transition: border-color .15s, background .15s, color .15s;
}
.vis-toggle-opt:has(input:checked) {
  border-color: var(--primary, #2563eb);
  background: var(--primary-50, #eff6ff);
  color: var(--primary, #2563eb);
  font-weight: 600;
}
.vis-toggle-opt input { display: none; }

/* Phone field */
.vis-phone-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 8px;
  background: var(--bg-field, #f8fafc);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.vis-phone-wrap:focus-within {
  border-color: var(--primary, #2563eb);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.vis-phone-pfx {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted, #64748b);
  background: var(--bg, #f1f5f9);
  border-right: 1px solid var(--border-slate, #e2e8f0);
  white-space: nowrap;
  flex-shrink: 0;
}

.vis-phone-wrap input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
  padding: 10px 12px;
}

/* Duration row */
.vis-duration-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vis-duration-input { max-width: 80px; }
.vis-duration-unit { font-size: 13px; color: var(--muted, #64748b); font-weight: 500; }

.vis-hint { font-size: 11px; color: var(--muted, #64748b); }

/* Stepper */
.vis-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.vs-step-btn {
  width: 38px; height: 40px;
  border: none;
  background: var(--bg, #f1f5f9);
  color: var(--primary, #2563eb);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background .12s;
  font-family: inherit;
}
.vs-step-btn:hover { background: var(--border-slate, #e2e8f0); }

.vs-count {
  width: 52px; height: 40px;
  border: none;
  border-left: 1px solid var(--border-slate, #e2e8f0);
  border-right: 1px solid var(--border-slate, #e2e8f0);
  text-align: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--text, #0f172a);
  background: #fff;
  outline: none;
}

/* Upload zones */
.vis-upload {
  border: 1.5px dashed var(--border-slate, #e2e8f0);
  border-radius: 12px;
  background: var(--bg-field, #f8fafc);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.vis-upload:hover,
.vis-upload:focus-within {
  border-color: var(--primary, #2563eb);
  background: var(--primary-50, #eff6ff);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}

.vis-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.vis-upl-photo-side,
.vis-upl-scan-side {
  flex-shrink: 0;
}

.vis-pp-frame {
  width: 52px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.vis-pp-svg { width: 100%; display: block; }
.vis-pp-dim { display: block; text-align: center; font-size: 9px; color: var(--muted, #64748b); margin-top: 4px; }

.vis-passport-book {
  width: 72px; height: 52px;
  background: #1e40af;
  border-radius: 6px;
  padding: 6px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.vpb-photo-box { width: 20px; height: 28px; background: rgba(255,255,255,.35); border-radius: 3px; flex-shrink: 0; }
.vpb-lines { flex: 1; display: flex; flex-direction: column; gap: 3px; padding-top: 2px; }
.vpb-line { height: 4px; background: rgba(255,255,255,.4); border-radius: 2px; }
.vpb-line--short { width: 60%; }
.vpb-mrz { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.vpb-mrz-line { height: 3px; background: rgba(255,255,255,.25); border-radius: 1px; }

.vis-upl-info { flex: 1; min-width: 0; }
.vis-upl-title { display: block; font-size: 13px; font-weight: 700; color: var(--text, #0f172a); margin-bottom: 6px; }

.vis-upl-reqs {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vis-upl-reqs li { font-size: 11px; color: var(--muted, #64748b); display: flex; align-items: center; gap: 5px; }
.vis-req-ok { color: #16a34a; font-weight: 700; }

.vis-upl-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary, #2563eb);
}

/* Submit */
/* Validation summary banner (shown above submit on error) */
.visa-validation-error {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #b91c1c;
  margin-bottom: 16px;
}
.visa-validation-error[hidden] { display: none !important; }

.visa-form-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-slate, #e2e8f0);
}

.visa-submit-btn {
  width: 100%;
  background: var(--primary, #2563eb);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.visa-submit-btn:hover { background: var(--primary-dark, #1d4ed8); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.4); }
.visa-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.visa-submit-arrow { font-size: 18px; }

/* Inline button spinner */
.visa-btn-spinner {
  width: 20px; height: 20px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: visa-btn-spin 0.65s linear infinite;
  display: inline-block; flex-shrink: 0;
}
@keyframes visa-btn-spin { to { transform: rotate(360deg); } }

.visa-form-legal {
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--muted, #64748b);
  text-align: center;
  line-height: 1.5;
}
.visa-form-legal a { color: var(--primary, #2563eb); text-decoration: none; }
.visa-form-legal a:hover { text-decoration: underline; }

/* ──────────────────────────────────────────────────────────
   SIDEBAR
────────────────────────────────────────────────────────── */
.visa-sidebar-col { min-width: 0; }

.visa-sidebar-sticky {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visa-side-card {
  background: var(--surface, #fff);
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.visa-side-card h3 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text, #0f172a);
  letter-spacing: -.01em;
}

/* Fee card — dark */
.visa-fee-card {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border: none;
  color: #fff;
}
.visa-fee-card h3 { color: rgba(255,255,255,.8); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }

.vsc-fee-amount {
  margin-bottom: 12px;
}
.vsc-fee-value {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
}
.vsc-fee-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}

.vsc-fee-note {
  margin: 0 0 16px;
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.vsc-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.vsc-includes li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.vsc-check { color: #34d399; font-weight: 700; font-size: 14px; }

/* Payment card */
.vsc-sub {
  margin: -6px 0 14px;
  font-size: 12px;
  color: var(--muted, #64748b);
}

.vsc-pay-group { margin-bottom: 14px; }
.vsc-group-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted, #64748b);
  margin-bottom: 8px;
}

.vsc-pay-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 10px;
  background: var(--bg-field, #f8fafc);
  margin-bottom: 6px;
  transition: border-color .15s, background .15s;
}
.vsc-pay-row:hover { border-color: var(--primary-200, #bfdbfe); background: var(--primary-50, #eff6ff); }

.vsc-pay-logo {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
  overflow: hidden;
  background: var(--bg, #f1f5f9);
}
.vsc-pay-logo img { width: 100%; height: 100%; object-fit: contain; }
.vsc-mpesa   { background: #fff; border: 1px solid #e2e8f0; }
.vsc-airtel  { background: #fff; border: 1px solid #e2e8f0; }
.vsc-tigo    { background: #1e3a8a; }
.vsc-halo    { background: #fff; border: 1px solid #e2e8f0; }
.vsc-revolut { background: #fff; border: 1px solid #e2e8f0; }
.vsc-bank    { background: #fff; border: 1px solid #e2e8f0; }

.vsc-pay-info { flex: 1; min-width: 0; }
.vsc-pay-info strong { display: block; font-size: 12px; font-weight: 700; color: var(--text, #0f172a); }
.vsc-pay-info span { font-size: 10.5px; color: var(--muted, #64748b); }

.vsc-avail-badge {
  font-size: 10px;
  font-weight: 600;
  color: #15803d;
  background: #dcfce7;
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
}

.vsc-trust {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-slate, #e2e8f0);
}
.vsc-trust span { font-size: 16px; flex-shrink: 0; }
.vsc-trust p { margin: 0; font-size: 11px; color: var(--muted, #64748b); line-height: 1.4; }

/* Help card */
.visa-help-card { background: #f0fdf4; border-color: #bbf7d0; }
.visa-help-card h3 { color: #14532d; }
.visa-help-card p { margin: -6px 0 14px; font-size: 12px; color: #166534; line-height: 1.5; }

.visa-wa-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  padding: 11px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background .15s, transform .15s;
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
}
.visa-wa-btn:hover { background: #1da851; transform: translateY(-1px); }

.visa-email-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #166534;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  word-break: break-all;
}
.visa-email-link:hover { text-decoration: underline; }

/* ──────────────────────────────────────────────────────────
   PAYMENT MODAL
────────────────────────────────────────────────────────── */
.pm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pm-overlay[hidden] { display: none; }

.pm-modal {
  background: var(--surface, #fff);
  border-radius: 24px;
  padding: 36px 32px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  animation: modal-in .25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.pm-modal--fee { max-width: 640px; }

.pm-close-btn {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-slate, #e2e8f0);
  background: var(--bg, #f1f5f9);
  color: var(--muted, #64748b);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.pm-close-btn:hover { background: var(--border-slate, #e2e8f0); }

.pm-step-header { text-align: center; margin-bottom: 24px; }

.pm-step-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-50, #eff6ff);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.pm-step-icon--method { background: var(--bg-field, #f8fafc); }

.pm-step-header h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text, #0f172a);
  letter-spacing: -.02em;
}
.pm-step-header p { margin: 0; font-size: 13px; color: var(--muted, #64748b); line-height: 1.5; }

.pm-summary-box {
  background: var(--bg-field, #f8fafc);
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 22px;
}
.pm-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 13px;
}
.pm-sum-row span { color: var(--muted, #64748b); }
.pm-sum-row strong { color: var(--text, #0f172a); font-weight: 600; }
.pm-sum-total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border-slate, #e2e8f0);
  font-size: 14px;
}
.pm-sum-total strong { color: var(--primary, #2563eb); font-size: 16px; font-weight: 800; }

.pm-choose-title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text, #0f172a);
}
.pm-method-sub {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted, #64748b);
  margin: 0 0 8px;
}
.pm-method-sub--intl { margin-top: 12px; }

.pm-method-list { display: flex; flex-direction: column; gap: 6px; }

.pm-method-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 12px;
  background: var(--bg-field, #f8fafc);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.pm-method-row:hover {
  border-color: var(--primary, #2563eb);
  background: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.08);
}

.pm-mr-brand {
  flex-shrink: 0;
  width: 48px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  gap: 1px;
  overflow: hidden;
  background: var(--bg, #f1f5f9);
}
.pm-mr-brand img { width: 100%; height: 100%; object-fit: contain; }
.pmr-mpesa   { background: #fff; border: 1px solid #e2e8f0; }
.pmr-airtel  { background: #fff; border: 1px solid #e2e8f0; }
.pmr-tigo    { background: #1e3a8a; }
.pmr-halo    { background: #fff; border: 1px solid #e2e8f0; }
.pmr-revolut { background: #fff; border: 1px solid #e2e8f0; }
.pmr-bank    { background: #fff; border: 1px solid #e2e8f0; }

.pmr-m    { color: #fff; font-size: 13px; font-weight: 900; }
.pmr-pesa { color: rgba(255,255,255,.8); font-size: 8px; }
.pmr-name { color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .02em; }
.pmr-sub  { color: rgba(255,255,255,.7); font-size: 7px; font-weight: 600; }
.pmr-rev-r { color: #fff; font-size: 14px; font-weight: 900; }
.pmr-bank-ico { font-size: 16px; }

.pm-mr-details { flex: 1; min-width: 0; }
.pm-mr-details strong { display: block; font-size: 13px; font-weight: 700; color: var(--text, #0f172a); }
.pm-mr-details span   { font-size: 11px; color: var(--muted, #64748b); }

.pm-mr-tag {
  font-size: 10px;
  font-weight: 600;
  background: #fef9c3;
  color: #a16207;
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
}
.pm-mr-chevron { font-size: 18px; color: var(--muted, #64748b); }

/* Mobile money phone step */
.pm-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: var(--muted, #64748b);
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
}
.pm-back-btn:hover { color: var(--primary, #2563eb); }

.pm-phone-section { margin-bottom: 20px; }
.pm-phone-section label { display: block; font-size: 12px; font-weight: 600; color: var(--text, #0f172a); margin-bottom: 6px; }

.pm-phone-row {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.pm-phone-row:focus-within {
  border-color: var(--primary, #2563eb);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.pm-phone-pfx {
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted, #64748b);
  background: var(--bg, #f1f5f9);
  border-right: 1px solid var(--border-slate, #e2e8f0);
  white-space: nowrap;
}
.pm-phone-row input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}
.pm-phone-note { margin: 8px 0 0; font-size: 12px; color: var(--muted, #64748b); line-height: 1.4; }

.pm-pay-btn {
  width: 100%;
  background: var(--primary, #2563eb);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.pm-pay-btn:hover { background: var(--primary-dark, #1d4ed8); transform: translateY(-1px); }

/* Bank details step */
.pm-bank-details {
  background: var(--bg-field, #f8fafc);
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pm-bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
}
.pm-bank-row span { color: var(--muted, #64748b); }
.pm-bank-row strong { color: var(--text, #0f172a); font-weight: 600; }
.pm-bank-note { margin: 8px 0 0; font-size: 11px; color: var(--muted, #64748b); }

.pm-copy-btn {
  height: 26px;
  padding: 0 10px;
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary, #2563eb);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .12s;
}
.pm-copy-btn:hover { background: var(--primary-50, #eff6ff); }

.pm-wa-confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  padding: 13px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.pm-wa-confirm-btn:hover { background: #1da851; }

/* Processing step */
.pm-loading-wrap { text-align: center; padding: 20px 0; }

.pm-spinner {
  width: 52px; height: 52px;
  border: 4px solid var(--border-slate, #e2e8f0);
  border-top-color: var(--primary, #2563eb);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pm-loading-wrap h2 { margin: 0 0 8px; font-size: 18px; font-weight: 800; color: var(--text, #0f172a); }
.pm-loading-wrap p  { margin: 0 0 20px; font-size: 13px; color: var(--muted, #64748b); line-height: 1.5; }

.pm-countdown-wrap { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; color: var(--muted, #64748b); margin-bottom: 12px; }
.pm-countdown { font-size: 22px; font-weight: 800; color: var(--primary, #2563eb); min-width: 36px; }

.pm-progress-bar { height: 4px; background: var(--border-slate, #e2e8f0); border-radius: 999px; overflow: hidden; }
.pm-progress-fill { height: 100%; background: var(--primary, #2563eb); border-radius: 999px; transition: width 1s linear; }

/* Result steps */
.pm-result-wrap { text-align: center; padding: 10px 0; }
.pm-result-icon { font-size: 52px; margin-bottom: 16px; display: block; }
.pm-result-wrap h2 { margin: 0 0 8px; font-size: 20px; font-weight: 800; color: var(--text, #0f172a); }
.pm-result-wrap p  { margin: 0 0 20px; font-size: 13px; color: var(--muted, #64748b); line-height: 1.5; }

.pm-receipt {
  background: var(--bg-field, #f8fafc);
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pm-receipt-row { display: flex; justify-content: space-between; font-size: 13px; }
.pm-receipt-row span  { color: var(--muted, #64748b); }
.pm-receipt-row strong { color: var(--text, #0f172a); font-weight: 600; }
.pm-receipt-note { font-size: 12px; color: var(--muted, #64748b); line-height: 1.4; }

.pm-done-btn {
  width: 100%;
  background: var(--primary, #2563eb);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 12px;
  transition: background .15s;
}
.pm-done-btn:hover { background: var(--primary-dark, #1d4ed8); }

.pm-retry-btn {
  width: 100%;
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background .15s;
}
.pm-retry-btn:hover { background: #dc2626; }

.pm-wa-help-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--primary, #2563eb);
  text-decoration: none;
  font-weight: 500;
}
.pm-wa-help-link:hover { text-decoration: underline; }

/* Fee schedule modal */
.fee-modal-sub { margin: -4px 0 18px; font-size: 13px; color: var(--muted, #64748b); line-height: 1.5; }

.fee-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-slate, #e2e8f0);
  margin-bottom: 14px;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.fee-table th {
  background: var(--bg, #f1f5f9);
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted, #64748b);
  white-space: nowrap;
}
.fee-table td {
  padding: 10px 14px;
  border-top: 1px solid var(--border-slate, #e2e8f0);
  color: var(--text, #0f172a);
}
.fee-table tbody tr:hover { background: var(--bg-field, #f8fafc); }

.fee-modal-note { font-size: 11px; color: var(--muted, #64748b); line-height: 1.4; }

/* ──────────────────────────────────────────────────────────
   WHY CHOOSE US
────────────────────────────────────────────────────────── */
.visa-why-section { padding: 0; }

.visa-why-inner {
  background: var(--surface, #fff);
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 24px;
  padding: 40px 40px 36px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  text-align: center;
}

.visa-why-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-50, #eff6ff);
  color: var(--primary, #2563eb);
  border: 1px solid var(--primary-200, #bfdbfe);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.visa-why-inner h2 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  color: var(--text, #0f172a);
  letter-spacing: -.02em;
}

.visa-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.vw-card {
  background: var(--bg-field, #f8fafc);
  border: 1px solid var(--border-slate, #e2e8f0);
  border-radius: 20px;
  padding: 28px 22px 24px;
  text-align: left;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.vw-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-3px);
  border-color: var(--primary-200, #bfdbfe);
  background: var(--surface, #fff);
}

.vw-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.vw-blue   { background: var(--primary-100, #dbeafe); }
.vw-green  { background: #dcfce7; }
.vw-yellow { background: #fef9c3; }

.vw-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text, #0f172a);
}
.vw-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted, #64748b);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .visa-layout { grid-template-columns: 1fr 320px; }
}

@media (max-width: 1050px) {
  .visa-page-wrap { padding: 16px 16px 40px; gap: 20px; }
  .visa-hero { padding: 36px 28px 40px; border-radius: 20px; }
  .visa-hero-art { display: none; }
  .visa-layout { grid-template-columns: 1fr; }
  .visa-sidebar-sticky { position: static; }
  .visa-steps-strip { grid-template-columns: 1fr; }
  .visa-steps-inner { display: flex; flex-direction: column; gap: 12px; }
  .vs-connector { display: none; }
  .visa-why-grid { grid-template-columns: 1fr; }
  .visa-why-inner { padding: 28px 20px; }
}

@media (max-width: 640px) {
  .visa-hero { padding: 28px 20px 32px; border-radius: 16px; }
  .visa-hero h1 { font-size: 26px; }
  .visa-hero-actions { flex-direction: column; }
  .visa-hero-btn-primary, .visa-hero-btn-glass { width: 100%; justify-content: center; }
  .visa-card { padding: 24px 18px; border-radius: 18px; }
  .vis-fields { grid-template-columns: 1fr; }
  .vis-field--full { grid-column: 1; }
  .pm-modal { padding: 28px 20px; border-radius: 20px; }
  .visa-why-inner { padding: 24px 16px; }
  .visa-why-grid { gap: 12px; }
}
