
/* ─────────────────────────────────────────
   PAGE LOADER
───────────────────────────────────────── */
.page-loader{position:fixed;inset:0;z-index:99999;background:rgba(0,51,102,.35);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);display:flex;align-items:center;justify-content:center;transition:opacity .4s,visibility .4s}
.page-loader.hide{opacity:0;visibility:hidden}
.loader-spinner{position:relative;width:52px;height:52px}
.loader-spinner .ring{position:absolute;inset:0;border:3px solid transparent;border-radius:50%;animation:loaderSpin 1.2s cubic-bezier(.5,.15,.5,.85) infinite}
.loader-spinner .ring:nth-child(1){border-top-color:var(--orange);animation-delay:0s}
.loader-spinner .ring:nth-child(2){inset:6px;border-right-color:var(--blue);animation-delay:-.4s;animation-direction:reverse}
.loader-spinner .ring:nth-child(3){inset:12px;border-bottom-color:#fff;animation-delay:-.8s}
@keyframes loaderSpin{to{transform:rotate(360deg)}}

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --navy:   #003366;
  --navy2:  #00254d;
  --navy3:  #001a3a;
  --blue:   #0057b8;
  --bluelt: #e8f1fb;
  --orange: #e8590c;
  --white:  #ffffff;
  --off:    #f5f7fa;
  --off2:   #eef1f6;
  --text:   #1c2333;
  --text2:  #4a5568;
  --text3:  #718096;
  --border: #dde3ed;
  --fh: 'Rajdhani', sans-serif;
  --fb: 'Source Sans 3', sans-serif;
  /* ── Backward-compat aliases for legacy city pages ── */
  --primary-color: #0057b8;
  --dark-bg: #001a3a;
  --light-bg: #f5f7fa;
  --gradient-primary: linear-gradient(135deg,#003366,#0057b8);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: #fff; color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─────────────────────────────────────────
   NAVIGATION — mobile first
───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 64px;
}
/* logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-box {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
}
.logo-box svg { width: 20px; height: 20px; }
.logo-words .lw1 { font-family: var(--fh); font-size: 18px; font-weight: 700; color: white; letter-spacing: 0.5px; line-height: 1; transition: color 0.35s; }
.nav.scrolled .logo-words .lw1 { color: var(--navy); }
.logo-words .lw2 { font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-top: 1px; }
/* hamburger */
.ham { width: 36px; height: 36px; background: none; border: 1px solid rgba(255,255,255,0.4); border-radius: 6px; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4.5px; transition: border-color 0.35s; }
.nav.scrolled .ham { border-color: var(--border); }
.ham span { width: 18px; height: 1.8px; background: white; border-radius: 2px; display: block; transition: all 0.25s; }
.nav.scrolled .ham span { background: var(--text2); }
.ham.open span:nth-child(1) { transform: translateY(6.3px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.3px) rotate(-45deg); }
/* mobile drawer */
.nav-drawer {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 12px 0 16px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 13px 20px; font-size: 15px; font-weight: 500;
  color: var(--text2); border-bottom: 1px solid var(--off2);
  transition: color 0.2s, background 0.2s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--blue); background: var(--off); }
