/* ══════════════════════════════════════════════════════
   APMH MOORES ROWLAND — GLOBAL STYLESHEET
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --gold:       #8A5E00;
  --gold-dk:    #6E4A00;
  --gold-lt:    #C9A24A;
  --gold-pale:  #F4ECD8;
  --gold-ultra: #FBF5EB;
  --dark:       #1A1A1A;
  --grey-mid:   #555555;
  --grey-lt:    #888888;
  --grey-bg:    #F7F7F7;
  --border:     #E8E0D4;
  --white:      #FFFFFF;
  --wa-green:   #25D366;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --nav-h:      72px;
  --shadow:     0 8px 40px rgba(138,94,0,.12);
  --shadow-sm:  0 2px 16px rgba(0,0,0,.06);
  --radius:     10px;
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 600;
  line-height: 1.12;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1.2;
}
.body-lg { font-size: 17px; line-height: 1.65; color: var(--grey-mid); }
.body-md { font-size: 15px; line-height: 1.6; color: var(--grey-mid); }

/* ── Layout ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 96px 0; }
.section-sm   { padding: 64px 0; }
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.divider {
  width: 48px; height: 3px;
  background: var(--gold-lt);
  margin: 20px 0;
  border-radius: 2px;
}
.divider-center { margin: 20px auto; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  background: var(--gold-ultra);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-lt);
}
.btn-secondary:hover { background: var(--gold-ultra); border-color: var(--gold); }
.btn-light {
  background: var(--white);
  color: var(--gold);
  border: none;
}
.btn-light:hover { background: var(--gold-ultra); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  fill: var(--white);
}
.btn-wa svg { fill: var(--white); }
.btn-wa:hover { background: #1da851; transform: translateY(-1px); }
.btn-sm { font-size: 12px; padding: 9px 18px; }

/* ── Navigation ──────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.nav-logo-text span {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-mid);
  display: block;
  font-family: var(--font-body);
  letter-spacing: .04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--grey-mid);
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: var(--gold-ultra); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--wa-green);
  transition: var(--transition);
}
.nav-wa-icon svg { width: 18px; height: 18px; fill: white; }
.nav-wa-icon:hover { transform: scale(1.08); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 24px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  padding: 10px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-drawer a:hover { background: var(--gold-ultra); color: var(--gold); }

/* ── WhatsApp Float ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 998;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-float-tooltip {
  position: absolute;
  right: 66px;
  background: var(--dark);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-brand .footer-logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.footer-brand .footer-logo-name span {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
  display: block;
  font-family: var(--font-body);
}
.footer-brand p { font-size: 13.5px; line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold-lt); }
.social-btn svg { width: 15px; height: 15px; fill: rgba(255,255,255,.75); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-lt); padding-left: 4px; }
.footer-office {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
}
.footer-office-flag { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-office-detail { line-height: 1.5; }
.footer-office-detail strong { color: rgba(255,255,255,.85); font-weight: 600; display: block; font-size: 13px; }
.footer-office-detail a {
  color: var(--gold-lt);
  font-size: 12px;
  margin-bottom: 0;
}
.footer-moores {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-moores img { height: 28px; width: auto; filter: brightness(0) invert(1) sepia(1) saturate(.3); opacity: .7; }
.footer-moores span { font-size: 11px; color: rgba(255,255,255,.4); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
}
.footer-vcard-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 40px;
}
.footer-vcard-strip p { font-size: 13.5px; color: rgba(255,255,255,.65); }
.footer-vcard-strip strong { color: rgba(255,255,255,.85); }

/* ── Trust Bar ────────────────────────────────────────── */
#trust-bar {
  background: var(--grey-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-lt);
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo-img {
  height: 32px;
  width: auto;
  filter: grayscale(1) opacity(.5);
  transition: var(--transition);
  cursor: pointer;
}
.trust-logo-img:hover { filter: grayscale(0) opacity(1); }
.trust-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-mid);
  opacity: .55;
  transition: var(--transition);
  cursor: default;
}
.trust-logo-text:hover { opacity: 1; color: var(--gold); }

/* ── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2D2416 100%);
  padding: calc(var(--nav-h) + 60px) 0 72px;
}
.page-hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  max-width: 760px;
}
.page-hero .tag { color: var(--gold-lt); border-color: rgba(201,162,74,.3); background: rgba(201,162,74,.08); }
.page-hero h1, .page-hero .display-xl { color: var(--white); }
.page-hero .divider { background: var(--gold-lt); }
.page-hero .body-lg { color: rgba(255,255,255,.7); max-width: 580px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ── Cards ────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); border-color: var(--gold-lt); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.75; }
.card:hover .card-icon { background: var(--gold); }
.card:hover .card-icon svg { stroke: white; }
.card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--grey-mid); line-height: 1.65; }

/* ── Service grid ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.svc-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card:hover .card-icon { background: var(--gold); }
.svc-card:hover .card-icon svg { stroke: white; }
.svc-card .card-icon { margin: 0 auto 16px; }
.svc-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.svc-card p { font-size: 12px; color: var(--grey-mid); }

/* ── Why pillars ─────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold-lt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.why-card:hover { background: var(--gold-ultra); }
.why-card:hover::after { transform: scaleX(1); }
.why-card .card-icon { margin-bottom: 20px; }
.why-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--grey-mid); line-height: 1.65; }

/* ── Stats ────────────────────────────────────────────── */
.stats-bar {
  display: flex;
  gap: 0;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item {
  padding: 0 32px 0 0;
  flex: 1;
  min-width: 100px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--grey-lt);
  margin-top: 4px;
  font-weight: 500;
}

