/* =========================================================
   MILESTONE CONSULTANT — Design System
   ========================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Brand Variables (Milestone Consultant) ---------- */
:root {
  /* Primary brand */
  --red:        #E63027;   /* Milestone Red — Pantone 185 C — primary */
  --red-dark:   #C8221A;   /* Hover state */
  --red-soft:   #FCE7E5;
  --orange:     #F58220;   /* Ascent Orange — Pantone 1495 C */
  --orange-soft:#FFEFDE;
  --blue:       #2BA9E0;   /* Horizon Blue — Pantone 299 C — tagline color */
  --blue-soft:  #DDF1FB;

  /* Neutrals */
  --ink:        #15171C;
  --charcoal:   #3A3F4B;
  --slate:      #4A4E69;
  --muted:      #6B7280;
  --border:     #E6E8EE;
  --cream:      #F7F8FA;
  --white:      #FFFFFF;

  /* Gradients */
  --gradient-warm: linear-gradient(135deg, #E63027 0%, #F58220 100%);
  --gradient-cool: linear-gradient(135deg, #2BA9E0 0%, #3A3F4B 100%);
  --gradient-hero: linear-gradient(180deg, #F7F8FA 0%, #FFFFFF 100%);

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(21,23,28,.05);
  --shadow-md:  0 4px 16px rgba(21,23,28,.06);
  --shadow-lg:  0 16px 48px rgba(21,23,28,.10);
  --shadow-red: 0 12px 28px rgba(230,48,39,.25);

  /* Type scale */
  --font-display: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container:  1240px;
  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
}

/* ---------- Horizontal Logo Lockup (icon + wordmark + tagline) ---------- */
.lockup-h {
  display: inline-flex;
  align-items: center;
  gap: var(--lh-gap, 8px);
  max-width: 100%;
  line-height: 0;
  text-decoration: none;
  --lh-w: 200px;
  --lh-word-scale: 1.2;
  --lh-icon-scale: 1.75;
}
.lockup-h .lh-icon {
  height: calc(var(--lh-w) / 10.69 * var(--lh-icon-scale));
  width: auto;
  display: block;
}
.lockup-h .lh-text {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.lockup-h .lh-word {
  width: calc(var(--lh-w) * var(--lh-word-scale));
  height: auto;
  display: block;
  max-width: 100%;
}
.lockup-h .lh-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: max(8px, calc(var(--lh-w) * 0.042));
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--blue);
  line-height: 1;
  display: block;
}
.lockup-h.on-red  .lh-tag,
.lockup-h.on-dark .lh-tag { color: #fff; }
.lockup-h.lh-sm { --lh-w: 150px; }
.lockup-h.lh-lg { --lh-w: 260px; }
@media (max-width: 900px) {
  .lockup-h { --lh-w: 170px; }
}
@media (max-width: 540px) {
  .lockup-h { --lh-w: 140px; --lh-gap: 6px; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; }

p { color: var(--slate); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 64px 0; }
@media (max-width: 768px) { section { padding: 44px 0; } }
@media (max-width: 540px) { section { padding: 36px 0; } }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--red);
}

.section-header { max-width: 720px; margin-bottom: 32px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { margin-top: 12px; font-size: 1.05rem; }
@media (max-width: 768px) { .section-header { margin-bottom: 24px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-ghost {
  color: var(--red);
  padding: 14px 0;
}
.btn-ghost:hover { gap: 14px; }
.btn-arrow {
  width: 18px; height: 18px;
  transition: transform .2s;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 78px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { display: none; } /* lockup carries the wordmark */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color .15s;
  position: relative;
}
.nav-links a:hover { color: var(--red); }
.nav-cta { padding: 10px 22px; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; color: var(--ink); }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links.open .nav-cta { margin-top: 12px; border: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 96px;
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,48,39,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,168,232,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2);
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-trust-item .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.hero-trust-item .lbl {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.hero-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-card-1 { top: 8%; left: -2%; animation: float 6s ease-in-out infinite; }
.hero-card-2 { top: 40%; right: -4%; animation: float 6s ease-in-out infinite 1.5s; }
.hero-card-3 { bottom: 8%; left: 10%; animation: float 6s ease-in-out infinite 3s; }
.hero-card .icon-red    { background: var(--red-soft);    color: var(--red); }
.hero-card .icon-orange { background: var(--orange-soft); color: var(--orange); }
.hero-card .icon-blue   { background: var(--blue-soft);   color: var(--blue); }
.hero-card strong { display: block; color: var(--ink); font-weight: 600; }
.hero-card span { color: var(--muted); font-size: 0.8rem; }

.hero-circle {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: grid;
  place-items: center;
}
.hero-circle::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(230,48,39,.3);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.hero-circle svg { width: 50%; color: var(--white); opacity: .95; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .hero-trust { gap: 24px; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-strip h3 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 6px;
}
.trust-strip h3 span { color: var(--orange); }
.trust-strip p { color: rgba(255,255,255,.6); font-size: 0.9rem; }
@media (max-width: 700px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ---------- Services ---------- */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--red-soft);
  color: var(--red);
}
.service-card:nth-child(2) .icon { background: var(--orange-soft); color: var(--orange); }
.service-card:nth-child(3) .icon { background: var(--blue-soft);   color: var(--blue); }
.service-card:nth-child(4) .icon { background: var(--red-soft);    color: var(--red); }
.service-card:nth-child(5) .icon { background: var(--orange-soft); color: var(--orange); }
.service-card h3 { font-size: 1.25rem; }
.service-card p { font-size: 0.95rem; flex-grow: 1; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap .2s;
}
.service-card:hover .learn-more { gap: 12px; }
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Why Choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-visual {
  position: relative;
  background: var(--gradient-warm);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.why-visual::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.why-visual h3 { color: var(--white); font-size: 2rem; margin-bottom: 20px; position: relative; z-index: 1; }
.why-visual p { color: rgba(255,255,255,.85); position: relative; z-index: 1; margin-bottom: 32px; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; z-index: 1; }
.why-stat .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; }
.why-stat .lbl { font-size: 0.9rem; opacity: .85; }

.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}
.why-item:hover { border-color: var(--red); transform: translateX(4px); }
.why-item .ico {
  width: 40px; height: 40px;
  background: var(--red-soft);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--red);
  flex-shrink: 0;
}
.why-item h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.why-item p { font-size: 0.9rem; color: var(--muted); }

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Process ---------- */
.process { background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-step .num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: 1.25rem;
}
.process-step:nth-child(1) .num { background: var(--red); color: var(--white); }
.process-step h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } .process-grid::before { display: none; } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Districts (map) ---------- */
.districts {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.districts::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(247,127,0,.1) 0%, transparent 60%);
  pointer-events: none;
}
.districts h2 { color: var(--white); }
.districts .eyebrow { color: var(--orange); }
.districts .eyebrow::before { background: var(--orange); }
.districts p { color: rgba(255,255,255,.7); }
.district-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.district-pill {
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,.85);
  transition: all .2s;
  cursor: pointer;
}
.district-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.district-pill.featured {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  font-weight: 600;
}
@media (max-width: 900px) { .district-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .district-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Industries ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
}
.industry-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.industry-card .ico {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  display: grid; place-items: center;
  background: var(--cream);
  border-radius: 12px;
  color: var(--red);
}
.industry-card span { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); }
@media (max-width: 1000px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  position: absolute;
  top: 20px; right: 24px;
  opacity: .15;
}
.testimonial-stars {
  color: var(--orange);
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial p {
  color: var(--charcoal);
  font-size: 0.98rem;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: grid; place-items: center;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-author .name { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.testimonial-author .role { font-size: 0.85rem; color: var(--muted); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-display);
  transition: color .2s;
}
.faq-q:hover { color: var(--red); }
.faq-q .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  transition: all .2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner { padding: 0 0 24px; color: var(--slate); font-size: 0.98rem; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient-warm);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-section::before { width: 300px; height: 300px; top: -150px; left: -100px; }
.cta-section::after  { width: 400px; height: 400px; bottom: -200px; right: -150px; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; position: relative; z-index: 1; }
.cta-section .btn {
  background: var(--white);
  color: var(--red);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}
.cta-section .btn:hover { background: var(--ink); color: var(--white); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .lockup-h { margin-bottom: 24px; --lh-w: 200px; }
.footer-brand .lockup-h .lh-tag { color: rgba(255,255,255,.85); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 0.9rem; }
.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
  transition: color .15s;
}
.footer ul a:hover { color: var(--orange); }
.footer-branch {
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-branch strong { color: var(--white); display: block; margin-bottom: 4px; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,.6); margin-left: 24px; }
.footer-bottom a:hover { color: var(--orange); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ========================================================
   SUB-PAGES (Service / District)
   ======================================================== */

/* Sub-hero (compact) */
.sub-hero {
  background: var(--cream);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.sub-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230,48,39,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span.sep { opacity: .5; }
.breadcrumb span.current { color: var(--ink); font-weight: 500; }

.sub-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.sub-hero h1 { margin-bottom: 16px; }
.sub-hero p.lead { font-size: 1.1rem; color: var(--slate); max-width: 640px; }
.sub-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.sub-hero-meta-item {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.9rem;
}
.sub-hero-meta-item .ico {
  width: 36px; height: 36px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.sub-hero-meta-item strong { display: block; color: var(--ink); font-size: 0.95rem; }
.sub-hero-meta-item span { color: var(--muted); font-size: 0.85rem; }
@media (max-width: 900px) { .sub-hero-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Two-column content layout */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.content-split h2 { margin-bottom: 20px; }
.content-split p { font-size: 1.02rem; margin-bottom: 16px; }
@media (max-width: 900px) { .content-split { grid-template-columns: 1fr; gap: 32px; } }

/* Deliverable list */
.deliverable-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.deliverable {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
}
.deliverable:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.deliverable .check {
  width: 32px; height: 32px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.deliverable strong { display: block; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
.deliverable p { font-size: 0.92rem; color: var(--slate); margin: 0; }

/* Document grid */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.doc-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: all .2s;
}
.doc-pill:hover { background: var(--red-soft); border-color: var(--red); color: var(--ink); }
.doc-pill .ico { color: var(--red); flex-shrink: 0; }
@media (max-width: 900px) { .doc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .doc-grid { grid-template-columns: 1fr; } }

/* Area card grid (for district pages) */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.area-tag {
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: all .2s;
}
.area-tag:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }
@media (max-width: 700px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }

/* Branch card (contact mini) */
.branch-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}
.branch-card h3 { color: var(--white); margin-bottom: 12px; }
.branch-card p { color: rgba(255,255,255,.8); margin-bottom: 24px; }
.branch-card .branch-block {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 24px;
  border-radius: var(--radius);
}
.branch-card .branch-block strong { display: block; color: var(--orange); font-size: 0.85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.branch-card .branch-block address { font-style: normal; color: rgba(255,255,255,.85); font-size: 0.95rem; line-height: 1.7; }
@media (max-width: 800px) { .branch-card { grid-template-columns: 1fr; gap: 24px; padding: 32px; } }

/* ========================================================
   PT-SPECIFIC COMPONENTS
   ======================================================== */

/* Service family badge (Establishment vs Payroll) */
.family-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.family-badge.establishment { background: var(--blue-soft); color: var(--blue); }
.family-badge.payroll       { background: var(--red-soft);  color: var(--red); }
.family-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* Dual-family services overview */
.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.family-block {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.family-block:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.family-block h3 { font-size: 1.5rem; margin-bottom: 8px; }
.family-block .family-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px; display: block;
}
.family-block > p { font-size: 0.95rem; color: var(--slate); margin-bottom: 20px; }
.family-block ul li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.family-block ul li:last-child { border-bottom: none; }
.family-block ul li .check {
  width: 20px; height: 20px;
  background: var(--red-soft); color: var(--red);
  border-radius: 50%; display: grid; place-items: center;
  flex-shrink: 0;
}
@media (max-width: 900px) { .family-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Multi-district problem visualization */
.problem-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.problem-visual {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-height: 360px;
}
.problem-visual .hq-node {
  width: 130px;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.problem-visual .hq-node small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 2px;
}
.problem-visual .district-nodes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
}
.problem-visual .district-node {
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  font-size: 0.8rem;
  position: relative;
}
.problem-visual .district-node strong { display: block; color: var(--ink); font-weight: 600; }
.problem-visual .district-node .auth { color: var(--red); font-size: 0.7rem; margin-top: 2px; font-weight: 600; }
.problem-visual .lines-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.problem-content h2 { margin-bottom: 20px; }
.problem-content p { margin-bottom: 16px; font-size: 1.02rem; }
.problem-content .compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.problem-content .compare-item {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}
.problem-content .compare-item.pt { border-color: var(--red); background: var(--red-soft); }
.problem-content .compare-item h4 {
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.95rem; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.problem-content .compare-item.pt h4 { color: var(--red); }
.problem-content .compare-item p { font-size: 0.88rem; margin: 0; color: var(--charcoal); }
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; gap: 32px; } }

/* PT Slab table */
.slab-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.slab-table thead { background: var(--ink); }
.slab-table thead th {
  padding: 18px 24px;
  text-align: left;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.slab-table tbody tr { border-bottom: 1px solid var(--border); }
.slab-table tbody tr:last-child { border-bottom: none; }
.slab-table tbody td {
  padding: 18px 24px;
  font-size: 1rem;
  color: var(--charcoal);
}
.slab-table tbody td:first-child { font-weight: 500; color: var(--ink); }
.slab-table tbody td.amount { font-weight: 700; color: var(--red); font-size: 1.05rem; }
.slab-table tbody td.amount.nil { color: #22C55E; }
.slab-table tfoot {
  background: var(--red-soft);
}
.slab-table tfoot td {
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--red);
}

/* Authority map grid */
.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.authority-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all .2s;
}
.authority-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.authority-card .code {
  display: inline-block;
  padding: 4px 10px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.authority-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.authority-card p { font-size: 0.85rem; color: var(--muted); margin: 0; }
@media (max-width: 1000px) { .authority-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .authority-grid { grid-template-columns: 1fr; } }

/* Penalty / warning cards */
.penalty-section {
  background: linear-gradient(135deg, #2B1B1F 0%, #1A1A2E 100%);
  color: var(--white);
}
.penalty-section h2 { color: var(--white); }
.penalty-section .eyebrow { color: #FFB4BC; }
.penalty-section .eyebrow::before { background: var(--red); }
.penalty-section > .container > .section-header p { color: rgba(255,255,255,.7); }
.penalty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.penalty-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(230,48,39,.25);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .25s;
}
.penalty-card:hover {
  border-color: var(--red);
  background: rgba(230,48,39,.08);
  transform: translateY(-4px);
}
.penalty-card .ico {
  width: 44px; height: 44px;
  background: rgba(230,48,39,.18);
  color: var(--red);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.penalty-card .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.penalty-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
}
.penalty-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  margin: 0;
}
@media (max-width: 900px) { .penalty-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .penalty-grid { grid-template-columns: 1fr; } }

/* Use-case cards (Who needs PT) */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.usecase-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all .25s;
}
.usecase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.usecase-card .tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.usecase-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.usecase-card p {
  font-size: 0.92rem;
  color: var(--slate);
  margin: 0;
}
.usecase-card .examples {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.usecase-card .examples strong { color: var(--charcoal); }
@media (max-width: 900px) { .usecase-grid { grid-template-columns: 1fr; } }

/* ========================================================
   MOBILE ENHANCEMENTS
   ======================================================== */

/* Floating Call button — mobile only */
.mobile-call-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(230, 48, 39, 0.45);
  z-index: 99;
  text-decoration: none;
  animation: callPulse 2.4s infinite;
}
.mobile-call-fab:hover {
  background: var(--red-dark);
  transform: scale(1.05);
  transition: transform .15s, background .15s;
}
@media (max-width: 768px) {
  .mobile-call-fab { display: flex; }
  .mobile-call-fab + .footer-fab-spacer { height: 80px; }
}
@keyframes callPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(230, 48, 39, 0.45); }
  50% { box-shadow: 0 6px 20px rgba(230, 48, 39, 0.45), 0 0 0 10px rgba(230, 48, 39, 0.15); }
}

/* Floating WhatsApp button — all devices */
.whatsapp-fab {
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  z-index: 100;
  text-decoration: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .25));
}
.whatsapp-fab img {
  width: 100%;
  height: 100%;
  display: block;
}
.whatsapp-fab:hover {
  transform: scale(1.05);
  transition: transform .15s;
}
.whatsapp-fab-label {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 9px 15px;
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}
.whatsapp-fab-label::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
}
/* On mobile the call FAB also shows at bottom-right — stack WhatsApp above it */
@media (max-width: 768px) {
  .whatsapp-fab { bottom: 88px; }
}
/* Hide the text label on small screens to avoid crowding */
@media (max-width: 480px) {
  .whatsapp-fab-label { display: none; }
}

