/* ===============================================
   Innovate Solution — Shared Stylesheet
   Brand palette derived from new logo:
   · Deep navy   #1B1B5C  (INNOVATE wordmark)
   · Cyan        #29C5E0  (icon + SOLUTION wordmark)
   =============================================== */

:root {
  /* Surfaces */
  --bg: #FFFFFF;
  --bg-2: #F5F7FB;
  --bg-3: #EBEFF7;
  --surface: #FFFFFF;
  --line: rgba(27, 27, 92, 0.10);
  --line-2: rgba(27, 27, 92, 0.18);
  --text: #0E0E3D;
  --text-2: #4B4F75;
  --muted: #8186A5;

  /* Brand */
  --navy: #1B1B5C;            /* primary — INNOVATE text */
  --navy-2: #2A2A75;
  --navy-deep: #0E0E3D;
  --cyan: #29C5E0;            /* primary — icon + SOLUTION text */
  --cyan-2: #4DD3E9;
  --cyan-3: #14A5C2;
  --indigo: #4338CA;
  --indigo-2: #6356E4;
  --teal: #14B8A6;
  --amber: #C28D2A;
  --amber-2: #E5B04A;

  /* Fonts */
  --fd: 'Sora', system-ui, sans-serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --fm: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ===== Typography ===== */
.display {
  font-family: var(--fd);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.tag {
  font-family: var(--fm);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.tag-pill {
  font-family: var(--fm);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo-2) 60%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

/* ===== Top utility bar ===== */
.utility {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.utility-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 8px 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.utility-left { display: flex; gap: 18px; }
.utility-right { display: flex; gap: 18px; }
.utility a { transition: color .2s; }
.utility a:hover { color: var(--cyan-2); }
.utility .dot {
  width: 6px; height: 6px;
  background: var(--cyan-2);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-2);
  display: inline-block; margin-right: 6px;
}

/* ===== Nav ===== */
.nav {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0; z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
}
.brand-chip {
  display: inline-flex; align-items: center;
  padding: 4px 2px;
  transition: transform .25s;
}
.brand-chip:hover { transform: translateY(-1px); }
.brand-chip img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  padding: 9px 16px;
  border-radius: 6px;
  color: var(--text-2);
  transition: all .2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg-2); }
.nav-links a.has-arrow::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s;
}
.nav-links li:hover > a.has-arrow::after {
  transform: rotate(-135deg) translateY(2px) translateX(-2px);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px); left: 0;
  min-width: 320px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 24px 48px -16px rgba(27, 27, 92, 0.18);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all .22s cubic-bezier(.2,.7,.2,1);
  list-style: none;
  display: flex; flex-direction: column; gap: 2px;
}
.nav-links li:hover > .dropdown,
.nav-links li:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px !important;
  border-radius: 8px;
  width: 100%;
}
.dd-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.dd-1 .dd-icon { background: rgba(41, 197, 224, 0.14); color: var(--cyan-3); }
.dd-2 .dd-icon { background: rgba(67, 56, 202, 0.12); color: var(--indigo); }
.dd-3 .dd-icon { background: rgba(20, 184, 166, 0.14); color: var(--teal); }
.dd-4 .dd-icon { background: rgba(27, 27, 92, 0.10); color: var(--navy); }
.dd-text { display: flex; flex-direction: column; gap: 2px; }
.dd-title { font-weight: 600; font-size: 14px; color: var(--text); }
.dd-desc  { font-size: 12px; color: var(--muted); line-height: 1.4; }

.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13.5px; font-weight: 600;
  transition: all .25s;
  display: inline-flex; align-items: center; gap: 7px;
}
.nav-cta:hover { background: var(--cyan); color: var(--navy); }

/* Mobile menu button */
.menu-btn {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
}
.menu-btn .icon-close { display: none; }
.menu-btn.is-open .icon-open { display: none; }
.menu-btn.is-open .icon-close { display: block; }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27, 27, 92, 0.4);
  z-index: 99;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: #fff;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 18px 22px 28px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px -20px rgba(27, 27, 92, 0.25);
  transform: translateY(-12px);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.mobile-menu.is-open .mobile-menu-inner { transform: translateY(0); }
.mm-section { padding: 6px 0; border-bottom: 1px solid var(--line); }
.mm-section:last-of-type { border-bottom: none; }
.mm-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4px;
  font-size: 15.5px; font-weight: 500; color: var(--text);
}
.mm-link.active { color: var(--cyan-3); }
.mm-group-label {
  font-family: var(--fm);
  font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  padding: 14px 4px 8px;
}
.mm-sub {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 8px; border-radius: 10px; margin-bottom: 4px;
  transition: background .2s;
}
.mm-sub:hover { background: var(--bg-2); }
.mm-sub-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.mm-sub-1 { background: rgba(41, 197, 224, 0.14); color: var(--cyan-3); }
.mm-sub-2 { background: rgba(67, 56, 202, 0.12); color: var(--indigo); }
.mm-sub-3 { background: rgba(20, 184, 166, 0.14); color: var(--teal); }
.mm-sub-4 { background: rgba(27, 27, 92, 0.10); color: var(--navy); }
.mm-sub-text { flex: 1; min-width: 0; }
.mm-sub-title { font-weight: 600; font-size: 14.5px; color: var(--text); display: block; margin-bottom: 2px; }
.mm-sub-desc  { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.mm-actions { display: flex; flex-direction: column; gap: 10px; padding: 20px 0 4px; }
.mm-actions .btn { width: 100%; justify-content: center; padding: 14px 18px; font-size: 14.5px; }
.mm-contact {
  font-family: var(--fm); font-size: 11.5px; color: var(--muted);
  padding: 14px 4px 0; border-top: 1px solid var(--line);
  margin-top: 14px; display: flex; flex-direction: column; gap: 6px;
}
.mm-contact a { color: var(--text-2); }
body.menu-open { overflow: hidden; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600; font-size: 14px;
  transition: all .25s cubic-bezier(.2,.7,.2,1);
  cursor: pointer; white-space: nowrap;
  font-family: var(--fb);
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--cyan); color: var(--navy); transform: translateY(-1px); }
.btn-cyan { background: var(--cyan); color: var(--navy); }
.btn-cyan:hover { background: var(--cyan-2); transform: translateY(-1px); }
.btn-ghost { color: var(--text); border: 1px solid var(--line-2); background: var(--surface); }
.btn-ghost:hover { background: var(--bg-2); border-color: var(--navy); }
.btn-light { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-light:hover { background: rgba(255,255,255,0.2); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--bg-2); transform: translateY(-1px); }
.btn svg { transition: transform .25s; }
.btn:hover svg { transform: translateX(2px); }

