*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #160f0b;
  --bg-2: #1a120e;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.105);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --subtle: rgba(255, 255, 255, 0.44);
  --accent: #df643d;
  --accent-hover: #e8734e;
  --accent-soft: rgba(223, 100, 61, 0.13);
  --green: #4caf82;
  --blue: #4a90d9;
  --cream: #f7f6f3;
  --cream-2: #eeece8;
  --ink: #111113;
  --ink-muted: #5f6878;
  --line-light: rgba(0, 0, 0, 0.09);
  --max: 1160px;
  --radius: 8px;
  --radius-lg: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(22, 15, 11, 0.95);
  backdrop-filter: blur(24px);
}

.nav-inner {
  max-width: min(1320px, calc(100vw - 48px));
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ─── LOGO (matches US site) ─── */
.nav-logo-svg { height: 40px; width: auto; display: block; }
.footer-logo-svg { height: 44px; width: auto; display: block; }

/* Legacy brand-mark kept for inner pages */
.brand-mark {
  width: 31px; height: 31px;
  display: grid; place-items: center;
  border-radius: 8px; background: var(--accent);
  box-shadow: 0 10px 24px rgba(223,100,61,0.18);
}
.brand-mark svg { width: 19px; height: 19px; }
.brand-text { color: var(--text); font-size: 14px; font-weight: 800; letter-spacing: -0.02em; }
.brand-text span { color: var(--accent); }

/* ─── HERO CAROUSEL ─── */
.hero-carousel { position: relative; overflow: hidden; }
.hero-track {
  display: flex;
  transition: transform 0.72s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
  width: 100%;
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}
.hero-dots { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 36px; }
.hero-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.18);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active { background: var(--accent); width: 44px; }
.hero-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--accent);
  width: 0%; opacity: 0.5;
  transition: width linear;
}

