

/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #0A1628;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Tokens ───────────────────────────────────── */
:root {
  --navy:      #1a3a6e;
  --navy-dark: #0A1628;
  --red:       #DE1E39;
  --red2:      #c0111f;
  --white:     #FFFFFF;
  --slate:     #64748B;
  --light:     #F8FAFC;
  --border:    #E2E8F0;
  --green:     #059669;
}

/* ─── Nav ──────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--red2) !important; }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-cta-outline { border: 1.5px solid rgba(255,255,255,0.35); color: #fff !important; padding: 9px 22px; border-radius: 6px; font-weight: 600 !important; font-size: 13px !important; transition: border-color .2s !important; }
.nav-cta-outline:hover { border-color: rgba(255,255,255,0.8) !important; }
.nav-dropdown-wide { min-width: 200px !important; }

/* ─── Hero ─────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 160px);
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero kicker — replaces pill badge */
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
/* .hero-kicker::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
} */
.hero-kicker span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--slate);
}
.hero-kicker .kicker-flag {
  display: inline-block;
  width: 44px;
  height: auto;
  border-radius: 2px;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
  letter-spacing: -0.2px;
}
.btn-primary:hover { background: var(--red2); transform: translateY(-1px); }
.btn-ghost {
  color: var(--slate);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--navy-dark); border-color: var(--slate); }

/* Map visual */
/* ── Interactive map ── */
.hero-map {
  position: relative;
  height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-bg {
  /* width: 100%; */
  height: 100%;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.map-bg svg { width: 100%; height: 100%; display: block; }

/* Land paths */
.map-land {
  fill: #e8edf4;
  stroke: #c8d2e0;
  stroke-width: 0.8;
  stroke-linejoin: round;
  transition: fill .2s;
}
.map-land.market {
  fill: #d6e0ed;
  stroke: #9eb0c8;
  stroke-width: 0.8;
}
.map-land.market:hover {
  fill: #c8d4e6;
}

/* Dots */
.map-dot {
  fill: var(--red);
  cursor: pointer;
  transition: r .15s;
}
.map-dot:hover, .map-dot.active {
  r: 7;
}
.map-dot-ring {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.2;
  opacity: 0;
  pointer-events: none;
}
.map-dot-ring.pulse {
  animation: map-pulse 2.5s ease-out infinite;
}
@keyframes map-pulse {
  0%   { r: 5px; opacity: 0.6; }
  100% { r: 18px; opacity: 0; }
}

/* Tooltip card */
.map-tooltip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(10,22,40,0.12);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s, transform .18s;
  min-width: 180px;
  z-index: 10;
}
.map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.tt-flag { font-size: 18px; margin-bottom: 6px; display: block; }
.tt-country { font-size: 14px; font-weight: 800; color: var(--navy-dark); margin-bottom: 8px; letter-spacing: -0.3px; }
.tt-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.tt-tag { font-size: 10px; font-weight: 700; color: var(--slate); background: var(--light); border: 1px solid var(--border); padding: 2px 7px; border-radius: 3px; letter-spacing: 0.3px; }
.tt-link { font-size: 11px; font-weight: 700; color: var(--red); display: flex; align-items: center; gap: 4px; transition: gap .15s; text-decoration: none; }
.tt-link:hover { gap: 7px; }

/* Label under each dot (always visible) */
.map-dot-label {
  font-size: 9px;
  font-weight: 700;
  fill: var(--navy-dark);
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: 0.3px;
}

/* Counter */
.map-counter {
  position: absolute;
  bottom: 16px; right: 18px;
  text-align: right;
  pointer-events: none;
}
.map-counter-num { font-size: 28px; font-weight: 900; color: var(--red); line-height: 1; letter-spacing: -1px; display: block; }
.map-counter-lbl { font-size: 10px; font-weight: 600; color: var(--slate); letter-spacing: 1px; text-transform: uppercase; }

/* Map header label */
.map-header-label {
  position: absolute;
  top: 16px; left: 18px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--slate);
  pointer-events: none;
}

/* ─── Trust Bar ─────────────────────────────────── */
/* Pure data, no icon boxes */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.trust-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 40px 24px 0;
  flex: 1;
  border-right: 1px solid var(--border);
}
.trust-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 40px;
}
.trust-item:not(:first-child) {
  padding-left: 40px;
}
.trust-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 3px;
}
.trust-lbl {
  font-size: 12px;
  color: var(--slate);
  font-weight: 500;
}

/* ─── Section shared ────────────────────────────── */
section { padding: 56px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* Section label — thin line + text, replaces pill eyebrow */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
/* .section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
} */
.section-label span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}
/* For dark sections, lighter variant */
.section-label.light span { color: rgba(255,255,255,0.55); }
.section-label.light::before { background: var(--red); }

.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.75;
}

/* ─── Differentiators — editorial rows ─────────── */
/* Replaces the 3 identical emoji-icon cards */
.diff-section { background: var(--navy-dark); }
.diff-section .section-sub { color: rgba(255,255,255,0.58); }
.diff-rows {
  margin-top: 64px;
  border-top: 1px solid var(--border);
}
.diff-row {
  display: grid;
  grid-template-columns: 120px 1fr 180px;
  column-gap: 40px;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  align-items: start;
}
.diff-num {
  font-size: 72px;
  font-weight: 900;
  color: var(--slate);
  line-height: 1;
  letter-spacing: -4px;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}
.diff-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.diff-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.25;
  padding-top: 2px;
}
.diff-body p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.75;
}
.diff-body p strong {
  color: var(--red);
  font-weight: 600;
}
.diff-illo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff-illo svg { width: 140px; height: 140px; }
.diff-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
}

/* ─── Service Models ────────────────────────────── */
/* Left-border accent cards, no pill tags, no emoji */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s;
}
.service-illo {
  margin: -36px -32px 28px;
  height: 140px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-illo svg { width: 96px; height: 96px; }
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 10px 10px 0 0;
  background: var(--red);
  opacity: 0.4;
  transition: opacity .2s;
}
.service-card:hover::before { opacity: 1; }