/* ===== Section base ===== */
.section { padding: 100px 0; }
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head.center { margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-family: var(--fd); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.08;
  font-size: clamp(26px, 3.2vw, 40px);
  margin-top: 16px;
}
.section-head h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo-2) 55%, var(--navy) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p {
  margin-top: 16px; font-size: 15.5px; color: var(--text-2);
  max-width: 600px; line-height: 1.6;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ===== Hero (main) ===== */
.hero {
  position: relative;
  padding: 100px 0 90px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 10% 10%, rgba(41, 197, 224, 0.16), transparent 60%),
    radial-gradient(700px 360px at 95% 0%, rgba(67, 56, 202, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { max-width: 920px; }
.hero .tag-pill { margin-bottom: 22px; background: var(--surface); }
.hero h1 {
  font-family: var(--fd); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.04;
  font-size: clamp(34px, 4.8vw, 60px);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo-2) 55%, var(--navy) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  margin: 26px 0 0;
  font-size: 17px;
  max-width: 680px;
  color: var(--text-2);
  line-height: 1.6;
}
.hero-actions {
  margin-top: 34px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 80px 0 70px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 15% 20%, rgba(41, 197, 224, 0.14), transparent 60%),
    radial-gradient(500px 300px at 85% 0%, rgba(67, 56, 202, 0.10), transparent 60%);
  pointer-events: none; z-index: 0;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .tag-pill { margin-bottom: 22px; background: var(--surface); }
.page-hero h1 {
  font-family: var(--fd); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.05;
  font-size: clamp(32px, 4.4vw, 54px); max-width: 880px;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo-2) 55%, var(--navy) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero .lead {
  margin: 22px 0 0; font-size: 16.5px;
  max-width: 680px; color: var(--text-2); line-height: 1.6;
}
.page-hero-actions { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; }
.breadcrumb {
  font-family: var(--fm); font-size: 11.5px; letter-spacing: 0.06em;
  color: var(--muted); margin-bottom: 22px;
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: 0.5; }

/* ===== Cards ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  transition: all .25s cubic-bezier(.2,.7,.2,1);
}
.card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -18px rgba(27, 27, 92, 0.15);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon.cyan { background: rgba(41, 197, 224, 0.14); color: var(--cyan-3); }
.card-icon.indigo { background: rgba(67, 56, 202, 0.12); color: var(--indigo); }
.card-icon.teal { background: rgba(20, 184, 166, 0.14); color: var(--teal); }
.card-icon.navy { background: rgba(27, 27, 92, 0.10); color: var(--navy); }
.card h3 {
  font-family: var(--fd); font-weight: 600;
  font-size: 18px; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.card p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; }

/* ===== Grids ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

/* ===== Products grid (homepage) ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -20px rgba(27, 27, 92, 0.20);
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--indigo-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.product-card:hover::before { transform: scaleX(1); }
.product-tag {
  font-family: var(--fm);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.product-name {
  font-family: var(--fd); font-weight: 600;
  font-size: 26px; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 8px;
}
.product-headline {
  font-size: 15px; color: var(--cyan-3);
  font-weight: 600; margin-bottom: 16px;
}
.product-desc {
  font-size: 14.5px; color: var(--text-2);
  line-height: 1.6; margin-bottom: 22px;
}
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  transition: gap .2s;
}
.product-link:hover { gap: 10px; color: var(--cyan-3); }
.product-link svg { transition: transform .2s; }

/* ===== Stats ===== */
.stats-band {
  background: var(--navy-deep);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 10% 30%, rgba(41, 197, 224, 0.18), transparent 60%),
    radial-gradient(500px 300px at 90% 70%, rgba(67, 56, 202, 0.20), transparent 60%);
  pointer-events: none;
}
.stats-band .wrap { position: relative; z-index: 1; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.stat-num {
  font-family: var(--fd); font-weight: 600;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.025em; line-height: 1;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label {
  margin-top: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(400px 240px at 80% 30%, rgba(41, 197, 224, 0.22), transparent 60%),
    radial-gradient(420px 260px at 15% 80%, rgba(67, 56, 202, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--fd); font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.025em; line-height: 1.1;
}
.cta-inner h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-inner p {
  margin: 18px auto 30px;
  color: rgba(255,255,255,0.75);
  font-size: 16px; max-width: 600px;
}
.cta-actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===== Office cards ===== */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.office {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  transition: all .25s;
}
.office:hover { border-color: var(--cyan); transform: translateY(-2px); }
.office-flag {
  font-family: var(--fm);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-3); font-weight: 600;
  margin-bottom: 14px;
}
.office-city {
  font-family: var(--fd); font-weight: 600;
  font-size: 18px; color: var(--text);
  margin-bottom: 6px;
}
.office-role {
  font-size: 12.5px; color: var(--muted);
  margin-bottom: 16px;
}
.office-address {
  font-size: 13.5px; color: var(--text-2);
  line-height: 1.55; margin-bottom: 16px;
}
.office-details {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.office-details li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13px; color: var(--text-2); line-height: 1.5;
}
.office-details svg { flex-shrink: 0; color: var(--cyan-3); margin-top: 3px; }
.office-links {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}
.office-links a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-2);
  transition: color .2s;
}
.office-links a:hover { color: var(--cyan-3); }

/* ===== Features list ===== */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.feature-list .check {
  width: 22px; height: 22px;
  flex-shrink: 0; border-radius: 50%;
  background: rgba(41, 197, 224, 0.14);
  color: var(--cyan-3);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-list h4 { font-weight: 600; font-size: 14.5px; margin-bottom: 4px; color: var(--text); }
.feature-list p  { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 600; font-size: 15.5px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex-shrink: 0;
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13.5px; line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 340px;
  margin-bottom: 20px;
}
.footer-meta {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px;
  font-family: var(--fm);
}
.footer-meta a {
  color: var(--cyan-2);
  margin-top: 6px;
  font-family: var(--fb);
  font-weight: 600;
}
.footer-col h5 {
  font-family: var(--fm);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--cyan-2); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-family: var(--fm); font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all .25s;
}
.social-row a:hover { background: var(--cyan); color: var(--navy); }
.footer-legal-links { display: flex; gap: 8px; align-items: center; }
.footer-legal-links a:hover { color: var(--cyan-2); }

/* ===== Legal page styles ===== */
.legal-hero { padding: 70px 0 50px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.legal-hero-inner { max-width: 880px; }
.legal-hero h1 {
  font-family: var(--fd); font-weight: 600;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.025em; line-height: 1.06;
}
.legal-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--indigo-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.legal-lede { margin-top: 18px; font-size: 16px; color: var(--text-2); max-width: 680px; }
.legal-meta {
  margin-top: 26px; font-family: var(--fm); font-size: 11.5px;
  color: var(--muted); display: flex; gap: 22px; flex-wrap: wrap;
}
.legal-body { padding: 60px 0 100px; }
.legal-body-inner { max-width: 820px; }
.legal-body h2 {
  font-family: var(--fd); font-weight: 600;
  font-size: 24px; margin: 40px 0 14px;
  letter-spacing: -0.02em;
}
.legal-body h3 {
  font-family: var(--fd); font-weight: 600;
  font-size: 18px; margin: 26px 0 10px;
}
.legal-body p { color: var(--text-2); font-size: 14.5px; line-height: 1.7; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { padding-left: 22px; color: var(--text-2); font-size: 14.5px; line-height: 1.7; margin-bottom: 14px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--cyan-3); border-bottom: 1px dashed var(--cyan-3); }
.legal-body a:hover { color: var(--navy); border-color: var(--navy); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-menu { display: block; }
}
@media (max-width: 720px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding: 70px 0 60px; }
  .section { padding: 70px 0; }
  .wrap { padding: 0 20px; }
}

/* ===== Card link (used on services & product cards) ===== */
.card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--cyan-3);
  letter-spacing: .01em;
}
.card-link:hover { color: var(--navy); }

