@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0b1f3c;
  --navy-2: #142e54;
  --gold: #f4bd38;
  --yellow: #ffd93d;
  --gold-hover: #e5a820;
  --cream: #fff8e6;
  --ink: #0f172a;
  --muted: #64748b;
  --paper: #ffffff;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --success: #10b981;
  --radius: 18px;
  --shadow: 0 14px 34px rgba(11, 31, 60, .08);
  --shadow-soft: 0 8px 24px rgba(11, 31, 60, .05);
  --shadow-hover: 0 20px 40px rgba(11, 31, 60, .14);
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.shell { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.utility {
  background: var(--navy);
  color: rgba(255,255,255,.92);
  padding: 8px 20px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .015em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  position: relative;
  background: #fff;
  z-index: 100;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .02em;
}
.brandMark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(11, 31, 60, .18);
}
.nav { display: flex; gap: 22px; font-size: 13.5px; font-weight: 700; color: #26364e; }
.nav a { position: relative; padding: 28px 0; transition: color .2s ease; }
.nav a::after {
  content: "";
  position: absolute;
  height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  left: 0;
  right: 100%;
  bottom: 0;
  transition: right .2s ease;
}
.nav a:hover, .nav a.active { color: var(--navy); }
.nav a:hover::after, .nav a.active::after { right: 0; }
.menuButton {
  display: none;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  align-items: center;
  gap: 6px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #efad2f 0%, var(--yellow) 100%);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .04em;
  box-shadow: 0 8px 18px rgba(239,173,47,.25);
  transition: all .25 ease;
  cursor: pointer;
  border: none;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(239,173,47,.35); background: linear-gradient(135deg, #e5a01e 0%, #f0c920 100%); }
.button.small { min-height: 40px; padding: 0 18px; font-size: 11.5px; }
.button.secondary { background: var(--soft); color: var(--navy); border: 1px solid var(--line); box-shadow: none; }
.button.secondary:hover { background: #eef2f6; border-color: #cbd5e1; box-shadow: 0 6px 16px rgba(0,0,0,.05); }

.textLink { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 800; font-size: 14px; }
.textLink span { color: var(--gold); font-size: 18px; transition: transform .2s ease; }
.textLink:hover span { transform: translateX(3px); }

/* Hero */
.heroReferenceStyle {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  min-height: 560px;
  display: grid;
  align-items: center;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.heroGrid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}
.heroCopy h1,
.sectionHeading h2,
.centerHeading h2,
.resultCopy h2,
.pageIntro h1,
.articlePage h1,
.trackerHeader h1 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.03em;
}
.heroCopy h1 {
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.04;
  max-width: 680px;
  margin: 12px 0 24px;
}
.heroCopy p {
  color: var(--muted);
  max-width: 600px;
  font-size: 17.5px;
  line-height: 1.6;
}
.heroActions { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 32px; }
.kicker, .eyebrow {
  color: #b78103;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid #fce7ad;
}
.heroPanel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 30px;
  min-height: 340px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.heroPanel:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.heroPanel::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border: 28px solid #e2e8f0;
  border-right-color: var(--gold);
  border-radius: 50%;
  left: -72px;
  bottom: -60px;
  opacity: .6;
  z-index: -1;
}
.heroPanelTop { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.miniLabel { font-size: 11px; font-weight: 800; color: #64748b; letter-spacing: .08em; text-transform: uppercase; }
.statusDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(16,185,129,.15);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.heroPanel h2 { margin: 0 0 20px; color: var(--navy); font-family: var(--font-display); font-size: 26px; line-height: 1.15; }
.heroStat { padding: 14px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 15px; align-items: center; }
.heroStat span { color: var(--muted); font-size: 13px; font-weight: 500; }
.heroStat strong { color: var(--navy); font-size: 13.5px; text-align: right; font-weight: 700; }
.circleArrow, .cardArrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  transition: all .2s ease;
}
.heroPanel .circleArrow { position: absolute; right: 20px; bottom: 20px; }
.heroPanel:hover .circleArrow { background: var(--gold); color: var(--navy); transform: scale(1.1); }
.heroDecor { position: absolute; border-radius: 50%; pointer-events: none; }
.heroDecorOne { width: 300px; height: 300px; border: 52px solid #e2e8f0; right: -120px; top: -120px; opacity: .5; }
.heroDecorTwo { width: 100px; height: 100px; background: var(--gold); left: 45%; top: 22%; opacity: .06; }

.sectionSoft { background: var(--soft); }
.referenceIntro { padding: 88px 0 96px; }
.sectionHeading { display: flex; justify-content: space-between; gap: 38px; align-items: flex-end; margin-bottom: 40px; }
.sectionHeading h2 { font-size: clamp(32px, 3.8vw, 48px); line-height: 1.08; margin: 10px 0 0; }
.sectionHeading p { max-width: 500px; color: var(--muted); margin: 0; font-size: 15px; }
.compactHeading { max-width: 980px; }

/* Visual card grid */
.serviceGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.serviceCard {
  position: relative;
  min-height: 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 26px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.serviceCard:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: #cbd5e1; }
.serviceIcon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cream);
  color: #d99a07;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid #fbe7b6;
}
.serviceIcon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.serviceCard h3 { color: var(--navy); font-family: var(--font-display); font-size: 21px; line-height: 1.2; margin: 0 0 10px; font-weight: 800; }
.serviceCard p { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin: 0 0 20px; flex-grow: 1; }
.cardArrow { margin-top: auto; width: 32px; height: 32px; font-size: 14px; background: var(--navy); color: #fff; }
.serviceCard:hover .cardArrow { background: var(--gold); color: var(--navy); transform: translateX(3px); }

/* Steps */
.processSection { position: relative; padding: 92px 0 98px; background: #fff; overflow: hidden; }
.centerHeading { text-align: center; max-width: 820px; margin: 0 auto 50px; }
.centerHeading h2 { font-size: clamp(32px, 3.8vw, 46px); margin: 10px 0 0; line-height: 1.08; }
.processGrid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.processLine {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 242px;
  height: 120px;
  border-top: 2px dashed #cbd5e1;
  border-radius: 50%;
  opacity: .85;
}
.processItem { text-align: center; }
.processIcon {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.processIcon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.processIcon.navy { background: var(--navy); color: #fff; }
.processIcon.gold { background: #f0b23d; color: #fff; }
.processIcon.yellow { background: var(--yellow); color: var(--navy); }
.stepNo {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
.stepNo.navyTag { background: var(--navy); color: #fff; }
.processItem h3 { color: var(--navy); font-family: var(--font-display); margin: 0 0 10px; font-size: 20px; font-weight: 800; }
.processItem p { max-width: 300px; margin: 0 auto; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.centerAction { display: flex; justify-content: center; margin-top: 42px; }

/* Result */
.resultSection { padding: 90px 0 96px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.resultGrid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 64px; align-items: center; }
.resultCopy h2 { font-size: clamp(34px, 4.5vw, 54px); line-height: 1.02; margin: 12px 0 24px; max-width: 400px; }
.microArrows { display: flex; gap: 8px; margin-bottom: 26px; }
.microArrows span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
}
.microArrows span:last-child { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.resultVisual { position: relative; min-height: 360px; }
.mapCard {
  position: absolute;
  right: 0;
  top: 0;
  width: 74%;
  min-height: 300px;
  border-radius: 20px;
  background: linear-gradient(145deg, #0b1f3c, #142e54);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
}
.gulfShape {
  width: 160px;
  height: 160px;
  border-radius: 38% 62% 52% 48% / 45% 40% 60% 55%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.2);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  transform: rotate(-7deg);
  letter-spacing: .05em;
}
.mapDots .mapDot { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(244,189,56,.18); }
.d1 { left: 21%; top: 31%; } .d2 { left: 34%; top: 48%; } .d3 { left: 47%; top: 35%; }
.d4 { left: 58%; top: 60%; } .d5 { left: 70%; top: 42%; } .d6 { left: 80%; top: 67%; }
.sourceSeal {
  position: absolute;
  right: -16px;
  top: 40%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
  font-size: 26px;
  font-weight: 900;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  outline: 3px solid var(--gold);
}
.quoteCard {
  position: absolute;
  left: 0;
  top: 80px;
  width: 54%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow-hover);
  z-index: 4;
}
.quoteCard p { margin: 0 0 14px; color: #475569; font-size: 13px; line-height: 1.65; }
.quoteCard strong { color: var(--navy); font-size: 13px; font-weight: 800; }
.yellowPlate { position: absolute; right: 8%; bottom: 18px; width: 55%; height: 42px; border-radius: 12px; background: var(--gold); z-index: 0; opacity: .9; }

/* Sources / partners */
.sourcePartnerSection { background: #fff; padding: 92px 0 98px; overflow: hidden; }
.sourceHeading { margin-bottom: 40px; }
.sourceOrbit { position: relative; min-height: 360px; max-width: 780px; margin: 0 auto; }
.sourceCenter {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  z-index: 3;
  border: 1px solid var(--line);
}
.sourceCenterMark {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
}
.sourcePill {
  position: absolute;
  z-index: 3;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(11,31,60,.08);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  font-size: 13.5px;
  transition: transform .2s ease, border-color .2s ease;
}
.sourcePill:hover { transform: translateY(-2px); border-color: var(--gold); }
.sourceOne { left: 2%; top: 10%; }
.sourceTwo { right: 0; top: 10%; }
.sourceThree { left: 0; top: 43%; }
.sourceFour { right: 0; top: 43%; }
.sourceFive { left: 5%; bottom: 9%; }
.sourceSix { right: 5%; bottom: 9%; }
.orbitLine { position: absolute; height: 1px; border-top: 2px dotted #cbd5e1; z-index: 1; transform-origin: left center; }
.lineOne { width: 220px; left: 23%; top: 29%; transform: rotate(22deg); }
.lineTwo { width: 220px; left: 51%; top: 30%; transform: rotate(-20deg); }
.lineThree { width: 220px; left: 21%; top: 50%; transform: rotate(0deg); }
.lineFour { width: 220px; left: 51%; top: 50%; transform: rotate(0deg); }
.lineFive { width: 220px; left: 23%; top: 69%; transform: rotate(-22deg); }
.lineSix { width: 220px; left: 51%; top: 69%; transform: rotate(20deg); }

/* News cards and generic pages */
.section { padding: 90px 0; }
.newsReferenceSection { background: var(--soft); border-top: 1px solid var(--line); }
.newsHeading { margin-bottom: 40px; }
.countryGrid, .articleGrid, .statusGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.countryCard, .card, .statusCard {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.countryCard, .card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.countryCard:hover, .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: #cbd5e1; }
.countryCode {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  border: 1px solid #fce7ad;
}
.countryCard h3, .articleCard h3 { color: var(--navy); font-family: var(--font-display); font-size: 21px; line-height: 1.25; margin: 18px 0 10px; font-weight: 800; }
.countryCard p, .articleCard p { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin: 0 0 20px; flex-grow: 1; }
.countryCard .arrow { font-weight: 800; color: #b78103; font-size: 13.5px; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; }
.articleMeta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; color: #64748b; font-weight: 500; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid var(--line);
  background: var(--soft);
}
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.status-confirmed { border-color: #a7f3d0; background: #ecfdf5; color: #047857; }
.status-confirmed::before { background: #10b981; }
.status-reported { border-color: #fef08a; background: #fefce8; color: #a16207; }
.status-reported::before { background: #eab308; }
.status-expected { border-color: #e2e8f0; background: #f8fafc; color: #475569; }
.status-expected::before { background: #94a3b8; }
.newsAction { margin-top: 40px; }

.statusCard span { display: block; color: var(--muted); font-size: 12.5px; margin-bottom: 6px; font-weight: 600; }
.statusCard strong { color: var(--navy); font-family: var(--font-display); font-size: 18px; font-weight: 800; }

.pageIntro { max-width: 820px; padding: 48px 0 38px; }
.pageIntro h1, .articlePage h1 { font-size: clamp(36px, 5vw, 60px); margin: 12px 0 20px; line-height: 1.05; }
.pageIntro p, .lede { font-size: 18px; color: var(--muted); line-height: 1.65; }

.articlePage { max-width: 860px; padding-top: 60px; padding-bottom: 100px; }
.articlePage h2 { color: var(--navy); font-family: var(--font-display); margin-top: 48px; font-size: 28px; font-weight: 800; line-height: 1.2; border-bottom: 2px solid var(--soft); padding-bottom: 8px; }
.articlePage h3 { color: var(--navy); font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-top: 28px; margin-bottom: 10px; }
.articlePage p { margin-bottom: 20px; color: #334155; font-size: 16px; line-height: 1.7; }
.articlePage ul, .articlePage ol { padding-left: 24px; margin-bottom: 24px; }
.articlePage li { margin-bottom: 12px; color: #334155; font-size: 15.5px; line-height: 1.65; }

.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12.5px; color: var(--muted); font-weight: 600; margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--navy); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-hover); }
.breadcrumb span { color: #cbd5e1; }

.articleLead { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }

.tocBox { background: var(--soft); border: 1px solid var(--line); border-radius: 16px; padding: 22px 26px; margin: 28px 0 36px; }
.tocBox strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 16px; margin-bottom: 12px; font-weight: 800; }
.tocBox ul { list-style: none; padding: 0; margin: 0; }
.tocBox li { margin-bottom: 8px; }
.tocBox a { color: var(--navy); font-size: 14px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.tocBox a:hover { color: #d99a07; }

.sourceBox { margin-top: 48px; border: 1px solid var(--line); border-radius: 18px; padding: 28px; background: var(--soft); box-shadow: var(--shadow-soft); }
.sourceBox h2 { margin-top: 0 !important; border-bottom: none !important; padding-bottom: 0 !important; font-size: 22px !important; }
.sourceBox ul { list-style: none; padding: 0; margin: 16px 0 0; }
.sourceBox li { margin-bottom: 10px; }
.sourceBox a { color: var(--navy); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; }
.sourceBox a:hover { color: var(--gold-hover); }
.warningBox { border-left: 6px solid var(--gold); background: var(--cream); border-color: #fcd34d; }

.steps { padding-left: 0; list-style: none; }
.steps li { margin-bottom: 24px; padding: 20px 24px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; position: relative; }
.steps strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 17px; margin-bottom: 6px; }
.steps span { display: block; color: var(--muted); font-size: 14px; }

.disclaimer { margin-top: 40px; font-size: 13.5px; color: var(--muted); background: var(--soft); padding: 16px 20px; border-radius: 12px; border: 1px solid var(--line); }

/* Document Cards for Requirements & Guides */
.docGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; }
.docCard { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-soft); }
.docCardHeader { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.docCard h3 { margin: 0 !important; font-size: 19px !important; border: none !important; padding: 0 !important; }
.docCard p { font-size: 14px !important; margin-bottom: 12px !important; color: var(--muted) !important; }
.docCard ul { padding-left: 20px; margin: 0; }
.docCard li { font-size: 13.5px; margin-bottom: 6px; }

/* FAQ Accordion Component */
.faqContainer { margin: 36px 0; }
.faqItem { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; background: #fff; overflow: hidden; }
.faqQuestion { width: 100%; text-align: left; background: none; border: none; padding: 18px 22px; font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--navy); display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 15px; }
.faqQuestion:hover { background: var(--soft); }
.faqToggleIcon { width: 24px; height: 24px; border-radius: 50%; background: var(--soft); display: grid; place-items: center; font-size: 14px; font-weight: 900; transition: transform .2s ease; }
.faqItem.open .faqToggleIcon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faqAnswer { padding: 0 22px 20px; font-size: 14.5px; color: #475569; line-height: 1.65; display: none; border-top: 1px solid var(--line); margin-top: -4px; padding-top: 16px; }
.faqItem.open .faqAnswer { display: block; }

/* Country detail guide styles */
.countryHeader { background: linear-gradient(135deg, var(--navy) 0%, #173d6b 100%); color: #fff; padding: 48px 36px; border-radius: 20px; margin-bottom: 40px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.countryHeader h1 { color: #fff !important; margin: 10px 0 16px !important; }
.countryHeader .lede { color: rgba(255,255,255,.85) !important; max-width: 650px; }
.countryBadge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); color: var(--gold); padding: 6px 14px; border-radius: 999px; font-weight: 800; font-size: 13px; border: 1px solid rgba(255,255,255,.18); }
.itineraryGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0; }
.itineraryCard { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-soft); }
.itineraryCard h4 { color: var(--navy); font-family: var(--font-display); font-size: 18px; margin: 0 0 10px; font-weight: 800; }
.itineraryCard p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.6; }

/* Related Articles Section */
.relatedSection { margin-top: 60px; padding-top: 40px; border-top: 2px dashed var(--line); }
.relatedSection h3 { font-family: var(--font-display); font-size: 24px; color: var(--navy); margin-bottom: 24px; font-weight: 800; }

.footer { background: var(--navy); color: rgba(255,255,255,.82); padding: 70px 0 30px; border-top: 4px solid var(--gold); }
.footerGrid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footerGrid > div { display: flex; flex-direction: column; gap: 12px; }
.footer p { color: rgba(255,255,255,.68); font-size: 13.5px; line-height: 1.6; margin: 10px 0 0; }
.footer strong { color: #fff; font-family: var(--font-display); font-size: 15px; font-weight: 800; letter-spacing: .02em; }
.footer a { color: rgba(255,255,255,.75); font-size: 13.5px; transition: color .2s ease; }
.footer a:hover { color: var(--gold); }
.inverse { color: #fff; }
.copyright { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 26px; font-size: 12.5px; color: rgba(255,255,255,.6); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }

/* Mobile drawer navigation overlay */
.navBackdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 60, .4);
  backdrop-filter: blur(4px);
  z-index: 90;
}
.navBackdrop.active { display: block; }

@media (max-width: 1000px) {
  .headerCta { display: none; }
  .menuButton { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    z-index: 100;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    padding: 20px;
    flex-direction: column;
    gap: 4px;
  }
  .nav a { padding: 12px 16px; border-radius: 10px; font-size: 15px; }
  .nav a:hover, .nav a.active { background: var(--soft); }
  .nav a::after { display: none; }
  .nav.navOpen { display: flex; }
  .heroGrid { gap: 45px; }
  .docGrid { grid-template-columns: 1fr; }
  .itineraryGrid { grid-template-columns: 1fr; }
  .footerGrid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  .heroGrid { grid-template-columns: 1fr; }
  .heroPanel { max-width: 620px; }
  .serviceGrid, .countryGrid, .articleGrid, .statusGrid { grid-template-columns: 1fr 1fr; }
  .sectionHeading { align-items: flex-start; flex-direction: column; }
  .resultGrid { grid-template-columns: 1fr; gap: 45px; }
  .resultCopy h2 { max-width: 620px; }
  .resultVisual { max-width: 720px; width: 100%; }
  .sourceOrbit { transform: scale(.92); transform-origin: center; }
}

@media (max-width: 720px) {
  .processLine { display: none; }
  .processGrid { grid-template-columns: 1fr; gap: 36px; }
  .processItem p { max-width: 360px; }
  .sourceOrbit { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; transform: none; }
  .sourceCenter { position: static; transform: none; grid-column: 1 / -1; margin: 0 auto 20px; }
  .sourcePill { position: static; min-width: 0; }
  .orbitLine { display: none; }
  .footerGrid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1140px); }
  .utility { font-size: 11px; }
  .header { min-height: 72px; }
  .heroGrid { padding: 54px 0 68px; }
  .heroCopy h1 { font-size: clamp(38px, 11vw, 54px); }
  .heroCopy p { font-size: 16px; }
  .heroActions { align-items: flex-start; flex-direction: column; width: 100%; }
  .heroActions .button, .heroActions .textLink { width: 100%; justify-content: center; }
  .heroPanel { padding: 22px; }
  .heroStat { flex-direction: column; gap: 4px; align-items: flex-start; }
  .heroStat strong { text-align: left; }
  .referenceIntro, .processSection, .resultSection, .sourcePartnerSection, .section { padding: 60px 0; }
  .serviceGrid, .countryGrid, .articleGrid, .statusGrid { grid-template-columns: 1fr; }
  .serviceCard { min-height: 200px; }
  .resultVisual { min-height: 400px; }
  .mapCard { width: 94%; min-height: 250px; }
  .quoteCard { width: 88%; top: 120px; padding: 20px; }
  .yellowPlate { width: 70%; bottom: 30px; }
  .sourceOrbit { grid-template-columns: 1fr; }
  .sourceCenter { grid-column: auto; }
}