/* ─── FOOTER (dark, matches US site) ─── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
  color: var(--text);
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-top: 16px; max-width: 240px;
}
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 12px; }
.footer-contact a { color: var(--accent); }
.footer-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px; font-size: 12px; color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-disclaimer {
  margin-top: 16px; font-size: 11.5px;
  color: rgba(255,255,255,0.22); line-height: 1.65;
  max-width: var(--max);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item { position: static; }
.nav-item > a,
.nav-item > button {
  appearance: none;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.66);
  font: 500 14px/1 Inter, sans-serif;
  padding: 9px 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.nav-item > a:hover,
.nav-item > button:hover,
.nav-item.mega-open > button,
.nav-item > a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.chev {
  font-size: 9px;
  opacity: 0.55;
  transition: transform 0.2s;
}
.mega-open .chev {
  transform: rotate(180deg);
  opacity: 1;
}
.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.region-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 999px;
}
.region-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.region-switch a.active {
  background: var(--accent);
  color: #fff;
}

.mega-menu {
  position: fixed;
  top: 72px;
  left: 50%;
  width: min(1160px, calc(100vw - 48px));
  background: rgba(10, 10, 11, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transform: translate(-50%, -10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  overflow: hidden;
}
.mega-open .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 0);
}
.mega-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 0 24px;
}
.mega-side {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 18px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mega-tab {
  border: 0;
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.44);
  font: 600 13.5px/1.2 Inter, sans-serif;
  text-align: left;
  cursor: pointer;
}
.mega-tab:hover,
.mega-tab.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.mega-tab::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.mega-tab.active::before { background: var(--accent); }
.mega-right { padding: 17px 0 0 26px; }
.mega-panel {
  display: none;
  flex-direction: column;
  min-height: 220px;
}
.mega-panel.active { display: flex; }
.mega-panel-header {
  font: 800 9.5px/1 "Space Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.24);
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 7px;
}
.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 8px;
}
.mega-link {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mega-link:hover { background: rgba(255, 255, 255, 0.045); }
.mega-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
}
.mega-name {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}
.mega-desc {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  line-height: 1.4;
}
.mega-built {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 26px;
  background: var(--accent);
}
.mega-built-line {
  font-family: "DM Serif Display", serif;
  font-size: 15px;
  font-style: italic;
  color: #fff;
}
.mega-built-cta {
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.hamb {
  display: none;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamb span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 3px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}
.mobile-regions {
  display: flex;
  gap: 8px;
  padding-top: 10px;
}
.mobile-regions a {
  flex: 1;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px;
}
.mobile-regions a.active {
  background: var(--accent);
  color: #fff;
}

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 112px 24px 48px;
  background: #160f0b;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 40% 40% at 0 0, rgba(201, 106, 90, 0.22), transparent 70%),
    radial-gradient(ellipse 40% 40% at 100% 0, rgba(201, 106, 90, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 40% at 0 100%, rgba(201, 106, 90, 0.2), transparent 70%),
    radial-gradient(ellipse 40% 40% at 100% 100%, rgba(201, 106, 90, 0.16), transparent 70%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 30% 38% at 76% 54%, rgba(247, 177, 63, 0.2), transparent 68%),
    linear-gradient(90deg, rgba(22, 15, 11, 0.02) 0%, rgba(22, 15, 11, 0.14) 36%, rgba(22, 15, 11, 0.32) 73%, rgba(22, 15, 11, 0.72) 100%),
    linear-gradient(180deg, rgba(22, 15, 11, 0.02) 0%, rgba(22, 15, 11, 0.05) 44%, rgba(22, 15, 11, 0.36) 100%),
    linear-gradient(180deg, rgba(22, 15, 11, 0.08), rgba(22, 15, 11, 0.22));
}
.hero-bg-track {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.72s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
  pointer-events: none;
}
.hero-bg-slide {
  position: relative;
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.hero-bg-slide img {
  position: absolute;
  right: -2vw;
  top: 50%;
  width: min(76vw, 1220px);
  height: min(92vh, 920px);
  transform: translateY(-48%);
  object-fit: cover;
  object-position: 62% 50%;
  opacity: 0.94;
  filter:
    saturate(1.22)
    contrast(1.12)
    brightness(0.98)
    sepia(0.1)
    drop-shadow(0 0 30px rgba(247, 177, 63, 0.28))
    drop-shadow(0 0 86px rgba(247, 177, 63, 0.22));
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 10%, #000 27%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 10%, #000 27%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}
.hero-route-layer {
  position: absolute;
  right: -2vw;
  top: 50%;
  z-index: 1;
  width: min(76vw, 1220px);
  height: min(92vh, 920px);
  transform: translateY(-48%);
  pointer-events: none;
  opacity: 0.92;
  mix-blend-mode: screen;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 10%, #000 27%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 10%, #000 27%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}
.hero-route-layer .route-lines path {
  fill: none;
  stroke: rgba(247, 177, 63, 0.72);
  stroke-width: 0.11;
  stroke-linecap: round;
  stroke-dasharray: 2.4 4.8;
  animation: inboundFlow 2.8s linear infinite;
}
.hero-route-layer .route-lines path:nth-child(2) { animation-duration: 3.2s; }
.hero-route-layer .route-lines path:nth-child(3) { animation-duration: 3.6s; }
.hero-route-layer .route-lines path:nth-child(4) { animation-duration: 2.9s; }
.hero-route-layer .route-lines path:nth-child(5) { animation-duration: 3.4s; }
.outbound-routes .route-lines path {
  stroke: rgba(238, 128, 78, 0.74);
  animation-name: outboundFlow;
}
.hero-route-layer .route-pulses circle,
.hero-route-layer .route-hub {
  fill: #f7b13f;
  filter: drop-shadow(0 0 7px rgba(247, 177, 63, 0.9));
}
.outbound-routes .route-pulses circle,
.outbound-routes .route-hub {
  fill: #ee804e;
  filter: drop-shadow(0 0 7px rgba(238, 128, 78, 0.9));
}
.hero-route-layer .route-hub {
  opacity: 0.95;
  animation: hubPulse 1.8s ease-in-out infinite;
}
@keyframes inboundFlow {
  to { stroke-dashoffset: -18; }
}
@keyframes outboundFlow {
  to { stroke-dashoffset: -18; }
}
@keyframes hubPulse {
  0%, 100% { opacity: 0.65; transform: scale(0.85); transform-origin: center; }
  50% { opacity: 1; transform: scale(1.35); transform-origin: center; }
}
.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-stage {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.hero-copy {
  min-width: 0;
  width: 100%;
  max-width: 760px;
  overflow: hidden;
}
.hero-copy .hero-stats,
.hero-copy .hero-dots {
  position: relative;
  z-index: 1;
}
.hero-mode {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}
.hero-mode button {
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  background: transparent;
  color: var(--muted);
  font: 800 12px/1 Inter, sans-serif;
  cursor: pointer;
}
.hero-mode button.active {
  background: var(--accent);
  color: #fff;
}
.hero-panel { display: none; }
.hero-panel.active { display: block; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.58; transform: scale(0.86); }
}
.hero-badge strong { color: #fff; }
.hero h1,
.page-hero h1 {
  max-width: 860px;
  margin-bottom: 17px;
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
}
.hero h1 em,
.page-hero h1 em,
h2 em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hl-dim { opacity: 0.32; }
.hero-sub,
.page-sub {
  max-width: 560px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-primary,
.btn-ghost,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 10px;
  padding: 14px 27px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s, color 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--muted);
}
.btn-ghost:hover {
  border-color: var(--border-strong);
  color: #fff;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 780px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--border);
}
.hero-stat {
  background: var(--panel);
  padding: 16px 18px;
}
.hero-stat-value {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-label {
  color: var(--subtle);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}
.hero-right { padding-top: 54px; }
.route-dashboard {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.route-dashboard.active { display: grid; }
.dash-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  color: #0a0a0b;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.42);
}
.dash-card.dark {
  grid-column: 1 / -1;
  min-height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #161618;
  color: #fff;
}
.dash-label {
  margin-bottom: 8px;
  color: #8d8a84;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dash-card.dark .dash-label { color: rgba(255, 255, 255, 0.34); }
.dash-value {
  margin-bottom: 6px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.dash-delta {
  color: #12833d;
  font-size: 11px;
  font-weight: 800;
}
.dash-note {
  margin-top: 8px;
  color: #7b7770;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
  margin-top: 13px;
}
.dash-bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--accent);
  opacity: 0.82;
}
.live-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
}
.live-row:hover { background: rgba(255, 255, 255, 0.045); }
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.live-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}
.live-text strong { color: #fff; }
.live-tag {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}
.tag-green { color: #22c55e; background: rgba(34, 197, 94, 0.15); }
.tag-orange { color: var(--accent); background: rgba(223, 100, 61, 0.15); }
.tag-blue { color: #60a5fa; background: rgba(96, 165, 250, 0.14); }

.trust-bar {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.trust-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust-item {
  padding: 20px 38px;
  border-right: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.trust-item span {
  margin-right: 9px;
  color: var(--accent);
}

section { padding: 100px 24px; }
.section-label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 12px;
  border: 1px solid rgba(223, 100, 61, 0.3);
  border-radius: 999px;
  color: var(--accent);
  font: 800 10px/1 "Space Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
h2 {
  max-width: 780px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.section-sub {
  max-width: 660px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.light {
  --text: #111113;
  --muted: #5f6878;
  --subtle: #9ca3af;
  --panel: #ffffff;
  --panel-strong: #f4f2ee;
  --border: rgba(0, 0, 0, 0.09);
  --border-strong: rgba(0, 0, 0, 0.18);
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.light.alt { background: var(--cream-2); }
.dark-band {
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(223, 100, 61, 0.07), transparent 100%),
    linear-gradient(160deg, #1a120e 0%, #160f0b 70%);
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 60px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: 26px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--border-strong);
  background: var(--panel-strong);
}
.card-kicker {
  margin-bottom: 13px;
  color: var(--accent);
  font: 800 10px/1 "Space Mono", monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.card-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.card-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.text-flow p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.text-flow p + p { margin-top: 18px; }
.callout {
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(223, 100, 61, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(223, 100, 61, 0.09);
  color: var(--text);
  font-weight: 700;
  line-height: 1.55;
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 30px;
}
.service-number {
  margin-bottom: 20px;
  color: var(--accent);
  font: 800 11px/1 "Space Mono", monospace;
  letter-spacing: 0.12em;
}
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.check-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--border);
}
.route-card {
  padding: 42px 38px;
  background: var(--panel);
}
.route-tag,
.step-chip {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font: 800 10px/1 "Space Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.route-title {
  margin-bottom: 13px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.route-title em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.route-text {
  margin-bottom: 25px;
  color: var(--muted);
  line-height: 1.7;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.industry-tags span {
  padding: 8px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.light .industry-tags span { background: #fff; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 24px 86px;
  background: #160f0b;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 48% 60% at 100% 0, rgba(223, 100, 61, 0.17), transparent 70%),
    radial-gradient(ellipse 40% 40% at 0 100%, rgba(223, 100, 61, 0.14), transparent 70%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.mini-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  padding: 28px;
}
.mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.mini-row:last-child { border-bottom: 0; }
.mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.mini-row strong {
  display: block;
  font-size: 14px;
}
.mini-row span {
  color: var(--muted);
  font-size: 12px;
}

.faq-grid {
  max-width: 900px;
  margin: 48px auto 0;
  display: grid;
  gap: 14px;
}
.faq-question {
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.faq-answer {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.final-cta {
  background:
    radial-gradient(ellipse 58% 52% at 0 100%, rgba(223, 100, 61, 0.1), transparent 65%),
    radial-gradient(ellipse 58% 52% at 100% 100%, rgba(223, 100, 61, 0.08), transparent 65%),
    #e3dfd8;
  color: var(--ink);
  text-align: center;
}
.final-cta h2 { margin: 0 auto 16px; }
.final-cta p {
  max-width: 580px;
  margin: 0 auto 34px;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* footer styles now defined above (dark theme) */

