/* VisaBolt — shared design system */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Lora:wght@400;500;600;700&display=swap');

:root {
  /* Brand colours */
  --primary:   #1d5fc4;
  --primary-d: #1448a0;
  --primary-l: #e8f0fc;
  --accent:    #f59e0b;
  --accent-d:  #d97706;
  --green:     #059669;
  --green-l:   #ecfdf5;
  --red:       #dc2626;
  --red-l:     #fef2f2;

  /* Neutrals */
  --bg:     #f8f9fc;
  --paper:  #ffffff;
  --border: #e5e8ef;
  --ink:    #111827;
  --ink2:   #4b5563;
  --ink3:   #9ca3af;

  /* Spacing & shape */
  --r:   10px;
  --rl:  16px;
  --rxl: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ── Site header ── */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px; height: 62px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.brand-icon {
  width: 36px; height: 36px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center;
}
.brand-icon svg { width: 20px; height: 20px; fill: white; }
.brand-name {
  font-family: 'Lora', serif;
  font-weight: 700; font-size: 18px; color: var(--ink);
}
.brand-name span { color: var(--primary); }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 6px 13px; border-radius: var(--r);
  font-size: 13px; font-weight: 500;
  color: var(--ink2); text-decoration: none;
  transition: all .15s;
}
.main-nav a:hover { background: var(--bg); color: var(--ink); }
.main-nav a.active {
  background: var(--primary-l); color: var(--primary); font-weight: 600;
}
.nav-cta {
  background: var(--primary); color: white !important;
  border-radius: var(--r); padding: 7px 16px !important;
  font-weight: 600 !important; font-size: 13px !important;
}
.nav-cta:hover { background: var(--primary-d) !important; }
@media (max-width: 700px) {
  .main-nav .hide-mob { display: none; }
}

/* ── Page hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1448a0 100%);
  padding: 52px 20px 44px; text-align: center;
}
.page-hero-inner { max-width: 680px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px; padding: 4px 14px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 700; color: white; line-height: 1.15; margin-bottom: 12px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p {
  font-size: 16px; color: rgba(255,255,255,.75);
  max-width: 520px; margin: 0 auto;
}

/* ── AdSense slots ── */
.ad-slot {
  max-width: 1200px; margin: 16px auto; padding: 0 20px;
}
.ad-slot-inner {
  background: var(--paper); border: 1px dashed var(--border);
  border-radius: var(--r); min-height: 90px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink3); font-size: 12px;
}

/* ── Page layout ── */
.page-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 20px 80px;
  display: grid; grid-template-columns: 1fr 320px; gap: 24px;
  align-items: start;
}
@media (max-width: 860px) {
  .page-wrap { grid-template-columns: 1fr; }
  .page-sidebar { order: -1; }
}