/* ===== FAQ section grouping (used on faq.php) ===== */
.faq-section { margin-bottom: 50px; }
.faq-section:last-child { margin-bottom: 0; }
.faq-heading {
  font-family: var(--fd);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.faq-item > p {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}
.faq-item > p + p { padding-top: 8px; padding-bottom: 22px; }
.faq-item a {
  color: var(--cyan-3);
  border-bottom: 1px dashed var(--cyan-3);
}
.faq-item a:hover { color: var(--navy); border-color: var(--navy); }

/* ===== Contact page layout =====
   HTML order is: sidebar (Email / Demos / Office hours) THEN form.
   The grid puts the sidebar in the narrow left column and gives
   the multi-step form the wider right column. On viewports ≤ 900px
   it stacks to one column so the sidebar reads first, then form.
   ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 36px;
  align-items: start;
}

/* ----- Sidebar with the three "ways to reach us" cards ----- */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 24px;
}
.contact-method {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.contact-method:hover {
  border-color: var(--cyan-3);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -18px rgba(27,27,92,0.18);
}
.contact-method-label {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.contact-method-value {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.005em;
  margin-bottom: 8px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-method-value a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color .15s, color .15s;
}
.contact-method-value a:hover {
  color: var(--cyan-3);
  border-bottom-color: var(--cyan-3);
}
.contact-method-desc {
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.5;
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 1px 0 rgba(27,27,92,0.04), 0 18px 40px -28px rgba(27,27,92,0.18);
}
.form-title {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.form-sub {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--fb);
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan-3);
  box-shadow: 0 0 0 3px rgba(41,197,224,0.15);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--cyan-3);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.form-consent a {
  color: var(--cyan-3);
  border-bottom: 1px dashed var(--cyan-3);
}
.form-consent a:hover { color: var(--navy); }
.form-submit {
  align-self: flex-start;
  margin-top: 10px;
}

/* Contact info column */
.contact-info-stack { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
}
.contact-info-card h3 {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.005em;
}
.contact-info-card p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 6px;
}
.contact-info-card p:last-child { margin-bottom: 0; }
.contact-info-card a {
  color: var(--cyan-3);
  font-weight: 600;
}
.contact-info-card a:hover { color: var(--navy); }
.next-steps {
  padding-left: 20px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}
.next-steps li { margin-bottom: 8px; }
.next-steps li::marker { color: var(--cyan-3); font-weight: 700; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-sidebar { position: static; top: auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
}

/* ===========================================================
   PRODUCT GALLERY — used on homepage, products page, and the
   "other products" section at the bottom of each product page.
   Drives card visuals from per-card --accent / --accent-2 vars.

   Flexbox (not grid) so an incomplete last row stays CENTERED
   rather than having a single lone card stretch to full width.
   Cards have a max-width cap to prevent over-stretching when
   there are only one or two on a line.
   =========================================================== */
.product-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.product-gallery .pg-card {
  flex: 1 1 280px;
  min-width: 0;       /* allow shrink below content width if needed */
  max-width: 380px;   /* prevent lonely-card stretch */
}
.product-gallery-lg {
  gap: 32px;
}
.product-gallery-lg .pg-card {
  flex: 1 1 360px;
  max-width: 480px;
}
.pg-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
  color: var(--text);
}
.pg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  border-radius: inherit;
}
.pg-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px -22px rgba(27,27,92,0.22);
}

