/* =========================================================
   ImpactPro — Modern Site (DESIGN-4 inspired, white surface)
   Brand: orange #F57C00, indigo #666699
   Geist type · glass cards · 4-6px radius · pill buttons
   ========================================================= */

:root {
  --orange: #F57C00;
  --orange-2: #E26F00;
  --teal: #1eb4b1;
  --teal-soft: #E7FAF9;
  --orange-soft: #FFF1E0;
  --orange-tint: #FFF8EE;
  --indigo: #666699;
  --indigo-2: #4F4F85;
  --indigo-soft: #EFEFF7;
  --indigo-tint: #F6F6FB;
  --ink: #0B0F19;
  --ink-2: #1F2937;
  --muted: #4B5563;
  --muted-2: #6B7280;
  --line: #E7E8EE;
  --line-2: #F1F2F6;
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #FAFAFC;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 6px 22px -8px rgba(15,23,42,.10), 0 2px 6px -2px rgba(15,23,42,.05);
  --shadow-lg: 0 24px 48px -16px rgba(15,23,42,.18), 0 6px 16px -6px rgba(15,23,42,.08);
  --r-xs: 4px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-pill: 9999px;
  --container: 1200px;
  --header-h: 72px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Geist", "JetBrains Mono", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: transparent;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--orange); }
button { font-family: inherit; cursor: pointer; }

/* Typography — Geist, light/airy */
h1, h2, h3, h4 {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 .55em;
}
h1 { font-size: clamp(36px, 5vw, 72px); font-weight: 300; letter-spacing: -0.05em; line-height: 1.05; }
h2 { font-size: clamp(30px, 3.6vw, 52px); font-weight: 400; letter-spacing: -0.04em; }
h3 { font-size: clamp(19px, 1.55vw, 22px); font-weight: 500; letter-spacing: -0.02em; }
h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
p  { margin: 0 0 1em; color: var(--muted); }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--muted); line-height: 1.6; max-width: 720px; }
.brand-orange { color: var(--orange); font-weight: 500; }
.brand-indigo { color: var(--indigo); font-weight: 500; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,124,0,.18);
}

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.pt-0 { padding-top: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.flex-end { display: flex; justify-content: flex-end; }
section { padding: clamp(72px, 9vw, 120px) 0; }
section.tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; max-width: 720px; }
.section-head.left .lead { margin-left: 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background:
    radial-gradient(130% 160% at 5% 0%, rgba(102,102,153,.25), transparent 48%),
    radial-gradient(120% 150% at 100% 100%, rgba(30,180,177,.15), transparent 42%),
    linear-gradient(145deg, #060913 0%, #0B1324 52%, #0D162A 100%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.site-header.scrolled { border-bottom-color: rgba(255,255,255,.10); }
.nav { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Geist", sans-serif; font-weight: 600; font-size: 17px; letter-spacing: -.02em;
  color: var(--ink);
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}
.brand:hover { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  padding: 9px 14px; border-radius: 0;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.65);
  transition: color .18s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover { color: #fff; background: none; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; background: none; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,.22); border-radius: var(--r-sm); padding: 8px; color: #fff; }

/* ── Mega Menu ────────────────────────────────────────────── */
.nav-item-mega { position: static; }
.mega-trigger {
  position: relative;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: 0;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.65);
  background: none; border: none; cursor: pointer; font-family: inherit;
  transition: color .18s;
  white-space: nowrap;
}
.mega-trigger::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s var(--ease);
  border-radius: 2px;
}
.mega-trigger svg { transition: transform .22s var(--ease); }
.mega-trigger:hover,
.nav-item-mega.open .mega-trigger { color: #fff; background: none; }
.mega-trigger:hover::after,
.nav-item-mega.open .mega-trigger::after { transform: scaleX(1); }
.nav-item-mega.open .mega-trigger svg { transform: rotate(180deg); }

.mega-panel {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 49;
  background: linear-gradient(160deg, #070C1A 0%, #0C1628 55%, #0B1A2B 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.55);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.nav-item-mega.open .mega-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 280px;
  gap: 0;
}
.mega-col {
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(255,255,255,.07);
}
.mega-col:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.mega-col-label {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.mega-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
  margin-bottom: 4px;
}
.mega-item:hover { background: rgba(255,255,255,.07); }
.mega-item-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--teal);
  transition: background .15s, color .15s;
}
.mega-item:hover .mega-item-icon { background: rgba(30,180,177,.15); color: var(--teal); }
.mega-item-icon.orange { color: var(--orange); }
.mega-item:hover .mega-item-icon.orange { background: rgba(245,124,0,.15); }
.mega-item-icon.indigo { color: #9999CC; }
.mega-item:hover .mega-item-icon.indigo { background: rgba(102,102,153,.18); }
.mega-item-text strong {
  display: block; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.92); margin-bottom: 3px;
}
.mega-item-text span {
  display: block; font-size: 12.5px; color: rgba(255,255,255,.42); line-height: 1.5;
}

/* Mega — featured panel */
.mega-featured {
  background: linear-gradient(145deg, rgba(245,124,0,.12) 0%, rgba(30,180,177,.10) 100%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mega-featured-label {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.mega-featured h4 {
  font-size: 16px; font-weight: 600; color: #fff;
  margin: 0 0 8px; line-height: 1.3;
}
.mega-featured p {
  font-size: 13px; color: rgba(255,255,255,.50); line-height: 1.55; margin: 0 0 20px;
}
.mega-featured .btn {
  width: 100%; justify-content: center;
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(245,124,0,.5);
  font-size: 13px; padding: 11px 18px;
}
.mega-featured .btn:hover { background: var(--orange-2); }
.mega-featured-stat {
  display: flex; gap: 16px; margin-top: 20px;
}
.mega-featured-stat div {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}
.mega-featured-stat strong { display: block; font-size: 16px; color: #fff; font-weight: 700; }
.mega-featured-stat small { font-size: 11px; color: rgba(255,255,255,.4); }
/* ─────────────────────────────────────────────────────────── */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  font-family: "Geist", sans-serif; font-size: 14px; font-weight: 500;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: all .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px -8px rgba(245,124,0,.55); }
.btn-primary:hover { background: var(--orange-2); color: #fff; transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 8px 22px -8px rgba(245,124,0,.55); }
.btn-orange:hover { background: var(--orange-2); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: var(--surface); color: var(--indigo); border-color: #CFCFE9; }
.btn-secondary:hover { color: var(--indigo); border-color: var(--indigo); background: var(--indigo-tint); }
.btn-ghost { background: transparent; color: var(--ink); padding: 10px 16px; }
.btn-ghost:hover { color: var(--orange); }
.btn-arrow::after { content: "→"; transition: transform .2s var(--ease); }
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* HERO */
.hero {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(72px, 8vw, 112px);
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 18% 0%, rgba(245,124,0,.10), transparent 70%),
    radial-gradient(50% 60% at 88% 110%, rgba(102,102,153,.22), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.hero-grid.single { grid-template-columns: 1fr; text-align: center; }
.hero-grid.single .lead { margin-left: auto; margin-right: auto; }
.hero-grid.single .eyebrow { margin-left: auto; margin-right: auto; }
.hero h1 { font-size: clamp(30px, 3.8vw, 56px); }
.hero h1 .accent {
  background: linear-gradient(115deg, var(--orange) 0%, #FF9D3D 60%, var(--orange) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-trust { margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content:""; width: 16px; height: 16px; border-radius: 50%; background: var(--teal-soft); box-shadow: inset 0 0 0 4px var(--teal); }

/* Hero glass mock */
.hero-visual {
  position: relative; aspect-ratio: 1/1; max-height: 660px; width: 100%;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,241,224,.8) 0%, rgba(239,239,247,.85) 55%, rgba(220,228,255,.7) 100%);
  border: 1px solid rgba(255,255,255,.8);
  overflow: hidden;
  box-shadow: 0 32px 72px -16px rgba(15,23,42,.18), 0 0 0 1px rgba(255,255,255,.5) inset;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle at 20% 12%, rgba(245,124,0,.28), transparent 42%),
    radial-gradient(circle at 80% 88%, rgba(102,102,153,.40), transparent 46%),
    radial-gradient(circle at 60% 0%, rgba(30,180,177,.16), transparent 40%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  filter: drop-shadow(0 16px 22px rgba(15,23,42,.12));
}
.hero-photo-diagram {
  object-fit: contain;
  object-position: center;
  transform: none;
  padding: 20px;
  filter: drop-shadow(0 8px 24px rgba(15,23,42,.14));
}

/* Full-bleed background field */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background: linear-gradient(180deg, #FCFCFF 0%, #FAFBFF 60%, #F7F9FC 100%);
  overflow: hidden;
}

.bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .72;
}

.bg-poster {
  position: absolute;
  inset: 0;
  opacity: .42;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(102,102,153,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30,180,177,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 78%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
}

.orb-a { width: 520px; height: 520px; top: -110px; left: -120px; background: radial-gradient(circle, rgba(102,102,153,.22), transparent 70%); }
.orb-b { width: 460px; height: 460px; bottom: -80px; right: -120px; background: radial-gradient(circle, rgba(30,180,177,.24), transparent 70%); }
.orb-c { width: 420px; height: 420px; top: 42%; left: 58%; background: radial-gradient(circle, rgba(245,124,0,.14), transparent 70%); }

.bg-field.fallback .bg-canvas { display: none; }
.mock-frame {
  position: absolute; inset: 22px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 24px 60px -20px rgba(15,23,42,.18), 0 1px 0 rgba(255,255,255,.8) inset;
  overflow: hidden;
  display: flex; flex-direction: column;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.mock-bar { height: 36px; background: var(--surface-2); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 6px; padding: 0 14px; }
.mock-bar span { width: 9px; height: 9px; border-radius: 50%; background: #E5E7EB; }
.mock-bar span:nth-child(1) { background: #FB7185; }
.mock-bar span:nth-child(2) { background: #FBBF24; }
.mock-bar span:nth-child(3) { background: #34D399; }
.mock-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.mock-row { height: 8px; border-radius: 3px; background: linear-gradient(90deg, var(--surface-2), #fff); }
.mock-row.w70 { width: 70%; } .mock-row.w50 { width: 50%; } .mock-row.w90 { width: 90%; }
.mock-card { padding: 14px; border-radius: var(--r-sm); border: 1px solid var(--line); background: rgba(255,255,255,.7); }
.mock-card .label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--orange); font-weight: 600; }
.mock-card .value { font-size: 24px; font-weight: 400; color: var(--ink); margin-top: 4px; letter-spacing: -.02em; font-family: "Geist", sans-serif; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-bars { display: flex; align-items: end; gap: 6px; height: 76px; margin-top: 10px; }
.mock-bars i { display: block; flex: 1; background: linear-gradient(180deg, var(--orange) 0%, #FFB266 100%); border-radius: 2px 2px 0 0; }
.mock-bars i:nth-child(2n) { background: linear-gradient(180deg, var(--indigo) 0%, #9696C8 100%); }

/* Cards — equal-height glass */
.grid { display: grid; gap: 18px; align-items: stretch; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid > * { min-width: 0; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 28px;
  display: flex; flex-direction: column;
  height: 100%;
  position: relative;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease), transform .2s var(--ease);
}
.card::before {
  content:""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.6), transparent 30%);
  pointer-events: none;
}
.card:hover { border-color: #D1D5DB; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card .icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: var(--orange-soft); color: var(--orange);
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
}
.card.indigo .icon { background: var(--indigo-soft); color: var(--indigo); }
.card.indigo { background: linear-gradient(180deg, #FFFFFF 0%, #F8F8FD 100%); border-color: #DCDCEF; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 18px; font-size: 15px; line-height: 1.6; }
.card .card-link {
  margin-top: auto;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  position: relative;
}
.card .card-link::after { content: "→"; transition: transform .2s var(--ease); color: var(--orange); }
.card .card-link:hover { color: var(--orange); }
.card .card-link:hover::after { transform: translateX(4px); }

/* Card with key-features */
.card-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); background: rgba(245,124,0,.08);
  border: 1px solid rgba(245,124,0,.20);
  border-radius: var(--r-pill); padding: 3px 10px;
  margin-bottom: 12px;
}
.card.indigo .card-tag { color: var(--indigo); background: var(--indigo-soft); border-color: #CFCFE9; }
.card .key-features {
  list-style: none; padding: 0; margin: 14px 0 18px;
  display: grid; gap: 9px;
  font-size: 14px; color: var(--ink-2);
}
.card .key-features li { padding-left: 22px; position: relative; line-height: 1.5; }
.card .key-features li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange-soft);
  box-shadow: inset 0 0 0 2px var(--orange);
}
.card.indigo .key-features li::before { background: var(--indigo-soft); box-shadow: inset 0 0 0 2px var(--indigo); }
.card .perfect-for {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-2);
  font-size: 13.5px; color: var(--muted); line-height: 1.55;
}
.card .perfect-for strong { color: var(--ink); font-weight: 600; }

/* Numbered card */
.card.numbered .num {
  font-family: "Geist", monospace;
  font-size: 12px; font-weight: 600; color: var(--orange);
  letter-spacing: .14em;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.card.numbered .num::before { content:""; width: 24px; height: 1px; background: var(--orange); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split.reverse > :first-child { order: 2; }
.split-visual {
  aspect-ratio: 5/4;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--orange-tint) 0%, var(--indigo-tint) 100%);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  z-index: 2;
  padding: 0;
  display: block;
}

.about-hero-photo {
  object-fit: cover;
  object-position: 66% center;
}

.what-we-do-grid {
  align-content: start;
  gap: 18px;
  margin-top: 12px;
}

.what-we-do-grid .card {
  padding: 24px 22px;
  min-height: 260px;
}

.what-we-do-grid .card h3 {
  font-size: 19px;
}

.what-we-do-grid .card p {
  font-size: 14.5px;
  line-height: 1.7;
}

.what-we-do-grid .card:nth-child(2n) .icon {
  background: var(--teal-soft);
  color: var(--teal);
}
.split-visual::after {
  content:""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events:none;
}
.split-visual .badge-stack {
  position: absolute; inset: 0; padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  z-index:1;
}
.shield-card {
  background: rgba(255,255,255,.86); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-sm); padding: 14px 16px;
  display: flex; gap: 12px; align-items: center;
  box-shadow: var(--shadow-md);
  max-width: 290px;
}
.shield-card .shield-ico { width: 34px; height: 34px; border-radius: var(--r-sm); background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.shield-card .shield-ico.indigo { background: var(--indigo-soft); color: var(--indigo); }
.shield-card .t1 { font-weight: 500; font-size: 13.5px; color: var(--ink); }
.shield-card .t2 { font-size: 12px; color: var(--muted-2); }

/* Bullets */
.bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.bullets li {
  display: flex; align-items: start; gap: 12px;
  font-size: 16px; color: var(--ink-2); line-height: 1.55;
}
.bullets li::before {
  content: "✓"; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange);
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
  margin-top: 2px;
}
.narrow-bullets { max-width: 780px; margin: 0 auto; }

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: none;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  transition: box-shadow .22s, transform .22s, border-color .22s, background .22s;
  position: relative;
  overflow: hidden;
}
.trust-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-soft), transparent 50%);
  opacity: 0;
  transition: opacity .22s;
  pointer-events: none;
}
.trust-item:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 40px -10px rgba(245,124,0,.18);
  transform: translateY(-6px);
}
.trust-item:hover::before {
  opacity: 1;
}
.trust-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: .02em;
}
.trust-desc {
  font-size: 13.5px;
  color: var(--muted);
  position: relative;
  z-index: 1;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: .01em;
}

/* Professionals section */
.professionals-section {
  padding: clamp(60px, 8vw, 96px) 0;
  background: linear-gradient(to bottom, #fff, #fafafa);
}
.professionals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 96px);
  align-items: center;
}
.professionals-text {
  max-width: 580px;
}
.professionals-text .eyebrow { color: var(--orange); }
.professionals-text h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.3; margin-bottom: 20px; }
.professionals-text .lead { font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.professionals-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.value-icon-box {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), rgba(245,124,0,.8));
  box-shadow: 0 8px 20px -6px rgba(245,124,0,.25);
  transition: transform .22s, box-shadow .22s;
  color: #fff;
}
.value-icon-box svg {
  width: 22px;
  height: 22px;
  opacity: .96;
}
.value-item:nth-child(2) .value-icon-box {
  background: linear-gradient(135deg, var(--indigo), rgba(102,102,153,.85));
  box-shadow: 0 8px 20px -6px rgba(102,102,153,.20);
}
.value-item:nth-child(3) .value-icon-box {
  background: linear-gradient(135deg, var(--teal), rgba(30,180,177,.85));
  box-shadow: 0 8px 20px -6px rgba(30,180,177,.20);
}
.value-item:hover .value-icon-box {
  transform: translateY(-3px);
}
.value-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 2px 0 6px;
}
.value-item p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.professionals-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.powered-logo-card {
  background: linear-gradient(135deg, #f5f5f5, #fafafa);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 100%;
  box-shadow: 0 8px 32px -8px rgba(0,0,0,.08);
}
.powered-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}
.powered-tagline {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

/* Badges */
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500; color: var(--ink-2);
}
.badge .b-ico { width: 18px; height: 18px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-size: 10px; font-weight: 700; }
.badge.indigo .b-ico { background: var(--indigo); }
.badge.teal .b-ico { background: var(--teal); }

/* Chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip {
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--ink-2);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.faq-sidebar h2 {
  font-size: clamp(34px, 2.8vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.faq-sidebar .faq-title-compact {
  font-size: clamp(30px, 2.4vw, 40px);
  line-height: 1.08;
}
.faq-sidebar .lead {
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 280px;
}
.faq-sidebar .btn { margin-top: 28px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 18px;
  padding: 22px 4px;
  text-align: left;
  font-family: "Geist", sans-serif;
  font-size: 15.5px; font-weight: 500; color: var(--ink);
  letter-spacing: -.01em;
  transition: color .15s;
}
.faq-question:hover { color: var(--orange); }
.faq-item.open .faq-question { color: var(--orange); }

.faq-num {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; font-weight: 600; color: var(--muted);
  transition: background .2s, color .2s, border-color .2s;
}
.faq-item.open .faq-num {
  background: rgba(245,124,0,.10);
  border-color: rgba(245,124,0,.30);
  color: var(--orange);
}

.faq-chevron {
  margin-left: auto; flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--muted-2);
  transition: transform .28s var(--ease), color .2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--orange); }

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body-inner {
  overflow: hidden;
  padding: 0 4px;
}
.faq-body-inner p {
  padding-bottom: 24px;
  font-size: 15px; color: var(--muted); line-height: 1.7;
  margin: 0;
  border-left: 2px solid rgba(245,124,0,.35);
  padding-left: 18px;
  margin-left: 50px;
}

/* Testimonial strip */
.testimonial-strip {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(32px, 4vw, 56px);
  background: linear-gradient(130deg, rgba(245,124,0,.05) 0%, rgba(102,102,153,.07) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.testimonial-photo {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.testimonial-content {
  padding: clamp(32px, 4vw, 56px) clamp(32px, 4vw, 56px) clamp(32px, 4vw, 56px) 0;
}
.testimonial-content blockquote {
  margin: 0;
  padding: 0;
}
.testimonial-content .quote-mark {
  font-size: 72px;
  line-height: .7;
  color: var(--orange);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block;
}
.testimonial-content p {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 24px;
}
.testimonial-content cite {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-content cite::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

/* CTA band */
.cta-band {
  background: linear-gradient(130deg, #FFFFFF 0%, #FFF6EC 58%, #F7F7FC 100%);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(40px, 6vw, 76px);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(45% 55% at 80% 0%, rgba(245,124,0,.16), transparent 60%),
    radial-gradient(40% 50% at 0% 100%, rgba(102,102,153,.12), transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 80%);
  pointer-events:none;
}
.cta-band > * { position: relative; z-index:1; }
.cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--muted); }
.cta-band .btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.cta-band .btn-secondary:hover { background: #fff; color: var(--ink); border-color: #D1D5DB; }
.cta-band .btn-orange { box-shadow: 0 12px 32px -10px rgba(245,124,0,.6); }
.cta-band .cta-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.cta-band ul.bullets li { color: var(--ink-2); }
.cta-band ul.bullets li::before { background: rgba(245,124,0,.18); color: var(--orange); }

/* Local */
.local-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

/* Form */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink-2); letter-spacing:.01em; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; font-family: "Geist", sans-serif;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff; color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(245,124,0,.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-checkbox { grid-column: 1 / -1; display: flex; gap: 10px; align-items: start; font-size: 14px; color: var(--muted); }
.field-checkbox input { margin-top: 3px; }

/* Contact tiles */
.contact-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-tile {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  height: 100%;
  display:flex; flex-direction:column;
}
.contact-tile .icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--orange-soft); color: var(--orange);
  display: grid; place-items: center; margin-bottom: 16px;
}
.contact-tile h4 { font-size: 16px; margin-bottom: 6px; color: var(--ink); }
.contact-tile a { color: var(--ink); font-weight: 500; }
.contact-tile a:hover { color: var(--orange); }
.contact-tile p { font-size: 14px; margin: 8px 0 0; color: var(--muted); line-height:1.55; }

.field-hp { display: none !important; }

.form-status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 13px;
  line-height: 1.5;
  display: none;
}
.form-status.show { display: block; }
.form-status.success {
  background: rgba(30, 180, 177, .1);
  border-color: rgba(30, 180, 177, .35);
  color: #0f5f5d;
}
.form-status.error {
  background: rgba(245, 124, 0, .1);
  border-color: rgba(245, 124, 0, .35);
  color: #8a4b00;
}

/* ── Blog ───────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-post-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s;
}
.blog-post-card:hover {
  box-shadow: 0 16px 48px -12px rgba(0,0,0,.13);
  transform: translateY(-3px);
  border-color: transparent;
}
.blog-thumb { display: block; text-decoration: none; overflow: hidden; flex-shrink: 0; }
.blog-thumb-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.blog-post-card:hover .blog-thumb-img { transform: scale(1.03); }
.blog-thumb-cover {
  width: 100%; aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease);
}
.blog-post-card:hover .blog-thumb-cover { transform: scale(1.03); }
.blog-thumb-cover::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.blog-thumb-cover svg { position: relative; z-index: 1; opacity: .75; }
.blog-thumb-cover.orange {
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,.15), transparent 55%),
    linear-gradient(135deg, #F57C00 0%, #E56C00 60%, #C45500 100%);
  color: #fff;
}
.blog-thumb-cover.indigo {
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,.15), transparent 55%),
    linear-gradient(135deg, #7878B8 0%, #666699 60%, #4A4A7A 100%);
  color: #fff;
}
.blog-thumb-cover.teal {
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,.15), transparent 55%),
    linear-gradient(135deg, #22C9C6 0%, #1eb4b1 60%, #148F8D 100%);
  color: #fff;
}
.blog-post-body { display: flex; flex-direction: column; flex: 1; padding: 24px 24px 22px; }
.blog-post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.blog-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); background: rgba(245,124,0,.08);
  border: 1px solid rgba(245,124,0,.20);
  border-radius: var(--r-pill); padding: 3px 10px;
}
.blog-tag.indigo { color: var(--indigo); background: var(--indigo-soft); border-color: #CFCFE9; }
.blog-tag.teal { color: var(--teal); background: var(--teal-soft); border-color: rgba(30,180,177,.28); }
.blog-read-time { font-size: 12px; color: var(--muted-2); }
.blog-post-body h3 { font-size: 17px; font-weight: 600; line-height: 1.4; color: var(--ink); margin-bottom: 10px; }
.blog-post-body h3 a { color: inherit; text-decoration: none; transition: color .18s; }
.blog-post-card:hover .blog-post-body h3 a { color: var(--orange); }
.blog-post-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.blog-post-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--orange);
  text-decoration: none; margin-top: auto;
  transition: gap .18s;
}
.blog-post-link:hover { gap: 10px; }
.blog-post-link svg { flex-shrink: 0; }

/* ── Article Page ──────────────────────────────────────────────────── */
.article-hero {
  background:
    radial-gradient(120% 110% at 8% 0%, rgba(245,124,0,.08), transparent 48%),
    radial-gradient(100% 120% at 96% 100%, rgba(30,180,177,.08), transparent 44%),
    linear-gradient(to bottom, #fafafa, #fff);
  padding: clamp(80px, 10vw, 120px) 0;
  border-bottom: 1px solid var(--line);
}
.article-hero-wrap { max-width: 800px; }
.article-hero-image {
  margin-top: 26px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px -18px rgba(0,0,0,.2);
}
.article-hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 18px;
}
.article-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); background: rgba(245,124,0,.08);
  border: 1px solid rgba(245,124,0,.20);
  border-radius: var(--r-pill); padding: 3px 10px;
}
.article-date, .article-read-time { font-size: 13px; color: var(--muted); font-weight: 500; }
.article-hero h1 { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.25; margin-bottom: 18px; }
.article-lead { font-size: 16px; color: var(--muted); line-height: 1.65; }
.article-section { padding: clamp(60px, 8vw, 96px) 0; }
.article-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.article-sidebar { position: sticky; top: calc(var(--header-h) + 28px); z-index: 10; }
.toc-sticky {
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.04);
}
.toc-title { 
  font-size: 13px; 
  font-weight: 700; 
  margin-bottom: 16px; 
  color: var(--ink); 
  letter-spacing: .05em;
  text-transform: uppercase;
}
.toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.toc-list a {
  font-size: 13.5px; 
  color: var(--muted); 
  text-decoration: none;
  padding: 6px 0 6px 12px; 
  transition: color .15s, border-color .15s, background .15s;
  border-left: 2px solid transparent;
  border-radius: 4px;
  display: block;
}
.toc-list a:hover { 
  color: var(--orange); 
  border-left-color: var(--orange);
  background: rgba(245,124,0,.04);
}
.article-body { 
  max-width: 800px;
  background: linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,255,255,.3));
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(245,124,0,.08);
  counter-reset: article-step;
}
.article-body h2 {
  font-size: 24px; 
  font-weight: 700; 
  line-height: 1.35;
  color: var(--ink); 
  margin: 40px 0 18px;
  margin-top: 48px;
  position: relative;
  padding-bottom: 12px;
}
.article-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 18px; 
  font-weight: 600; 
  line-height: 1.35;
  color: var(--ink); 
  margin: 28px 0 14px;
}
.article-body h3.article-step {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-body h3.article-step::before {
  counter-increment: article-step;
  content: counter(article-step, decimal-leading-zero);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.article-body p {
  font-size: 15.5px; 
  line-height: 1.8; 
  color: var(--ink); 
  margin-bottom: 18px;
}
.article-body p em { color: var(--indigo); font-style: italic; font-weight: 500; }
.article-body p strong { font-weight: 700; color: var(--ink); }
.article-list {
  list-style: none; 
  padding: 0; 
  margin: 20px 0 24px;
  display: grid; 
  gap: 12px;
  background: linear-gradient(to right, rgba(102,102,153,.04), transparent);
  padding: 20px;
  border-left: 3px solid var(--indigo);
  border-radius: 10px;
}
.article-list li {
  padding-left: 36px; 
  position: relative;
  font-size: 15px; 
  line-height: 1.7; 
  color: var(--ink);
  font-weight: 500;
}
.article-list li::before {
  content: "✓"; 
  position: absolute; 
  left: 0; 
  top: 1px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  width: 24px;
  height: 24px;
  background: var(--indigo);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.article-cta { 
  background: linear-gradient(135deg, var(--orange-soft), rgba(30,180,177,.06)); 
  padding: clamp(60px, 8vw, 96px) 0; 
  border-top: 1px solid rgba(245,124,0,.15); 
  border-radius: 20px;
  margin-top: 60px;
}

@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; gap: 0; }
  .article-sidebar { position: static; margin-bottom: 40px; }
  .toc-sticky { background: none; border: none; padding: 0; }
  .article-body h2 { font-size: 20px; margin-top: 32px; }
}
@media (max-width: 600px) {
  .article-hero h1 { font-size: 28px; }
  .article-body h2 { font-size: 18px; margin-top: 24px; }
  .article-body p { font-size: 15px; }
  .article-meta { gap: 10px; }
}

/* ── Contact Page ───────────────────────────────────────────────────────── */

/* Hero */
.contact-hero {
  position: relative;
  background:
    radial-gradient(110% 130% at 8% 0%, rgba(245,124,0,.07), transparent 46%),
    radial-gradient(100% 120% at 96% 110%, rgba(30,180,177,.08), transparent 44%),
    #ffffff;
  padding: clamp(88px, 11vw, 148px) 0 clamp(64px, 8vw, 96px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.contact-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.042) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.034) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 36%, #000 24%, transparent 78%);
  mask-image: radial-gradient(ellipse 72% 62% at 50% 36%, #000 24%, transparent 78%);
  pointer-events: none;
}
.contact-hero-inner { position: relative; z-index: 1; }
.contact-hero h1 { color: var(--ink); font-weight: 300; }
.accent-orange { color: var(--orange); }
.eyebrow-light { color: var(--muted); border-color: var(--line); background: var(--surface); }
.lead-light { color: var(--muted); max-width: 580px; margin-top: 20px; }
.contact-hero-stats {
  display: flex; align-items: center; gap: 0;
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 32px;
  max-width: 560px;
  box-shadow: 0 2px 16px -4px rgba(0,0,0,.07);
}
.chero-stat { flex: 1; text-align: center; }
.chero-num {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 28px; font-weight: 600;
  color: var(--ink); letter-spacing: -.02em;
}
.chero-label { display: block; font-size: 12px; color: var(--muted-2); margin-top: 4px; }
.chero-divider { width: 1px; height: 44px; background: var(--line); flex-shrink: 0; }

/* Layout */
.contact-section { padding-top: 0; margin-top: -2px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding-top: clamp(56px, 7vw, 96px);
}

/* Form enhancements */
.form-wrap-header {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.form-wrap-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(245,124,0,.10);
  border: 1px solid rgba(245,124,0,.22);
  color: var(--orange);
  display: grid; place-items: center;
}
.form-wrap-header h3 { font-size: 20px; margin-bottom: 4px; }
.form-wrap-header p { font-size: 14px; color: var(--muted); margin: 0; }
.field-optional { font-weight: 400; color: var(--muted-2); font-size: 12px; }
.form-submit-btn { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }

/* Info column */
.contact-info-heading { margin-bottom: 32px !important; }
.contact-info-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.contact-info-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
a.contact-info-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px -8px rgba(245,124,0,.18);
  transform: translateY(-1px);
}
.contact-info-card.static { cursor: default; }
.cinfo-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--orange-soft); color: var(--orange);
}
.cinfo-icon.teal { background: var(--teal-soft); color: var(--teal); }
.cinfo-icon.indigo { background: var(--indigo-soft); color: var(--indigo); }
.cinfo-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 2px; }
.cinfo-value { font-size: 15px; font-weight: 600; color: var(--ink); margin: 0 0 3px; }
.cinfo-sub { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.45; }
.cinfo-arrow { margin-left: auto; flex-shrink: 0; color: var(--muted-2); transition: transform .18s, color .18s; }
a.contact-info-card:hover .cinfo-arrow { transform: translateX(3px); color: var(--orange); }

