:root {
  --blue: #3358E0;
  --blue-dark: #22409E;
  --blue-light: #EEF2FE;
  --teal: #0F9D8B;
  --teal-light: #E6F7F4;
  --ink: #0B1220;
  --gray: #5B6472;
  --gray-soft: #96A0AD;
  --line: #E5E9F0;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 1px 3px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 4px 14px rgba(16, 24, 40, 0.07), 0 14px 32px rgba(16, 24, 40, 0.10);
  --primary: #3358E0;
  --bs-primary: #3358E0;
  --bs-primary-rgb: 51, 88, 224;
  --page-max: min(1680px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--page-max); margin: 0 auto; padding: 0 clamp(16px, 2.5vw, 36px); }
button { font-family: inherit; }
svg.i {
  width: 20px; height: 20px; stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; display: block;
}

/* ---------- Header ---------- */
header.site {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  gap: 8px;
}
header.site .brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
header.site .brand img {
  height: 40px;
  max-height: 40px;
  width: auto;
  display: block;
}
nav.main {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: center;
  min-width: 0;
}
nav.main a.navlink,
nav.main button.navlink {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 8px;
  transition: all .15s ease;
  white-space: nowrap;
  line-height: 1.25;
}
nav.main a.navlink:hover,
nav.main a.navlink.active,
nav.main button.navlink:hover,
nav.main button.navlink.active,
.nav-drop.active > .navlink {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-drop { position: relative; }
.nav-drop > .navlink { display: inline-flex; align-items: center; gap: 4px; }
.nav-drop .caret { width: 14px; height: 14px; }
.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 10px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 60;
}
.nav-menu::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.nav-drop:hover .nav-menu,
.nav-drop.open .nav-menu { display: block; }
.nav-menu a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 9px 12px;
  margin: 0 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}