/* Mark / logo placeholder — hexagon with initials */
.pg-mark {
  width: 64px;
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pg-mark-md { width: 88px; height: 88px; }
.pg-mark-lg { width: 128px; height: 128px; }
.pg-hex {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.pg-initials {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
}
.pg-mark-md .pg-initials { font-size: 30px; }
.pg-mark-lg .pg-initials { font-size: 42px; }

.pg-body { flex: 1; display: flex; flex-direction: column; }
.pg-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.pg-category {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.pg-status {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(67,56,202,0.1);
  color: var(--indigo);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.pg-name {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.015em;
  margin: 0 0 10px;
}
.pg-tagline {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.pg-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pg-highlights li {
  position: relative;
  padding-left: 20px;
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.5;
}
.pg-highlights li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.pg-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.pg-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .005em;
}
.pg-external {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: .05em;
}

@media (max-width: 900px) {
  .product-gallery .pg-card,
  .product-gallery-lg .pg-card { max-width: 100%; }
}

/* ===========================================================
   ECOSYSTEM CARDS — links to /partners and /suppliers
   =========================================================== */
.ecosystem-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  color: var(--text);
}
.ecosystem-card:hover {
  border-color: var(--cyan-3);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -22px rgba(27,27,92,0.18);
}
.ecosystem-card h3 {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
  margin: 0;
}
.ecosystem-card p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* ===========================================================
   PARTNERS — grid of small partner cells used on partners.php
   =========================================================== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.partner-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.partner-cell:hover {
  border-color: var(--accent, var(--cyan-3));
  transform: translateY(-2px);
}
.partner-mark {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent, var(--navy));
  color: #fff;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.partner-name {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -.005em;
}
.partner-type {
  font-family: var(--fm);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 1100px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .partner-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===========================================================
   SUPPLIER STATS — used on suppliers.php top section
   =========================================================== */
.supplier-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.supplier-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.ss-num {
  font-family: var(--fd);
  font-size: 40px;
  font-weight: 700;
  color: var(--cyan-3);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 8px;
}
.ss-label {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -.005em;
}
.ss-sub {
  color: var(--text-2);
  font-size: 12.5px;
  line-height: 1.5;
}
@media (max-width: 900px) { .supplier-stats { grid-template-columns: repeat(2, 1fr); } }

/* ===========================================================
   PAYMENT GRID — used on suppliers.php
   =========================================================== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.payment-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.payment-region {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan-3);
  font-weight: 600;
  margin-bottom: 8px;
}
.payment-list {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -.002em;
}
@media (max-width: 700px) { .payment-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   MINI LIST inside cards (suppliers.php hotels/visa sections)
   =========================================================== */
.mini-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mini-list li {
  position: relative;
  padding-left: 16px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}
.mini-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan-3);
}

/* ===========================================================
   PRODUCT HERO — used on the individual product pages
   =========================================================== */
.product-hero { position: relative; overflow: hidden; }
.product-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--accent, var(--cyan)) 0%, transparent 70%);
  opacity: 0.08;
  pointer-events: none;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 8px;
}
.product-hero-mark { flex-shrink: 0; }
.product-hero-body h1 { margin-top: 16px; }

/* Branded product button — uses the per-product --accent variables */
.btn-product {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-weight: 600;
}
.btn-product:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(0,0,0,0.3);
}

/* ===========================================================
   EXTERNAL CTA — large block at the bottom of product pages
   pointing visitors to the dedicated product website.
   =========================================================== */
.external-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 24px;
  padding: 50px 50px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  color: #fff;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.35);
}
.external-cta-mark .pg-hex {
  background: rgba(255,255,255,0.18);
}
.external-cta-body .tag {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.15);
}
.external-cta-body h2 {
  color: #fff;
  font-family: var(--fd);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.external-cta-body h2 em {
  font-style: normal;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
}
.external-cta-body p {
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.external-cta .btn-product {
  background: #fff;
  color: var(--accent);
}
.external-cta .btn-product:hover {
  background: rgba(255,255,255,0.95);
  color: var(--accent);
}
@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-hero-mark { margin: 0 auto; }
  .external-cta { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; text-align: center; }
  .external-cta-mark { margin: 0 auto; }
}

/* ===========================================================
   PRODUCT MARK — image variant
   Used when a product entry has logo_file set. Replaces the
   hexagon fallback with the real brand logo, contained in a
   box whose aspect ratio works for stacked, square, and wide
   logos alike.
   =========================================================== */
.pg-mark-img {
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px -4px rgba(27,27,92,0.08);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.pg-mark-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pg-card:hover .pg-mark-img {
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Size variants for image marks */
.pg-mark-img.pg-mark-md {
  width: 180px;
  height: 90px;
  padding: 10px 14px;
  border-radius: 12px;
}
.pg-mark-img.pg-mark-lg {
  width: 240px;
  height: 120px;
  padding: 14px 18px;
  border-radius: 14px;
  border-width: 1px;
}

/* On-color context: when the mark sits on a brand-color gradient
   (the external CTA), wrap the logo in a white plate. */
.pg-mark-img.pg-mark-on-color {
  background: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.25), 0 2px 4px rgba(0,0,0,0.05);
}

/* When a hexagon-fallback mark sits on a colored background,
   make the hex semi-transparent so it doesn't fight the gradient. */
.pg-mark:not(.pg-mark-img).pg-mark-on-color .pg-hex {
  background: rgba(255,255,255,0.18);
}

/* Adjust spacing in the gallery card so the wider rectangular
   image marks sit comfortably above the body copy. */
.pg-card:has(.pg-mark-img) { padding-top: 28px; }

@media (max-width: 700px) {
  .pg-mark-img {
    width: 120px;
    height: 60px;
    padding: 6px 10px;
  }
  .pg-mark-img.pg-mark-md {
    width: 150px;
    height: 75px;
  }
  .pg-mark-img.pg-mark-lg {
    width: 200px;
    height: 100px;
  }
}

/* Legal-entity line on each office card. Small, monospace, muted —
   sits between the country flag/region label and the city. Used to
   show the per-office legal entity name (e.g. "Innovate Solution
   Global Pte. LTD." under the Singapore card). */
.office-legal {
  font-family: var(--fm);
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan-3);
  letter-spacing: -.002em;
  margin: 2px 0 8px;
  line-height: 1.35;
}

/* ===========================================================
   MULTI-STEP CONTACT FORM
   The form is rendered as one document — JS reveals one step
   at a time. Without JS (or before JS loads) the .js class is
   absent, every step stays visible, and the form still works
   as a single scrollable form.
   =========================================================== */

/* Progress indicator */
.form-progress {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  color: var(--muted);
  transition: color .2s;
  white-space: nowrap;
}
.form-progress-step .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--muted);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 600;
  font-size: 13px;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}