.contact-trust-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.contact-trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 12px;
}
.contact-trust-badge svg { color: var(--orange); flex-shrink: 0; }

/* Process steps */
.contact-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 16px;
  position: relative;
}
.contact-step { padding: 0 24px 0 0; position: relative; }
.contact-step:last-child { padding-right: 0; }
.cstep-track {
  display: flex; align-items: center;
  margin-bottom: 20px;
  gap: 0;
}
.cstep-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  color: var(--orange);
  background: rgba(245,124,0,.08);
  border: 1px solid rgba(245,124,0,.22);
  border-radius: 6px;
  padding: 4px 8px;
  flex-shrink: 0;
}
.cstep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(245,124,0,.35), var(--line));
  margin-left: 12px;
}
.contact-step:last-child .cstep-line { display: none; }
.cstep-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted);
  margin-bottom: 18px;
  transition: background .2s, color .2s, border-color .2s;
}
.cstep-icon.orange { background: rgba(245,124,0,.08); border-color: rgba(245,124,0,.22); color: var(--orange); }
.cstep-icon.indigo { background: var(--indigo-soft); border-color: #CFCFE9; color: var(--indigo); }
.cstep-icon.teal { background: var(--teal-soft); border-color: rgba(30,180,177,.25); color: var(--teal); }
.contact-step:hover .cstep-icon { background: rgba(245,124,0,.10); border-color: rgba(245,124,0,.30); color: var(--orange); }
.contact-step h4 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.contact-step p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Privacy strip */
.privacy-strip {
  display: flex; gap: 20px; align-items: flex-start;
  background: linear-gradient(130deg, var(--indigo-tint) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 32px;
}
.privacy-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--indigo-soft); color: var(--indigo);
  display: grid; place-items: center;
}
.privacy-body strong { font-size: 15px; color: var(--ink); display: block; margin-bottom: 10px; }
.privacy-body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px 24px; }
.privacy-body ul li {
  font-size: 13.5px; color: var(--muted);
  display: flex; align-items: center; gap: 7px;
}
.privacy-body ul li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--indigo); flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────── */