.nav-menu a:first-of-type { margin-top: 8px; }
.nav-menu a:last-of-type { margin-bottom: 8px; }
.nav-menu a:hover,
.nav-menu a.active { background: var(--blue-light); color: var(--blue); }
.nav-login-mobile,
.nav-find-mobile { display: none; }
.nav-drop .caret { transition: transform .15s ease; }
.nav-drop.open .caret,
.nav-drop:hover .caret { transform: rotate(180deg); }
header.site .nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
}
header.site .nav-login {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 5px 8px;
  white-space: nowrap;
}
header.site .nav-login:hover { color: var(--blue); }
header.site .nav-right .pill {
  padding: 6px 12px;
  font-size: 13px;
  gap: 5px;
  line-height: 1.2;
}
header.site .nav-right .pill svg {
  width: 14px;
  height: 14px;
}
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  cursor: pointer; border: none; transition: all .15s ease; white-space: nowrap;
}
.pill svg { width: 16px; height: 16px; }
.pill-blue { background: var(--blue); color: #fff; box-shadow: 0 4px 12px rgba(51, 88, 224, 0.24); }
.pill-blue:hover { background: var(--blue-dark); color: #fff; }
.pill-outline { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.pill-outline:hover { border-color: var(--blue); color: var(--blue); }
.pill-white { background: #fff; color: var(--blue); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 3px; }

/* ---------- Hero (unified homepage) ---------- */
.hero { padding: 64px 0 44px; }
.hero-main {
  position: relative;
  overflow: hidden;
  padding: 36px 0 44px;
  background:
    radial-gradient(circle at 12% 20%, rgba(51, 88, 224, 0.07), transparent 38%),
    radial-gradient(circle at 88% 72%, rgba(15, 157, 139, 0.06), transparent 36%);
}
.hero-main .wrap { display: block; }
.hero-main .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-main .blob.a {
  width: 420px; height: 420px; left: -180px; top: 40px;
  background: radial-gradient(circle, rgba(51, 88, 224, 0.1), transparent 68%);
}
.hero-main .blob.b {
  width: 480px; height: 480px; right: -200px; bottom: -80px;
  background: radial-gradient(circle, rgba(15, 157, 139, 0.1), transparent 68%);
}
.hero-shell {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(51, 88, 224, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 48%, rgba(245, 252, 250, 0.96) 100%);
  box-shadow:
    0 24px 64px rgba(51, 88, 224, 0.08),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue));
  opacity: 0.85;
}
.hero-shell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px clamp(20px, 3vw, 32px) 0;
}
.hero-shell-head .eyebrow { margin-bottom: 0; }
.hero-shell-motto {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.01em;
}
.hero-shell-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.15fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: center;
  padding: clamp(22px, 3vw, 32px);
}
.hero-shell-copy { min-width: 0; }
.hero-shell-copy h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  margin: 0 0 22px;
}
.hero-shell-copy .cta-row { margin-bottom: 0; }
.hero-shell-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.hero-shell-core {
  width: clamp(148px, 14vw, 172px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 12px;
  background: #fff;
  border: 2px solid rgba(51, 88, 224, 0.14);
  box-shadow:
    0 0 0 8px rgba(51, 88, 224, 0.05),
    0 16px 40px rgba(51, 88, 224, 0.12);
}
.hero-shell-brand {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}
.hero-shell-core strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.2px;
}
.hero-shell-core em {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
}
.hero-shell-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}
.hero-svc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px 12px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.hero-svc:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(51, 88, 224, 0.18);
}
.hero-svc .ic-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.hero-svc .ic-wrap svg { width: 17px; height: 17px; stroke-width: 1.8; }
.hero-svc h3 {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.hero-svc p {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: var(--gray);
}
.hero-svc.blue .ic-wrap { background: linear-gradient(145deg, #4d7ef5, var(--blue)); }
.hero-svc.orange .ic-wrap { background: linear-gradient(145deg, #ffc55b, #ec9217); }
.hero-svc.green .ic-wrap { background: linear-gradient(145deg, #4ed2a1, var(--teal)); }
.hero-svc.purple .ic-wrap { background: linear-gradient(145deg, #a27ee9, #7650ca); }
.hero-svc.pink .ic-wrap { background: linear-gradient(145deg, #d86ed8, #8b37bd); }
.hero-shell-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 18px clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.7) 0%, rgba(241, 245, 251, 0.95) 100%);
}
.hero-shell-stats .hero-stat {
  padding: 4px 20px 4px 0;
  margin-right: 20px;
  border-right: 1px solid rgba(51, 88, 224, 0.12);
}
.hero-shell-stats .hero-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.hero-shell-stats .num {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.hero-shell-stats .lbl {
  font-size: 12px;
  color: var(--gray-soft);
  font-weight: 600;
  margin-top: 3px;
}
@media (max-width: 1100px) {
  .hero-shell-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "copy copy"
      "bridge services";
  }
  .hero-shell-copy { grid-area: copy; }
  .hero-shell-bridge { grid-area: bridge; justify-content: flex-start; }
  .hero-shell-services { grid-area: services; }
}
@media (max-width: 720px) {
  .hero-shell-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-shell-main {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "bridge" "services";
  }
  .hero-shell-bridge { justify-content: center; }
  .hero-shell-services { grid-template-columns: 1fr; }
  .hero-shell-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 0; }
  .hero-shell-stats .hero-stat {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(51, 88, 224, 0.1);
    padding-bottom: 14px;
  }
  .hero-shell-stats .hero-stat:nth-child(3),
  .hero-shell-stats .hero-stat:nth-child(4) { border-bottom: none; padding-bottom: 4px; }
}
@media (max-width: 420px) {
  .hero-shell-stats { grid-template-columns: 1fr; }
  .hero-shell-stats .hero-stat { border-bottom: 1px solid rgba(51, 88, 224, 0.1); padding-bottom: 14px; }
  .hero-shell-stats .hero-stat:last-child { border-bottom: none; }
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-main .wrap { display: block; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); color: var(--blue-dark);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; margin-bottom: 20px; letter-spacing: .02em;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero h1 { font-size: 44px; line-height: 1.14; margin: 0 0 18px; font-weight: 700; letter-spacing: -0.7px; color: var(--ink); }
.hero h1 span { color: var(--blue); }
.hero p.lead { font-size: 17px; line-height: 1.65; color: var(--gray); margin: 0 0 30px; max-width: 500px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 0; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 26px; }
.hero-stats .stat { padding-right: 30px; margin-right: 30px; border-right: 1px solid var(--line); }
.hero-stats .stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stats .num { font-size: 24px; font-weight: 700; letter-spacing: -0.3px; }
.hero-stats .lbl { font-size: 12px; color: var(--gray-soft); font-weight: 600; margin-top: 2px; }

/* Highlighted metric counts (site-wide) */
.count-highlight {
  background: linear-gradient(135deg, var(--blue) 0%, #4d7ef5 45%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
}
.js-count-up {
  font-variant-numeric: tabular-nums;
}
.count-highlight-light {
  background: linear-gradient(135deg, #a8c0ff 0%, #7ef0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #a8c0ff;
}

.stats-strip {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.stats-strip-item {
  padding: 4px 20px 4px 0;
  margin-right: 20px;
  border-right: 1px solid rgba(51, 88, 224, 0.12);
  text-align: center;
}
.stats-strip-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.stats-strip .num {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.stats-strip .lbl {
  font-size: 12px;
  color: var(--gray-soft);
  font-weight: 600;
  margin-top: 3px;
}
@media (max-width: 720px) {
  .stats-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 0; }
  .stats-strip-item {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(51, 88, 224, 0.1);
    padding-bottom: 12px;
  }
  .stats-strip-item:nth-child(3),
  .stats-strip-item:nth-child(4) { border-bottom: none; padding-bottom: 4px; }
}
@media (max-width: 420px) {
  .stats-strip-grid { grid-template-columns: 1fr; }
  .stats-strip-item { border-bottom: 1px solid rgba(51, 88, 224, 0.1); padding-bottom: 12px; }
  .stats-strip-item:last-child { border-bottom: none; }
}

.hero-visual { position: relative; min-height: 460px; }

/* Hero ecosystem visual */
.hero-ecosystem {
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: 28px;
  background: radial-gradient(circle at 30% 28%, rgba(51, 88, 224, 0.12), transparent 42%),
              radial-gradient(circle at 72% 68%, rgba(15, 157, 139, 0.14), transparent 40%),
              linear-gradient(145deg, #f8faff 0%, #ffffff 48%, #f4fbf9 100%);
  border: 1px solid rgba(51, 88, 224, 0.08);
  box-shadow: 0 24px 60px rgba(51, 88, 224, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.eco-backdrop { position: absolute; inset: 0; pointer-events: none; }
.eco-glow {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.75;
  animation: eco-drift 10s ease-in-out infinite alternate;
}
.eco-glow-a { width: 220px; height: 220px; top: 8%; left: 10%; background: rgba(51, 88, 224, 0.22); }
.eco-glow-b { width: 180px; height: 180px; bottom: 6%; right: 8%; background: rgba(15, 157, 139, 0.24); animation-delay: -3s; }
.eco-ring {
  position: absolute; top: 50%; left: 50%; border-radius: 50%;
  border: 1px solid rgba(51, 88, 224, 0.12); transform: translate(-50%, -50%);
}
.eco-ring-outer {
  width: 88%; height: 88%;
  animation: eco-spin 48s linear infinite;
  border-style: dashed;
}
.eco-ring-inner {
  width: 62%; height: 62%;
  border-color: rgba(15, 157, 139, 0.18);
  animation: eco-spin 36s linear infinite reverse;
}
.eco-spokes {
  position: absolute; inset: 8% 6%; width: calc(100% - 12%); height: calc(100% - 16%);
  pointer-events: none;
}
.eco-spoke {
  stroke: url(#eco-line); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 6 10; animation: eco-dash 4s linear infinite;
}
.eco-pulse {
  fill: none; stroke: rgba(51, 88, 224, 0.25); stroke-width: 1.5;
  transform-origin: 210px 210px; animation: eco-pulse 3.2s ease-out infinite;
}
.eco-pulse-2 { animation-delay: 1.6s; }
.eco-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 3; width: 168px;
}
.eco-core-glow {
  position: absolute; inset: -18px; border-radius: 24px;
  background: radial-gradient(circle, rgba(51, 88, 224, 0.22), transparent 70%);
  animation: eco-breathe 3s ease-in-out infinite;
}
.eco-core-card {
  position: relative; background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px; padding: 18px 16px 14px; text-align: center;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
}
.eco-core-card img { height: 46px; width: auto; margin: 0 auto 10px; display: block; }
.eco-core-card span {
  display: block; font-size: 11.5px; line-height: 1.45; font-weight: 700;
  color: var(--gray); letter-spacing: 0.01em;
}
.eco-services { position: absolute; inset: 0; z-index: 4; }
.eco-node {
  position: absolute; display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: inherit; transform: translate(-50%, -50%);
  animation: eco-float 5s ease-in-out infinite;
}
.eco-node-1 { top: 14%; left: 22%; animation-delay: 0s; }
.eco-node-2 { top: 18%; left: 82%; animation-delay: -1s; }
.eco-node-3 { top: 72%; left: 88%; animation-delay: -2s; }
.eco-node-4 { top: 90%; left: 52%; animation-delay: -3s; }
.eco-node-5 { top: 66%; left: 14%; animation-delay: -4s; }
.eco-node-ping {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 0 rgba(15, 157, 139, 0.45);
  animation: eco-ping 2.4s ease-out infinite;
}
.eco-node-card {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px; padding: 11px 14px;
  font-size: 12.5px; font-weight: 700; color: var(--ink); white-space: nowrap;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.eco-node-card .ic {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(145deg, var(--blue-light), #fff);
  color: var(--blue); display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.eco-node-card svg { width: 16px; height: 16px; }
.eco-node:hover .eco-node-card {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(51, 88, 224, 0.25);
  box-shadow: 0 16px 36px rgba(51, 88, 224, 0.16);
}
@keyframes eco-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes eco-drift { from { transform: translate(0, 0); } to { transform: translate(12px, -10px); } }
@keyframes eco-dash { to { stroke-dashoffset: -32; } }
@keyframes eco-pulse {
  0% { transform: scale(0.72); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes eco-breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}
@keyframes eco-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}
@keyframes eco-ping {
  0% { box-shadow: 0 0 0 0 rgba(15, 157, 139, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(15, 157, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 157, 139, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .eco-ring-outer, .eco-ring-inner, .eco-spoke, .eco-pulse, .eco-glow,
  .eco-core-glow, .eco-node, .eco-node-ping { animation: none; }
}

/* ---------- Trust bar (marquee) ---------- */
.trust-bar-marquee {
  position: relative;
  padding: 13px 0;
  border-bottom: 1px solid rgba(51, 88, 224, 0.12);
  background:
    linear-gradient(90deg, rgba(51, 88, 224, 0.06) 0%, rgba(255, 255, 255, 0.95) 18%, rgba(255, 255, 255, 0.95) 82%, rgba(15, 157, 139, 0.06) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.trust-bar-marquee::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue));
  opacity: 0.9;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 2.5vw, 36px);
}
.trust-bar-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  line-height: 1;
}
.trust-bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.trust-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 96%, transparent);
  mask-image: linear-gradient(to right, #000 0%, #000 96%, transparent);
}
.trust-marquee-track {
  display: flex;
  width: max-content;
  animation: trust-marquee 28s linear infinite;
  will-change: transform;
}
.trust-marquee-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
  flex: none;
}
.trust-bar-marquee .trust-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 242, 254, 0.95) 100%);
  border: 1px solid rgba(51, 88, 224, 0.2);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-dark);
  white-space: nowrap;
  flex: none;
  box-shadow: 0 2px 10px rgba(51, 88, 224, 0.1);
}
.trust-bar-marquee .trust-marquee-group .trust-badge:nth-child(odd) {
  border-color: rgba(51, 88, 224, 0.22);
  color: var(--blue-dark);
}
.trust-bar-marquee .trust-marquee-group .trust-badge:nth-child(even) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(230, 247, 244, 0.95) 100%);
  border-color: rgba(15, 157, 139, 0.22);
  color: #0a7a6c;
  box-shadow: 0 2px 10px rgba(15, 157, 139, 0.1);
}
@keyframes trust-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }
  .trust-marquee-group[aria-hidden="true"] { display: none; }
  .trust-marquee { mask-image: none; -webkit-mask-image: none; overflow: visible; }
}

/* Legacy trust bar (if used elsewhere) */
.trust-bar { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust-bar .wrap { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: space-between; }
.trust-bar .label { font-size: 12px; font-weight: 700; color: var(--gray-soft); text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; margin: 0; }
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badge {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.address-lines { line-height: 1.55; }
.address-lines a { font-weight: 600; font-size: 13px; }

/* ---------- Section generic ---------- */
section.am-section { padding: 76px 0; }
.section-head { max-width: 620px; margin: 0 auto 42px; text-align: center; }
.section-head.left { margin: 0 0 42px; text-align: left; }
.kicker {
  display: inline-block; color: var(--blue); font-weight: 700; font-size: 12.5px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px;
}
.section-head h2 { font-size: 30px; margin: 0 0 12px; font-weight: 700; letter-spacing: -0.5px; color: var(--ink); }
.section-head p { color: var(--gray); font-size: 15px; line-height: 1.65; margin: 0; }

/* ---------- Service cards (matches hero-svc style) ---------- */
.am-section-tight { padding: 56px 0; }
.section-head-compact { margin-bottom: 32px; }
.service-dept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.service-dept {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 14px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: inherit;
  min-width: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-dept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(51, 88, 224, 0.18);
  color: inherit;
}
.service-dept-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.service-dept-icon svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 1.8; }
.service-dept.blue .service-dept-icon { background: linear-gradient(145deg, #4d7ef5, var(--blue)); }
.service-dept.orange .service-dept-icon { background: linear-gradient(145deg, #ffc55b, #ec9217); }
.service-dept.green .service-dept-icon { background: linear-gradient(145deg, #4ed2a1, var(--teal)); }
.service-dept.purple .service-dept-icon { background: linear-gradient(145deg, #a27ee9, #7650ca); }
.service-dept.pink .service-dept-icon { background: linear-gradient(145deg, #d86ed8, #8b37bd); }
.service-dept-icon.icon-logo {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 6px;
}
.service-dept-icon.icon-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-dept-body { min-width: 0; }
.service-dept h4 {
  margin: 0 0 3px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.1px;
}
.service-dept p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--gray);
}
.service-dept-cta {
  text-align: center;
  margin-top: 24px;
}

/* Legacy strip cards (other pages) */
.strip-scroll { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.strip-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  height: 100%;
  display: block;
}
.strip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); color: inherit; }
.strip-card .ic {
  width: 42px; height: 42px; border-radius: 10px; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.strip-card .thumb {
  width: 42px; height: 42px; border-radius: 10px; overflow: hidden; margin-bottom: 14px;
  background: var(--blue-light);
}
.strip-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.strip-card h4 { font-size: 14.5px; margin: 0 0 5px; font-weight: 700; color: var(--ink); }
.strip-card p { font-size: 12.5px; color: var(--gray); line-height: 1.5; margin: 0; }

/* ---------- Benefits ecosystem ---------- */
.benefits { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.benefit-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(51, 88, 224, 0.15);
}
.benefit-item .ic {
  width: 40px; height: 40px; border-radius: 11px; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.benefit-item .ic svg { width: 18px; height: 18px; }
.benefit-item h4 { font-size: 15px; margin: 0 0 6px; font-weight: 700; color: var(--ink); }
.benefit-item p { font-size: 13.5px; color: var(--gray); line-height: 1.55; margin: 0; }
.benefit-grid-wide { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------- Why Choose cards (inner pages) ---------- */
.why-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
}
.why-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-color: rgba(51, 88, 224, 0.18);
}
.why-card:nth-child(1) { grid-column: 1 / 3; }
.why-card:nth-child(2) { grid-column: 3 / 5; }
.why-card:nth-child(3) { grid-column: 5 / 7; }
.why-card:nth-child(4) { grid-column: 2 / 4; }
.why-card:nth-child(5) { grid-column: 4 / 6; }
.why-card-grid.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.why-card-grid.four-up .why-card:nth-child(n) {
  grid-column: auto;
}
.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.why-card-icon svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 1.8; }
.why-card.green .why-card-icon { background: linear-gradient(145deg, #4ed2a1, var(--teal)); }
.why-card.blue .why-card-icon { background: linear-gradient(145deg, #4d7ef5, var(--blue)); }
.why-card.purple .why-card-icon { background: linear-gradient(145deg, #a27ee9, #7650ca); }
.why-card.orange .why-card-icon { background: linear-gradient(145deg, #ffc55b, #ec9217); }
.why-card.pink .why-card-icon { background: linear-gradient(145deg, #d86ed8, #8b37bd); }
.why-card-body { min-width: 0; }
.why-card-body h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.why-card-body p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray);
}
.section-head.left p { max-width: 560px; }
.check-list { list-style: none; margin: 24px 0 0; padding: 0; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; font-size: 14.5px; color: var(--ink); font-weight: 600; }
.check-list .tick {
  flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.check-list .tick svg { width: 12px; height: 12px; stroke-width: 2.4; }

/* ---------- Stat band ---------- */
.stat-band { background: var(--ink); border-radius: 24px; padding: 50px; color: #fff; }
.stat-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-band .num { font-size: 30px; font-weight: 800; letter-spacing: -0.4px; }
.stat-band .lbl { font-size: 12.5px; color: #8D97A8; margin-top: 6px; font-weight: 600; }

/* ---------- Services detail ---------- */
.service-detail {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); margin-bottom: 14px;
}
.service-detail .ic {
  width: 48px; height: 48px; border-radius: 12px; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.service-detail h3 { margin: 0 0 7px; font-size: 16.5px; font-weight: 700; }
.service-detail p { margin: 0; color: var(--gray); font-size: 14px; line-height: 1.65; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.tag { background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink); font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px; }

/* ---------- Testimonials ---------- */
.testi-section { padding-top: 64px; padding-bottom: 64px; }
.testi-shell {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(51, 88, 224, 0.1);
  background:
    radial-gradient(circle at 8% 0%, rgba(51, 88, 224, 0.07), transparent 42%),
    radial-gradient(circle at 92% 100%, rgba(15, 157, 139, 0.06), transparent 38%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 20px 50px rgba(51, 88, 224, 0.06);
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
}
.testi-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue));
}
.testi-head {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}
.testi-head h2 {
  font-size: clamp(26px, 3.2vw, 32px);
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.testi-head p {
  margin: 0 0 18px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.65;
}
.testi-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.testi-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(51, 88, 224, 0.14);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-dark);
}
.testi-highlight-pill svg { width: 14px; height: 14px; stroke: var(--teal); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px 18px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(51, 88, 224, 0.16);
}
.testi-card-featured {
  border-color: rgba(51, 88, 224, 0.22);
  box-shadow: 0 12px 32px rgba(51, 88, 224, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
}
.testi-featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #4d7ef5);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.testi-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.testi-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.testi-tag-blue { background: var(--blue-light); color: var(--blue-dark); }
.testi-tag-teal { background: var(--teal-light); color: #0a7a6c; }
.testi-tag-purple { background: #f3edff; color: #6b4bb5; }
.testi-stars {
  font-size: 13px;
  letter-spacing: 1px;
  color: #f5a623;
  line-height: 1;
  flex-shrink: 0;
}
.testi-card .quote {
  flex: 1;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.68;
  margin: 0 0 18px;
}
.testi-card .quote::before {
  content: "\201C";
  display: block;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 4px;
}
.testi-mark {
  background: linear-gradient(180deg, transparent 55%, rgba(51, 88, 224, 0.14) 55%);
  color: inherit;
  font-weight: 700;
  padding: 0 1px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 11px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: auto;
}
.avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12.5px; flex: none;
}
.avatar-teal { background: var(--teal-light); color: var(--teal); }
.avatar-purple { background: #f3edff; color: #6b4bb5; }
.testi-person .name { font-size: 13px; font-weight: 700; color: var(--ink); }
.testi-person .role { font-size: 11.5px; color: var(--gray-soft); margin-top: 1px; }

.testi-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(110deg, var(--blue) 0%, #2a4bc9 52%, #1e3a8a 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(51, 88, 224, 0.22);
}
.testi-cta-copy strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.testi-cta-copy p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.testi-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.testi-cta .pill-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.testi-cta .pill-outline:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.testi-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-soft);
  margin: 18px 0 0;
}
.testi-note a { font-weight: 600; color: var(--blue); }

@media (max-width: 960px) {
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .testi-card-featured { order: -1; }
  .testi-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .testi-shell { padding: 22px 16px; border-radius: 22px; }
  .testi-highlight-pill { font-size: 11px; padding: 6px 12px; }
  .testi-cta-actions { width: 100%; }
  .testi-cta-actions .pill { flex: 1; justify-content: center; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 740px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; background: #fff; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 20px; cursor: pointer; font-weight: 600; font-size: 14.5px;
  background: none; border: none; width: 100%; text-align: left; color: var(--ink);
}
.faq-q .ic { width: 18px; height: 18px; color: var(--blue); transition: transform .2s ease; flex: none; margin-left: 12px; }
.faq-item.open .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a p { margin: 0; padding: 0 20px 19px; font-size: 13.5px; color: var(--gray); line-height: 1.65; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 740px; margin: 0 auto; }
.timeline:before { content: ""; position: absolute; left: 18px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.t-item { position: relative; padding-left: 52px; margin-bottom: 26px; }
.t-item:last-child { margin-bottom: 0; }
.t-dot {
  position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; border: 1px solid var(--line);
}
.t-item.teal .t-dot { background: var(--teal-light); color: var(--teal); }
.t-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; box-shadow: var(--shadow); }
.t-card h4 { margin: 0 0 5px; font-size: 14.5px; font-weight: 700; }
.t-card p { margin: 0; font-size: 13.5px; color: var(--gray); line-height: 1.6; }

/* ---------- Values / am-card ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.values-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.values-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
a.service-detail { color: inherit; }
a.service-detail:hover { border-color: var(--blue-light); box-shadow: var(--shadow-lg); }
.am-card { background: #fff; border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow); border: 1px solid var(--line); height: 100%; }
.am-card .ic {
  width: 44px; height: 44px; border-radius: 11px; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.am-card h3 { font-size: 16px; margin: 0 0 7px; font-weight: 700; }
.am-card p { font-size: 13.5px; color: var(--gray); line-height: 1.6; margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--blue);
  border-radius: 24px; color: #fff; padding: 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cta-banner h3 { font-size: 24px; margin: 0 0 8px; font-weight: 700; letter-spacing: -0.3px; color: #fff; }
.cta-banner p { margin: 0; color: #D6E0FB; font-size: 14px; }

.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.journey-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow); height: 100%;
}
.journey-card .ic {
  width: 44px; height: 44px; border-radius: 11px; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.journey-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 700; }
.journey-card p { margin: 0; color: var(--gray); font-size: 14.5px; line-height: 1.65; }
.journey-card .check-list { margin-top: 18px; }

.quick-fab {
  position: fixed; right: 20px; bottom: 92px; z-index: 98;
  display: flex; flex-direction: column; gap: 10px;
}
.quick-fab a {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); color: #fff;
}
.quick-fab a svg { width: 22px; height: 22px; }
.quick-fab .fab-call { background: var(--blue); }
.quick-fab .fab-call:hover { background: var(--blue-dark); color: #fff; }
.quick-fab .fab-wa { background: #1FAD66; }
.quick-fab .fab-wa:hover { background: #178A50; color: #fff; }
.wa-icon, .quick-fab .fab-wa svg, .quick-bar .qb-wa svg { fill: currentColor; stroke: none; }

.quick-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  background: #fff; border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}
.quick-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px; font-weight: 700; font-size: 14px; color: var(--ink);
}
.quick-bar a svg { width: 18px; height: 18px; }
.quick-bar .qb-call { border-right: 1px solid var(--line); color: var(--blue); }
.quick-bar .qb-wa { color: #178A50; }
.quick-bar .qb-wa svg { fill: #178A50; stroke: none; }

/* ---------- App download ---------- */
.app-download-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: center;
}
.app-download-card h2 { font-size: 28px; margin: 0 0 10px; font-weight: 700; letter-spacing: -0.4px; }
.app-download-card p { margin: 0; color: var(--gray); font-size: 15px; line-height: 1.65; }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; border-radius: 12px;
  padding: 10px 16px 10px 12px; min-width: 188px;
  transition: transform .15s ease, background .15s ease;
}
.store-badge:hover { transform: translateY(-2px); background: #161d2e; color: #fff; }
.store-badge svg { width: 28px; height: 28px; flex: none; fill: #fff; stroke: none; }
.store-badge .store-kicker { display: block; font-size: 10px; font-weight: 600; letter-spacing: .04em; color: #C5CBD6; line-height: 1.2; }
.store-badge .store-name { display: block; font-size: 16px; font-weight: 700; letter-spacing: -0.2px; line-height: 1.2; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; }
.contact-info .item { display: flex; gap: 15px; margin-bottom: 24px; }
.contact-info .ic {
  width: 42px; height: 42px; border-radius: 10px; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.contact-info h4 { margin: 0 0 4px; font-size: 14.5px; font-weight: 700; }
.contact-info p { margin: 0; font-size: 13.5px; color: var(--gray); line-height: 1.6; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.field input,
.field select,
.field textarea,
.form-card .form-control,
.form-card .form-select,
.form-floating > .form-control,
.form-floating > .form-select {
  border: 1.5px solid var(--line); border-radius: 9px; padding: 10px 12px;
  font-size: 13.5px; font-family: inherit; color: var(--ink); outline: none;
  transition: border-color .15s ease; background: var(--bg-soft);
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: none;
}
.form-note { font-size: 11.5px; color: var(--gray-soft); margin-top: 10px; }
.map-strip {
  margin-top: 14px; border-radius: var(--radius-sm); overflow: hidden; height: 140px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; color: var(--blue-dark); font-weight: 600; font-size: 12.5px;
  border: 1px solid var(--line);
}
.map-strip iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
footer.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0d1525 0%, var(--ink) 100%);
  color: #93A0B3;
  padding: 64px 0 0;
  margin-top: 24px;
  overflow: hidden;
}
footer.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue));
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.75fr) 1fr 1fr minmax(220px, 1.2fr);
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: 44px;
  align-items: start;
}
.footer-brand-col { max-width: 420px; }
.footer-brand {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-brand img {
  height: clamp(64px, 8vw, 82px);
  width: auto;
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.footer-about {
  font-size: 14px;
  line-height: 1.75;
  color: #9aa8bb;
  margin: 0 0 18px;
}
.footer-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.footer-mini-stats span {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  color: #c5d0e0;
  letter-spacing: 0.02em;
}
.footer-store-badges {
  justify-content: flex-start;
  margin-top: 0;
  gap: 10px;
}
footer.site-footer h5 {
  color: #fff;
  font-size: 12px;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
footer.site-footer h5::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
footer.site-footer ul { list-style: none; margin: 0; padding: 0; }
footer.site-footer li { margin-bottom: 11px; }
footer.site-footer li:last-child { margin-bottom: 0; }
footer.site-footer li a {
  font-size: 13.5px;
  color: #9aa8bb;
  transition: color 0.15s ease;
}
footer.site-footer li a:hover { color: #fff; }
.footer-contact-list li a,
.footer-contact-list .address-lines,
.footer-contact-list .footer-hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #9aa8bb;
}
.footer-contact-list .i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--teal);
}
.footer-contact-list li a .i { stroke: currentColor; }
footer.site-footer .address-lines { max-width: none; }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-legal-links a {
  font-size: 12px;
  font-weight: 600;
  color: #7f8da3;
}
.footer-legal-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-size: 12.5px;
  color: #69748A;
  line-height: 1.5;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: #b8c4d4;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.footer-social a:hover {
  background: rgba(51, 88, 224, 0.22);
  border-color: rgba(51, 88, 224, 0.35);
  color: #fff;
}
footer.site-footer .store-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 0;
  padding: 8px 12px 8px 10px;
}
footer.site-footer .store-badge:hover {
  background: rgba(51, 88, 224, 0.25);
  border-color: rgba(51, 88, 224, 0.35);
}
footer.site-footer .store-badge svg { width: 22px; height: 22px; }
footer.site-footer .store-badge .store-name { font-size: 14px; }

/* ---------- Inner page hero ---------- */
.page-hero { padding: 52px 0 36px; text-align: center; }
.page-hero .wrap { grid-template-columns: 1fr; }
.page-hero .eyebrow { margin-left: auto; margin-right: auto; }
.page-hero h1 { font-size: 36px; line-height: 1.2; margin: 0 0 14px; font-weight: 700; letter-spacing: -0.5px; }
.page-hero h1 span { color: var(--blue); }
.page-hero p.lead { max-width: 620px; margin-left: auto; margin-right: auto; margin-bottom: 18px; }
.crumb {
  display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--gray-soft); font-weight: 600; list-style: none; padding: 0; margin: 0;
}
.crumb a { color: var(--gray); }
.crumb a:hover { color: var(--blue); }
.crumb .sep { color: var(--line); }

/* ---------- Audience / partner tiles ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.audience-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; box-shadow: var(--shadow); display: block; transition: transform .15s ease, box-shadow .15s ease;
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: inherit; }
.audience-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.audience-card span { color: #0D9ED8; font-size: 13.5px; font-weight: 600; }

.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.logo-grid.cols-4 { grid-template-columns: repeat(4, 1fr); max-width: 760px; margin: 0 auto; }
.logo-cell {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px;
  min-height: 96px; display: flex; align-items: center; justify-content: center;
}
.logo-cell img { max-height: 56px; width: auto; object-fit: contain; }
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logo-marquee 36s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
.logo-marquee-group {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding-right: 14px;
  flex: none;
}
.logo-marquee .logo-cell {
  flex: none;
  width: 168px;
  min-height: 96px;
}
@keyframes logo-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; flex-wrap: wrap; width: 100%; }
  .logo-marquee-group[aria-hidden="true"] { display: none; }
  .logo-marquee { overflow: visible; mask-image: none; -webkit-mask-image: none; }
}

.prose { color: var(--gray); font-size: 15px; line-height: 1.75; }
.prose h2, .prose h3 { color: var(--ink); }
.panel { background: var(--bg-soft); }
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.media-split img { width: 100%; border-radius: 18px; object-fit: cover; min-height: 280px; }

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  align-items: stretch;
  justify-content: initial;
}
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; margin-bottom: 0; box-shadow: var(--shadow);
  font-size: 14.5px; color: var(--ink); font-weight: 500; line-height: 1.55;
}
.feature-list li .tick {
  flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.feature-list li .tick svg { width: 12px; height: 12px; stroke-width: 2.4; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); text-align: center; }
.process-step .num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue-light); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 12px;
}
.process-step h4 { margin: 0 0 6px; font-size: 15px; }
.process-step p { margin: 0; color: var(--gray); font-size: 13px; line-height: 1.55; }

.action-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 760px; margin: 0 auto; }
.action-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 24px; text-align: center; box-shadow: var(--shadow);
}
.action-card .ic {
  width: 56px; height: 56px; border-radius: 14px; background: var(--blue-light); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}

/* ---------- Bootstrap form / button alignment ---------- */
.btn-primary, .btn.btn-primary {
  background: var(--blue) !important; border: none !important; border-radius: 999px !important;
  font-weight: 600; padding: 11px 22px; box-shadow: 0 4px 12px rgba(51, 88, 224, 0.24);
}
.btn-primary:hover { background: var(--blue-dark) !important; }
.btn-secondary { border-radius: 999px !important; }
.text-primary { color: var(--blue) !important; }
.form-check-label { font-size: 13px; color: var(--gray); }
.form-floating > label { color: var(--gray); }
.form-control.bg-light, .form-select.bg-light { background: var(--bg-soft) !important; }
.alert { border-radius: 12px; }
.modal-content { border-radius: 16px; border: 1px solid var(--line); }
#diagnosticCentersModal .modal-dialog { max-width: 560px; }
#diagnosticCentersModal .modal-content {
  border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
#diagnosticCentersModal .modal-header {
  border-bottom: 1px solid var(--line); padding: 20px 24px 16px;
}
#diagnosticCentersModal .modal-title { font-size: 20px; font-weight: 700; color: var(--ink); }
#diagnosticCentersModal .modal-body { padding: 8px 24px 20px; }
#diagnosticCentersModal .modal-footer {
  border-top: 1px solid var(--line); padding: 16px 24px; gap: 10px;
}
#diagnosticCentersModal .form-label { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
#diagnosticCentersModal .form-control {
  border-radius: 10px; padding: 12px 14px; border: 1.5px solid var(--line); font-size: 14.5px;
}
#diagnosticCentersModal .form-control:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(51, 88, 224, 0.12);
}
.service-chip {
  display: inline-flex; align-items: center;
  background: var(--blue-light); color: var(--blue-dark);
  font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 12px;
}
#centersList { max-height: 320px; overflow-y: auto; }

/* ---------- Coverage map (homepage) ---------- */
.coverage-map-section {
  padding-top: clamp(56px, 6vw, 72px);
  padding-bottom: clamp(64px, 7vw, 80px);
}
.coverage-map-section .section-head {
  max-width: 680px;
  margin-bottom: clamp(28px, 3.5vw, 36px);
}
.coverage-map-shell {
  border-radius: 28px;
  border: 1px solid rgba(51, 88, 224, 0.1);
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 157, 139, 0.04), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(51, 88, 224, 0.05), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 250, 252, 0.5) 100%);
  padding: clamp(14px, 2vw, 18px);
  box-shadow: 0 24px 56px rgba(51, 88, 224, 0.06);
}
.coverage-map-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr) minmax(260px, 300px);
  gap: clamp(14px, 1.8vw, 18px);
  align-items: stretch;
}

/* Scroll-in reveal */
.coverage-map-section .section-head,
.coverage-map-section .coverage-panel,
.coverage-map-section .coverage-map-frame {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.coverage-map-section.is-visible .section-head {
  opacity: 1;
  transform: none;
  transition-delay: 0.04s;
}
.coverage-map-section.is-visible .coverage-panel-india {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}
.coverage-map-section.is-visible .coverage-map-frame {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}
.coverage-map-section.is-visible .coverage-panel-global {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}
@media (prefers-reduced-motion: reduce) {
  .coverage-map-section .section-head,
  .coverage-map-section .coverage-panel,
  .coverage-map-section .coverage-map-frame {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .coverage-map-loader {
    animation: none;
  }
  .coverage-map-frame #map,
  .coverage-map-frame.is-ready #map,
  .coverage-map-hint,
  .coverage-map-frame.is-ready .coverage-map-hint {
    opacity: 1;
    transition: none;
  }
}

.coverage-panel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 480px;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.coverage-map-section.is-visible .coverage-panel:hover {
  transform: translateY(-2px);
}
.coverage-panel-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(20px, 2.5vw, 26px);
  gap: 18px;
}

/* India panel — teal accent (matches hero / brand) */
.coverage-panel-india {
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 157, 139, 0.1), transparent 46%),
    radial-gradient(circle at 100% 100%, rgba(51, 88, 224, 0.06), transparent 42%),
    linear-gradient(180deg, #fff 0%, var(--teal-light) 100%);
  border: 1px solid rgba(15, 157, 139, 0.16);
  box-shadow: 0 16px 40px rgba(15, 157, 139, 0.08);
}
.coverage-panel-india::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #4ed2a1, var(--blue));
  z-index: 2;
}
.coverage-panel-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 157, 139, 0.14) 0%, transparent 72%);
  top: -50px;
  right: -55px;
  pointer-events: none;
}
.coverage-panel-india .coverage-panel-badge {
  color: var(--teal);
}
.coverage-panel-india .coverage-panel-badge .dot {
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 157, 139, 0.16);
}
.coverage-panel-india .coverage-panel-hero-lbl {
  color: var(--gray);
}
.coverage-panel-india .coverage-panel-list li {
  background: #fff;
  border-color: rgba(15, 157, 139, 0.14);
  box-shadow: var(--shadow);
}
.coverage-panel-india .coverage-panel-list strong {
  color: var(--ink);
}
.coverage-panel-india .coverage-panel-list span {
  color: var(--gray);
}

/* Global panel — blue accent (matches hero / stat UI) */
.coverage-panel-global {
  background:
    radial-gradient(circle at 100% 0%, rgba(51, 88, 224, 0.11), transparent 44%),
    radial-gradient(circle at 0% 100%, rgba(15, 157, 139, 0.07), transparent 40%),
    linear-gradient(180deg, #fff 0%, var(--blue-light) 100%);
  border: 1px solid rgba(51, 88, 224, 0.14);
  box-shadow: 0 16px 40px rgba(51, 88, 224, 0.07);
}
.coverage-panel-global::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #4d7ef5, var(--teal));
  z-index: 2;
}
.coverage-panel-global .coverage-panel-hero-lbl {
  color: var(--gray);
}
.coverage-panel-global .coverage-region-board {
  background: #fff;
  border-color: rgba(51, 88, 224, 0.12);
  box-shadow: var(--shadow);
}
.coverage-panel-global .coverage-region-list li {
  background: var(--blue-light);
  border-color: rgba(51, 88, 224, 0.1);
}
.coverage-panel-global .coverage-panel-partner-bar {
  background: #fff;
  border-color: rgba(51, 88, 224, 0.14);
  box-shadow: var(--shadow);
}

.coverage-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.coverage-panel-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.coverage-panel-badge.global svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue);
}

.coverage-panel-hero-stat .num {
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.coverage-panel-hero-lbl {
  margin: 8px 0 0;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}

.coverage-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coverage-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.coverage-panel-india .coverage-panel-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 157, 139, 0.22);
}
.coverage-panel-list strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 2px;
}
.coverage-panel-list span {
  display: block;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--gray);
}
.coverage-panel-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.coverage-panel-list-icon svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 1.8; }
.coverage-panel-list-icon.teal { background: linear-gradient(145deg, #4ed2a1, var(--teal)); }
.coverage-panel-list-icon.blue { background: linear-gradient(145deg, #4d7ef5, var(--blue)); }
.coverage-panel-list-icon.green { background: linear-gradient(145deg, #3ecf8e, #0a8f6a); }

.coverage-region-board {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(51, 88, 224, 0.1);
  border-radius: 16px;
  padding: 14px 14px 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.coverage-region-board-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-soft);
  margin-bottom: 10px;
}
.coverage-region-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
}
.coverage-region-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 7px 8px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    border-color 0.25s ease;
}
.coverage-panel-global .coverage-region-list li:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(51, 88, 224, 0.18);
}
.coverage-region-code {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 22px;
  padding: 0 6px;
  border-radius: 6px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.coverage-region-code.more {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
}

.coverage-panel-partner-bar {
  padding: 14px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(51, 88, 224, 0.06) 0%, rgba(15, 157, 139, 0.05) 100%);
  border: 1px solid rgba(51, 88, 224, 0.1);
}
.coverage-panel-partner-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.coverage-panel-partner-stat .num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1;
}
.coverage-panel-partner-stat > span:last-child {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.coverage-panel-partner-bar p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--gray);
}

