/* ═══════════════════════════════════════════════════════
   MIGRION™  —  Brand-exact stylesheet  v11
   Brand colors from palette:
     Gold   : #C9A227
     Navy   : #1B2E6B  (dark navy blue)
     Teal   : #1A8C8C
     Light  : #F0F0F0
   ═══════════════════════════════════════════════════════ */

:root {
  /* ── Brand palette (exact from color sheet) ── */
  --gold       : #C9A227;
  --gold-light : #D9B54A;
  --gold-dark  : #A8841A;
  --navy       : #1B2E6B;
  --navy-dark  : #101d45;
  --navy-deeper: #0a1230;
  --teal       : #1A8C8C;
  --teal-light : #22AAAA;
  --light-grey : #F0F0F0;

  /* ── Page deep background (screenshot: very dark navy) ── */
  --bg-deep    : #060e20;
  --bg-panel   : rgba(11,22,50,0.85);
  --bg-card    : rgba(255,255,255,0.06);
  --bg-card-hover: rgba(255,255,255,0.10);

  /* ── Text ── */
  --text-white : #ffffff;
  --text-muted : rgba(255,255,255,0.62);
  --text-dim   : rgba(255,255,255,0.40);

  /* ── Borders ── */
  --border     : rgba(255,255,255,0.13);
  --border-gold: rgba(201,162,39,0.45);
  --border-teal: rgba(26,140,140,0.45);

  /* ── Accents ── */
  --green-check: #4fc97a;
  --red-cross  : #e85555;

  /* ── Fonts ── */
  --font-head  : 'Montserrat', sans-serif;
  --font-body  : 'Open Sans', sans-serif;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: var(--font-head); cursor: pointer; border: none; background: none; }
img { display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ══════════════════════════════════════════════════════
   NAV — matches screenshot exactly:
   logo left | About / How It Works / Countries / Login | flags | hamburger | settings
   ══════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6, 14, 32, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 62px;
  gap: 0;
}

/* Logo block */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  margin-right: 32px;
  cursor: pointer;
}
.nav-brand-img {
  height: 38px;
  width: auto;
  /* logo_full.png has white bg — show as-is on dark via mix-blend-mode */
  mix-blend-mode: screen;
  filter: brightness(1.05);
}
/* Fallback text brand if image fails */
.nav-brand-fallback {
  display: none;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: var(--text-white);
}
.nav-brand-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 10.5px;
  color: var(--gold);
  margin-top: 1px;
}

/* Menu links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  transition: color 0.18s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-white); }

/* Right controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-flag {
  font-size: 17px;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.15s, transform 0.15s;
  line-height: 1;
  padding: 2px;
  border-radius: 3px;
}
.nav-flag:hover, .nav-flag.active { opacity: 1; transform: scale(1.15); }

.nav-lang-btn {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 7px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.nav-lang-btn:hover, .nav-lang-btn.active {
  color: var(--text-white);
  border-color: rgba(255,255,255,0.4);
}

.nav-icon-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.nav-icon-btn:hover { background: var(--bg-card); color: #fff; }

.btn-nav-login {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 16px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn-nav-login:hover {
  background: var(--bg-card);
  border-color: rgba(255,255,255,0.35);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: background 0.15s;
}
.nav-hamburger:hover span { background: #fff; }

/* Mobile drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(6,14,32,0.98);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 13px 28px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
}
.nav-mobile a:hover { color: #fff; background: var(--bg-card); }


/* ══════════════════════════════════════════════════════
   HERO — full dark-navy world-map, centered text
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* World-map background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26,46,107,0.55) 0%, transparent 70%),
    linear-gradient(180deg, rgba(6,14,32,0.30) 0%, rgba(6,14,32,0.70) 80%, rgba(6,14,32,0.95) 100%);
}
/* Subtle teal glow from bottom-left (like screenshot) */
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 15% 85%, rgba(26,140,140,0.12) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px 48px;
  max-width: 720px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1px;
  color: var(--text-white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  margin-bottom: 18px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

/* Primary CTA — solid navy-blue with gold border-glow from screenshot */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  background: var(--navy);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 8px;
  padding: 13px 26px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(201,162,39,0);
  text-decoration: none;
}
.btn-primary:hover {
  background: #223680;
  border-color: rgba(201,162,39,0.7);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(27,46,107,0.5);
}

/* Ghost CTA — transparent, white border */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  padding: 13px 26px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

.hero-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.15s;
}
.hero-video-link:hover { color: #fff; }
.play-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding-left: 2px;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}
.hero-video-link:hover .play-btn {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}


/* ══════════════════════════════════════════════════════
   HOT DESTINATIONS & JOBS — section title + 3-card carousel
   ══════════════════════════════════════════════════════ */