.form-progress-step .step-label {
  font-size: 13.5px;
  font-weight: 500;
}
.form-progress-step.active {
  color: var(--navy);
}
.form-progress-step.active .step-num {
  background: var(--cyan-3);
  color: #fff;
  border-color: var(--cyan-3);
}
.form-progress-step.done {
  color: var(--text-2);
}
.form-progress-step.done .step-num {
  background: var(--cyan-3);
  color: #fff;
  border-color: var(--cyan-3);
}
.form-progress-step.done .step-num::after {
  content: '✓';
}
.form-progress-step.done .step-num span,
.form-progress-step.done .step-num { font-size: 14px; }
.form-progress-line {
  flex: 1;
  height: 1.5px;
  background: var(--line);
  list-style: none;
  min-width: 16px;
}

/* Step container */
.multi-step-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
}
.form-step {
  border: none;
  padding: 0;
  margin: 0;
  display: block;     /* fallback when JS isn't running */
}
.form-step + .form-step {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px dashed var(--line);
}
/* When JS is enabled, hide non-active steps and remove the separator */
html.js .form-step              { display: none; }
html.js .form-step.active       { display: block; }
html.js .form-step + .form-step { margin-top: 0; padding-top: 0; border-top: 0; }

/* Step header */
.form-step legend {
  display: block;
  margin: 0 0 24px;
  padding: 0;
  width: 100%;
}
.form-step .step-eyebrow {
  display: inline-block;
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-3);
  font-weight: 600;
  margin-bottom: 6px;
}
.form-step legend h3 {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.form-step legend p {
  margin: 0;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Field rows + individual fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.field {
  margin-bottom: 18px;
}
.field:last-child {
  margin-bottom: 0;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -.005em;
}
.field .req {
  color: #DC2626;
  font-weight: 500;
}
.field .hint-inline {
  color: var(--muted);
  font-weight: 400;
  font-size: 12.5px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan-3);
  box-shadow: 0 0 0 3px rgba(20, 165, 194, 0.12);
}
.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #DC2626;
  background: #FEF2F2;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.field-help {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

/* Consent checkbox */
.consent-field { margin-top: 22px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-2);
  font-weight: 400;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--cyan-3);
  flex-shrink: 0;
}
.consent-label a { color: var(--cyan-3); }
.consent-label a:hover { text-decoration: underline; }

/* Step navigation */
.form-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.form-step-actions > span { display: inline-block; }

/* Honeypot — invisible but technically present in the DOM */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* Thank-you card */
.thankyou-card {
  max-width: 560px;
  margin: 20px auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 50px 40px;
  text-align: center;
}
.thankyou-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: rgba(17, 193, 138, 0.1);
  color: #11C18A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou-card h2 {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 12px;
  letter-spacing: -.015em;
}
.thankyou-card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.thankyou-ref {
  background: var(--bg-2);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 0 0 22px;
  font-size: 13.5px;
  color: var(--text-2);
}
.thankyou-ref code {
  background: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--fm);
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--line);
}
.thankyou-ref .muted { color: var(--muted); }
.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Error banner */
.form-error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-left: 4px solid #DC2626;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-error strong {
  color: #991B1B;
  font-size: 14px;
  font-weight: 600;
}
.form-error span {
  color: #7F1D1D;
  font-size: 13.5px;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .multi-step-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-step legend h3 { font-size: 20px; }
  .form-progress-step .step-label {
    display: none;       /* tighter on mobile — just the numbers */
  }
  .form-progress { gap: 0; }
  .form-progress-line { min-width: 12px; }
  .thankyou-card { padding: 36px 22px; }
  .form-step-actions { flex-direction: column-reverse; }
  .form-step-actions .btn { width: 100%; justify-content: center; }
}

/* ===========================================================
   STRENGTHS PAGE — service tiles, rapid-activation card, eSIM card
   =========================================================== */

/* 12+ Service Types — compact tile grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.service-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.service-tile:hover {
  border-color: var(--cyan-3);
  transform: translateY(-2px);
}
.service-icon {
  color: var(--cyan-3);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
}
.service-name {
  font-family: var(--fd);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.005em;
}
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .service-tile { padding: 14px 8px; }
  .service-name { font-size: 12.5px; }
}

/* Rapid Activation — big stat card with body */
.rapid-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 48px 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.35);
}
.rapid-card-body .tag {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.15);
}
.rapid-card-body h2 {
  color: #fff;
  font-family: var(--fd);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 14px 0 14px;
  line-height: 1.2;
}
.rapid-card-body h2 em {
  font-style: normal;
  color: var(--cyan-2);
  font-weight: 400;
}
.rapid-card-body > p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.rapid-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rapid-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 14.5px;
}
.rapid-list .check {
  width: 22px; height: 22px;
  background: rgba(41, 197, 224, 0.2);
  color: var(--cyan);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rapid-card-stat {
  text-align: center;
  padding: 28px 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(41,197,224,0.3);
  border-radius: 18px;
  min-width: 200px;
}
.rapid-num {
  font-family: var(--fd);
  font-size: 88px;
  font-weight: 700;
  color: var(--cyan-2);
  line-height: 1;
  letter-spacing: -.03em;
}
.rapid-unit {
  font-family: var(--fm);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* eSIM card — light variant of rapid-card */
.esim-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.esim-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  text-align: center;
}
.esim-stat .esim-num {
  font-family: var(--fd);
  font-size: 38px;
  font-weight: 700;
  color: var(--cyan-3);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.esim-stat .esim-lbl {
  font-family: var(--fm);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 600;
}

/* Card with feature-summary style (no icon, looks like a closing card) */
.card.card-feature-summary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-color: transparent;
}
.card.card-feature-summary h3 {
  color: #fff;
}
.card.card-feature-summary p {
  color: rgba(255,255,255,0.82);
}

@media (max-width: 900px) {
  .rapid-card, .esim-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: center;
    gap: 28px;
  }
  .rapid-list { align-items: center; }
  .rapid-card-stat { margin: 0 auto; }
  .esim-stats { justify-content: center; }
}
@media (max-width: 500px) {
  .esim-stats { grid-template-columns: 1fr; }
}