/* Mobile: ensure all tap targets meet 44px minimum */
@media (max-width: 768px) {
  .nav-links a { padding: 14px 0; min-height: 44px; display: flex; align-items: center; }
  .btn { min-height: 44px; }
  .area-tag, .district-pill { padding: 12px 16px; min-height: 44px; }
  .faq-q { padding: 18px 0; min-height: 44px; }
  .footer ul a { padding: 8px 0; display: inline-block; }
}

/* Mobile: tighter sub-hero meta cards on small screens */
@media (max-width: 540px) {
  .sub-hero-grid { gap: 24px !important; }
  .sub-hero h1 { font-size: clamp(1.85rem, 7vw, 2.3rem); }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
}

/* ========================================================
   MODERN MOBILE / ACCESSIBILITY STANDARDS
   ======================================================== */

/* Respect user's motion preference (WCAG 2.1) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .mobile-call-fab { animation: none; }
}

/* Prevent iOS double-tap zoom on interactive elements */
.btn, .nav-links a, .faq-q, .district-pill, .area-tag,
.service-card, .industry-card, .usecase-card, .deliverable,
.mobile-call-fab, .nav-toggle {
  touch-action: manipulation;
}

/* Prevent iOS auto-zoom on form input focus (requires font-size ≥ 16px) */
input, select, textarea {
  font-size: 16px;
}