/* Footer */
.site-footer {
  margin-top: 96px;
  background:
    radial-gradient(130% 160% at 5% 0%, rgba(102,102,153,.45), transparent 48%),
    radial-gradient(120% 150% at 100% 100%, rgba(30,180,177,.35), transparent 42%),
    linear-gradient(145deg, #060913 0%, #0B1324 52%, #0D162A 100%);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .35;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 1.1fr 1.1fr 1.1fr;
  gap: 60px;
}
.footer-grid h5 {
  font-size: 12px; 
  text-transform: uppercase; 
  letter-spacing: .15em;
  color: #E6EDF9; 
  margin: 0 0 24px; 
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
}
.footer-grid ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: grid; 
  gap: 12px;
}
.footer-grid ul li {
  color: #D7E3F8;
  font-size: 14px;
}
.footer-grid ul a { 
  color: #C2D1E8; 
  font-size: 14px;
  transition: color .22s, padding-left .22s;
  display: inline-flex;
  position: relative;
}
.footer-grid ul li.footer-hours {
  color: #F2F7FF;
  font-weight: 600;
  letter-spacing: .01em;
}
.footer-grid ul a:hover { 
  color: #fff;
  padding-left: 6px;
}
.footer-grid ul li:first-child a {
  color: var(--orange);
  font-weight: 600;
}
.footer-grid p { 
  font-size: 14px; 
  color: #C2D1E8; 
  margin: 16px 0 0; 
  max-width: 380px; 
  line-height: 1.7;
}
.footer-bottom {
  margin-top: 48px; 
  padding-top: 28px; 
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex; 
  justify-content: space-between; 
  gap: 24px; 
  flex-wrap: wrap;
  font-size: 13px; 
  color: #9CB0D2;
  align-items: center;
}
.social { 
  display: flex; 
  gap: 12px;
}
.social a {
  width: 40px; 
  height: 40px; 
  border-radius: 10px;
  background: rgba(255,255,255,.10); 
  border: 1px solid rgba(255,255,255,.18);
  display: grid; 
  place-items: center; 
  color: #E6EDF9;
  transition: all .22s;
  font-size: 16px;
}
.social a:hover { 
  color: #fff; 
  border-color: var(--indigo); 
  background: rgba(102,102,153,.25);
  transform: translateY(-3px);
}