/* ── Industries grid ─────────────────────────────────── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.ind-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.ind-card:hover { border-color: var(--gold); background: var(--gold-ultra); transform: translateX(4px); }
.ind-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-lt); flex-shrink: 0; }
.ind-card h3 { font-size: 13.5px; font-weight: 500; }

/* ── Team card ───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); border-color: var(--gold-lt); transform: translateY(-4px); }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.team-body { padding: 24px; }
.team-body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.team-quals { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.team-exp { font-size: 12px; color: var(--grey-lt); margin-bottom: 12px; }
.team-expertise { font-size: 13px; color: var(--grey-mid); line-height: 1.55; margin-bottom: 16px; }
.team-actions { display: flex; gap: 8px; align-items: center; }
.team-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grey-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}
.team-action-btn:hover { background: var(--gold); border-color: var(--gold); }
.team-action-btn:hover svg { stroke: white; fill: white; }
.team-action-btn svg { width: 14px; height: 14px; stroke: var(--grey-mid); fill: none; stroke-width: 2; }

/* ── Modal ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: 16px;
  max-width: 580px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-body { padding: 28px; }
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--grey-mid);
  transition: var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { background: var(--grey-bg); }

/* ── Insights ─────────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.insight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.insight-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.insight-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.insight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.insight-card:hover .insight-img img { transform: scale(1.04); }
.insight-cat {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gold);
  color: white;
  padding: 4px 10px;
  border-radius: 10px;
}
.insight-body { padding: 24px; }
.insight-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; line-height: 1.3; }
.insight-body p { font-size: 13.5px; color: var(--grey-mid); margin-bottom: 14px; line-height: 1.6; }
.insight-meta { font-size: 12px; color: var(--grey-lt); }

/* ── Sub-service grid ─────────────────────────────────── */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.sub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.sub-card:hover { border-color: var(--gold-lt); background: var(--gold-ultra); }
.sub-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.sub-card p { font-size: 13.5px; color: var(--grey-mid); line-height: 1.6; }

/* ── Problem list ─────────────────────────────────────── */
.problem-list { margin-top: 24px; }
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--grey-mid);
}
.problem-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold-lt);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── CTA Strip ────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.cta-strip p { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 16px; }
.cta-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Contact page ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold-lt);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.privacy-note { font-size: 11.5px; color: var(--grey-lt); margin-top: 12px; line-height: 1.5; }

/* ── Office card ─────────────────────────────────────── */
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.office-card {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.office-card .flag { font-size: 24px; margin-bottom: 10px; }
.office-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.office-card p { font-size: 13px; color: var(--grey-mid); line-height: 1.6; margin-bottom: 12px; }
.office-card a { font-size: 12.5px; color: var(--gold); font-weight: 600; }

/* ── Affiliates ───────────────────────────────────────── */
.affiliate-panel {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: flex-start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.affiliate-panel:last-child { border-bottom: none; }
.affiliate-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.affiliate-logo-wrap img { max-height: 80px; width: auto; }
.affiliate-logo-placeholder {
  width: 160px; height: 80px;
  background: var(--grey-bg);
  border: 2px dashed var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--grey-lt);
  text-align: center;
}
.professional-bodies { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.prof-body-badge {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-mid);
  text-align: center;
}

/* ── Global page ─────────────────────────────────────── */
.global-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2D2416 100%);
  color: white;
}
.global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.global-section h2 { color: white; }
.global-section p { color: rgba(255,255,255,.7); margin: 20px 0 32px; }
.loc-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.loc-pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

/* ── Globe canvas wrapper ────────────────────────────── */
.globe-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.globe-wrap canvas {
  width: 100%;
  height: auto;
  cursor: grab;
  display: block;
  border-radius: 50%;
}
.globe-wrap canvas:active { cursor: grabbing; }
.globe-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0;
  transition: opacity 1s;
  white-space: nowrap;
}

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.15); }
}
.anim-fade-up { opacity: 0; }
.anim-fade-up.visible { animation: fadeUp .6s ease forwards; }
.pulse { animation: pulse 2s infinite; }

/* ── Hero home ───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 120%;
  background: radial-gradient(ellipse at 60% 40%, #FBF5EB 0%, #F4ECD8 40%, transparent 70%);
  border-radius: 0 0 0 60%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow .line { width: 32px; height: 2px; background: var(--gold-lt); }
.hero-eyebrow span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title { margin-bottom: 20px; color: var(--dark); }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { margin-bottom: 14px; max-width: 480px; }
.hero-trust {
  margin-bottom: 36px;
  font-size: 13.5px;
  color: var(--grey-mid);
  font-style: italic;
  padding-left: 14px;
  border-left: 2px solid var(--gold-lt);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-globe-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Careers ─────────────────────────────────────────── */
.jobs-grid { display: grid; gap: 16px; margin-top: 36px; }
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}
.job-card:hover { border-color: var(--gold-lt); box-shadow: var(--shadow-sm); }
.job-card-left h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.job-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-mid);
  background: var(--grey-bg);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
}
.job-card-right { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .global-grid { grid-template-columns: 1fr; }
  .affiliate-panel { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .hero-inner { grid-template-columns: 1fr; padding: 64px 20px; gap: 48px; }
  .hero-globe-side { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .sub-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-inner { padding: 0 20px; gap: 20px; }
  .stats-bar { gap: 0; }
  .stat-item { padding: 0 20px 0 0; min-width: 80px; }
  .stat-num { font-size: 28px; }
  .nav-links, .nav-right .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { gap: 16px; }
  .page-hero-wrap { padding: 0 20px; }
  .office-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .wa-float { bottom: 18px; right: 18px; width: 48px; height: 48px; }
  .wa-float svg { width: 22px; height: 22px; }
  .footer-vcard-strip { flex-direction: column; align-items: flex-start; }
}