/* ── Cards ── */
.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  box-shadow: var(--shadow);
  padding: 24px;
}
.card + .card { margin-top: 18px; }
.card-title { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.card-sub { font-size: 13px; color: var(--ink2); margin-bottom: 20px; }

/* ── Form elements ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 5px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px; font-weight: 600;
  color: var(--ink2); text-transform: uppercase; letter-spacing: .5px;
}
.field input, .field select, .field textarea {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r); color: var(--ink);
  font-size: 14px; padding: 9px 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; transition: border-color .15s; -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary); background: white;
}
.field textarea { resize: vertical; min-height: 72px; }
.field select option { background: white; }
.input-wrap { position: relative; }
.input-wrap .prefix {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  font-size: 13px; font-weight: 600; color: var(--ink3); pointer-events: none;
}
.input-wrap input { padding-left: 44px; }
.form-divider { grid-column: 1 / -1; height: 1px; background: var(--border); margin: 4px 0; }
.form-section-label {
  grid-column: 1 / -1;
  font-size: 11px; font-weight: 700; color: var(--ink2);
  text-transform: uppercase; letter-spacing: .6px; margin-top: 4px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; padding: 11px 22px; border-radius: var(--r);
  font-size: 14px; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; border: none; transition: all .15s; text-decoration: none;
}
.btn-primary { background: var(--primary); color: white; width: 100%; padding: 13px; }
.btn-primary:hover { background: var(--primary-d); }
.btn-secondary {
  background: var(--bg); color: var(--ink2);
  border: 1.5px solid var(--border); width: 100%;
}
.btn-secondary:hover { background: var(--border); }
.btn-sm { padding: 7px 14px; font-size: 12px; }

/* ── Result card ── */
.result-card {
  background: white; border: 1.5px solid var(--primary);
  border-radius: var(--rl); padding: 24px;
  margin-top: 18px; display: none;
  box-shadow: 0 4px 20px rgba(29,95,196,.1);
}
.result-card.show { display: block; }
.result-top {
  text-align: center; padding-bottom: 20px;
  border-bottom: 1px solid var(--border); margin-bottom: 18px;
}
.result-label {
  font-size: 11px; font-weight: 600; color: var(--ink2);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px;
}
.result-amount {
  font-family: 'Lora', serif;
  font-size: 52px; font-weight: 700;
  color: var(--primary); line-height: 1;
}
.result-currency { font-size: 14px; color: var(--ink2); margin-top: 4px; }
.result-chips {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px;
}
@media (max-width: 400px) { .result-chips { grid-template-columns: 1fr 1fr; } }
.chip {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 11px;
}
.chip-label { font-size: 10px; font-weight: 600; color: var(--ink3); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 3px; }
.chip-value { font-size: 14px; font-weight: 700; color: var(--ink); }
.breakdown {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.breakdown-head {
  padding: 10px 14px; background: var(--primary-l);
  font-size: 11px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: .5px;
}
.breakdown-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 14px; border-top: 1px solid var(--border);
  font-size: 13px;
}
.breakdown-row span:first-child { color: var(--ink2); }
.breakdown-row span:last-child { font-weight: 600; }
.breakdown-row.total {
  background: var(--primary-l); font-weight: 700;
}
.breakdown-row.total span:last-child { color: var(--primary); font-size: 15px; }
.result-note {
  margin-top: 14px; padding: 11px 14px;
  background: var(--green-l); border: 1px solid #a7f3d0;
  border-radius: var(--r); font-size: 12px; color: var(--green); line-height: 1.6;
}

/* ── Country / option tabs ── */
.tab-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tab-btn {
  padding: 6px 14px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--paper);
  font-size: 12px; font-weight: 500; cursor: pointer;
  transition: all .15s; color: var(--ink2);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tab-btn:hover { border-color: var(--primary); color: var(--ink); }
.tab-btn.active {
  background: var(--primary); border-color: var(--primary);
  color: white; font-weight: 600;
}

/* ── Sidebar ── */
.page-sidebar { display: flex; flex-direction: column; gap: 16px; }
.side-card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--rl); box-shadow: var(--shadow); padding: 18px;
}
.side-card h3 {
  font-size: 13px; font-weight: 700; margin-bottom: 12px;
  color: var(--ink);
}
.side-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0; border-bottom: 1px solid var(--border);
  font-size: 12px; color: var(--ink2);
}
.side-row:last-child { border-bottom: none; }
.side-row .fl { font-size: 15px; flex-shrink: 0; }
.side-row .name { flex: 1; color: var(--ink); font-weight: 500; }
.side-row .count { color: var(--ink3); font-size: 11px; }
.tip-row {
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 12px; color: var(--ink2); line-height: 1.6;
}
.tip-row:last-child { border-bottom: none; }
.tip-row strong { color: var(--ink); display: block; margin-bottom: 2px; font-size: 12px; }