.service-type {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.service-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.btn-link {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
  transition: gap .15s;
}
.btn-link:hover { gap: 10px; }

/* ─── smartPAY preview ──────────────────────────── */
.smart-section { background: var(--navy-dark); }
.smart-section .section-title { color: #fff; }
.smart-section .section-sub { color: rgba(255,255,255,0.58); }
.smart-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 72px;
  align-items: stretch;
  margin-top: 56px;
}
.smart-features { display: flex; flex-direction: column; gap: 0; }

/* Clean text-based feature list, no emoji boxes */
.smart-feat {
  display: flex;
  gap: 0;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.smart-feat:first-child { padding-top: 0; }
.smart-feat:last-of-type { border-bottom: none; }

.feat-marker {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 8px;
  margin-right: 20px;
  flex-shrink: 0;
}
.feat-body h4 {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}
.feat-body p { color: rgba(255,255,255,0.52); font-size: 14px; line-height: 1.65; }

/* smartPAY mock dashboard */
.smart-mock {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  overflow: hidden;
}
.smart-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.smart-photo img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 64px rgba(10,22,40,0.18);
  display: block;
}
.mock-bar {
  background: rgba(255,255,255,0.08);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-content { padding: 24px; }
.mock-title {
  color: rgba(255,255,255,0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.mock-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.mock-stat {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 16px;
}
.mock-stat-val {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: -0.5px;
}
.mock-stat-lbl { color: rgba(255,255,255,0.4); font-size: 11px; }
.mock-row {
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 11px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.mock-row-name { color: rgba(255,255,255,0.72); font-size: 13px; font-weight: 500; }
.mock-row-val { font-size: 12px; font-weight: 700; color: #34d399; }
.mock-badge {
  display: inline-block;
  background: rgba(52,211,153,0.12);
  color: #34d399;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 6px;
}

/* ─── Testimonials — pull-quote layout ──────────── */
/* No star ratings, no identical cards, no emoji avatars */
.testi-section { background: #fff; border-top: 1px solid var(--border); }

.client-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0.45;
}
/* 🔄 OPS: Replace with real client logos */
.logo-pill {
  background: var(--border);
  height: 34px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  min-width: 90px;
}

/* Featured testimonial */
.testi-feature {
  border-left: 3px solid var(--red);
  padding: 0 0 0 40px;
  margin-bottom: 56px;
}
.testi-feature blockquote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  font-style: normal;
}
.testi-feature blockquote::before { content: '\201C'; }
.testi-feature blockquote::after  { content: '\201D'; }
.testi-attr {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-attr-line {
  width: 20px;
  height: 1.5px;
  background: var(--red);
}
.testi-attr-name { font-size: 13px; font-weight: 700; color: var(--navy-dark); }
.testi-attr-role { font-size: 12px; color: var(--slate); }

/* Secondary testimonials */
.testi-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.testi-mini {
  padding: 0;
}
.testi-mini p {
  font-size: 15px;
  color: var(--navy-dark);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-mini p::before { content: '\201C'; }
.testi-mini p::after  { content: '\201D'; }
.testi-mini-attr {
  font-size: 12px;
  color: var(--slate);
  font-weight: 500;
}
.testi-mini-attr strong {
  color: var(--navy-dark);
  font-style: normal;
}

/* ─── Compliance badges ─────────────────────────── */
.compliance-section { background: var(--light); }
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.country-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: border-color .2s;
  text-decoration: none;
  color: inherit;
}
.country-card:hover { border-color: rgba(232,25,44,0.35); }
.country-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.country-flag { font-size: 20px; line-height: 1; }
.country-name { font-weight: 800; font-size: 13px; color: var(--navy-dark); }
.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.comp-tag {
  background: var(--light);
  color: var(--slate);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: .2px;
}

/* ─── Impact numbers ────────────────────────────── */
/* Asymmetric layout — not a uniform 4-col grid */
.impact-section { background: var(--navy); }

.impact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.impact-cell {
  padding: 48px 52px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.impact-cell:nth-child(even) { border-right: none; }
.impact-cell:nth-child(n+3) { border-bottom: none; }

.impact-num {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 10px;
}
.impact-num span.red { color: var(--red); }
.impact-lbl {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
}
.impact-cell.featured .impact-num {
  font-size: clamp(56px, 7vw, 96px);
  color: var(--red);
}
.impact-cell.featured .impact-lbl {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

/* ─── Final CTA ─────────────────────────────────── */
.cta-section {
  background: var(--red);
  padding: 96px 48px;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-section p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--red);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  transition: transform .15s;
  letter-spacing: -0.2px;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color .2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.9); }

/* ─── Footer ────────────────────────────────────── */
footer {
  background: #091830;
  padding: 64px 48px 32px;
  color: rgba(255,255,255,0.5);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { height: 28px; width: auto; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 220px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 16px; letter-spacing: .3px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,0.48); transition: color .2s; }
.footer-col li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── Local office badge ─────────────────────────── */
.office-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid #a7f3d0;
}

/* ─── Demo data indicator ───────────────────────── */
.demo-note {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: .3px;
}

/* ─── Scroll reveal ─────────────────────────────── */
/*
  One system, three variants:
  [data-reveal]          — fade up (default, most elements)
  [data-reveal="left"]   — fade in from left (labels, kicker line)
  [data-reveal="num"]    — fade up + slight scale, for big impact numbers
  Stagger siblings via [data-delay="1"…"5"]
  Disabled for prefers-reduced-motion.
*/
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal="left"] {
  transform: translateX(-18px);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
              transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal="num"] {
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-delay="1"] { transition-delay: 0.07s; }
[data-delay="2"] { transition-delay: 0.14s; }
[data-delay="3"] { transition-delay: 0.21s; }
[data-delay="4"] { transition-delay: 0.28s; }
[data-delay="5"] { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .diff-row { grid-template-columns: 120px 1fr; }
  .diff-body { grid-template-columns: 1fr; gap: 12px; }
  .diff-illo { grid-column: 2; justify-self: start; margin-top: 20px; width: 100px; }
  .diff-illo svg { width: 100px; height: 100px; }
}
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 64px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-grid, .smart-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-map { height: 300px; }
  .trust-bar { padding: 0 20px; }
  .trust-inner { flex-wrap: wrap; }
  .trust-item {
    flex: 0 0 45%;
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .trust-item:last-child { border-bottom: none; padding-left: 0; }
  .trust-item:not(:first-child) { padding-left: 0; }
  .diff-row { grid-template-columns: 1fr; gap: 0; }
  .diff-num { font-size: 48px; margin-bottom: 16px; order: 0; }
  .diff-illo { order: 1; margin: 16px 0 0; width: 110px; justify-self: center; }
  .diff-illo svg { width: 110px; height: 110px; }
  .diff-body { grid-template-columns: 1fr; gap: 10px; order: 2; }
  .services-grid { grid-template-columns: 1fr; }
  .service-illo { height: 110px; }
  .testi-secondary { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-layout { grid-template-columns: 1fr; }
  .impact-cell { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Mobile nav ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  nav.nav-open .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 64px);
    background: #0A1628;
    padding: 20px 24px 40px;
    gap: 0;
    overflow-y: auto;
    z-index: 200;
  }
  nav.nav-open .nav-links > li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  nav.nav-open .nav-links > li > a,
  nav.nav-open .nav-dropdown-toggle { display: block; padding: 15px 0; font-size: 17px; font-weight: 600; color: rgba(255,255,255,0.85); }
  nav.nav-open .nav-links > li > a:hover,
  nav.nav-open .nav-dropdown-toggle:hover { color: #fff; }
  nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  nav.nav-open .nav-dropdown-menu { display: none; }
  nav.nav-open .nav-dropdown.is-open .nav-dropdown-menu {
    display: block !important;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 8px 16px;
    min-width: unset;
    transition: none;
  }
  nav.nav-open .nav-dropdown-menu::before { display: none; }
  nav.nav-open .nav-dropdown-menu li a { padding: 9px 0; font-size: 14px; color: rgba(255,255,255,0.55); }
  nav.nav-open .nav-dropdown-menu li a:hover { color: #fff; }
  nav.nav-open .nav-dropdown.is-open > .nav-dropdown-toggle { color: #fff; }
}

/* Countries dropdown */
.nav-dropdown-menu li a .nav-flag {
  display: inline-block;
  width: 16px;
  height: auto;
  margin-right: 8px;
  border-radius: 2px;
  vertical-align: -1px;
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: #0d1f38;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 200;
  transition: opacity .15s, visibility .15s;
}
/* Invisible bridge covers the gap so mouse can travel to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.nav-dropdown-menu li a.active { color: var(--red); }



/* ═══════════════════════════════════════════ */
/* ─── Services page ─── */


/* Why outsource — editorial numbered rows (approved diff-row pattern) */
.why-section { background: var(--light); padding: 96px 48px; }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.why-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; }
.why-header p { font-size: 16px; color: var(--slate); line-height: 1.75; }
.why-rows { border-top: 1px solid var(--border); }
.why-row { display: grid; grid-template-columns: 72px 1fr 2fr; gap: 40px; border-bottom: 1px solid var(--border); padding: 36px 0; align-items: start; }
.why-num { font-size: 56px; font-weight: 900; color: rgba(10,22,40,0.07); line-height: 1; letter-spacing: -3px; padding-top: 2px; }
.why-row h3 { font-size: 18px; font-weight: 800; color: var(--navy-dark); letter-spacing: -0.3px; line-height: 1.25; padding-top: 4px; }
.why-row p { font-size: 15px; color: var(--slate); line-height: 1.7; padding-top: 4px; }

/* Onboarding — left-anchored vertical timeline */
.onboard-section { background: var(--navy-dark); padding: 96px 48px; }
.onboard-inner { max-width: 1200px; margin: 0 auto; }
.onboard-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.onboard-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: #fff; letter-spacing: -1.5px; line-height: 1.1; }
.onboard-header p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.timeline-v { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline-v::before { content: ''; position: absolute; left: 19px; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.1); }
.tl-item { display: grid; grid-template-columns: 40px 1fr 2fr; gap: 32px; padding: 32px 0; position: relative; align-items: start; }
.tl-item:last-child { padding-bottom: 0; }
.tl-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-weight: 900; color: #fff; font-size: 14px; position: relative; z-index: 2; flex-shrink: 0; border: 3px solid var(--navy-dark); }
.tl-title { font-size: 17px; font-weight: 800; color: #fff; padding-top: 8px; }
.tl-copy { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.7; padding-top: 8px; }

/* SLA — inline stats, no separate cards */
.sla-section { padding: 96px 48px; }
.sla-inner { max-width: 1200px; margin: 0 auto; }
.sla-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.sla-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; }
.sla-header p { font-size: 16px; color: var(--slate); line-height: 1.75; }
.sla-rows { border-top: 1px solid var(--border); }
.sla-row { display: grid; grid-template-columns: 140px 1fr; gap: 48px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--border); }
.sla-num { font-size: clamp(36px, 4vw, 52px); font-weight: 900; color: var(--red); letter-spacing: -2px; line-height: 1; }
.sla-label { font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.sla-desc { font-size: 14px; color: var(--slate); line-height: 1.6; }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 20px 72px;   border-bottom: 1px solid var(--border);
}
  .why-section, .onboard-section, .sla-section, .cta-section { padding-left: 20px; padding-right: 20px; }
  .why-header, .onboard-header, .sla-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .why-row { grid-template-columns: 1fr; gap: 8px; }
  .why-num { font-size: 36px; }
  .tl-item { grid-template-columns: 40px 1fr; }
  .tl-copy { grid-column: 2; margin-top: -8px; }
  .sla-row { grid-template-columns: 1fr; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* Countries dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: #0d1f38;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 200;
  transition: opacity .15s, visibility .15s;
}
/* Invisible bridge covers the gap so mouse can travel to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.nav-dropdown-menu li a.active { color: var(--red); }



/* ─── SmartPAY page ─── */

.hero-ctas {display: flex;gap: 14px;flex-wrap: wrap;padding: 20px 0px;}

/* Hero dashboard mock */
.hero-mock {
  background: #0d1f38;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  overflow: hidden;
  transform: translateY(1px);
  box-shadow: 0 32px 64px rgba(10,22,40,0.18);
}
.mock-bar { background: #091628; padding: 12px 18px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mock-d { width: 10px; height: 10px; border-radius: 50%; }
.mock-title-text { flex: 1; text-align: center; font-size: 11px; color: rgba(255,255,255,0.25); font-weight: 600; letter-spacing: 0.5px; }
.mock-body { padding: 20px; }
.mock-run-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mock-run-lbl { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; }
.mock-run-badge { font-size: 10px; font-weight: 700; color: #34d399; background: rgba(52,211,153,0.12); padding: 3px 8px; border-radius: 4px; }
.mock-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.mock-stat-box { background: rgba(255,255,255,0.05); border-radius: 6px; padding: 12px 14px; }
.mock-stat-val { font-size: 18px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.mock-stat-val.g { color: #34d399; }
.mock-stat-key { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.mock-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 12px 0; }
.mock-row-item { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mock-row-item:last-child { border-bottom: none; }
.mock-row-name { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }
.mock-row-status { font-size: 10px; font-weight: 700; color: #34d399; background: rgba(52,211,153,0.1); padding: 2px 7px; border-radius: 3px; }

/* Feature list — approved red-dot style, 2-col split */
.features-section { padding: 96px 48px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.features-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; }
.features-header p { font-size: 16px; color: var(--slate); line-height: 1.75; }
.feat-rows { border-top: 1px solid var(--border); }
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-bottom: 1px solid var(--border); }
.feat-cell { display: flex; gap: 20px; padding: 28px 32px 28px 0; align-items: flex-start; }
.feat-cell:last-child { padding-left: 32px; padding-right: 0; border-left: 1px solid var(--border); }
.feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); margin-top: 7px; flex-shrink: 0; }
.feat-h { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 5px; letter-spacing: -0.2px; }
.feat-p { font-size: 13px; color: var(--slate); line-height: 1.65; }

/* In-house section — editorial 2-col */
.inhouse-section { background: var(--navy-dark); padding: 96px 48px; }
.inhouse-inner { max-width: 1200px; margin: 0 auto; }
.inhouse-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.inhouse-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: #fff; letter-spacing: -1.5px; line-height: 1.1; }
.inhouse-header p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.inhouse-rows { border-top: 1px solid rgba(255,255,255,0.08); }
.inhouse-row { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px 0; align-items: start; }
.inhouse-row h3 { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.3; }
.inhouse-row p { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.7; }

/* Security — ruled list, no boxes */
.security-section { background: var(--light); padding: 96px 48px; }
.security-inner { max-width: 1200px; margin: 0 auto; }
.security-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.security-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; }
.security-header p { font-size: 16px; color: var(--slate); line-height: 1.75; }
.sec-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.sec-item { padding: 20px 24px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--navy-dark); display: flex; align-items: center; gap: 12px; }
.sec-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.sec-note { margin-top: 24px; padding: 14px 18px; background: #fef3c7; font-size: 13px; color: #92400e; }

/* Integrations */
.integrations-section { padding: 96px 48px; }
.integrations-inner { max-width: 1200px; margin: 0 auto; }
.int-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.int-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; }
.int-header p { font-size: 16px; color: var(--slate); line-height: 1.75; }
.int-rows { border-top: 1px solid var(--border); }
.int-row { display: grid; grid-template-columns: 160px 1fr; gap: 40px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--border); }
.int-cat-name { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--slate); }
.int-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.int-pill { background: var(--light); border: 1px solid var(--border); padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--navy-dark); border-radius: 4px; }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 20px 0;   border-bottom: 1px solid var(--border);
}
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-section, .inhouse-section, .security-section, .integrations-section, .cta-section { padding-left: 20px; padding-right: 20px; }
  .features-header, .inhouse-header, .security-header, .int-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .feat-row { grid-template-columns: 1fr; }
  .feat-cell:last-child { border-left: none; padding-left: 0; border-top: 1px solid var(--border); }
  .inhouse-row, .int-row { grid-template-columns: 1fr; gap: 8px; }
  .sec-rows { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* Countries dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: #0d1f38;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 200;
  transition: opacity .15s, visibility .15s;
}
/* Invisible bridge covers the gap so mouse can travel to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.nav-dropdown-menu li a.active { color: var(--red); }



/* ─── Pricing page ─── */

.hero-right { padding-bottom: 0; }
.hero-note { font-size: 13px; color: var(--slate); line-height: 1.6; border-top: 1px solid var(--border); padding-top: 20px; margin-top: 24px; }

/* Pricing tiers — approved card style (top red bar on hover) */
.tiers-section { padding: 96px 48px; }
.tiers-inner { max-width: 1200px; margin: 0 auto; }
.tiers-label-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }
.tiers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.tier { background: #fff; border: 1px solid var(--border); padding: 36px 32px; position: relative; transition: box-shadow .2s; }
.tier:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.tier::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); opacity: 0.3; transition: opacity .2s; }
.tier:hover::before, .tier.featured::before { opacity: 1; }
.tier.featured { border-color: var(--navy-dark); }
.tier-type { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 20px; display: block; }
.tier h3 { font-size: 22px; font-weight: 900; color: var(--navy-dark); letter-spacing: -0.5px; margin-bottom: 8px; }
.tier-desc { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: 24px; min-height: 40px; }
.tier-price { font-size: 36px; font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
.tier-price-unit { font-size: 14px; font-weight: 500; color: var(--slate); letter-spacing: 0; }
.tier-price-note { font-size: 12px; color: var(--slate); margin-bottom: 24px; }
.tier-btn { display: block; text-align: center; padding: 12px; border-radius: 6px; font-weight: 700; font-size: 14px; margin-bottom: 28px; transition: background .2s, border-color .2s; }
.tier-btn.primary { background: var(--red); color: #fff; }
.tier-btn.primary:hover { background: var(--red2); }
.tier-btn.outline { border: 1.5px solid var(--border); color: var(--navy-dark); }
.tier-btn.outline:hover { border-color: var(--navy-dark); }
.tier-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--border); padding-top: 20px; }
.tier-feats li { font-size: 13.5px; color: var(--navy-dark); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.tier-feats li::before { content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.tier-feats li.no { color: var(--slate); }
.tier-feats li.no::before { content: '—'; color: var(--border); }

/* What's included — ruled rows */
.included-section { background: var(--light); padding: 96px 48px; }
.included-inner { max-width: 1200px; margin: 0 auto; }
.included-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.included-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; }
.included-header p { font-size: 16px; color: var(--slate); line-height: 1.75; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.inc-item { padding: 18px 24px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--navy-dark); display: flex; align-items: center; gap: 12px; }
.inc-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* FAQ */
.faq-section { padding: 96px 48px; }
.faq-inner { max-width: 1200px; margin: 0 auto; }
.faq-header { margin-bottom: 52px; }
.faq-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; margin-top: 12px; }
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 22px 0; font-size: 16px; font-weight: 700; color: var(--navy-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--red); font-weight: 400; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--slate); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 20px 80px;   border-bottom: 1px solid var(--border);
}
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .tiers-section, .included-section,
  .tiers-grid { grid-template-columns: 1fr; }
  .included-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .included-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* Countries dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: #0d1f38;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 200;
  transition: opacity .15s, visibility .15s;
}
/* Invisible bridge covers the gap so mouse can travel to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.nav-dropdown-menu li a.active { color: var(--red); }



/* ─── Contact page ─── */
.contact-page { background: #fff; min-height: 100vh; padding: 120px 48px 80px; border-bottom: 1px solid var(--border); }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* Left — editorial copy */
.office-photo-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--light);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
}
/* 🔄 OPS: Replace placeholder div with: <img src="images/sg-office.jpg" alt="Payroll2U Singapore Office" style="width:100%;height:100%;object-fit:cover;"> */
/* Recommended: 1200×675px, interior office shot, well-lit */
.office-photo-wrap img { width:100%; height:100%; object-fit:cover; display:block; }
.office-photo-tag {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #fff;
  background: rgba(10,22,40,0.7); backdrop-filter: blur(4px);
  padding: 4px 10px;
}
.contact-left { padding-top: 8px; }
.contact-left h1 { font-size: clamp(38px, 5vw, 60px); font-weight: 900; color: var(--navy-dark); line-height: 1.05; letter-spacing: -2.5px; margin-bottom: 24px; }
.contact-left h1 em { font-style: normal; color: var(--red); }
.contact-left > p { color: var(--slate); font-size: 17px; line-height: 1.75; margin-bottom: 52px; max-width: 420px; }

