/* =========================================================
   Quant Epay — stylesheet
   ---------------------------------------------------------
   THEMING: three ready-made palettes are provided.
   • Default is "Atlantic" (the :root values below).
   • To switch, add a data-theme attribute to <html>, e.g.
        <html lang="en" data-theme="meridian">
        <html lang="en" data-theme="nova">
     ...or just edit the :root values to your final colours.
   ========================================================= */
:root {
  /* ---- Palette 1: ATLANTIC (default) — navy · teal · sky ---- */
  --navy-900: #0A1B3D;   /* deepest — dark sections */
  --navy-800: #0E2A5A;   /* primary brand navy */
  --navy-700: #143a78;   /* hover / gradient */
  --teal-500: #12B5A5;   /* accent (money / growth) */
  --teal-400: #22D3A8;
  --blue-500: #2E6BFF;   /* secondary accent */

  /* Neutrals */
  --ink:      #0B1B34;   /* body text */
  --muted:    #5A6B85;   /* secondary text */
  --line:     #E5EBF2;   /* borders */
  --surface:  #F5F8FC;   /* tinted section bg */
  --card:     #FFFFFF;
  --bg:       #FFFFFF;

  /* Effects */
  --radius:   16px;
  --radius-sm:10px;
  --shadow:   0 10px 30px rgba(14,42,90,.08);
  --shadow-lg:0 24px 60px rgba(14,42,90,.16);
  --grad:     linear-gradient(120deg, var(--teal-500), var(--blue-500));
  --grad-dark:linear-gradient(160deg, var(--navy-800), var(--navy-900));

  --maxw: 1160px;
  --ff-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---- Palette 2: MERIDIAN — charcoal · emerald · teal (premium, minimal) ---- */
[data-theme="meridian"] {
  --navy-900: #0B1220;
  --navy-800: #111827;
  --navy-700: #1F2937;
  --teal-500: #10B981;
  --teal-400: #34D399;
  --blue-500: #14B8A6;
}

/* ---- Palette 3: NOVA — indigo · violet · cyan (modern, distinctive) ---- */
[data-theme="nova"] {
  --navy-900: #1E1B4B;
  --navy-800: #312E81;
  --navy-700: #3730A3;
  --teal-500: #7C3AED;
  --teal-400: #A78BFA;
  --blue-500: #22D3EE;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--ff-head); line-height: 1.15; margin: 0 0 .4em; color: var(--navy-900); font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.22rem; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------- buttons --------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--ff-head); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(46,107,255,.28); }
.btn-primary:hover { box-shadow: 0 12px 26px rgba(46,107,255,.38); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal-500); color: var(--navy-900); }
.btn-light { background: #fff; color: var(--navy-800); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-block { width: 100%; }

/* --------------------------- header --------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85); backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(14,42,90,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-head); font-weight: 800; font-size: 1.28rem; color: var(--navy-900); }
.brand-logo { height: 34px; width: auto; display: block; }
.site-header .brand-logo { height: 46px; }
.site-footer .brand-logo { height: 44px; }
.brand-mark { display: inline-flex; }
.brand-word { letter-spacing: -.02em; }
.brand-accent { color: var(--teal-500); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a { padding: 9px 14px; border-radius: 8px; font-weight: 500; color: var(--muted); font-size: .96rem; transition: color .15s, background .15s; }
.main-nav a:hover { color: var(--navy-900); background: var(--surface); }
.main-nav a.active { color: var(--navy-900); background: var(--surface); }
.main-nav .nav-cta.active { color: #fff; background: var(--grad); }
.main-nav .nav-cta { margin-left: 8px; background: var(--grad); color: #fff; font-weight: 600; padding: 10px 20px; border-radius: 999px; }
.main-nav .nav-cta:hover { color: #fff; box-shadow: 0 8px 18px rgba(46,107,255,.3); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy-900); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------- hero --------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(18,181,165,.12), transparent 60%),
    radial-gradient(700px 500px at 10% 10%, rgba(46,107,255,.08), transparent 55%),
    var(--bg);
  padding: clamp(52px, 8vw, 104px) 0 clamp(60px, 8vw, 96px);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.eyebrow { font-family: var(--ff-head); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-500); margin: 0 0 14px; }
.eyebrow--light { color: var(--teal-400); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { font-size: 1.14rem; color: var(--muted); max-width: 34em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 22px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 0; color: var(--muted); font-size: .92rem; }
.hero-badges li { position: relative; padding-left: 22px; font-weight: 500; }
.hero-badges li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-500); font-weight: 700; }

/* hero visual */
.hero-visual { position: relative; min-height: 320px; display: flex; align-items: center; justify-content: center; }
.fx-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.fx-card--main { width: min(360px, 100%); padding: 22px; position: relative; z-index: 2; }
.fx-row { display: flex; align-items: center; gap: 14px; padding: 6px 0; }
.fx-flag { font-size: 1.7rem; width: 46px; height: 46px; display: grid; place-items: center; background: var(--surface); border-radius: 12px; }
.fx-label { margin: 0; font-size: .8rem; color: var(--muted); }
.fx-amount { margin: 0; font-family: var(--ff-head); font-weight: 700; font-size: 1.35rem; color: var(--navy-900); }
.fx-arrow { color: var(--teal-500); display: grid; place-items: center; margin: 4px 0; }
.fx-meta { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: .86rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.fx-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px rgba(18,181,165,.18); }
.fx-card--pill { position: absolute; z-index: 3; padding: 10px 16px; border-radius: 999px; font-family: var(--ff-head); font-weight: 600; font-size: .85rem; color: var(--navy-800); box-shadow: var(--shadow); }
.fx-pill-1 { top: 8%; left: -4%; }
.fx-pill-2 { bottom: 8%; right: -2%; }

/* --------------------------- interior page banner --------------------------- */
.page-hero {
  background:
    radial-gradient(700px 340px at 88% -20%, rgba(18,181,165,.14), transparent 60%),
    var(--grad-dark);
  color: #fff; padding: clamp(56px, 8vw, 92px) 0 clamp(48px, 7vw, 72px);
}
.page-hero .eyebrow { color: var(--teal-400); }
.page-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.page-hero .btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }
.page-hero h1 { color: #fff; max-width: 16em; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 44em; margin: 0; }
.breadcrumb { font-size: .86rem; color: rgba(255,255,255,.6); margin: 0 0 14px; }
.breadcrumb a:hover { color: #fff; }

/* --------------------------- stats --------------------------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 34px 24px; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--ff-head); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.3rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-lbl { color: var(--muted); font-size: .92rem; }

/* --------------------------- sections --------------------------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--tint { background: var(--surface); }
.section-head { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.section-head--light h2 { color: #fff; }
.section-sub { color: var(--muted); font-size: 1.06rem; margin: 0; }

.section-cta { text-align: center; margin: 42px 0 0; }

/* card grid (solutions) */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon { display: inline-grid; place-items: center; width: 52px; height: 52px; font-size: 1.6rem; background: var(--surface); border-radius: 14px; margin-bottom: 16px; }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* products */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.product-tag { align-self: flex-start; font-family: var(--ff-head); font-weight: 600; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--teal-500); background: rgba(18,181,165,.1); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.product > p { color: var(--muted); }
.feature-list { list-style: none; padding: 0; margin: 12px 0 0; }
.feature-list li { position: relative; padding: 7px 0 7px 28px; color: var(--ink); font-size: .95rem; border-top: 1px solid var(--line); }
.feature-list li:first-child { border-top: 0; }
.feature-list li::before { content: ""; position: absolute; left: 4px; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }

/* platform / mini grid */
.platform-copy { max-width: 900px; margin: 0 auto; text-align: center; }
.platform-copy .section-sub { max-width: 640px; margin: 0 auto 40px; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.mini { padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.mini-icon { font-size: 1.5rem; }
.mini h4 { margin: 10px 0 6px; font-family: var(--ff-head); font-size: 1.02rem; }
.mini p { margin: 0; color: var(--muted); font-size: .92rem; }

/* steps */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 8px; max-width: 960px; margin: 0 auto; }
.step { text-align: center; padding: 0 12px; }
.step-num { width: 52px; height: 52px; margin: 0 auto 16px; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 800; font-size: 1.3rem; color: #fff; background: var(--grad); border-radius: 50%; box-shadow: 0 8px 20px rgba(46,107,255,.28); }
.step p { color: var(--muted); margin: 0; }
.step-line { height: 2px; background: linear-gradient(90deg, var(--teal-500), var(--blue-500)); align-self: center; margin-top: 26px; opacity: .4; min-width: 30px; }

/* coverage */
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.region { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.region h3 { margin-bottom: 2px; }
.region-sub { color: var(--teal-500); font-weight: 600; font-size: .88rem; font-family: var(--ff-head); margin: 0 0 16px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.chips li { background: var(--surface); border: 1px solid var(--line); color: var(--ink); font-size: .86rem; padding: 6px 12px; border-radius: 999px; }

/* why (dark) */
.section--dark { background: var(--grad-dark); }
.section--dark h2 { color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 26px 22px; }
.why-num { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.why h3 { color: #fff; margin-bottom: .3em; }
.why p { color: rgba(255,255,255,.72); margin: 0; font-size: .95rem; }

/* compliance */
.compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.comp { display: flex; flex-direction: column; gap: 4px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.comp span { font-size: 1.5rem; }
.comp h4 { margin: 6px 0 2px; font-family: var(--ff-head); font-size: 1.02rem; }
.comp p { margin: 0; color: var(--muted); font-size: .92rem; }

/* cta band */
.cta-band { background: var(--grad); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 52px 24px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; margin-bottom: .25em; }
.cta-inner p { color: rgba(255,255,255,.9); margin: 0; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 20px 0 0; }
.contact-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-weight: 500; }
.contact-list a:hover { color: var(--teal-500); }
.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--ff-head); font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--navy-900); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(18,181,165,.15); }
.field textarea { resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6B85' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.contact-notes { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.contact-notes p { margin: 0 0 8px; color: var(--muted); font-size: .95rem; }
.contact-notes strong { color: var(--navy-900); }
.form-note { margin: 12px 0 0; font-size: .92rem; color: var(--teal-500); font-weight: 600; min-height: 1.2em; }

/* footer */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand--footer { color: #fff; }
.footer-brand p { margin: 16px 0 0; max-width: 26em; font-size: .95rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 { color: #fff; font-family: var(--ff-head); font-size: .95rem; margin: 0 0 14px; }
.footer-cols a { display: block; padding: 5px 0; font-size: .92rem; color: rgba(255,255,255,.68); transition: color .15s; }
.footer-cols a:hover { color: var(--teal-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 22px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: .85rem; }
.footer-legal { max-width: 60%; color: rgba(255,255,255,.5); }

/* --------------------------- detail pages --------------------------- */
a.card { text-decoration: none; color: inherit; }
.card-more { display: inline-block; margin-top: 16px; font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--teal-500); }
.product .card-more { margin-top: auto; padding-top: 18px; }
a.card:hover .card-more, a.card-more:hover { text-decoration: underline; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.split h2 { margin-bottom: .5em; }
.split p { color: var(--muted); }
.split p:last-child { margin-bottom: 0; }

.aside-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.aside-card h3 { margin-bottom: 18px; font-size: 1.05rem; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-chip { background: var(--surface); border-radius: var(--radius-sm); padding: 16px; }
.stat-chip .n { display: block; font-family: var(--ff-head); font-weight: 800; font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-chip .l { font-size: .82rem; color: var(--muted); }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.checks { columns: 2; column-gap: 32px; list-style: none; padding: 0; margin: 0; }
.checks li { break-inside: avoid; position: relative; padding: 8px 0 8px 28px; color: var(--ink); font-size: .98rem; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--teal-500); font-weight: 700; }

.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h4 { font-family: var(--ff-head); font-size: 1.06rem; margin-bottom: 6px; }
.faq-item p { color: var(--muted); margin: 0; }

@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) { .checks { columns: 1; } }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------- responsive --------------------------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 260px; }
  .card-grid, .product-grid, .mini-grid, .coverage-grid, .compliance-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { max-width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .step-line { display: none; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 24px 22px; gap: 4px;
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .3s ease; visibility: hidden;
  }
  .main-nav.open { transform: translateY(0); visibility: visible; }
  .main-nav a { padding: 12px 10px; font-size: 1.02rem; }
  .main-nav .nav-cta { margin: 8px 0 0; text-align: center; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .why-grid, .compliance-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .site-header .brand-logo { height: 40px; }
  .card-grid, .product-grid, .mini-grid, .coverage-grid { grid-template-columns: 1fr; }
  .fx-pill-1 { left: 0; }
  .fx-pill-2 { right: 0; }
}

/* =========================================================
   WORLD COVERAGE MAP (home)
   Map geometry: jsVectorMap world map (MIT licensed).
   ========================================================= */
.map-stage { position: relative; margin-top: 6px; }
.world-map { display: block; width: 100%; height: auto; }
.qe-c  { fill: #E6EDF5; stroke: #fff; stroke-width: .4; }
.qe-on { fill: url(#qeMapGrad); }

.map-pins { position: absolute; inset: 0; pointer-events: none; }
.pin {
  position: absolute; transform: translate(-50%, -50%);
  background: #fff; color: var(--navy-800);
  font: 600 11px/1 var(--ff-body); letter-spacing: .02em;
  padding: 4px 7px; border-radius: 999px;
  border: 1px solid rgba(14, 42, 90, .10);
  box-shadow: 0 2px 6px rgba(14, 42, 90, .16);
  white-space: nowrap;
}

.map-legend {
  display: flex; gap: 22px; flex-wrap: wrap; justify-content: center;
  margin: 20px 0 0; padding: 0; list-style: none;
  color: var(--muted); font-size: .92rem;
}
.map-legend li { display: flex; align-items: center; gap: 8px; }
.sw { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.sw-on  { background: linear-gradient(135deg, var(--teal-500), var(--blue-500)); }
.sw-off { background: #E6EDF5; border: 1px solid var(--line); }
.map-note { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 10px; }

/* Pins get cramped on small screens — the map alone still reads well */
@media (max-width: 860px) { .map-pins { display: none; } }

/* Coverage page: full country lists */
.region .chips.chips--dense li { font-size: .82rem; padding: 5px 9px; }
.region-cur { color: var(--muted); font-size: .8rem; margin: 2px 0 8px; }