.coverage-panel-btn {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}
.coverage-panel-india .coverage-panel-btn {
  margin-top: auto;
}
.coverage-map-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(51, 88, 224, 0.12);
  box-shadow: 0 18px 42px rgba(51, 88, 224, 0.1);
  background: linear-gradient(145deg, #eef2fe 0%, #e6f7f4 100%);
  min-height: 480px;
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.coverage-map-section.is-visible .coverage-map-frame:hover {
  box-shadow: 0 22px 48px rgba(51, 88, 224, 0.14);
}
.coverage-map-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    110deg,
    rgba(238, 242, 254, 0.9) 28%,
    rgba(255, 255, 255, 0.95) 42%,
    rgba(238, 242, 254, 0.9) 56%
  );
  background-size: 220% 100%;
  animation: coverage-map-shimmer 1.6s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.coverage-map-frame.is-ready .coverage-map-loader {
  opacity: 0;
  visibility: hidden;
}
@keyframes coverage-map-shimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}
.coverage-map-frame #map {
  height: 100%;
  min-height: 480px;
  width: 100%;
  border-radius: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.65s ease;
}
.coverage-map-frame.is-ready #map {
  opacity: 1;
}
.coverage-map-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(51, 88, 224, 0.1);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(51, 88, 224, 0.08);
  opacity: 0;
  transition: opacity 0.5s ease 0.35s;
}
.coverage-map-frame.is-ready .coverage-map-hint {
  opacity: 1;
}
.coverage-map-frame .leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 4px 14px rgba(51, 88, 224, 0.12) !important;
  border-radius: 12px !important;
  overflow: hidden;
}
.coverage-map-frame .leaflet-control-zoom a {
  border-color: rgba(51, 88, 224, 0.08) !important;
  color: var(--ink) !important;
  transition: background 0.2s ease, color 0.2s ease;
}
.coverage-map-frame .leaflet-control-zoom a:hover {
  background: var(--blue-light) !important;
  color: var(--blue) !important;
}
.coverage-map-frame .leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.coverage-map-frame .leaflet-marker-icon {
  transition: transform 0.2s ease;
}