/* Process steps — numbered rows */
.process-rows { border-top: 1px solid var(--border); margin-bottom: 48px; }
.process-row { display: grid; grid-template-columns: 32px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: start; }
.process-n { font-size: 11px; font-weight: 900; color: var(--red); letter-spacing: 1px; padding-top: 3px; }
.process-title { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 3px; }
.process-desc { font-size: 13px; color: var(--slate); line-height: 1.55; }

/* Direct contact */
.direct-contact { border-top: 1px solid var(--border); padding-top: 28px; }
.direct-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--slate); margin-bottom: 16px; }
.direct-item { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; font-size: 14px; color: var(--navy-dark); }

/* Form card */
.form-card { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 24px 64px rgba(0,0,0,0.3); }
.form-card h2 { font-size: 22px; font-weight: 900; color: var(--navy-dark); margin-bottom: 6px; letter-spacing: -0.5px; }
.form-card > p { font-size: 14px; color: var(--slate); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-dark); margin-bottom: 6px; }
.form-group label .req { color: var(--red); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--navy-dark); outline: none; transition: border-color .2s; background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; margin-top: 4px; }
.checkbox-row input { width: auto; margin-top: 3px; flex-shrink: 0; }
.checkbox-row label { font-size: 12.5px; color: var(--slate); line-height: 1.5; }
.btn-submit { width: 100%; background: var(--red); color: #fff; padding: 14px; border-radius: 6px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: background .2s; font-family: 'Inter', sans-serif; }
.btn-submit:hover { background: var(--red2); }
.form-note { text-align: center; font-size: 12px; color: var(--slate); margin-top: 12px; }
.form-error { font-size: 13px; color: var(--red); margin-bottom: 12px; min-height: 0; }
.form-error:empty { display: none; }
.recaptcha-widget { margin-bottom: 16px; }

.ops-banner { max-width: 1200px; margin: 0 auto 20px; background: #fef3c7; border: 1px solid #f59e0b40; border-radius: 6px; padding: 10px 16px; font-size: 13px; color: #92400e; }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .contact-page { padding: 100px 20px 60px;   border-bottom: 1px solid var(--border);
}
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
}