/* ===========================================================
   WHOLESALE HOMEPAGE — capability strip + scenario finder
   =========================================================== */

/* Wholesale capability badges — small pills sitting under hero copy */
.capability-strip {
  list-style: none;
  padding: 0;
  margin: 26px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.capability-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -.003em;
}
.capability-badge svg {
  color: var(--cyan-3);
  flex-shrink: 0;
}

/* Subtle hover-color shift on the hero in wholesale mode */
.hero-wholesale .hero-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ============== SCENARIO FINDER GRID ============== */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) {
  .scenario-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .scenario-grid { grid-template-columns: 1fr; }
}

.scenario-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  overflow: hidden;
  isolation: isolate;
}

/* Coloured rail on the left that pulls from the recommended product's accent */
.scenario-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  transition: width .2s;
}
.scenario-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px -22px rgba(27,27,92,0.18);
}
.scenario-card:hover::before {
  width: 6px;
}

/* Scenario number — small monospace, sits top-right */
.scenario-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted);
  opacity: 0.6;
}

.scenario-eyebrow {
  font-family: var(--fd);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 4px;
}

.scenario-quote {
  font-family: var(--fd);
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy);
  margin: 0;
  font-weight: 400;
  letter-spacing: -.005em;
  flex: 1;
}
.scenario-quote strong {
  font-weight: 600;
  color: var(--text);
}

.scenario-rec {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap;
}
.scenario-label {
  font-family: var(--fm);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 600;
}
.scenario-product {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  flex: 1;
}
.scenario-arrow {
  font-size: 16px;
  color: var(--accent);
  transition: transform .2s;
  font-weight: 600;
}
.scenario-card:hover .scenario-arrow {
  transform: translateX(3px);
}

/* Scenario footnote — under the grid */
.scenario-footnote {
  text-align: center;
  margin: 30px auto 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  max-width: 640px;
}
.scenario-footnote a {
  color: var(--cyan-3);
  font-weight: 500;
}

/* Stats-band — adjusted spacing when used mid-page */
.section.stats-band .section-head {
  margin-bottom: 32px;
}
.section.stats-band .section-head p a {
  color: var(--cyan-3);
  font-weight: 500;
}

@media (max-width: 600px) {
  .scenario-card { padding: 22px 20px 20px; }
  .scenario-num  { top: 16px; right: 18px; }
  .scenario-quote { font-size: 14.5px; }
  .capability-strip { gap: 6px; }
  .capability-badge { padding: 6px 10px 6px 9px; font-size: 12px; }
}

/* ============================================================
   RESPONSIVE REFINEMENTS — site-wide fixes
   ============================================================
   Added as a single trailing block so the changes are easy to
   review (and easy to roll back if needed). Each @media group
   has an explanatory header above it. Rules here intentionally
   override earlier values where mobile UX requires it.
   ============================================================ */

/* ============================================================
   FIX 1 — Push the mobile-nav threshold up.
   With 7 top-level nav items + CTA button + logo, the desktop
   nav crowds between 1024-1180px. Switch to mobile menu earlier
   so it never reaches that crowded state.
   ============================================================ */
@media (max-width: 1120px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }
  .mobile-menu {
    display: block;
  }
}

/* ============================================================
   FIX 2 — Prevent iOS Safari auto-zoom on form focus.
   iOS zooms any input/select/textarea with computed font-size
   under 16px. The earlier value (14.5px) caused the page to
   jump on tap. Bumped to 16px on touch-width viewports — the
   text size barely changes visually but the zoom goes away.
   ============================================================ */
@media (max-width: 900px) {
  .field input[type="text"],
  .field input[type="email"],
  .field input[type="tel"],
  .field input[type="number"],
  .field input[type="password"],
  .field select,
  .field textarea {
    font-size: 16px;
  }
}

/* ============================================================
   FIX 3 — Long-content wrapping safety net.
   Emails, addresses, URLs and product taglines occasionally
   contain very long unbreakable strings. overflow-wrap:anywhere
   tells the browser it's OK to break mid-string when needed.
   Applied only where overflow can actually happen.
   ============================================================ */