/* ── Footer ── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.5);
  padding: 36px 20px; text-align: center; font-size: 12px;
}
.footer-links {
  display: flex; justify-content: center; gap: 20px;
  margin-bottom: 12px; flex-wrap: wrap;
}
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-brand {
  font-family: 'Lora', serif; font-size: 16px;
  font-weight: 700; color: white; margin-bottom: 8px;
}
.footer-brand span { color: var(--accent); }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
}
.badge-green { background: var(--green-l); color: var(--green); }
.badge-blue { background: var(--primary-l); color: var(--primary); }
.badge-amber { background: #fffbeb; color: var(--accent-d); }
.badge-red { background: var(--red-l); color: var(--red); }
.badge-gray { background: var(--bg); color: var(--ink2); border: 1px solid var(--border); }

/* ── Info boxes ── */
.info-box {
  padding: 12px 14px; border-radius: var(--r);
  font-size: 13px; line-height: 1.6; margin-bottom: 16px;
}
.info-box.blue { background: var(--primary-l); border: 1px solid #bfdbfe; color: #1e40af; }
.info-box.amber { background: #fffbeb; border: 1px solid #fde68a; color: #92600a; }
.info-box.green { background: var(--green-l); border: 1px solid #a7f3d0; color: #065f46; }

/* ── Utility ── */
.mt-4 { margin-top: 16px; }
.text-muted { color: var(--ink2); }
a { color: var(--primary); }
code {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 5px; padding: 1px 6px;
  font-size: 12px; color: var(--primary);
}

/* ── Spinner ── */
.spinner {
  width: 30px; height: 30px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FAQ ── */
.faq-item { padding: 11px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px; user-select: none; color: var(--ink);
}
.faq-q .icon { color: var(--primary); font-size: 16px; flex-shrink: 0; }
.faq-a {
  font-size: 12px; color: var(--ink2); margin-top: 8px;
  line-height: 1.7; display: none;
}
.faq-a.open { display: block; }

/* ── Consent banner ── */
.consent-bar {
  background: var(--ink); border-top: 3px solid var(--primary);
  padding: 12px 20px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.consent-bar p {
  flex: 1; font-size: 12px; color: rgba(255,255,255,.7);
  line-height: 1.5; min-width: 200px;
}
.consent-bar a { color: var(--accent); }
.consent-btns { display: flex; gap: 8px; }
.consent-btn {
  padding: 6px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.consent-btn.reject {
  border: 1px solid rgba(255,255,255,.25);
  background: transparent; color: rgba(255,255,255,.7);
}
.consent-btn.accept {
  border: none; background: var(--primary); color: white;
}

/* ── Legal Disclaimer ── */
.legal-disclaimer {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 20px;
}
.legal-disclaimer-inner {
  background: #f8f9fc;
  border: 1px solid #e5e8ef;
  border-left: 4px solid #9ca3af;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.legal-disclaimer-inner p {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}
.legal-disclaimer-inner strong {
  color: #374151;
}

/* ── Lead Capture Card ── */
.lead-card {
  background: linear-gradient(135deg, #0b1829 0%, #1a4fcc 100%);
  border-radius: var(--rl);
  padding: 28px 28px 24px;
  margin-top: 20px;
  display: none;
  color: white;
}
.lead-card.show { display: block; }
.lead-card .lead-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 8px;
}
.lead-card h3 {
  font-family: 'Lora', serif;
  font-size: 20px; font-weight: 700;
  color: white; margin-bottom: 6px; line-height: 1.25;
}
.lead-card p {
  font-size: 13px; color: rgba(255,255,255,.7);
  margin-bottom: 20px; line-height: 1.6;
}
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 560px) { .lead-form { grid-template-columns: 1fr; } }
.lead-form input, .lead-form select {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--r); color: white;
  font-size: 13px; padding: 10px 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; transition: border-color .15s;
  -webkit-appearance: none;
}
.lead-form input::placeholder { color: rgba(255,255,255,.4); }
.lead-form input:focus, .lead-form select:focus {
  border-color: rgba(255,255,255,.6);
}
.lead-form select option { background: #0b1829; color: white; }
.lead-form .lead-full { grid-column: 1 / -1; }
.lead-submit {
  grid-column: 1 / -1;
  background: #f59e0b; color: #0b1829;
  border: none; border-radius: var(--r);
  padding: 12px; font-size: 14px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; transition: background .15s; width: 100%;
}
.lead-submit:hover { background: #d97706; }
.lead-success {
  text-align: center; padding: 16px 0 4px;
  display: none;
}
.lead-success .lead-success-icon { font-size: 32px; margin-bottom: 8px; }
.lead-success p { color: rgba(255,255,255,.85); font-size: 14px; margin: 0; }