/* Countries dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: #0d1f38;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 200;
  transition: opacity .15s, visibility .15s;
}
/* Invisible bridge covers the gap so mouse can travel to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.nav-dropdown-menu li a.active { color: var(--red); }



/* ─── About page ─── */


/* Story — editorial prose, not centred */
.story-section { padding: 96px 48px; }
.story-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.story-aside { position: sticky; top: 96px; }
.story-aside .section-label { margin-bottom: 24px; }
.story-aside h2 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1px; line-height: 1.15; }
.story-prose p { font-size: 17px; color: var(--slate); line-height: 1.85; margin-bottom: 22px; }
.story-prose p:last-child { margin-bottom: 0; }
.story-prose strong { color: var(--navy-dark); font-weight: 700; }
.ops-callout { background: #fef3c7; border-left: 3px solid #f59e0b; padding: 14px 18px; font-size: 13px; color: #92400e; margin-top: 28px; }

/* Stats — trust-bar style, horizontal ruled */
.stats-section { background: var(--navy-dark); padding: 0 48px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: stretch; }
.stat-item { display: flex; flex-direction: column; justify-content: center; padding: 52px 48px 52px 0; flex: 1; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:not(:first-child) { padding-left: 48px; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(40px, 4.5vw, 60px); font-weight: 900; color: var(--white); letter-spacing: -2px; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* Focus section — 2-col, left is editorial list, right is pull-quote */
.focus-section { background: var(--light); padding: 96px 48px; }
.focus-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.focus-left .section-label { margin-bottom: 20px; }
.focus-left h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 40px; }
.focus-rows { border-top: 1px solid var(--border); }
.focus-row { display: flex; align-items: baseline; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.focus-row .mark { font-size: 13px; font-weight: 800; color: var(--slate); flex-shrink: 0; width: 14px; }
.focus-row .mark.yes { color: var(--green); }
.focus-row span { font-size: 15px; color: var(--navy-dark); line-height: 1.5; }
.focus-quote { border-left: 3px solid var(--red); padding: 0 0 0 36px; margin-top: 8px; }
.focus-quote blockquote { font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; color: var(--navy-dark); line-height: 1.45; letter-spacing: -0.5px; margin-bottom: 20px; }
.focus-quote blockquote::before { content: 'C'; }
.focus-quote blockquote::after { content: 'D'; }
.focus-attr { display: flex; align-items: center; gap: 14px; }
.focus-attr-line { width: 18px; height: 1.5px; background: var(--red); }
.focus-attr-text { font-size: 12px; color: var(--slate); }

/* Certifications — horizontal ruled list, not cards */
.cert-section { padding: 96px 48px; }
.cert-inner { max-width: 1200px; margin: 0 auto; }
.cert-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.cert-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; }
.cert-header p { font-size: 16px; color: var(--slate); line-height: 1.7; }
.cert-rows { border-top: 1px solid var(--border); }
.cert-row { display: grid; grid-template-columns: 180px 1fr auto; gap: 32px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--border); }
.cert-name { font-size: 15px; font-weight: 800; color: var(--navy-dark); }
.cert-desc { font-size: 14px; color: var(--slate); line-height: 1.5; }
.cert-status { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--slate); }
.cert-status.confirmed { color: var(--green); }