/* Better long-form readability on mobile */
@media (max-width: 768px) {
  body { font-size: 16px; line-height: 1.6; }
  p { font-size: 1rem; }
}

/* Table mobile wrapper */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0;
}
.table-wrap table { min-width: 100%; }

/* Ensure hero visual decorations don't cause horizontal overflow on small screens */
@media (max-width: 540px) {
  .hero::before, .hero::after,
  .sub-hero::before, .sub-hero::after,
  .districts::before, .cta-section::before, .cta-section::after {
    display: none;
  }
}

/* Smooth scroll respecting reduced motion (already handled in :reduce above) */
@supports (scroll-behavior: smooth) {
  html { scroll-behavior: smooth; }
}

/* Modern image rendering */
img { height: auto; max-width: 100%; }

/* Mobile-friendly form fields */
@media (max-width: 540px) {
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="number"], select, textarea {
    width: 100% !important;
    padding: 14px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
  }
}

/* Prevent floating call button covering footer links on mobile */
@media (max-width: 768px) {
  .footer-bottom { padding-bottom: 80px; }
}

/* ========================================================
   HOMEPAGE — NEW HERO SERVICE GRID (replaces floating cards)
   ======================================================== */
.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.hero-service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.hero-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--card-color, var(--red));
}
.hero-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--card-color, var(--red));
}
.hero-service-card svg {
  width: 28px;
  height: 28px;
  color: var(--card-color, var(--red));
  background: var(--card-bg, var(--red-soft));
  padding: 6px;
  border-radius: 8px;
  box-sizing: content-box;
}
.hero-service-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.hero-service-card span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .hero-services-grid { max-width: 100%; margin: 0 auto; }
}
@media (max-width: 540px) {
  .hero-services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-service-card { padding: 14px 12px; }
  .hero-service-card strong { font-size: 0.9rem; }
  .hero-service-card span { font-size: 0.75rem; }
}