/* Page hero */
.page-hero {
  position: relative; overflow:hidden;
  padding: clamp(80px, 9vw, 128px) 0 clamp(48px, 6vw, 72px);
  background: var(--bg);
  text-align: center;
}
.page-hero::before {
  content:""; position: absolute; inset:0;
  background: radial-gradient(60% 70% at 50% 0%, rgba(245,124,0,.07), transparent 70%);
}
.page-hero::after {
  content:""; position: absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 80%);
}

.powered-logo {
  margin: 10px auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: linear-gradient(145deg, #040A16 0%, #0B1324 100%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  box-shadow: 0 14px 26px -18px rgba(15,23,42,.5);
}
.powered-logo img { height: 58px; width: auto; display: block; }
.page-hero .container { position: relative; z-index:1; }
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); }
.page-hero .lead { margin: 0 auto; }
.page-hero .hero-actions { justify-content: center; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Subsections */
.subsection { margin-top: 32px; }
.subsection h4 { font-size: 18px; margin-bottom: 8px; color: var(--ink); }
.subsection p { color: var(--muted); }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.feature-list .card { padding: 26px 24px; }

/* Responsive */
@media (max-width: 980px) {
  .grid-3, .grid-4, .feature-list { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split, .local-grid, .cta-band .cta-grid { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: initial; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { grid-template-columns: 1fr 1fr; gap: 16px; }
  .professionals-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-tiles { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cstep-line { display: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-strip { grid-template-columns: 1fr; }\n  .faq-layout { grid-template-columns: 1fr; }
  .testimonial-photo { min-height: 260px; }
  .testimonial-content { padding: 32px; }
  .nav-links { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 12px 16px 20px; background: #0B1324; border-bottom: 1px solid rgba(255,255,255,.10); max-height: 80vh; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-toggle { display: inline-flex; }
  .brand-logo { height: 28px; }
  /* Mega menu on mobile: flatten to stacked links */
  .mega-panel { position: static; transform: none; opacity: 1; pointer-events: auto; background: none; border: none; box-shadow: none; display: none; }
  .nav-item-mega.open .mega-panel { display: block; }
  .mega-inner { grid-template-columns: 1fr; gap: 0; padding: 4px 0 0; }
  .mega-col { border-right: none; padding: 0; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 8px; padding-bottom: 8px; }
  .mega-col:last-child { border-bottom: none; display: none; }
  .mega-col-label { padding: 8px 14px 4px; margin-bottom: 0; }
  .mega-item { padding: 10px 14px; }
  .mega-trigger { width: 100%; justify-content: space-between; padding: 12px 14px; border-radius: 8px; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .feature-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-bar { grid-template-columns: 1fr; gap: 12px; }
  .professionals-text h2 { font-size: 24px; }
  h1 { font-size: 40px; }
  section { padding: 64px 0; }
  .contact-steps { grid-template-columns: 1fr; gap: 28px; }
  .contact-hero-stats { flex-direction: column; gap: 20px; padding: 20px 24px; }
  .chero-divider { width: 100%; height: 1px; }
  .privacy-strip { flex-direction: column; }
}