@media (max-width: 980px) {
  .nav-links,
  .nav-inner > .region-switch,
  .btn-nav { display: none; }
  .hamb { display: flex; }
  .hero-split,
  .grid-2,
  .route-grid,
  .page-hero-grid { grid-template-columns: 1fr; }
  .hero-right { padding-top: 10px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .nav-inner {
    max-width: 100%;
    padding: 0 18px;
  }
  .brand-text { font-size: 13px; }
  .hero { padding: 104px 20px 40px; }
  .hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 12vw, 56px);
    letter-spacing: -0.035em;
  }
  section { padding: 76px 20px; }
  .page-hero { padding: 125px 20px 70px; }
  .hero-stats,
  .route-dashboard,
  .grid-3,
  .grid-4,
  .footer-top { grid-template-columns: 1fr; }
  .trust-item { padding: 18px 26px; }
  .hero-mode {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .hero-mode button { padding: 11px 8px; }
}

/* ─── US SITE ALIGNMENT PASS ─────────────────────────
   Keeps the India content multi-page, but matches the current US site's
   tighter navigation, white mega menu, section rhythm, button geometry,
   dashboard density, and dark footer treatment. */
.site-nav {
  background: rgba(22, 15, 11, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
  max-width: calc(var(--max) + 48px);
  height: 68px;
  position: relative;
  padding: 0 24px;
}
.nav-logo,
.brand {
  position: relative;
  z-index: 2;
}
.nav-logo-svg { height: 34px; }
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
}
.nav-item > a,
.nav-item > button {
  border-radius: 0;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.76);
  padding: 8px 10px;
}
.nav-item > a:hover,
.nav-item > button:hover,
.nav-item.mega-open > button,
.nav-item > a.active {
  background: transparent;
  color: #fff;
}
.region-switch {
  position: relative;
  z-index: 2;
  margin-left: auto;
}
.btn-nav {
  position: relative;
  z-index: 2;
  margin-left: 8px;
  background: var(--accent);
  border-radius: 999px;
  padding: 9px 21px;
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(223, 100, 61, 0.2);
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
}
.btn-nav:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 14px 30px rgba(223, 100, 61, 0.28);
}
.btn-primary {
  border-radius: 999px;
  box-shadow: none;
}
.btn-ghost,
.btn-dark {
  border-radius: 3px;
}
.mega-menu {
  top: 68px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  color: #1a1a1a;
}
.mega-inner {
  grid-template-columns: 200px minmax(0, 1fr);
  padding: 0;
}
.mega-side {
  background: #faf8f6;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  padding: 20px 12px;
  gap: 4px;
}
.mega-tab {
  justify-content: space-between;
  color: rgba(26, 26, 26, 0.6);
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 10px;
}
.mega-tab::before { display: none; }
.mega-tab::after {
  content: "↗";
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.15s;
  color: var(--accent);
  flex-shrink: 0;
}
.mega-tab:hover::after,
.mega-tab.active::after { opacity: 1; }
.mega-tab:hover,
.mega-tab.active {
  background: rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
}
.mega-right { padding: 0; }
.mega-panel {
  padding: 24px 28px;
  min-height: 216px;
}
.mega-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c96a5a;
  border: 0;
  margin-bottom: 18px;
  padding: 0;
}
.mega-panel-header::before {
  content: "";
  display: block;
  width: 22px;
  height: 1.5px;
  background: #c96a5a;
  flex-shrink: 0;
}
.mega-links {
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
}
.mega-link {
  gap: 0;
  padding: 8px 10px;
}
.mega-link:hover { background: rgba(0, 0, 0, 0.04); }
.mega-icon,
.mega-desc { display: none; }
.mega-name {
  color: rgba(26, 26, 26, 0.78);
  font-size: 13.5px;
  font-weight: 450;
}
.mega-link:hover .mega-name { color: #1a1a1a; }
.mega-built { display: none; }
section { padding: 124px 24px; }
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  margin-bottom: 26px;
  color: #c96a5a;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.section-label::after {
  content: "";
  width: 54px;
  height: 1px;
  background: #c96a5a;
  opacity: 0.55;
}
h2,
.final-cta h2 {
  font-weight: 650;
  letter-spacing: -0.045em;
}
.hero {
  padding: 92px 24px 12px;
  align-items: center;
}
.hero .container { max-width: var(--max); }
.hero-stage {
  width: min(100%, 1120px);
  margin: 0 auto;
  min-height: calc(100dvh - 104px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
.hero-copy {
  margin: 0;
  text-align: left;
}
.hero-badge,
.hero-actions,
.hero-dots {
  justify-content: flex-start;
}
.hero h1,
.hero-sub {
  margin-left: 0;
  margin-right: 0;
}
.hero-split {
  grid-template-columns: 0.94fr 1.06fr;
  gap: 34px;
  align-items: center;
}
.hero-badge {
  background: transparent;
  border: 0;
  border-left: 2px solid var(--accent);
  border-radius: 0;
  padding: 0 0 0 12px;
  color: rgba(255, 255, 255, 0.56);
}
.hero-badge::before { display: none; }
.hero h1,
.page-hero h1 {
  font-size: clamp(34px, 4.7vw, 56px);
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.hero-sub,
.page-sub {
  max-width: 520px;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  margin-bottom: 20px;
}
.hero-actions { margin-bottom: 24px; }
.hero-stats,
.dash-card,
.dash-card.dark,
.card,
.route-grid,
.mini-panel {
  border-radius: var(--radius);
  box-shadow: none;
}
.hero-stats {
  background: transparent;
  border: 0;
  gap: 0;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 18px;
}
.hero-stat + .hero-stat { border-left: 1px solid rgba(255, 255, 255, 0.08); }
.hero-stat-value { font-size: 22px; }
.hero-stat-label { font-size: 10.5px; }
.route-dashboard {
  gap: 8px;
}
.dash-card {
  min-height: 150px;
  background: #f8f5ee;
  border: 0;
  padding: 12px 14px;
}
.dash-bars { height: 38px; }
.dash-card.dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    #111113;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.live-row {
  background: rgba(255, 255, 255, 0.025);
  padding: 10px 12px;
}
.live-row + .live-row { margin-top: 6px; }
.live-tag {
  border-radius: 6px;
  padding: 5px 9px;
}
.light {
  --panel: rgba(255, 255, 255, 0.68);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(17, 16, 15, 0.12);
  --border-strong: rgba(17, 16, 15, 0.24);
  --muted: #5a5f69;
  --subtle: #8b8378;
  background: #f5f3ec;
}
.light.alt { background: #ebe7dd; }
.card:hover,
.service-card:hover {
  transform: none;
  box-shadow: none;
}
.service-icon {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
.service-card { padding: 34px; }
.trust-item {
  padding: 22px 48px;
  letter-spacing: 0.02em;
}
.page-hero {
  padding-top: 142px;
  background: #160f0b;
}
.mini-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    #111113;
  border-color: rgba(255, 255, 255, 0.11);
}
.final-cta {
  background:
    radial-gradient(ellipse 58% 52% at 0 100%, rgba(223, 100, 61, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 58% 52% at 100% 100%, rgba(223, 100, 61, 0.08) 0%, transparent 65%),
    #e7e2d8;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 980px) {
  .nav-links,
  .nav-inner > .region-switch,
  .btn-nav { display: none; }
  .nav-inner { height: 68px; }
  .hero-right { display: none; }
  .hero-stage { min-height: auto; }
  .hero-copy { max-width: 720px; }
  .hero-bg-slide img {
    right: -30vw;
    width: 118vw;
    height: 82vh;
    opacity: 0.68;
    object-position: 64% 50%;
  }
  .hero-route-layer { opacity: 0.54; }
  .hero-route-layer {
    right: -30vw;
    width: 118vw;
    height: 82vh;
  }
}
@media (max-width: 620px) {
  section { padding: 72px 20px; }
  .hero { padding: 88px 20px 28px; }
  .page-hero { padding: 112px 20px 64px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .nav-logo-svg { height: 31px; }
  .hero-bg-slide img {
    right: -86vw;
    width: 166vw;
    height: 72vh;
    top: 52%;
    opacity: 0.42;
    object-position: 64% 50%;
  }
  .hero-route-layer {
    right: -86vw;
    width: 166vw;
    height: 72vh;
    top: 52%;
    opacity: 0.38;
  }
  .hero-route-layer .route-lines path { stroke-width: 0.22; }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE BLOCKS (homepage pattern — usable on service pages)
   ═══════════════════════════════════════════════════════════════ */
.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 72px;
}
.feat:first-of-type { margin-top: 52px; }
.feat.rev .feat-text { order: 2; }
.feat-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 800 11px/1 "Space Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.feat-text h3 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.feat-text p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  color: var(--accent);
}
.feat-visual {
  border-radius: 16px;
  padding: 28px 28px 0;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}
/* Pastel backgrounds for feat-visual panels */
.fv1 { background: #f7edd4; }
.fv2 { background: #e7eef9; }
.fv3 { background: #e7f2e9; }
.fv4 { background: #fbe8e1; }
.fv5 { background: #efeaf7; }
.fv6 { background: #e8f0ee; }
/* White preview card inside feat-visual */
.svc-prev {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 12px 12px 0 0;
  padding: 4px 16px;
  box-shadow: 0 -8px 28px rgba(0,0,0,.06);
}
.svc-prev .r {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 13px;
}
.svc-prev .r:last-child { border-bottom: 0; }
.svc-prev .k {
  color: #5f6878;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-prev .v { font-weight: 700; color: #17110d; }
.svc-prev .dot {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 10px;
  flex-shrink: 0;
  background: #eef0f3;
  color: #5f6878;
}
.pill {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.pill.ok { background: #e4f3e9; color: #1c7a43; }
.pill.go { background: #fdecc8; color: #8a5e00; }
.pill.pend { background: #f0f0f3; color: #666; }

/* "Built for you if" checklist */
.forlist {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}
.foritem {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: 20px 24px;
  transition: border-color .2s;
}
.foritem:hover { border-color: var(--border-strong); }
.foritem .ck {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  margin-top: 1px;
}
.foritem p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 860px) {
  .feat { grid-template-columns: 1fr; gap: 28px; }
  .feat.rev .feat-text { order: 0; }
  .feat-visual { order: -1; min-height: 180px; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGE COMPONENTS
   two-col-prose · step-list · faq · dark-card · alt-bg · cta-band
   ═══════════════════════════════════════════════════════════════ */
/* ── Alternate light section background ── */
.light.alt-bg { background: #ebe7dd; }

/* ── Flat mega menu (all services visible, no tab switching) ── */
.mega-inner.flat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}
.mega-col {
  padding: 20px 24px 20px;
}
.mega-col + .mega-col {
  border-left: 1px solid rgba(0,0,0,0.07);
}
.mega-col-header {
  font: 800 10px/1 "Space Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c96a5a;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mega-col-header::before {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: #c96a5a;
  flex-shrink: 0;
}
.mega-col .mega-links {
  grid-template-columns: 1fr;
  gap: 0;
}
.mega-entry-strip {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 10px 24px;
  background: rgba(0,0,0,0.015);
}
.mega-entry-strip .mega-links {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.mega-entry-strip .mega-name {
  font-size: 12.5px;
  font-weight: 500;
}
.mega-entry-strip .mega-link {
  padding: 7px 10px;
}

/* ── Step card grid (dark-band, replaces tall step-list) ── */
.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
/* 5th card spans to centre itself in the last row */
.step-cards .step-card:nth-child(4),
.step-cards .step-card:nth-child(5) {
  grid-column: auto;
}
/* Force last two to be centred when 5 items in 3-col grid */
.step-cards::after {
  content: "";
  grid-column: span 1;
}
.step-card {
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-card .step-chip {
  /* reuse existing step-chip style from homepage */
  width: fit-content;
}
.step-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.step-card-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 860px) {
  .step-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .step-cards { grid-template-columns: 1fr; }
}

/* ── Two-column prose layout (overview sections) ── */
.two-col-prose {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.two-col-prose .section-label { margin-bottom: 18px; }
.two-col-prose h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  max-width: none;
  line-height: 1.15;
}
.prose-col p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.prose-col p + p { margin-top: 18px; }
@media (max-width: 860px) {
  .two-col-prose { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Numbered step list (used inside .dark-band) ── */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.step-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  font: 800 11px/1 "Space Mono", monospace;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 4px;
}
.step-body { flex: 1; min-width: 0; }
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 620px) {
  .step-item { gap: 20px; }
  .step-num { width: 36px; }
}

/* ── Dark-band cards (3-col advisory philosophy) ── */
.dark-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}
.dark-card-label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.dark-card-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
}

/* ── FAQ accordion (details/summary) ── */
.faq-container { max-width: 860px; }
.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
}
.faq-q::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 18px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s, background 0.2s;
  line-height: 1;
}
.faq-item[open] .faq-q::after {
  content: "−";
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-a {
  padding: 0 40px 24px 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

/* ── CTA band (warm cream, two-column) ── */
.cta-band {
  background:
    radial-gradient(ellipse 58% 52% at 0 100%, rgba(223, 100, 61, 0.1), transparent 65%),
    radial-gradient(ellipse 58% 52% at 100% 100%, rgba(223, 100, 61, 0.08), transparent 65%),
    #e7e2d8;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--ink);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-inner h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ink);
  max-width: 520px;
  margin-bottom: 12px;
}
.cta-inner p {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 500px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.cta-actions .btn-primary {
  white-space: nowrap;
  text-align: center;
}
.cta-actions .btn-dark {
  background: rgba(0, 0, 0, 0.12);
  color: var(--ink);
  white-space: nowrap;
  text-align: center;
  border-radius: 999px;
}
.cta-actions .btn-dark:hover {
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 860px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ── page-hero: left-align text on service pages ── */
.page-hero .page-sub,
.page-hero .hero-actions {
  margin-left: 0;
  justify-content: flex-start;
}

/* ── section padding for service pages ── */
.page-hero + .trust-bar + .light,
.page-hero + .light {
  border-top: none;
}

/* ── India ⇄ US hero transition: globe shrinks/grows, copy slides; nav untouched ── */
.hero-bg { will-change: transform, opacity; }
html.rs-exit  .hero-bg   { animation: heroGlobeOut .46s cubic-bezier(.6,.05,.3,1) forwards; }
html.rs-exit  .hero-copy { animation: heroCopyOut  .42s ease forwards; }
html.rs-enter .hero-bg   { animation: heroGlobeIn  .85s cubic-bezier(.18,.7,.2,1) both; }
html.rs-enter .hero-copy { animation: heroCopyIn   .70s cubic-bezier(.18,.7,.2,1) both .14s; }
@keyframes heroGlobeOut { to   { transform: scale(.45) translate(14%, -8%); opacity: 0; } }
@keyframes heroGlobeIn  { from { transform: scale(.6) translate(-10%, 6%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes heroCopyOut  { to   { transform: translateX(-34px); opacity: 0; } }
@keyframes heroCopyIn   { from { transform: translateX(-34px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  html.rs-exit .hero-bg, html.rs-exit .hero-copy,
  html.rs-enter .hero-bg, html.rs-enter .hero-copy { animation: none; }
}