.office-address,
.office-links a,
.contact-method-value,
.contact-method-value a,
.pg-external,
.pg-tagline,
.pg-name,
.scenario-quote,
.scenario-product,
.payment-list,
.footer-meta a,
.dd-desc,
.dd-title {
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

/* Long buttons can wrap (e.g. "Tell Us About Your Business") */
.btn {
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

/* ============================================================
   FIX 4 — Mid-size phones / large phones (≤ 720px)
   Headlines tighten, button group goes full-width.
   ============================================================ */
@media (max-width: 720px) {
  /* Headline typography */
  .hero h1,
  .page-hero h1 {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.12;
  }
  .section-head h2 {
    font-size: clamp(24px, 6vw, 32px);
  }
  .hero .lead,
  .page-hero .lead,
  .section-head p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Big stat numbers scale down */
  .rapid-num {
    font-size: clamp(56px, 16vw, 80px);
  }
  .esim-stat .esim-num {
    font-size: 30px;
  }
  .pg-name {
    font-size: 22px;
  }

  /* Hero CTA buttons — full-width when stacked */
  .hero-actions,
  .page-hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn,
  .page-hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   FIX 5 — Small phones (≤ 480px)
   Tighter padding, smaller hero, single-column footer cells,
   form fields full-width with comfortable tap targets.
   ============================================================ */
@media (max-width: 480px) {
  /* Container tightens */
  .wrap { padding: 0 18px; }

  /* Section vertical rhythm tightens */
  .section { padding: 54px 0; }
  .hero    { padding: 56px 0 44px; }
  .page-hero { padding: 44px 0 32px; }
  .section-head        { margin-bottom: 32px; }
  .section-head.center { margin-bottom: 32px; }

  /* Headlines tighten further */
  .hero h1,
  .page-hero h1 {
    font-size: clamp(24px, 8vw, 30px);
    letter-spacing: -0.02em;
  }
  .section-head h2 {
    font-size: clamp(22px, 7vw, 26px);
  }
  .hero .lead,
  .page-hero .lead {
    font-size: 14.5px;
  }

  /* Stat numbers */
  .stat-num   { font-size: clamp(28px, 9vw, 36px); }
  .stat-label { font-size: 12px; line-height: 1.4; }
  .rapid-num  { font-size: clamp(44px, 14vw, 64px); }
  .esim-stat .esim-num { font-size: 26px; }

  /* Product cards */
  .pg-name     { font-size: 20px; }
  .pg-tagline  { font-size: 13.5px; line-height: 1.5; }
  .pg-card     { padding: 26px 22px; }

  /* Service tiles on /strengths */
  .service-tile { padding: 14px 8px; }
  .service-name { font-size: 12px; }

  /* Capability badges in hero — tighter */
  .capability-strip { gap: 6px; margin: 22px 0 24px; }
  .capability-badge {
    padding: 5px 10px 5px 9px;
    font-size: 11.5px;
  }
  .capability-badge svg { width: 12px; height: 12px; }

  /* Scenario cards */
  .scenario-card  { padding: 22px 20px 18px; }
  .scenario-num   { top: 14px; right: 18px; font-size: 10.5px; }
  .scenario-quote { font-size: 14px; }
  .scenario-eyebrow { font-size: 11.5px; }

  /* Multi-step form */
  .multi-step-form  { padding: 22px 16px; }
  .form-step legend h3 { font-size: 19px; }
  .form-step-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .form-step-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Thank-you card */
  .thankyou-card  { padding: 32px 20px; }
  .thankyou-card h2 { font-size: 22px; }

  /* CTA band */
  .cta-band h2 { font-size: clamp(22px, 7vw, 28px); }
  .cta-band p  { font-size: 14.5px; }

  /* External CTA on product pages */
  .external-cta { padding: 28px 22px; gap: 20px; }
  .external-cta-body h2 {
    font-size: clamp(22px, 7vw, 26px);
    line-height: 1.2;
  }
  .external-cta-body p { font-size: 14px; }

  /* Office cards */
  .office { padding: 24px 22px; }
  .office-address { font-size: 13.5px; }

  /* Footer */
  .footer-top  { gap: 28px; padding: 40px 0 28px; }
  .footer-col h5 { margin-bottom: 14px; font-size: 13px; }
  .footer-col a  { font-size: 13.5px; }
  .footer-meta a,
  .footer-meta span { font-size: 12.5px; }

  /* Legal pages (privacy/terms/cookies) */
  .legal-body      { padding: 36px 0 60px; }
  .legal-body-inner h2 { font-size: clamp(20px, 6vw, 24px); margin-top: 32px; }
  .legal-body-inner h3 { font-size: clamp(17px, 5vw, 20px); }

  /* Rapid-activation card (strengths page) */
  .rapid-card,
  .esim-card { padding: 32px 22px; }

  /* Product hero on individual product pages */
  .product-hero-grid { gap: 22px; }

  /* Partner cells (partners.php) */
  .partner-cell { padding: 18px 12px; }
  .partner-mark { width: 48px; height: 48px; font-size: 13px; }
  .partner-name { font-size: 14px; }
  .partner-type { font-size: 10px; }

  /* Supplier stats */
  .supplier-stat { padding: 22px 18px; }
  .ss-num   { font-size: 32px; }
  .ss-label { font-size: 14px; }
  .ss-sub   { font-size: 12px; }
}

/* ============================================================
   FIX 6 — Very small phones (≤ 360px)
   iPhone SE-class. Edge case but worth handling.
   ============================================================ */
@media (max-width: 360px) {
  .wrap { padding: 0 14px; }
  .hero h1,
  .page-hero h1 {
    font-size: 22px;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .stat       { padding: 18px 16px; }
}

/* ============================================================
   FIX 7 — Utility-bar tightening
   At narrow widths the contact-bar tagline + email can crowd.
   Center the bar content so it stacks gracefully.
   ============================================================ */
@media (max-width: 720px) {
  .utility-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 8px 0;
  }
}

/* ============================================================
   FIX 8 — Nav-inner alignment fix on mobile
   When mobile menu kicks in the brand-chip + burger should
   align nicely. Make sure logo size stays sensible.
   ============================================================ */
@media (max-width: 480px) {
  .brand-chip img { height: 38px; }
  .nav-inner { padding: 10px 0; }
}

/* ============================================================
   TRUST STRIP — sits above the contact form
   Four stat blocks + a row of compliance badges. Visible
   reassurance for B2B visitors about to share sensitive
   business information (revenue, IATA status, team size).
   ============================================================ */
.trust-strip {
  background: var(--bg-2);
  padding: 36px 0 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-stats > li {
  text-align: center;
  padding: 6px 4px;
}
.trust-stat-num {
  font-family: var(--fd);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--cyan-3);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-stat-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
}

.trust-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px 7px 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -.003em;
}
.trust-badge svg {
  color: var(--cyan-3);
  flex-shrink: 0;
}
.trust-badge a {
  color: var(--cyan-3);
  text-decoration: underline;
  text-decoration-color: rgba(20, 165, 194, 0.4);
}
.trust-badge a:hover {
  text-decoration-color: var(--cyan-3);
}

@media (max-width: 900px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 480px) {
  .trust-strip { padding: 28px 0 22px; }
  .trust-stat-num { font-size: 20px; }
  .trust-stat-label { font-size: 12px; }
  .trust-badge { padding: 6px 10px 6px 9px; font-size: 11.5px; }
}

/* ============================================================
   404 — error page styling
   ============================================================ */
.error-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  text-align: center;
}
.error-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.error-code {
  font-family: var(--fd);
  font-size: clamp(120px, 22vw, 200px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo-2) 55%, var(--navy) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  opacity: 0.92;
}
.error-hero h1 {
  font-family: var(--fd);
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--navy);
  margin: 16px 0 14px;
  line-height: 1.1;
}
.error-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--indigo-2) 55%, var(--navy) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.error-hero .lead {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 22px;
  max-width: 540px;
}
.error-hero .tag-pill {
  background: var(--surface);
  margin-bottom: 4px;
}
.error-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.error-suggestions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.error-suggestion {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  color: var(--text);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.error-suggestion:hover {
  border-color: var(--cyan-3);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -20px rgba(27,27,92,0.18);
}
.error-suggestion-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(41, 197, 224, 0.1);
  color: var(--cyan-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.error-suggestion h3 {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -.005em;
}
.error-suggestion p {
  margin: 0;
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .error-suggestions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .error-suggestions { grid-template-columns: 1fr; }
  .error-hero { padding: 60px 0 44px; }
}

/* ============================================================
   DPA — Sub-processor table (uses CSS Grid, not <table>, so it
   scales gracefully on mobile)
   ============================================================ */
.dpa-subproc-table {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin: 18px 0 8px;
  background: var(--surface);
}
.dpa-subproc-head {
  display: grid;
  grid-template-columns: 1.3fr 2fr 1.3fr;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.dpa-subproc-row {
  display: grid;
  grid-template-columns: 1.3fr 2fr 1.3fr;
  gap: 14px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.dpa-subproc-row + .dpa-subproc-row {
  border-top: 1px solid var(--line);
}
.dpa-subproc-row strong { color: var(--navy); font-family: var(--fd); }

@media (max-width: 700px) {
  /* On mobile, stack each row's cells vertically with labels */
  .dpa-subproc-head { display: none; }
  .dpa-subproc-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
  }
  .dpa-subproc-row > span[role="cell"]:nth-child(1) {
    font-size: 14.5px;
    margin-bottom: 2px;
  }
  .dpa-subproc-row > span[role="cell"]:nth-child(2) {
    color: var(--text-2);
    font-size: 13.5px;
  }
  .dpa-subproc-row > span[role="cell"]:nth-child(3) {
    font-family: var(--fm);
    font-size: 12px;
    color: var(--muted);
  }
}

/* DPA callout — sticky plain-English summary box at the top */
.legal-callout {
  background: linear-gradient(135deg, rgba(41, 197, 224, 0.06) 0%, rgba(20, 16, 74, 0.04) 100%);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan-3);
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 32px;
}
.legal-callout strong { color: var(--navy); }
.legal-callout a { color: var(--cyan-3); border-bottom: 1px dashed var(--cyan-3); }
.legal-callout a:hover { color: var(--navy); }

/* ============================================================
   BOOK-MEETING PAGE
   ============================================================ */
.meeting-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.meeting-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  position: relative;
}
.meeting-step {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-3) 0%, var(--cyan) 100%);
  color: #fff;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.meeting-card h3 {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -.005em;
}
.meeting-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Calendar embed container */
.booking-embed-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 14px 38px -28px rgba(27,27,92,0.18);
}
.booking-fallback-note {
  text-align: center;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13.5px;
}
.booking-fallback-note a {
  color: var(--cyan-3);
}