/* Offices — left-aligned table layout */
.offices-section { background: var(--light); padding: 96px 48px; }
.offices-inner { max-width: 1200px; margin: 0 auto; }
.offices-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.offices-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; }
.offices-header p { font-size: 16px; color: var(--slate); line-height: 1.7; }
.offices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.office-cell { background: #fff; padding: 28px 24px; }
/* .office-cell:first-child { background: var(--navy-dark); } */
.office-num { font-size: 11px; font-weight: 700; color: rgba(10,22,40,0.2); letter-spacing: 1.5px; margin-bottom: 12px; }
/* .office-cell:first-child .office-num { color: rgba(255,255,255,0.25); } */
.office-country { font-size: 16px; font-weight: 800; color: var(--navy-dark); margin-bottom: 4px; }
/* .office-cell:first-child .office-country { color: #fff; } */
.office-city { font-size: 11.5px; color: var(--slate); line-height: 1.65; }
/* .office-cell:first-child .office-city { color: rgba(255,255,255,0.55); } */
/* .office-cell:first-child .office-contact { color: rgba(255,255,255,0.45); } */
.office-contact { font-size: 11.5px; color: var(--slate); margin-top: 6px; }
.office-hq { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin-top: 4px; }

/* Leadership — minimal, left-aligned */
.team-section { padding: 96px 48px; }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-header { margin-bottom: 52px; }
.team-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; margin-top: 12px; }
/* Leadership — portrait card grid */
.team-grid-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card-v2 { display: flex; flex-direction: column; }
.team-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--light);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px;
}
/* 🔄 OPS: Replace img placeholder with real headshot — recommended 360×480px, face centred */
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(160deg, #e8edf4 0%, #d8e0ec 100%);
}
.team-photo-placeholder svg { opacity: 0.3; }
.team-photo-placeholder span {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--slate); opacity: 0.6;
}
.team-photo-tag {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 9px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: #fff;
  background: var(--red); padding: 3px 8px;
}
.team-name { font-size: 16px; font-weight: 800; color: var(--navy-dark); margin-bottom: 2px; }
.team-role-title { font-size: 13px; color: var(--slate); }
.team-focus { font-size: 13px; color: var(--slate); line-height: 1.6; margin-top: 6px; }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 20px 72px;   border-bottom: 1px solid var(--border);
}
  .story-section, .focus-section, .cert-section, .offices-section, .team-section, .cta-section { padding-left: 20px; padding-right: 20px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-aside { position: static; }
  .focus-inner { grid-template-columns: 1fr; gap: 48px; }
  .cert-header, .offices-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .cert-row { grid-template-columns: 1fr; gap: 6px; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .team-grid-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 45%; padding: 36px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* Countries dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: #0d1f38;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 200;
  transition: opacity .15s, visibility .15s;
}
/* Invisible bridge covers the gap so mouse can travel to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.nav-dropdown-menu li a.active { color: var(--red); }



/* ─── Country pages (shared) ─── */

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap;padding: 20px 0px;align-items:center}