.hot-section {
  position: relative;
  z-index: 2;
  padding: 0 0 52px;
}

.hot-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hot-label-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--border);
}
.hot-label-text {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  white-space: nowrap;
}

.hot-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.carousel-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.70);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  user-select: none;
}
.carousel-arrow:hover { background: rgba(255,255,255,0.12); color: #fff; }

.hot-cards-viewport { flex: 1; overflow: hidden; }

.hot-cards-track {
  display: flex;
  gap: 14px;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}

.hot-card {
  flex: 0 0 calc(33.333% - 10px);
  min-width: 240px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.hot-card:hover {
  border-color: rgba(201,162,39,0.45);
  transform: translateY(-3px);
}

.hot-card-photo {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}
.hot-card-photo-placeholder {
  width: 100%;
  height: 145px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, rgba(26,140,140,0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.hot-card-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 11px 13px 28px;
  background: linear-gradient(180deg, rgba(0,0,0,0.70) 0%, transparent 100%);
}
.hot-card-country {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.hot-card-flag { font-size: 17px; }
.hot-card-job {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.88);
  margin-top: 2px;
}

.hot-card-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 13px 10px;
  background: linear-gradient(0deg, rgba(0,0,0,0.78) 0%, transparent 100%);
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}


/* ══════════════════════════════════════════════════════
   IS / IS NOT — 2-column, divider line in center
   ══════════════════════════════════════════════════════ */
.isnot-band {
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 40px 0;
  background: rgba(6,14,32,0.60);
}
.isnot-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: start;
  gap: 0;
}
.isnot-sep {
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  margin: 0 40px;
}
.isnot-col { padding: 0 24px; }
.isnot-col-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-white);
}
.isnot-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.isnot-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
}
.icon-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(79,201,122,0.12);
  border: 1.5px solid rgba(79,201,122,0.65);
  color: var(--green-check);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
}
.icon-cross {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(232,85,85,0.10);
  border: 1.5px solid rgba(232,85,85,0.55);
  color: var(--red-cross);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
}


/* ══════════════════════════════════════════════════════
   PHASES BAR — bottom strip, Phase 1 > Phase 2 > Phase 3
   ══════════════════════════════════════════════════════ */
.phases-bar {
  background: rgba(6,14,32,0.95);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.phases-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.phase-block {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 36px;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 10px;
}
.phase-block:hover { background: rgba(255,255,255,0.04); }
.phase-block + .phase-block { border-left: 1px solid var(--border); }

.phase-icon-wrap {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.phase-icon-wrap.p1 {
  background: rgba(27,46,107,0.35);
  border: 1.5px solid rgba(27,46,107,0.80);
}
.phase-icon-wrap.p2 {
  background: rgba(201,162,39,0.18);
  border: 1.5px solid rgba(201,162,39,0.55);
}
.phase-icon-wrap.p3 {
  background: rgba(26,140,140,0.18);
  border: 1.5px solid rgba(26,140,140,0.55);
}
.phase-label-row {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.phase-name-row {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
}
.phase-sub-row {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 1px;
}
.phase-chevron {
  color: rgba(255,255,255,0.30);
  font-size: 20px;
  flex-shrink: 0;
  padding: 0 4px;
}


/* ══════════════════════════════════════════════════════
   FOOTER BAR — Privacy | Confidentiality  —  logo  —  Chat
   ══════════════════════════════════════════════════════ */
.footer-bar {
  background: rgba(4, 10, 22, 0.99);
  border-top: 1px solid var(--border);
  padding: 13px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-legal {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal a { color: var(--text-dim); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-legal-sep { color: var(--text-dim); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
}
.footer-brand-icon {
  height: 22px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.7;
}

.footer-chat-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-white);
  background: rgba(27,46,107,0.6);
  border: 1px solid rgba(27,46,107,0.9);
  border-radius: 6px;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.footer-chat-btn:hover { background: rgba(27,46,107,0.9); }


/* ══════════════════════════════════════════════════════
   FLOATING CHAT FAB (bottom right)
   ══════════════════════════════════════════════════════ */
.chat-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
}
.chat-fab-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,14,32,0.95);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 18px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: background 0.18s, border-color 0.18s;
  text-decoration: none;
}
.chat-fab-inner:hover { background: rgba(27,46,107,0.5); border-color: rgba(27,46,107,0.8); }
.chat-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-check);
  box-shadow: 0 0 7px var(--green-check);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════
   MODAL — Auth
   ══════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-box {
  background: #0e1d3d;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 32px 28px;
  max-width: 480px; width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  background: none;
  transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: rgba(255,255,255,0.08); color: #fff; }

.modal-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}
.modal-tab {
  flex: 1; padding: 10px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 13.5px; font-weight: 700;
  color: var(--text-dim);
  background: none;
  border: none; border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.modal-tab.active { color: #fff; border-bottom-color: var(--gold); }

.form-group { margin-bottom: 15px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.70);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-input, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 13px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.28); }
.form-input:focus, .form-select:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.09);
}
.form-select option { background: #0e1d3d; color: #fff; }

.form-msg {
  font-family: var(--font-body);
  font-size: 13px;
  min-height: 18px;
  margin-top: 10px;
  color: var(--text-dim);
}
.form-msg.ok { color: var(--green-check); }
.form-msg.err { color: var(--red-cross); }

.btn-full {
  width: 100%;
  padding: 12px;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(201,162,39,0.30);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  text-align: center;
}
.btn-full:hover { background: #223680; border-color: rgba(201,162,39,0.6); }


/* ══════════════════════════════════════════════════════
   INNER PAGES
   ══════════════════════════════════════════════════════ */
.page {
  min-height: calc(100vh - 62px);
  padding: 48px 0 80px;
}
.page-header { margin-bottom: 32px; }
.page-title {
  font-family: var(--font-head);
  font-size: 30px; font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.page-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.card-title {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 800;
  margin-bottom: 12px;
}
.card-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }

/* HOW IT WORKS steps */
.step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: 0; }
.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(27,46,107,0.30);
  border: 1.5px solid rgba(27,46,107,0.80);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 900;
  color: #8fa8e8;
  flex-shrink: 0;
}
.step-title {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 800;
  margin-bottom: 5px;
}
.step-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* COUNTRIES */
.country-tile {
  display: flex; gap: 15px; align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}