/* Placeholder when no booking provider configured */
.booking-placeholder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 56px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.booking-placeholder-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(41, 197, 224, 0.1);
  color: var(--cyan-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-placeholder h3 {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0 12px;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.booking-placeholder p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}

@media (max-width: 900px) {
  .meeting-expect-grid { grid-template-columns: 1fr; gap: 16px; }
  .booking-placeholder { padding: 40px 24px; }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

/* Sticky category nav */
.faq-nav-strip {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
}
.faq-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.faq-nav a {
  display: inline-block;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: border-color .15s, color .15s, background .15s;
}
.faq-nav a:hover {
  border-color: var(--cyan-3);
  color: var(--cyan-3);
}

/* Category header */
.faq-category {
  margin-bottom: 56px;
  scroll-margin-top: 80px;  /* offset for sticky nav when anchor-scrolling */
}
.faq-category:last-child { margin-bottom: 0; }
.faq-category-heading {
  font-family: var(--fd);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.015em;
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--line);
}
.faq-category-icon {
  font-size: 22px;
  line-height: 1;
}

/* Accordion items */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--cyan-3);
  box-shadow: 0 8px 24px -18px rgba(20,165,194,0.25);
}
.faq-item summary.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  font-family: var(--fd);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.005em;
  line-height: 1.4;
}
.faq-item summary.faq-q::-webkit-details-marker { display: none; }
.faq-item summary.faq-q::marker { content: ''; }
.faq-q-text { flex: 1; }
.faq-q-icon {
  color: var(--cyan-3);
  flex-shrink: 0;
  transition: transform .2s;
  display: inline-flex;
}
.faq-item[open] .faq-q-icon {
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 22px 22px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}
.faq-a p { margin: 0; }
.faq-a a {
  color: var(--cyan-3);
  text-decoration: underline;
  text-decoration-color: rgba(20,165,194,0.4);
  text-underline-offset: 2px;
}
.faq-a a:hover { text-decoration-color: var(--cyan-3); }
.faq-a strong { color: var(--text); font-weight: 600; }

@media (max-width: 720px) {
  .faq-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .faq-nav::-webkit-scrollbar { display: none; }
  .faq-nav a { white-space: nowrap; flex-shrink: 0; }
  .faq-category { scroll-margin-top: 70px; }
  .faq-item summary.faq-q { padding: 16px 18px; font-size: 14.5px; }
  .faq-a { padding: 0 18px 18px; font-size: 14px; }
}
@media (max-width: 480px) {
  .faq-category { margin-bottom: 40px; }
  .faq-item summary.faq-q { gap: 10px; padding: 14px 16px; font-size: 14px; }
  .faq-a { padding: 0 16px 16px; }
}