/* ========================================================
   NAV LOGO BUMP — Make logo bigger & more prominent
   ======================================================== */
.nav .nav-logo.lockup-h {
  --lh-w: 240px;
  --lh-icon-scale: 1.85;
}
.nav-inner { min-height: 88px; padding: 14px 24px; }

@media (max-width: 900px) {
  .nav .nav-logo.lockup-h { --lh-w: 200px; }
  .nav-inner { min-height: 76px; }
}
@media (max-width: 540px) {
  .nav .nav-logo.lockup-h { --lh-w: 160px; --lh-gap: 6px; }
  .nav-inner { min-height: 68px; padding: 12px 20px; }
}

/* ========================================================
   HERO TIGHTER — Smaller H1, less vertical padding
   ======================================================== */
.hero { padding: 56px 0 72px; }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); line-height: 1.12; }
.hero p.lead { font-size: 1.05rem; max-width: 540px; }
.hero-ctas { margin-bottom: 32px; }
.hero-trust { gap: 32px; }
.hero-trust-item .num { font-size: 1.5rem; }

@media (max-width: 900px) {
  .hero { padding: 40px 0 56px; }
  .hero h1 { font-size: clamp(1.85rem, 7vw, 2.5rem); }
}
@media (max-width: 540px) {
  .hero { padding: 32px 0 48px; }
  .hero h1 { font-size: clamp(1.65rem, 8vw, 2.15rem); }
  .hero p.lead { font-size: 0.98rem; }
}

/* ========================================================
   GLOBAL SPACING TIGHTENING — reduce excess vertical gaps
   ======================================================== */

/* Trust strip lighter padding */
.trust-strip { padding: 40px 0 !important; }
@media (max-width: 768px) {
  .trust-strip { padding: 32px 0 !important; }
}

/* CTA section tighter */
.cta-section { padding: 56px 0; }
@media (max-width: 768px) { .cta-section { padding: 40px 0; } }

/* Footer top padding tighter */
.footer { padding: 56px 0 32px; }
@media (max-width: 768px) { .footer { padding: 44px 0 24px; } }

/* Sub-hero (used on inner pages) tighter */
.sub-hero { padding: 48px 0 56px; }
@media (max-width: 768px) { .sub-hero { padding: 36px 0 44px; } }

/* Hero — already tight, just re-confirm */
.hero { padding: 48px 0 56px; }
@media (max-width: 900px) { .hero { padding: 36px 0 48px; } }
@media (max-width: 540px) { .hero { padding: 28px 0 36px; } }

/* When section-header has only eyebrow + p (no h2), pull paragraph closer */
.section-header > .eyebrow + p { margin-top: 14px; }