/* Hero right: compliance quick-list */
.hero-compliance { border: 1px solid var(--border); padding: 28px 32px; }
.hc-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--slate); margin-bottom: 18px; }
.hc-rows { display: flex; flex-direction: column; gap: 0; }
.hc-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.hc-row:last-child { border-bottom: none; }
.hc-name { font-size: 14px; font-weight: 600; color: var(--navy-dark); }
.hc-body { font-size: 12px; color: var(--slate); }

/* Compliance detail — ruled table */
.compliance-section { background: var(--light); padding: 96px 48px; }
.compliance-inner { max-width: 1200px; margin: 0 auto; }
.comp-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.comp-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; }
.comp-header p { font-size: 16px; color: var(--slate); line-height: 1.75; }
.comp-rows { border-top: 1px solid var(--border); }
.comp-row { display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.comp-name { font-size: 14px; font-weight: 800; color: var(--navy-dark); }
.comp-what { font-size: 14px; color: var(--slate); line-height: 1.6; }
.comp-rate { font-size: 13px; font-weight: 600; color: var(--navy-dark); }

/* Key deadlines — 2-col grid */
.deadlines-section { padding: 96px 48px; }
.deadlines-inner { max-width: 1200px; margin: 0 auto; }
.deadlines-header { margin-bottom: 52px; }
.deadlines-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; margin-top: 12px; }
.deadlines-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.deadline-cell { background: var(--light); padding: 28px 32px; }
.deadline-cell.dark { background: var(--navy-dark); }
.dl-month { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.dl-task { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.deadline-cell.dark .dl-task { color: #fff; }
.dl-desc { font-size: 13px; color: var(--slate); line-height: 1.6; }
.deadline-cell.dark .dl-desc { color: rgba(255,255,255,0.5); }

/* Testimonial — featured pull-quote */
.testi-section { padding: 96px 48px; }
.testi-inner { max-width: 1200px; margin: 0 auto; }
.testi-header { margin-bottom: 52px; }
.testi-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; margin-top: 12px; }
.testi-feature { border-left: 3px solid var(--red); padding: 0 0 0 40px; }
.testi-feature blockquote { font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; color: var(--navy-dark); line-height: 1.45; letter-spacing: -0.5px; margin-bottom: 24px; font-style: normal; }
.testi-feature blockquote::before { content: '\201C'; }
.testi-feature blockquote::after { content: '\201D'; }
.testi-attr { display: flex; align-items: center; gap: 16px; }
.testi-attr-line { width: 20px; height: 1.5px; background: var(--red); }
.testi-attr-name { font-size: 14px; font-weight: 700; color: var(--navy-dark); }
.testi-attr-role { font-size: 13px; color: var(--slate); }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 20px 72px;   border-bottom: 1px solid var(--border);
}
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .compliance-section, .deadlines-section, .testi-section, .cta-section { padding-left: 20px; padding-right: 20px; }
  .comp-header, .comp-row { grid-template-columns: 1fr; gap: 8px; }
  .deadlines-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* Countries dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: #0d1f38;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 200;
  transition: opacity .15s, visibility .15s;
}
/* Invisible bridge covers the gap so mouse can travel to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.nav-dropdown-menu li a.active { color: var(--red); }



/* ─── Animation delay classes (SVG map pulse rings) ─── */
.ad-0  { animation-delay: 0.00s; }
.ad-1  { animation-delay: 0.35s; }
.ad-2  { animation-delay: 0.50s; }
.ad-3  { animation-delay: 0.70s; }
.ad-4  { animation-delay: 1.05s; }
.ad-5  { animation-delay: 1.20s; }
.ad-6  { animation-delay: 1.40s; }
.ad-7  { animation-delay: 1.75s; }
.ad-8  { animation-delay: 1.85s; }
.ad-9  { animation-delay: 1.90s; }
.ad-10 { animation-delay: 2.10s; }
.ad-11 { animation-delay: 2.45s; }
.ad-12 { animation-delay: 2.60s; }
.ad-13 { animation-delay: 2.80s; }
.ad-14 { animation-delay: 3.15s; }
.ad-15 { animation-delay: 3.25s; }
.ad-16 { animation-delay: 3.50s; }
.ad-17 { animation-delay: 3.85s; }