.nav-drawer .drawer-cta {
  margin: 12px 20px 0; padding: 12px 20px;
  background: var(--orange); color: white; border-radius: 5px;
  font-size: 14px; font-weight: 600; text-align: center;
}
/* desktop links — hidden on mobile */
.nav-links { display: none; list-style: none; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); position: relative; padding: 4px 0; transition: color 0.2s; }
.nav.scrolled .nav-links a { color: var(--text2); }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--orange); transform: scaleX(0); transition: transform 0.2s; }
.nav-links a:hover { color: white; }
.nav.scrolled .nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: white; font-weight: 600; }
.nav.scrolled .nav-links a.active { color: var(--navy); }
.nav-cta-desk { display: none; padding: 9px 22px; background: var(--orange); color: white; border-radius: 4px; font-size: 13.5px; font-weight: 600; transition: background 0.2s; }
.nav-cta-desk:hover { background: #c94a08; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  margin-top: 64px;
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
}
/* Default: absolute — works on all browsers including Safari */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
/* Fixed parallax only on Chrome/Edge (Safari doesn't support animation-timeline) */
@supports (animation-timeline: scroll()) {
  .hero {
    overflow: visible;
  }
  .hero-video {
    position: fixed;
    width: 100vw; height: 100vh;
  }
}
.hero-body {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column; justify-content: center;
  padding: 0 20px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 16px;
}
.hero-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--orange); display: block; flex-shrink: 0; }
.hero-eyebrow .live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4fc3f7; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-family: var(--fh);
  font-size: clamp(34px, 8vw, 72px);
  font-weight: 700; line-height: 1.05; letter-spacing: 0.3px;
  color: white; margin-bottom: 14px;
}
.hero h1 em { font-style: normal; color: #4fc3f7; }
.hero-quote {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.55);
  border-left: 2px solid var(--orange); padding-left: 12px;
  font-style: italic; margin-bottom: 14px; line-height: 1.6;
  max-width: 480px;
}
.hero-sub {
  font-size: clamp(14px, 2vw, 17px); font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.68); max-width: 560px; margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-org {
  padding: 12px 24px; background: var(--orange); color: white;
  border-radius: 4px; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-org:hover { background: #c94a08; transform: translateY(-2px); }
.btn-wht {
  padding: 12px 24px; background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.45); border-radius: 4px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-wht:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-nvy {
  padding: 12px 24px; background: var(--navy); color: white;
  border-radius: 4px; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-nvy:hover { background: var(--navy2); transform: translateY(-1px); }

/* ─────────────────────────────────────────
   PILLARS
───────────────────────────────────────── */
.pillars { background: var(--navy); position: relative; z-index: 1; }
.pillars-grid {
  display: grid; grid-template-columns: 1fr 1fr;
}
.pillar {
  padding: 22px 20px; border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: flex-start; gap: 14px;
  transition: background 0.2s;
}
.pillar:hover { background: rgba(255,255,255,0.04); }
.pillar-ico {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
}
.pillar-ico svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.pillar-ttl { font-family: var(--fh); font-size: 15px; font-weight: 700; color: white; line-height: 1.2; }
.pillar-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 3px; font-weight: 300; }

/* ─────────────────────────────────────────
   TICKER
───────────────────────────────────────── */
.ticker { background: var(--off2); border-bottom: 1px solid var(--border); padding: 11px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 1; }
.ticker-track { display: inline-flex; animation: ticker 36s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 9px; padding: 0 22px; font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text3); }
.ticker-sep { color: var(--orange); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────────────────────
   SECTION BASE
───────────────────────────────────────── */
.sec { padding: 56px 20px; position: relative; z-index: 1; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.sec-tag::before { content: ''; width: 18px; height: 2px; background: var(--orange); display: block; flex-shrink: 0; }
.sec-h2 { font-family: var(--fh); font-size: clamp(26px, 6vw, 44px); font-weight: 700; letter-spacing: 0.2px; line-height: 1.1; color: var(--navy); margin-bottom: 12px; }
.sec-desc { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--text2); max-width: 540px; }
.sec-hdr { margin-bottom: 36px; }
.sec-hdr-row { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.view-all { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 600; color: var(--blue); transition: gap 0.2s, color 0.2s; }
.view-all:hover { gap: 8px; color: var(--orange); }

/* ─────────────────────────────────────────
   CARD base
───────────────────────────────────────── */
.card {
  background: white; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover { box-shadow: 0 10px 36px rgba(0,51,102,0.12); transform: translateY(-4px); }
.card-img-wrap { overflow: hidden; }
.card-img { width: 100%; height: 190px; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img { transform: scale(1.05); }
.card-body { padding: 22px 20px; }
.card-body h3 { font-family: var(--fh); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card-body p { font-size: 13.5px; color: var(--text2); line-height: 1.72; font-weight: 300; margin-bottom: 14px; }
.clink { font-size: 13px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s, gap 0.2s; }
.clink:hover { color: var(--orange); gap: 7px; }
.card-top-border { border-top: 3px solid var(--navy); }
.card-top-border-blue { border-top: 3px solid var(--blue); }

/* ─────────────────────────────────────────
   CAPABILITIES
───────────────────────────────────────── */
.capabilities { background: var(--off); }
.cap-grid { display: grid; gap: 18px; }

/* ─────────────────────────────────────────
   PRODUCT SECTION
───────────────────────────────────────── */
.product-sec { background: white; }
.product-img-wrap { border-radius: 10px; overflow: hidden; position: relative; margin-bottom: 28px; }
.product-img-wrap img { width: 100%; height: 260px; object-fit: cover; }
.prod-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: white; border-radius: 8px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}
.pb-icon { width: 36px; height: 36px; border-radius: 7px; background: linear-gradient(135deg,var(--navy),var(--blue)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pb-icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pb-num { font-family: var(--fh); font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1; }
.pb-lbl { font-size: 10.5px; color: var(--text3); margin-top: 1px; }
.feat-tag { display: inline-block; padding: 3px 12px; border-radius: 3px; background: var(--bluelt); color: var(--blue); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.feat-list { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.feat-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text2); line-height: 1.6; }
.feat-check { width: 18px; height: 18px; border-radius: 50%; background: var(--navy); flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.prod-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   INDUSTRIES
───────────────────────────────────────── */
.industries { background: var(--off); }
.ind-grid { display: grid; gap: 18px; }

/* ─────────────────────────────────────────
   APPROACH
───────────────────────────────────────── */
.approach { background: var(--navy); }
.approach .sec-tag { color: #7ec8e3; }
.approach .sec-tag::before { background: var(--orange); }
.approach .sec-h2 { color: white; }
.approach-center { text-align: center; margin-bottom: 36px; }
.approach-center .sec-tag, .approach-center .sec-h2 { display: block; text-align: center; }
.approach-center .sec-tag::before { display: none; }
.approach-center p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.8; font-weight: 300; max-width: 520px; margin: 0 auto; }
.steps-grid { display: grid; gap: 0; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; }
.step {
  padding: 32px 28px; border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative; transition: background 0.3s;
}
.step:last-child { border-bottom: none; }
.step:hover { background: rgba(255,255,255,0.03); }
.step::before { content: attr(data-n); font-family: var(--fh); font-size: 72px; font-weight: 700; color: rgba(255,255,255,0.04); position: absolute; top: 8px; right: 14px; line-height: 1; }
.step-bar { width: 28px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 16px; }
.step h3 { font-family: var(--fh); font-size: 21px; font-weight: 700; color: white; margin-bottom: 10px; }
.step p { font-size: 13.5px; color: rgba(255,255,255,0.48); line-height: 1.78; font-weight: 300; }

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services { background: var(--off); }
.srv-grid { display: grid; gap: 18px; }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about { background: white; }
.about-img { width: 100%; height: 260px; object-fit: cover; border-radius: 8px; margin-bottom: 28px; }
.about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.val-box { padding: 16px; background: var(--off); border-radius: 6px; border-left: 3px solid var(--blue); }
.val-box h4 { font-family: var(--fh); font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.val-box p { font-size: 12px; color: var(--text2); line-height: 1.6; font-weight: 300; }

/* ─────────────────────────────────────────
   INSIGHTS
───────────────────────────────────────── */
.insights { background: var(--navy2); }
.insights .sec-tag { color: #7ec8e3; }
.insights .sec-tag::before { background: var(--orange); }
.insights .sec-h2 { color: white; }
.insights .sec-desc { color: rgba(255,255,255,0.5); }
.insights .view-all { color: #7ec8e3; }
.ins-grid { display: grid; gap: 18px; }
.ins-card {
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);
  transition: background 0.3s, transform 0.3s;
}
.ins-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.ins-card-img-wrap { overflow: hidden; }
.ins-card img { width: 100%; height: 190px; object-fit: cover; transition: transform 0.5s; }
.ins-card:hover img { transform: scale(1.05); }
.ins-card-body { padding: 22px 20px; }
.ins-tag { display: inline-block; padding: 3px 10px; border-radius: 2px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(232,89,12,0.15); color: var(--orange); border: 1px solid rgba(232,89,12,0.22); margin-bottom: 10px; }
.ins-card h3 { font-family: var(--fh); font-size: 19px; font-weight: 700; color: white; line-height: 1.25; margin-bottom: 9px; }
.ins-card p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.72; margin-bottom: 16px; font-weight: 300; }
.ins-meta { display: flex; align-items: center; justify-content: space-between; }
.ins-date { font-size: 11.5px; color: rgba(255,255,255,0.3); }
.ins-read { font-size: 12.5px; font-weight: 600; color: #7ec8e3; display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s, gap 0.2s; }
.ins-read:hover { color: var(--orange); gap: 7px; }

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-banner { position: relative; overflow: hidden; z-index: 1; }
.cta-banner-img { width: 100%; height: 360px; object-fit: cover; object-position: center 40%; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,20,50,0.93) 0%, rgba(0,51,102,0.72) 60%, rgba(0,51,102,0.2) 100%);
  display: flex; align-items: center; padding: 0 20px;
}
.cta-body { max-width: 560px; }
.cta-body h2 { font-family: var(--fh); font-size: clamp(24px, 6vw, 46px); font-weight: 700; color: white; line-height: 1.1; margin-bottom: 12px; }
.cta-body p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; font-weight: 300; margin-bottom: 28px; max-width: 420px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { background: var(--navy3); color: white; position: relative; z-index: 1; }
.footer-top { padding: 48px 20px 36px; display: grid; gap: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.f-logo { font-family: var(--fh); font-size: 19px; font-weight: 700; color: white; margin-bottom: 10px; }
.f-logo span { color: #7ec8e3; }
.f-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.82; font-weight: 300; max-width: 280px; margin-bottom: 18px; }
.f-social { display: flex; gap: 9px; }
.f-soc { width: 32px; height: 32px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.f-soc:hover { background: rgba(255,255,255,0.08); }
.f-soc svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.5); }
.footer-col h4 { font-family: var(--fh); font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,0.52); font-weight: 300; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; }
.footer-bottom { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.f-bot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.f-bot-links a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.f-bot-links a:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────
   REVEAL ANIMATION
───────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────
   TABLET  ≥ 640px
───────────────────────────────────────── */
@media (min-width: 640px) {
  .sec { padding: 72px 32px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .ins-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .step:nth-child(2n) { border-right: none; }
  .step:nth-last-child(-n+2) { border-bottom: none; }
  .footer-top { padding: 56px 32px 44px; }
  .footer-bottom { padding: 20px 32px; flex-direction: row; justify-content: space-between; align-items: center; }
  .cta-overlay { padding: 0 32px; }
}

/* ─────────────────────────────────────────
   DESKTOP  ≥ 960px
───────────────────────────────────────── */
@media (min-width: 960px) {
  .nav-inner { padding: 0 64px; height: 72px; }
  .ham { display: none; }
  .nav-links { display: flex; }
  .nav-cta-desk { display: block; }
  .nav-drawer { display: none !important; }

  .hero { margin-top: 72px; height: 100vh; min-height: 620px; }
  .hero-body { padding: 0 64px; max-width: 820px; }
  .hero-eyebrow { font-size: 11.5px; margin-bottom: 22px; }
  .hero-quote { font-size: 14.5px; margin-bottom: 18px; }
  .hero-sub { margin-bottom: 40px; }

  .pillars-grid { grid-template-columns: repeat(4,1fr); }
  .pillar { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: none; }
  .pillar:last-child { border-right: none; }

  .sec { padding: 88px 64px; }
  .sec-hdr-row { flex-direction: row; justify-content: space-between; align-items: flex-end; }

  .cap-grid { grid-template-columns: repeat(4,1fr); }
  .card-img { height: 185px; }

  /* product split */
  .product-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .product-img-wrap { margin-bottom: 0; }
  .product-img-wrap img { height: 440px; }

  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .srv-grid { grid-template-columns: repeat(3,1fr); }

  /* approach */
  .steps-grid { grid-template-columns: repeat(4,1fr); }
  .step { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: none !important; }
  .step:last-child { border-right: none; }

  /* about split */
  .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .about-img { height: 460px; margin-bottom: 0; }

  /* insights */
  .ins-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .ins-card.featured .ins-card img { height: 240px; }

  .cta-banner-img { height: 400px; }
  .cta-overlay { padding: 0 64px; }

  .footer-top { padding: 64px 64px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer-cols { display: contents; }
  .footer-bottom { padding: 24px 64px; }
}

@media (min-width: 1200px) {
  .sec { padding: 100px 80px; }
  .nav-inner { padding: 0 80px; }
  .hero-body { padding: 0 80px; }
  .cta-overlay { padding: 0 80px; }
  .footer-top { padding: 64px 80px 48px; }
  .footer-bottom { padding: 24px 80px; }
}

/* ─────────────────────────────────────────
   MOBILE — force absolute (undo @supports fixed)
───────────────────────────────────────── */
@media (max-width: 959px) {
  .hero { height: 88vh; overflow: hidden; }
  .hero-video {
    position: absolute !important;
    top: 0; left: 0;
    width: 100% !important; height: 100% !important;
  }
}

/* ─────────────────────────────────────────
   INNER PAGES — container utility
───────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 960px) { .container { padding: 0 64px; } }
@media (min-width: 1200px) { .container { padding: 0 80px; } }

/* ─────────────────────────────────────────
   INNER PAGE HERO — video parallax background
   ─ To change the background for every page:
     override --hero-bg-src via inline style or a
     page-specific CSS rule on .page-hero itself.
───────────────────────────────────────── */
.page-hero {
  padding: 120px 20px 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Video background — sits behind overlay and content */
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  opacity: 0.75;
  pointer-events: none;
}
/* Fixed-parallax only where the browser supports scroll-driven animations */
@supports (animation-timeline: scroll()) {
  .page-hero { overflow: visible; clip-path: inset(0); }
  .page-hero-video {
    position: fixed;
    width: 100vw; height: 100vh;
    top: 0; left: 0;
    opacity: 0.75;
  }
}
/* Thin dark overlay — only enough to keep text readable */
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,20,48,0.55) 0%, rgba(0,51,102,0.30) 60%, transparent 100%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .sec-tag { color: rgba(255,255,255,0.5); }
.page-hero .sec-tag::before { background: var(--orange); }
.page-hero h1 {
  font-family: var(--fh);
  font-size: clamp(30px, 7vw, 56px);
  font-weight: 700; color: white; line-height: 1.08;
  margin-bottom: 14px; letter-spacing: 0.2px;
}
.page-hero h1 em { font-style: normal; color: #4fc3f7; }
.page-hero p { font-size: clamp(14px, 2vw, 16px); color: rgba(255,255,255,0.6); line-height: 1.78; font-weight: 300; max-width: 560px; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
@media (min-width: 640px) { .page-hero { padding: 130px 32px 80px; } }
@media (min-width: 960px) { .page-hero { padding: 140px 64px 96px; } }
@media (min-width: 1200px) { .page-hero { padding: 140px 80px 96px; } }

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(2,1fr);
  background: var(--navy2);
}
.stat-cell {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-cell:nth-child(2n) { border-right: none; }
.stat-cell:nth-last-child(-n+2) { border-bottom: none; }
.stat-n { font-family: var(--fh); font-size: 32px; font-weight: 700; color: white; line-height: 1; margin-bottom: 4px; }
.stat-l { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 300; letter-spacing: 0.06em; }
@media (min-width: 640px) {
  .stats-row { grid-template-columns: repeat(4,1fr); }
  .stat-cell { border-bottom: none !important; }
  .stat-cell:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-cell:last-child { border-right: none; }
}

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-grid { display: grid; gap: 48px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-method-ico {
  width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
  background: var(--bluelt); display: flex; align-items: center; justify-content: center;
}
.contact-method-ico svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-method h4 { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-method p, .contact-method a { font-size: 14px; color: var(--text2); font-weight: 300; line-height: 1.6; }
.contact-method a:hover { color: var(--blue); }
.contact-hours { background: var(--off); border-radius: 8px; padding: 20px; margin-top: 8px; }
.contact-hours h4 { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text2); }
.hours-row .time { color: var(--navy); font-weight: 600; }
.form-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 28px 20px; }
.form-card h2 { font-family: var(--fh); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-card > p { font-size: 14px; color: var(--text3); margin-bottom: 24px; font-weight: 300; }
.form-row { display: grid; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group label span { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px; border: 1px solid var(--border); border-radius: 5px;
  font-size: 14px; color: var(--text); background: var(--off);
  transition: border-color 0.2s, background 0.2s; font-family: var(--fb); width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); background: white; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  padding: 12px 28px; background: var(--orange); color: white;
  border: none; border-radius: 4px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--fb);
}
.form-submit:hover { background: #c94a08; transform: translateY(-1px); }
.alert { padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-danger ul { margin: 4px 0 0 18px; }
.map-wrap { border-radius: 10px; overflow: hidden; margin-top: 48px; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 400px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } .form-card { padding: 40px 36px; } }

/* ─────────────────────────────────────────
   LEGAL PAGES
───────────────────────────────────────── */
.legal-page { background: white; }
.legal-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 2px solid var(--border); }
.legal-header h1 { font-family: var(--fh); font-size: clamp(28px, 6vw, 44px); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.legal-date { font-size: 13px; color: var(--text3); font-weight: 300; }
.legal-content h2 { font-family: var(--fh); font-size: 22px; font-weight: 700; color: var(--navy); margin: 32px 0 10px; }
.legal-content h3 { font-family: var(--fh); font-size: 17px; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
.legal-content p { font-size: 14.5px; color: var(--text2); line-height: 1.85; margin-bottom: 14px; font-weight: 300; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 14px; }
.legal-content li { font-size: 14.5px; color: var(--text2); line-height: 1.8; margin-bottom: 6px; font-weight: 300; }
.legal-content a { color: var(--blue); }
.legal-content a:hover { color: var(--orange); }
.legal-box { background: var(--bluelt); border-left: 4px solid var(--blue); border-radius: 0 6px 6px 0; padding: 16px 20px; margin-bottom: 24px; }
.legal-box p { font-size: 14px; color: var(--navy); margin-bottom: 0; font-weight: 400; }

/* ─────────────────────────────────────────
   FAQ PAGE
───────────────────────────────────────── */
.faq-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.faq-btn {
  padding: 7px 16px; border-radius: 3px; border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--text2);
  background: none; cursor: pointer; transition: all 0.2s; font-family: var(--fb);
}
.faq-btn.active, .faq-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.faq-item { border: 1px solid var(--border); border-radius: 6px; margin-bottom: 10px; overflow: hidden; background: white; }
.faq-q {
  padding: 18px 20px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; cursor: pointer; transition: background 0.2s;
}
.faq-q:hover { background: var(--off); }
.faq-q h3 { font-family: var(--fh); font-size: 15.5px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-q .faq-ico {
  width: 24px; height: 24px; border-radius: 50%; background: var(--off2);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: background 0.2s, transform 0.3s;
}
.faq-q .faq-ico svg { width: 10px; height: 10px; stroke: var(--text2); fill: none; stroke-width: 2.5; }
.faq-item.open .faq-q { background: var(--off); }
.faq-item.open .faq-q .faq-ico { background: var(--navy); transform: rotate(45deg); }
.faq-item.open .faq-q .faq-ico svg { stroke: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 20px 18px; }
.faq-a-inner p { font-size: 14px; color: var(--text2); line-height: 1.8; font-weight: 300; }
.faq-item.open .faq-a { max-height: 400px; }

/* ─────────────────────────────────────────
   PORTFOLIO PAGE
───────────────────────────────────────── */
.port-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.port-btn {
  padding: 7px 16px; border-radius: 3px; border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--text2);
  background: none; cursor: pointer; transition: all 0.2s; font-family: var(--fb);
}
.port-btn.active, .port-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.port-grid { display: grid; gap: 24px; }
.port-item { background: white; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.port-item:hover { box-shadow: 0 10px 36px rgba(0,51,102,0.12); transform: translateY(-4px); }
.port-img { height: 200px; overflow: hidden; position: relative; }
.port-img-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform 0.5s; }
.port-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.port-item:hover .port-img-inner { transform: scale(1.05); }
.port-body { padding: 20px; }
.port-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.port-cat { font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.port-live { font-size: 11px; color: #22c55e; display: flex; align-items: center; gap: 4px; font-weight: 600; }
.port-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.port-body h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.port-body p { font-size: 13px; color: var(--text2); line-height: 1.7; margin-bottom: 12px; font-weight: 300; }
.port-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.port-tag { font-size: 11px; padding: 3px 10px; border-radius: 3px; background: var(--off2); color: var(--text3); font-weight: 500; }
.btn-live { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--navy); color: white; border-radius: 4px; font-size: 13px; font-weight: 600; transition: background 0.2s; }
.btn-live:hover { background: var(--blue); }
@media (min-width: 640px) { .port-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .port-grid { grid-template-columns: repeat(3,1fr); } }

/* ─────────────────────────────────────────
   CAREERS PAGE
───────────────────────────────────────── */
.job-grid { display: grid; gap: 16px; }
.job-card { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 24px; transition: box-shadow 0.3s, transform 0.2s; }
.job-card:hover { box-shadow: 0 8px 28px rgba(0,51,102,0.10); transform: translateY(-2px); }
.job-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.job-title { font-family: var(--fh); font-size: 19px; font-weight: 700; color: var(--navy); }
.job-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.job-badge { font-size: 11px; padding: 3px 10px; border-radius: 3px; font-weight: 600; }
.badge-type { background: var(--bluelt); color: var(--blue); }
.badge-loc { background: var(--off2); color: var(--text3); }
.job-card p { font-size: 13.5px; color: var(--text2); line-height: 1.7; margin-bottom: 12px; font-weight: 300; }
.job-exp { font-size: 12.5px; color: var(--text3); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.job-exp::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.benefits-grid { display: grid; gap: 16px; }
.benefit-item { display: flex; align-items: flex-start; gap: 14px; padding: 20px; background: white; border: 1px solid var(--border); border-radius: 8px; }
.benefit-ico { width: 40px; height: 40px; border-radius: 8px; background: var(--bluelt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-ico svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefit-item h4 { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.benefit-item p { font-size: 13px; color: var(--text2); line-height: 1.6; font-weight: 300; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: 1fr 1fr; } .job-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .benefits-grid { grid-template-columns: repeat(3,1fr); } }

/* ─────────────────────────────────────────
   INSIGHTS / BLOG PAGE
───────────────────────────────────────── */
.blog-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.blog-btn {
  padding: 7px 16px; border-radius: 3px; border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--text2);
  background: none; cursor: pointer; transition: all 0.2s; font-family: var(--fb);
}
.blog-btn.active, .blog-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.blog-featured {
  display: grid; gap: 0; background: white;
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; margin-bottom: 40px;
}
.blog-featured-img { overflow: hidden; background: var(--off2); }
.blog-featured-img img { width: 100%; height: 280px; object-fit: contain; padding: 8px; }
.blog-featured-body { padding: 28px 24px; }
.blog-featured-body h2 { font-family: var(--fh); font-size: clamp(20px, 4vw, 28px); font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.blog-featured-body p { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.blog-meta { display: flex; gap: 14px; margin-bottom: 14px; font-size: 12.5px; color: var(--text3); }
.blog-grid { display: grid; gap: 20px; }
.blog-card { background: white; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,51,102,0.10); transform: translateY(-4px); }
.blog-card-img { overflow: hidden; position: relative; background: var(--off2); }
.blog-card-img img { width: 100%; height: 200px; object-fit: contain; padding: 6px; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 18px; }
.blog-card-body h3 { font-family: var(--fh); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.blog-card-body p { font-size: 13px; color: var(--text2); line-height: 1.7; margin-bottom: 12px; font-weight: 300; }
.blog-author { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.blog-author-left { display: flex; align-items: center; gap: 8px; }
.blog-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.blog-author-name { font-size: 12px; color: var(--text3); }
.blog-read-time { font-size: 11px; color: var(--text3); }
@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) {
  .blog-grid { grid-template-columns: repeat(3,1fr); }
  .blog-featured { grid-template-columns: 1fr 1fr; }
  .blog-featured-img img { height: 100%; min-height: 320px; }
}

/* ─────────────────────────────────────────
   BLOG DETAIL PAGE
───────────────────────────────────────── */
.article-tag-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.article-h1 { font-family: var(--fh); font-size: clamp(26px, 6vw, 46px); font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 16px; }
.article-meta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.article-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text3); }
.article-banner { width: 100%; border-radius: 8px; overflow: hidden; margin-bottom: 32px; }
.article-banner img { width: 100%; height: auto; max-height: 520px; object-fit: contain; border-radius: 8px; }
.article-body h2 { font-family: var(--fh); font-size: 24px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.article-body h3 { font-family: var(--fh); font-size: 19px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.article-body p { font-size: 15px; color: var(--text2); line-height: 1.88; margin-bottom: 16px; font-weight: 300; overflow-wrap: break-word; word-break: break-word; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 16px; }
.article-body li { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 6px; font-weight: 300; }
.article-body a { color: var(--blue); word-break: break-all; }
.article-body a:hover { color: var(--orange); }
.article-body img { border-radius: 6px; margin: 16px 0; max-width: 100%; height: auto; }
.article-body blockquote { border-left: 4px solid var(--orange); padding: 12px 20px; background: var(--off); border-radius: 0 6px 6px 0; margin: 20px 0; font-style: italic; color: var(--text); }
.article-body table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; overflow-x: auto; display: block; }
.article-body table th, .article-body table td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.article-body table th { background: var(--off2); font-weight: 600; color: var(--navy); }
.article-body iframe { max-width: 100%; }

/* ─── Blog Layout (content + sidebar) ─── */
.blog-layout { display: grid; gap: 40px; }
.blog-layout > div:first-child { min-width: 0; overflow: hidden; }
@media (min-width: 960px) { .blog-layout { grid-template-columns: 1fr 320px; } }
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-box { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.sidebar-box h4 { font-family: var(--fh); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--off2); }
.sidebar-cat-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.sidebar-cat-list li a { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14px; color: var(--text2); text-decoration: none; border-bottom: 1px solid var(--off2); transition: color .2s; }
.sidebar-cat-list li:last-child a { border-bottom: none; }
.sidebar-cat-list li a:hover { color: var(--orange); }
.sidebar-cat-list li a span { font-size: 12px; background: var(--off2); padding: 2px 8px; border-radius: 10px; color: var(--text3); }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag { font-size: 12px; padding: 5px 12px; border-radius: 3px; background: var(--off2); color: var(--text2); text-decoration: none; transition: all .2s; font-weight: 500; }
.sidebar-tag:hover { background: var(--navy); color: #fff; }
.sidebar-mini-card { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--off2); }
.sidebar-mini-card:last-child { border-bottom: none; }
.sidebar-mini-card img { width: 70px; height: 52px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sidebar-mini-card .smc-body { flex: 1; min-width: 0; }
.sidebar-mini-card .smc-body h5 { font-family: var(--fh); font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 4px; }
.sidebar-mini-card .smc-body h5 a { color: inherit; text-decoration: none; }
.sidebar-mini-card .smc-body h5 a:hover { color: var(--orange); }
.sidebar-mini-card .smc-body span { font-size: 11px; color: var(--text3); }

/* ─── Comments ─── */
.comment-list { display: flex; flex-direction: column; gap: 20px; }
.comment-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.comment-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.comment-info { flex: 1; }
.comment-info strong { font-size: 14px; color: var(--navy); display: block; }
.comment-info span { font-size: 12px; color: var(--text3); }
.comment-item p { font-size: 14px; color: var(--text2); line-height: 1.7; }
.comment-form textarea { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 14px; font-family: var(--fb); font-size: 14px; resize: vertical; min-height: 100px; transition: border-color .2s; }
.comment-form textarea:focus { outline: none; border-color: var(--blue); }
.comment-form input { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-family: var(--fb); font-size: 14px; transition: border-color .2s; }
.comment-form input:focus { outline: none; border-color: var(--blue); }

/* ─────────────────────────────────────────
   PRICING PAGE
───────────────────────────────────────── */
.pricing-grid { display: grid; gap: 24px; }
.price-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 32px 24px; position: relative; transition: box-shadow 0.3s, transform 0.3s; }
.price-card:hover { box-shadow: 0 12px 40px rgba(0,51,102,0.14); transform: translateY(-5px); }
.price-card.featured { border-color: var(--navy); border-width: 2px; }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.price-name { font-family: var(--fh); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.price-amount { font-family: var(--fh); font-size: 38px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: 16px; font-weight: 400; color: var(--text3); }
.price-tagline { font-size: 13px; color: var(--text3); margin-bottom: 20px; font-weight: 300; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text2); font-weight: 300; line-height: 1.5; }
.price-features li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: var(--navy); flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

/* ─────────────────────────────────────────
   ABOUT PAGE — TIMELINE
───────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline-track { position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); border: 3px solid white; box-shadow: 0 0 0 2px var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; align-self: flex-start; }
.timeline-content h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-content p { font-size: 13.5px; color: var(--text2); line-height: 1.7; font-weight: 300; }
.timeline-year { font-family: var(--fh); font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; margin-bottom: 4px; }
@media (min-width: 960px) {
  .timeline { flex-direction: row; gap: 0; }
  .timeline-track { left: 0; right: 0; top: 15px; bottom: auto; width: auto; height: 2px; }
  .timeline-item { flex-direction: column; align-items: flex-start; padding-bottom: 0; padding-right: 24px; flex: 1; }
  .timeline-item:last-child { padding-right: 0; }
}

/* ─────────────────────────────────────────
   SERVICES DETAIL PAGE
───────────────────────────────────────── */
.svc-detail { padding: 72px 20px; }
.svc-detail:nth-child(even) { background: var(--off); }
.svc-inner { display: grid; gap: 40px; }
.svc-content h2 { font-family: var(--fh); font-size: clamp(24px, 5vw, 36px); font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.svc-content p { font-size: 14.5px; color: var(--text2); line-height: 1.82; font-weight: 300; margin-bottom: 20px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.svc-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text2); line-height: 1.6; }
.svc-list li strong { color: var(--navy); font-weight: 600; }
.chk { width: 20px; height: 20px; border-radius: 50%; background: var(--navy); flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
/* Service section visual — supports both <img> and fallback SVG */
.svc-ico-wrap {
  width: 100%; height: 260px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,51,102,0.18);
}
.svc-ico-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.svc-ico-wrap:hover img { transform: scale(1.04); }
/* Subtle vignette over the image */
.svc-ico-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,26,58,0.18) 0%, rgba(0,87,184,0.14) 100%);
  pointer-events: none;
  border-radius: inherit;
}
.svc-ico-wrap svg { width: 80px; height: 80px; stroke: rgba(255,255,255,0.3); fill: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }
@media (min-width: 640px) { .svc-detail { padding: 80px 32px; } }
@media (min-width: 960px) {
  .svc-detail { padding: 88px 64px; }
  .svc-inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
  .svc-ico-wrap { height: 420px; }
  .svc-detail:nth-child(even) .svc-inner { direction: rtl; }
  .svc-detail:nth-child(even) .svc-inner > * { direction: ltr; }
}
@media (min-width: 1200px) { .svc-detail { padding: 100px 80px; } }

/* ─────────────────────────────────────────
   THANK YOU PAGE
───────────────────────────────────────── */
.thankyou-hero {
  text-align: center; padding: 120px 20px 72px;
  background: var(--navy); position: relative; overflow: hidden;
}
.thankyou-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(0,87,184,0.4) 0%, transparent 70%); pointer-events: none; }
.thankyou-ico {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
}
.thankyou-ico svg { width: 36px; height: 36px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.thankyou-hero h1 { font-family: var(--fh); font-size: clamp(32px, 7vw, 56px); font-weight: 700; color: white; margin-bottom: 14px; position: relative; z-index: 1; }
.thankyou-hero p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; font-weight: 300; max-width: 480px; margin: 0 auto 8px; position: relative; z-index: 1; }
.thankyou-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 28px; position: relative; z-index: 1; }
.next-steps-grid { display: grid; gap: 24px; }
.next-step { text-align: center; padding: 32px 24px; background: white; border: 1px solid var(--border); border-radius: 8px; }
.next-step-n { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: white; font-family: var(--fh); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.next-step h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.next-step p { font-size: 13.5px; color: var(--text2); line-height: 1.7; font-weight: 300; }
@media (min-width: 640px) { .next-steps-grid { grid-template-columns: repeat(3,1fr); } }

/* ─────────────────────────────────────────
   ERROR PAGES (404 / 500)
───────────────────────────────────────── */
.error-hero {
  text-align: center; padding: 120px 20px 72px;
  background: var(--navy); position: relative; overflow: hidden;
}
.error-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(0,87,184,0.4) 0%, transparent 70%); pointer-events: none; }
.error-ico {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
}
.error-ico svg { width: 36px; height: 36px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.error-hero h1 { font-family: var(--fh); font-size: clamp(48px, 10vw, 96px); font-weight: 700; color: white; margin-bottom: 14px; position: relative; z-index: 1; letter-spacing: 6px; }
.error-hero p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; font-weight: 300; max-width: 480px; margin: 0 auto 8px; position: relative; z-index: 1; }
.error-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 28px; position: relative; z-index: 1; }

/* ─────────────────────────────────────────
   SITEMAP PAGE
───────────────────────────────────────── */
.sitemap-grid { display: grid; gap: 32px; }
.sitemap-col h3 { font-family: var(--fh); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--orange); display: inline-block; }
.sitemap-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sitemap-col ul a { font-size: 14px; color: var(--text2); font-weight: 300; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.sitemap-col ul a::before { content: '→'; color: var(--orange); font-size: 12px; flex-shrink: 0; }
.sitemap-col ul a:hover { color: var(--blue); }
@media (min-width: 640px) { .sitemap-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .sitemap-grid { grid-template-columns: repeat(4,1fr); } }

/* ─────────────────────────────────────────
   UTILITY / LAYOUT CLASSES (shared)
───────────────────────────────────────── */
.section-pad { padding: 72px 20px; }
@media (min-width: 640px) { .section-pad { padding: 80px 32px; } }
@media (min-width: 960px) { .section-pad { padding: 96px 64px; } }
.bg-off { background: var(--off); }
.bg-navy { background: var(--navy); color: #fff; }
.text-center { text-align: center; }
.section-tag { display: inline-block; background: rgba(0,87,184,0.10); color: var(--blue); font-size: .78rem; font-weight: 700; padding: 5px 16px; border-radius: 20px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px; }
.bg-navy .section-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.section-header h2 { font-family: var(--fh); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.section-header h2 span { color: var(--orange); }
.bg-navy .section-header h2 { color: #fff; }
.section-header p { color: var(--text2); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.bg-navy .section-header p { color: rgba(255,255,255,0.6); }
.page-hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 18px; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); border-radius: 20px; font-size: .82rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.18); margin-bottom: 16px; }
.page-hero-badge i { color: var(--orange); }
.page-hero-text { max-width: 680px; }
.page-hero h1 span { color: var(--orange); }

/* CTA Box (dark sections) */
.cta-box h2 { font-family: var(--fh); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.cta-box h2 span { color: var(--orange); }
.cta-box p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.75; max-width: 640px; margin: 0 auto 28px; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 6px; font-family: var(--fh); font-weight: 700; font-size: .95rem; letter-spacing: .3px; text-decoration: none; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); transition: all .25s; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* =========================================================
   CITY-SERVICES PAGE
   ========================================================= */
.cs-hero-stats { display:flex; justify-content:center; gap:3rem; margin-top:2rem; flex-wrap:wrap; }
.cs-stat { text-align:center; }
.cs-stat-number { display:block; font-family:var(--fh); font-size:clamp(28px,6vw,44px); font-weight:800; color:var(--orange); }
.cs-stat-label { font-size:12px; color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:1px; }

.cs-services-grid { display:flex; flex-wrap:wrap; justify-content:center; gap:1rem; }
.cs-service-chip { display:flex; align-items:center; gap:0.6rem; background:white; padding:0.75rem 1.25rem; border-radius:12px; box-shadow:0 2px 8px rgba(0,0,0,0.06); font-size:0.95rem; font-weight:600; color:var(--navy); border:1px solid var(--off2); transition:transform 0.2s,box-shadow 0.2s; }
.cs-service-chip:hover { transform:translateY(-2px); box-shadow:0 4px 15px rgba(0,51,102,0.12); }
.cs-service-chip i { color:var(--orange); font-size:1.1rem; }
.cs-service-chip small { color:#777; font-weight:400; font-size:0.78rem; margin-left:0.3rem; }

.cs-region-block { margin-bottom:3rem; }
.cs-region-header { display:flex; align-items:center; gap:1rem; margin-bottom:1.5rem; padding-bottom:1rem; border-bottom:2px solid var(--off2); }
.cs-region-icon { width:50px; height:50px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:white; flex-shrink:0; }
.cs-region-header h3 { font-family:var(--fh); font-size:1.6rem; font-weight:700; color:var(--navy); margin:0; }
.cs-region-count { font-size:0.82rem; color:#888; display:block; }

.cs-city-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:1.5rem; }
.cs-city-card { background:white; padding:1.5rem; border-radius:16px; box-shadow:0 2px 12px rgba(0,0,0,0.05); border:1px solid var(--off2); transition:transform 0.3s,box-shadow 0.3s,border-color 0.3s; }
.cs-city-card:hover { transform:translateY(-4px); box-shadow:0 8px 30px rgba(0,51,102,0.1); border-color:var(--blue); }

.cs-city-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:0.5rem; }
.cs-city-top h4 { font-family:var(--fh); font-size:1.2rem; font-weight:700; color:var(--navy); margin:0; display:flex; align-items:center; gap:0.5rem; flex-wrap:wrap; }
.cs-city-state { font-size:0.78rem; color:#888; background:var(--off); padding:0.25rem 0.75rem; border-radius:20px; white-space:nowrap; }

.cs-branch-badge { display:inline-flex; align-items:center; gap:0.25rem; background:linear-gradient(135deg,#2ecc71,#27ae60); color:white; font-size:0.62rem; padding:0.2rem 0.5rem; border-radius:6px; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; }
.cs-static-badge { color:var(--orange); font-size:0.8rem; }

.cs-city-meta { margin-bottom:0.75rem; }
.cs-city-meta span { font-size:0.82rem; color:#888; }
.cs-city-meta i { color:var(--blue); margin-right:0.3rem; font-size:0.78rem; }

.cs-city-industries { display:flex; flex-wrap:wrap; gap:0.4rem; margin-bottom:0.75rem; }
.cs-tag { background:var(--off); color:#666; font-size:0.72rem; padding:0.2rem 0.6rem; border-radius:6px; white-space:nowrap; }
.cs-tag-more { background:rgba(0,87,184,0.08); color:var(--blue); font-weight:600; }

.cs-city-highlight { font-size:0.83rem; color:#777; line-height:1.55; margin-bottom:1rem; }

.cs-city-services { margin-bottom:0.75rem; }
.cs-city-services-label { display:block; font-size:0.78rem; font-weight:700; color:var(--navy); margin-bottom:0.5rem; }
.cs-city-services-label i { color:var(--orange); margin-right:0.3rem; }
.cs-city-service-links { display:flex; flex-wrap:wrap; gap:0.4rem; }
.cs-city-service-links a { display:inline-flex; align-items:center; gap:0.3rem; font-size:0.75rem; color:var(--blue); background:rgba(0,87,184,0.06); padding:0.28rem 0.55rem; border-radius:6px; text-decoration:none; border:1px solid transparent; transition:all 0.2s; }
.cs-city-service-links a:hover { background:var(--blue); color:white; border-color:var(--blue); }
.cs-city-service-links a i { font-size:0.65rem; }

.cs-city-areas { padding-top:0.75rem; border-top:1px solid var(--off2); }
.cs-areas-label { font-size:0.75rem; font-weight:700; color:var(--navy); margin-right:0.3rem; }
.cs-areas-label i { color:#e74c3c; margin-right:0.2rem; }
.cs-areas-text { font-size:0.75rem; color:#888; }

@media (max-width:640px) {
  .cs-hero-stats { gap:1.5rem; }
  .cs-city-grid { grid-template-columns:1fr; }
  .cs-region-header h3 { font-size:1.3rem; }
}

/* ─────────────────────────────────────────
   BACKWARD-COMPAT — city pages from 140326
───────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg,var(--blue),var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-badge {
  display:inline-block; padding:5px 16px;
  background:rgba(0,87,184,0.10); color:var(--blue);
  border-radius:20px; font-size:.82rem; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase; margin-bottom:12px;
}
.section-header { text-align:center; margin-bottom:40px; }
.section-title  { font-family:var(--fh); font-size:clamp(1.6rem,3vw,2.2rem); font-weight:700; color:var(--navy); margin-bottom:14px; }
.section-description { color:var(--text2); font-size:1rem; max-width:640px; margin:0 auto; }
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:22px; margin-top:32px;
}
.service-card {
  background:#fff; border:1px solid var(--border); border-radius:14px;
  padding:28px 24px; transition:all .3s ease;
  box-shadow:0 1px 4px rgba(0,0,0,.04);
}
.service-card:hover { box-shadow:0 6px 28px rgba(0,87,184,.10); transform:translateY(-3px); border-color:rgba(0,87,184,.25); }
.service-card.featured { background:linear-gradient(135deg,var(--navy),var(--blue)); color:#fff; }
.service-card.featured h3,.service-card.featured p { color:#fff; }
.service-icon { width:52px; height:52px; background:var(--bluelt); border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.service-icon i { font-size:1.4rem; color:var(--blue); }
.service-card.featured .service-icon { background:rgba(255,255,255,.15); }
.service-card.featured .service-icon i { color:#fff; }
.service-card h3 { font-family:var(--fh); font-size:1.2rem; font-weight:700; margin-bottom:8px; color:var(--navy); }
.service-card p { font-size:.93rem; color:var(--text2); line-height:1.6; }
.service-features { margin-top:14px; padding-left:0; list-style:none; }
.service-features li { font-size:.88rem; color:var(--text2); padding:4px 0 4px 20px; position:relative; }
.service-features li::before { content:'✓'; position:absolute; left:0; color:var(--blue); font-weight:700; }
/* Hero badge for old city pages */
.badge { display:inline-block; padding:6px 16px; background:rgba(255,255,255,.13); color:#fff; border-radius:20px; font-size:.82rem; font-weight:600; border:1px solid rgba(255,255,255,.25); margin-bottom:16px; }
.hero-title  { font-family:var(--fh); font-size:clamp(2rem,5vw,3rem); font-weight:700; color:#fff; line-height:1.2; margin-bottom:16px; }
.hero-description { font-size:1rem; color:rgba(255,255,255,.85); line-height:1.7; margin-bottom:24px; }
.hero-text { max-width:800px; }
.hero-content { display:flex; align-items:center; }
.hero-buttons { display:flex; flex-wrap:wrap; gap:14px; margin-top:8px; }
/* Bootstrap-style btns used in city pages */
.btn { display:inline-flex; align-items:center; gap:8px; padding:11px 24px; border-radius:6px; font-size:.97rem; font-weight:600; cursor:pointer; transition:all .2s; border:none; text-decoration:none; }
.btn-primary { background:var(--orange); color:#fff; }
.btn-primary:hover { background:#c94a08; transform:translateY(-1px); }
.btn-secondary { background:transparent; color:#fff; border:2px solid rgba(255,255,255,.5); }
.btn-secondary:hover { background:rgba(255,255,255,.12); border-color:#fff; }
.btn-lg { padding:13px 30px; font-size:1.03rem; }
/* Dark section */
.ent-dark { background:var(--navy3) !important; color:#cbd5e1; }
.ent-dark .section-title { color:#f1f5f9; }
.ent-dark .section-badge { background:rgba(0,87,184,.2); color:#93c5fd; }

/* ─────────────────────────────────────────
   TRUST SIGNALS GRID — city detail pages
───────────────────────────────────────── */
.trust-signals-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:24px; text-align:center;
}
@media (max-width:768px) {
  .trust-signals-grid { grid-template-columns:repeat(2,1fr); gap:16px; }
}

/* ─────────────────────────────────────────
   LEAD FORM ROW — city detail pages
───────────────────────────────────────── */
.lead-form-row {
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
@media (max-width:640px) {
  .lead-form-row { grid-template-columns:1fr; }
}

/* ─────────────────────────────────────────
   SERVICES-GRID — mobile responsive
───────────────────────────────────────── */
@media (max-width:640px) {
  .services-grid { grid-template-columns:1fr; }
}

/* ─────────────────────────────────────────
   MODAL SCROLL-LOCK — prevent layout shift
───────────────────────────────────────── */
body.modal-open {
  overflow:hidden;
  padding-right:var(--scrollbar-w,0px);
}