#map { height: 420px; width: 100%; border-radius: 0; }
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 99;
  width: 44px; height: 44px; border-radius: 50% !important;
  display: none; align-items: center; justify-content: center;
}
.star-rating .fas.fa-star { -webkit-text-stroke: 2px var(--blue); color: transparent; }
.star-rating .fas.fa-star.text-warning,
.star-rating .fas.fa-star:hover { color: var(--blue) !important; }

.legal-block { margin-bottom: 36px; }
.legal-block h2 { font-size: 20px; font-weight: 700; margin: 0 0 12px; color: var(--ink); }
.legal-block p, .legal-block li { color: var(--gray); font-size: 14.5px; line-height: 1.7; }

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #dc3545;
}
.invalid-feedback { display: block; color: #dc3545; font-size: 12px; margin-top: 4px; }
.page-hero .wrap { grid-template-columns: 1fr; }

#spinner { z-index: 2000; }

@media (max-width: 1200px) {
  nav.main {
    position: fixed; top: 52px; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch; padding: 12px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08); display: none; z-index: 1040;
  }
  nav.main.open { display: flex; }
  nav.main a.navlink,
  nav.main button.navlink {
    font-size: 16px;
    padding: 10px 12px;
    text-align: left;
    width: 100%;
  }
  .nav-drop > .navlink { width: 100%; justify-content: space-between; }
  .nav-drop .nav-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 10px;
    min-width: 0;
    background: transparent;
  }
  .nav-menu::before { display: none; }
  .nav-menu a { margin: 0; }
  .nav-menu a:first-of-type,
  .nav-menu a:last-of-type { margin: 0; }
  .nav-drop.open .nav-menu,
  .nav-drop:hover .nav-menu { display: block; }
  .nav-login-mobile,
  .nav-find-mobile { display: block; text-align: left; width: 100%; }
  .menu-toggle { display: block; }
  .nav-right .nav-login,
  .nav-right .nav-find { display: none; }
}

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; }
  .hero-ecosystem { border-radius: 22px; }
  .eco-node-card { font-size: 11.5px; padding: 9px 11px; }
  .eco-node-card .ic { width: 30px; height: 30px; }
  .eco-core { width: 148px; }
  .eco-core-card img { height: 40px; }
  .hero h1 { font-size: 32px; }
  .benefits, .contact-grid, .media-split, .app-download-card, .journey-grid { grid-template-columns: 1fr; }
  .store-badges { justify-content: flex-start; }
  .service-dept-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .why-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-card-grid.four-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-card:nth-child(n) { grid-column: auto; }
  .strip-scroll { grid-template-columns: repeat(2, 1fr); }
  .stat-band-grid, .audience-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-map-layout {
    grid-template-columns: 1fr;
  }
  .coverage-panel { min-height: 0; }
  .coverage-map-frame { min-height: 380px; order: -1; }
  .coverage-map-frame #map { min-height: 380px; }
  .testi-grid, .values-grid, .values-grid.cols-2, .values-grid.cols-4 { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: none;
  }
  .logo-grid, .logo-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  header.site .wrap { height: 52px; min-height: 52px; max-height: 52px; }
}