.country-tile:hover {
  border-color: rgba(201,162,39,0.40);
  background: var(--bg-card-hover);
}
.country-flag-big { font-size: 34px; flex-shrink: 0; line-height: 1; }
.country-name {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 800;
  margin-bottom: 4px;
}
.country-summary {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.country-time {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 5px;
}

/* PRICING */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { border-color: rgba(201,162,39,0.40); transform: translateY(-3px); }
.pricing-phase {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.pricing-name {
  font-family: var(--font-head);
  font-size: 19px; font-weight: 900;
  margin-bottom: 10px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 38px; font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}
.pricing-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.pricing-note {
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 12px;
  font-family: var(--font-body);
}

/* DASHBOARD */
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.status-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.status-item:last-child { border-bottom: 0; }
.status-key { font-family: var(--font-body); color: var(--text-muted); }
.status-val { font-family: var(--font-head); font-weight: 700; }
.phase-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 800;
  background: rgba(27,46,107,0.30);
  border: 1px solid rgba(27,46,107,0.80);
  color: #8fa8e8;
}
.mrrs-wrap { text-align: right; }
.mrrs-bar-bg {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  margin-top: 5px;
  width: 130px;
  overflow: hidden;
}
.mrrs-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}
.action-btn {
  display: block; width: 100%;
  text-align: left;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: 12.5px; font-weight: 700;
  color: #fff;
  background: rgba(27,46,107,0.18);
  border: 1px solid rgba(27,46,107,0.50);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.action-btn:hover:not(:disabled) {
  background: rgba(27,46,107,0.38);
  border-color: rgba(27,46,107,0.85);
}
.action-btn:disabled { opacity: 0.32; cursor: not-allowed; }
.action-btn.done {
  background: rgba(79,201,122,0.09);
  border-color: rgba(79,201,122,0.38);
  color: var(--green-check);
}

.divider { border: 0; border-top: 1px solid var(--border); margin: 16px 0; }

/* ALERT BOX */
.alert-warn {
  background: rgba(232,85,85,0.07);
  border: 1px solid rgba(232,85,85,0.30);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,200,200,0.85);
  line-height: 1.55;
  margin-top: 18px;
}

/* TOAST */
.toast {
  position: fixed;
  top: 74px; right: 20px;
  z-index: 900;
  background: #0e1d3d;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 18px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600;
  max-width: 300px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  animation: toastIn 0.28s ease;
}
.toast.ok { border-color: rgba(79,201,122,0.50); color: var(--green-check); }
.toast.err { border-color: rgba(232,85,85,0.50); color: var(--red-cross); }
@keyframes toastIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hot-card { flex: 0 0 calc(50% - 7px); min-width: 200px; }
  .isnot-grid { grid-template-columns: 1fr; }
  .isnot-sep { display: none; }
  .isnot-col + .isnot-col {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    margin-top: 10px;
  }
  .phases-inner { flex-wrap: wrap; }
  .phase-block { padding: 8px 20px; }
  .grid2, .grid3, .dash-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hot-card { flex: 0 0 80vw; }
  .hero-title { font-size: 32px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .phases-inner { flex-direction: column; align-items: flex-start; }
  .phase-block + .phase-block { border-left: 0; border-top: 1px solid var(--border); }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}