/* SVG map hit area cursor */
.map-marker circle[fill="transparent"] { cursor: pointer; }

/* ─── Traffic-light dots (smartPAY mock) ─── */
.mock-d-red    { background: #ff5f57; }
.mock-d-yellow { background: #febc2e; }
.mock-d-green  { background: #28c840; }

/* ─── Hero ghost link (country pages) ─── */
.hero-ghost-link {
  color: var(--slate);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}

/* ─── Section title white variant ─── */
.section-title-white { color: #fff; }

/* ─── Pricing hero includes panel ─── */
.plan-includes { border-top: 1px solid var(--border); padding-top: 28px; }
.plan-includes-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--slate); margin-bottom: 16px; }
.plan-includes-list { display: flex; flex-direction: column; gap: 10px; }
.plan-includes-item { font-size: 14px; color: var(--navy-dark); display: flex; gap: 12px; align-items: center; }
.plan-includes-arrow { color: var(--red); font-weight: 700; }
.plan-includes-note { font-size: 13px; color: var(--slate); }
.plan-includes-note a { color: var(--red); font-weight: 600; }

/* ─── Why Complex section (complex country pages) ─── */
.why-complex-section { background: var(--navy-dark); padding: 96px 48px; }
.why-complex-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-complex-heading { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: #fff; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; }
.why-complex-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.why-complex-inner .hero-cta { margin-top: 24px; }
.why-complex-rows { border-top: 1px solid rgba(255,255,255,0.1); }
.why-complex-row { display: grid; grid-template-columns: 24px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: start; }
.why-complex-row:last-child { border-bottom: none; }
.why-complex-num { color: var(--red); font-weight: 800; font-size: 14px; padding-top: 2px; }
.why-complex-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.why-complex-body { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
@media (max-width: 900px) {
  .why-complex-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-complex-section { padding-left: 20px; padding-right: 20px; }
}

/* ─── About: Awards section ─── */
.awards-section { background: var(--light); padding: 96px 48px; }
.awards-inner { max-width: 1200px; margin: 0 auto; }
.awards-header { margin-bottom: 52px; }
.awards-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; margin-top: 12px; }
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.award-card { background: #fff; padding: 32px 28px; display: flex; flex-direction: column; gap: 20px; }
.award-logo-wrap { height: 48px; background: var(--light); border: 1px dashed var(--border); display: flex; align-items: center; justify-content: center; }
.award-logo-text { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--slate); opacity: 0.5; }
.award-name { font-size: 14px; font-weight: 800; color: var(--navy-dark); margin-bottom: 4px; }
.award-year { font-size: 12px; color: var(--slate); }
@media (max-width: 900px) {
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .awards-section { padding-left: 20px; padding-right: 20px; }
}

/* ─── About: Client Testimonials section ─── */
.about-testi-section { padding: 96px 48px; }
.about-testi-inner { max-width: 1200px; margin: 0 auto; }
.about-testi-header { margin-bottom: 52px; }
.about-testi-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; margin-top: 12px; }
.about-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-testi-card { background: var(--light); padding: 32px 28px; display: flex; flex-direction: column; gap: 20px; }
.about-testi-quote { font-size: 15px; color: var(--navy-dark); line-height: 1.7; font-style: italic; }
.about-testi-attr { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.about-testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-dark); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0; }
.about-testi-name { font-size: 14px; font-weight: 700; color: var(--navy-dark); }
.about-testi-role { font-size: 12px; color: var(--slate); }
@media (max-width: 900px) {
  .about-testi-grid { grid-template-columns: 1fr; }
  .about-testi-section { padding-left: 20px; padding-right: 20px; }
}

/* ─── Contact: Required field marker ─── */
.req { color: var(--red); }

/* ─── Additional utility classes ─── */

/* Index page */
.section-title-white { color: #fff; }
.section-title-no-mb { margin-bottom: 0; }
.btn-primary-hero { align-self: flex-start; margin-top: 28px; }
.mock-bar-tag { color: rgba(255,255,255,0.28); font-size: 11px; margin-left: 10px; font-weight: 600; letter-spacing: .5px; }
.mock-stat-green { color: #34d399; }
.mock-title-mt { margin-top: 4px; }
.client-logos-mt { margin-top: 40px; }

/* Pricing plan-includes panel — fix duplicate (remove standalone entry if present above) */
.plan-includes-link { color: var(--red); font-weight: 600; }

/* About: shared 2-col section header */
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.about-h2 { font-size: clamp(26px,3vw,40px); font-weight: 900; color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1.1; }
.about-desc { font-size: 16px; color: var(--slate); line-height: 1.75; }

/* About: Awards section corrections */
.awards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.award-logo-text { font-size: 10px; font-weight: 700; color: var(--slate); letter-spacing: 1px; text-transform: uppercase; }

/* About: Testimonials section */
.about-testi-grid-actual { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2px; align-items: start; }
.testi-card-featured { background: var(--navy-dark); padding: 40px 36px; display: flex; flex-direction: column; gap: 28px; }
.testi-pullquote { border-left: 3px solid var(--red); padding-left: 20px; }
.testi-featured-quote { font-size: clamp(16px,2vw,20px); font-weight: 700; color: #fff; line-height: 1.5; font-style: italic; }
.testi-featured-attr { display: flex; align-items: center; gap: 16px; padding-top: 4px; border-top: 1px solid rgba(255,255,255,0.1); }
.testi-featured-avatar { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.testi-featured-name { font-size: 14px; font-weight: 700; color: #fff; }
.testi-featured-role { font-size: 12px; color: rgba(255,255,255,0.5); }
.testi-card-sm { background: var(--light); padding: 36px 32px; display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.testi-card-sm-b { background: var(--light); padding: 36px 32px; display: flex; flex-direction: column; gap: 24px; margin-top: 64px; }
.testi-quote { font-size: 15px; color: var(--navy-dark); line-height: 1.7; font-style: italic; }
.testi-attr { display: flex; align-items: center; gap: 14px; padding-top: 4px; border-top: 1px solid var(--border); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--border); flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.testi-name { font-size: 13px; font-weight: 700; color: var(--navy-dark); }
.testi-role { font-size: 12px; color: var(--slate); }
/* ═══════════════════════════════════════════════════════════
   PAGE-SCOPED HERO RULES (prevents cross-page cascade conflicts)
   ═══════════════════════════════════════════════════════════ */

/* ── Shared page-hero base ── */
.page-hero {
  background: #fff;
  padding: 160px 48px 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 100% 50%, rgba(232,25,44,0.04) 0%, transparent 70%);
  pointer-events: none;
}
/* Single-column hero-inner (services, default) */
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.page-hero h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p { color: var(--slate); font-size: 17px; line-height: 1.75; }

/* ── 2-column hero-inner (services, smartpay, pricing, country pages) ── */
body.pg-services .hero-inner,
body.pg-smartpay .hero-inner,
body.pg-pricing  .hero-inner,
body.pg-country  .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Services / SmartPAY hero image (full-height photo, right column) ── */
body.pg-services .hero-inner,
body.pg-smartpay .hero-inner { align-items: stretch; }
.hero-img-wrap { display: flex; align-items: stretch; justify-content: flex-end; height: 100%; }
.hero-img-wrap img {
  width: 100%;
  max-width: 560px;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
/* Left edge fades into the white hero background instead of a hard seam */
.hero-img-fade {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%);
  mask-image: linear-gradient(to right, transparent 0%, black 18%);
}

/* ── Payroll-outsource hero: image bleeds full section width, text overlays ── */
/* .hero-inner is normally position:relative — that would become the containing
   block for the absolutely-positioned image below instead of .page-hero (the
   truly full-width element), so it's dropped to static here. max-width/margin
   stay at the normal centered values (matches every other page-hero) — the
   fade mask below tracks .hero-copy's resulting position via vw-based math
   instead of assuming a fixed pixel position, so centering can stay on. */
body.pg-services .page-hero { min-height: 820px; }
body.pg-services .hero-inner { position: static; max-width: 1200px; margin: 0 auto; }
body.pg-services .hero-copy { position: relative; z-index: 2; max-width: 480px; }
body.pg-services .hero-img-wrap {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  justify-content: flex-end;
  z-index: 1;
}
body.pg-services .hero-img-wrap img {
  max-width: none;
  border-radius: 0;
  object-position: center top;
}
/* .hero-copy's right edge is a constant 528px below ~1296px viewport width
   (.hero-inner isn't wide enough to need centering there), then grows as
   50vw - 120px above that once .hero-inner starts centering within a wider
   .page-hero — max() picks whichever applies, so one formula covers both,
   continuous at the 1296px boundary. Stops add a ~340-580px buffer past that
   edge for a smooth transition that still clears the text at any width. */
body.pg-services .hero-img-fade {
  -webkit-mask-image: linear-gradient(to right, transparent 0, transparent max(580px, 50vw - 70px), black max(920px, 50vw + 280px));
  mask-image: linear-gradient(to right, transparent 0, transparent max(580px, 50vw - 70px), black max(920px, 50vw + 280px));
}

/* ── Pricing: extra bottom padding ── */
body.pg-pricing .page-hero { padding-bottom: 120px; }

/* ── Responsive: collapse 2-col to 1-col on mobile ── */
@media (max-width: 900px) {
  body.pg-services .hero-inner,
  body.pg-smartpay .hero-inner,
  body.pg-pricing  .hero-inner,
  body.pg-country  .hero-inner {
    display: block;
  }
  .hero-img-wrap { margin-top: 32px; }
  .page-hero { padding: 120px 20px 72px; }
  /* Full-bleed overlay doesn't work stacked on mobile — revert to a normal photo block */
  body.pg-services .hero-img-wrap {
    position: static;
    width: 100%;
    height: 260px;
    transform: none;
  }
  body.pg-services .hero-img-wrap img { max-width: none; border-radius: 4px; }
  body.pg-services .hero-img-fade { -webkit-mask-image: none; mask-image: none; }
}

/* ─── Support page ─── */
.support-email-section { text-align: center; }
.support-email-section .section-label { justify-content: center; }
.support-email-section .section-sub { margin-left: auto; margin-right: auto; margin-bottom: 32px; }
.support-offices-note { text-align: center; color: var(--slate); font-size: 14px; margin-top: 40px; }

/* ─── 404 page ─── */
body.pg-error .page-hero { text-align: center; min-height: calc(100vh - 64px); display: flex; align-items: center; }
body.pg-error .hero-inner { width: 100%; }
body.pg-error .hero-kicker { justify-content: center; }
body.pg-error .hero-cta { justify-content: center; }
body.pg-error p { max-width: 480px; margin-left: auto; margin-right: auto; }
.error-404-num {
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 900;
  color: rgba(10,22,40,0.06);
  line-height: 1;
  letter-spacing: -8px;
  margin-bottom: -24px;
}
.error-404-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.error-404-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  transition: color .2s;
}
.error-404-links a:hover { color: var(--red); }
@media (max-width: 900px) {
  .error-404-num { margin-bottom: -12px; }
}