@media (max-width: 600px) {
  .service-dept-grid { grid-template-columns: 1fr; }
  .why-card-grid { grid-template-columns: 1fr; }
  .why-card-grid.four-up { grid-template-columns: 1fr; }
  .service-matrix, .strip-scroll, .form-row, .action-grid { grid-template-columns: 1fr; }
  .service-copy span { white-space: normal; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-social { width: 100%; }
  .cta-banner { padding: 30px; }
  .app-download-card { padding: 28px 22px; }
  .stat-band { padding: 28px; }
  .stat-band-grid { grid-template-columns: 1fr 1fr; }
  .coverage-map-frame { min-height: 320px; }
  .coverage-map-frame #map { min-height: 320px; }
  .coverage-map-hint { font-size: 10.5px; padding: 5px 10px; max-width: calc(100% - 24px); white-space: normal; text-align: center; }
  .form-card { padding: 20px; }
}

@media (max-width: 960px) {
  body { padding-bottom: 64px; }
  .quick-fab { display: none; }
  .quick-bar { display: grid; }
  .back-to-top { bottom: 78px; }
}

/* Header overrides — ensure compact bar + readable nav win over cache/old rules */
header.site .wrap {
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
}
header.site .brand img {
  height: 40px !important;
  max-height: 40px !important;
}
header.site nav.main a.navlink,
header.site nav.main button.navlink,
header.site .nav-login {
  font-size: 16px !important;
  color: var(--ink) !important;
}
