/* ================================================================
   NEC Solutions LLC — Master Stylesheet
   Design System: Blue #2563eb / Navy #0f172a / White #ffffff
   Font: Barlow Condensed (headings) + Barlow (body)
   ================================================================ */

:root {
  --blue:        #1a4fd8;
  --blue-acc:    #2563eb;
  --blue-mid:    #3b82f6;
  --blue-lt:     #60a5fa;
  --blue-pale:   #dbeafe;
  --navy:        #060d1a;
  --navy-mid:    #0f172a;
  --dark:        #1e293b;
  --white:       #ffffff;
  --g50:         #f8fafc;
  --g100:        #f1f5f9;
  --g200:        #e2e8f0;
  --g400:        #94a3b8;
  --g600:        #475569;
  --g700:        #334155;
  --orange:      #fb923c;
  --green:       #22c55e;

  --fh: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --fb: 'Barlow', 'Inter', system-ui, sans-serif;

  --mw:   1340px;
  --px:   clamp(1rem, 3.5vw, 3rem);

  --sh-sm:  0 1px 4px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --sh-md:  0 4px 16px rgba(0,0,0,.09);
  --sh-lg:  0 8px 36px rgba(0,0,0,.13);
  --sh-xl:  0 20px 56px rgba(0,0,0,.18);
  --sh-blue: 0 6px 22px rgba(37,99,235,.38);

  --tr: .25s ease;
  --tr-fast: .15s ease;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--px);
}
.highlight { color: var(--blue-acc); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 7px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: var(--tr);
  white-space: nowrap;
  letter-spacing: .2px;
}
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; padding: 15px 20px; font-size: 16px; }

.btn-primary {
  background: var(--blue-acc);
  color: var(--white);
  border-color: var(--blue-acc);
}
.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: var(--sh-blue);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--blue-acc);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--blue-pale);
  transform: translateY(-1px);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue-acc);
  border-color: var(--blue-acc);
}
.btn-outline-blue:hover {
  background: var(--blue-pale);
  transform: translateY(-1px);
}
.btn-call {
  background: rgba(255,255,255,.92);
  color: var(--dark);
  border-color: rgba(0,0,0,.18);
}
.btn-call:hover {
  background: white;
  border-color: var(--blue-acc);
  color: var(--blue-acc);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--g200);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--tr);
}
.header.scrolled { box-shadow: var(--sh-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 74px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { width: 54px; height: 54px; flex-shrink: 0; }
.logo-text { line-height: 1; }
.logo-main {
  display: block;
  font-family: var(--fh);
  font-size: 21px;
  font-weight: 800;
  color: var(--navy-mid);
  letter-spacing: 2px;
}
.logo-sub {
  display: block;
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 600;
  color: var(--g600);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.logo-img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.footer-logo-box {
  background: white;
  border-radius: 10px;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-box .logo-img { width: 56px; height: 56px; }

/* Nav */
.nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 5px;
  transition: var(--tr-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--blue-acc);
  background: var(--g50);
}
.nav-link.active { font-weight: 600; }

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 10px;
  box-shadow: var(--sh-lg);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--tr);
}
.dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--dark);
  border-radius: 6px;
  transition: var(--tr-fast);
}
.dropdown li a:hover { background: var(--g50); color: var(--blue-acc); }

/* Mega menu */
.nav-item.has-mega { position: static; }
.mega-dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 600px; background: var(--white); border: 1px solid var(--g200); border-radius: 12px;
  box-shadow: var(--sh-lg); padding: 26px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px;
  opacity: 0; visibility: hidden; transition: var(--tr); z-index: 100;
}
.nav-item.has-mega:hover .mega-dropdown, .nav-item.has-mega:focus-within .mega-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega-col-title {
  font-family: var(--fh); font-size: 13px; font-weight: 800; color: var(--blue-acc);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-pale);
}
.mega-col { display: flex; flex-direction: column; gap: 1px; }
.mega-col a { display: block; padding: 7px 8px; border-radius: 6px; font-size: 14px; color: var(--g700); transition: var(--tr-fast); }
.mega-col a:hover { background: var(--g50); color: var(--blue-acc); }
.mega-cta {
  grid-column: 1 / -1; border-top: 1px solid var(--g200); padding-top: 16px; margin-top: 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.mega-cta-title { font-size: 13.5px; color: var(--g600); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--tr);
}
.header-phone:hover .phone-num { color: var(--blue-acc); }
.phone-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-acc);
  flex-shrink: 0;
}
.phone-icon-wrap svg { width: 18px; height: 18px; }
.phone-label { font-size: 11px; color: var(--g600); line-height: 1; margin-bottom: 2px; }
.phone-num { font-size: 16px; font-weight: 700; color: var(--navy-mid); line-height: 1; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--tr);
  transform-origin: left;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(1px, -1px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(1px, 1px); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  background: #d6eaff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    108deg,
    rgba(240,248,255,.94) 0%,
    rgba(235,245,255,.85) 28%,
    rgba(220,240,255,.52) 50%,
    rgba(210,235,255,.14) 66%,
    transparent 78%
  );
}
.hero-anns {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.eng-ann {
  position: absolute;
  font-family: var(--fb);
}
.ann-load {
  top: 9%;
  left: 37%;
  background: rgba(210,232,255,.92);
  border: 1px solid rgba(37,99,235,.22);
  border-left: 3px solid var(--blue-acc);
  border-radius: 4px;
  padding: 9px 14px;
  animation: annFloat 5s ease-in-out infinite;
}
.ann-ttl {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-acc);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ann-row {
  font-size: 10px;
  font-family: 'Courier New', monospace;
  color: var(--dark);
  line-height: 1.8;
}
.ann-struct {
  top: 34%;
  left: 50%;
  width: 76px;
  height: 76px;
  background: rgba(210,232,255,.88);
  border: 1.5px solid rgba(37,99,235,.38);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue-acc);
  text-transform: uppercase;
  animation: annPulse 3.5s ease-in-out infinite;
}
@keyframes annFloat {
  0%, 100% { transform: translateY(0); opacity: .9; }
  50% { transform: translateY(-5px); opacity: 1; }
}
@keyframes annPulse {
  0%, 100% { opacity: .85; box-shadow: 0 0 0 0 rgba(37,99,235,.2); }
  50% { opacity: 1; box-shadow: 0 0 0 6px rgba(37,99,235,.0); }
}
.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 365px;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-left { color: var(--dark); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-acc);
  border: none;
  color: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.2px;
  padding: 6px 16px;
  border-radius: 24px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy-mid);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.hero-h1 em { font-style: normal; color: var(--blue-acc); }

.hero-sub {
  font-size: 17px;
  color: var(--g700);
  line-height: 1.68;
  margin-bottom: 34px;
  max-width: 530px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-tagline {
  font-size: 13.5px;
  color: var(--g600);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-tagline::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--g400);
  flex-shrink: 0;
}

/* Form card */
.hero-form-col { align-self: center; }
.form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px 22px 26px;
  box-shadow: var(--sh-xl);
}
.form-card-title {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-mid);
  line-height: 1.2;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--g100);
}
.consult-form { display: flex; flex-direction: column; gap: 14px; }
.f-group { position: relative; }
.f-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--g400);
  pointer-events: none;
  flex-shrink: 0;
}
.f-group.textarea-g .f-icon { top: 13px; transform: none; }
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  padding: 11px 12px 11px 34px;
  border: 1.5px solid var(--g200);
  border-radius: 7px;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
  appearance: none;
}
.f-group textarea {
  height: 88px;
  resize: vertical;
  padding-top: 11px;
  line-height: 1.5;
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--g400); }
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--blue-acc);
  box-shadow: 0 0 0 3px rgba(37,99,235,.11);
}
.f-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--g400);
  width: 14px;
  height: 14px;
}
.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--g400);
  margin-top: 4px;
}
.form-secure svg { width: 13px; height: 13px; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--navy-mid);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--tr);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,.03); }
.trust-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  color: var(--blue-lt);
}
.trust-label { font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.2; }
.trust-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ================================================================
   SECTION SHARED
   ================================================================ */
.sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.sec-title {
  font-family: var(--fh);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--navy-mid);
  line-height: 1.1;
}
.sec-title.light { color: var(--white); }
.view-all {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-acc);
  transition: gap var(--tr);
  white-space: nowrap;
}
.view-all.light { color: var(--blue-lt); }
.view-all:hover { gap: 10px; }
.view-all svg { width: 16px; height: 16px; }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
  padding: 88px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* Left visual */
.about-canvas-wrap {
  position: relative;
  background: linear-gradient(135deg, #080f1e 0%, #0f1f42 55%, #162d5e 100%);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 0.88;
  box-shadow: 0 18px 52px rgba(37,99,235,.24), 0 4px 12px rgba(0,0,0,.18);
}
#aboutCanvas { width: 100%; height: 100%; display: block; }

.about-badge-overlay {
  position: absolute;
  top: 16px; right: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.state-pill {
  background: rgba(37,99,235,.72);
  color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 11px;
  border-radius: 4px;
  border: 1px solid rgba(96,165,250,.40);
  text-align: center;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy-mid);
  border-radius: 12px;
  margin-top: 14px;
  overflow: hidden;
}
.astat {
  padding: 18px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--tr);
}
.astat:last-child { border-right: none; }
.astat:hover { background: rgba(37,99,235,.18); }
.astat-num {
  display: block;
  font-family: var(--fh);
  font-size: 26px; font-weight: 800;
  color: var(--blue-lt);
  line-height: 1; margin-bottom: 5px;
}
.astat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.52);
  line-height: 1.35;
}

/* Civil / Site Engineering feature section */
.civil-feature-section { padding: 80px 0; background: linear-gradient(135deg, var(--navy-mid) 0%, #1e3a8a 100%); }
.civil-feature-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.civil-feature-inner .about-label { color: var(--blue-lt); }
.civil-feature-inner .sec-title { color: var(--white); justify-content: center; }
.civil-feature-desc { font-size: 15.5px; color: rgba(255,255,255,.68); line-height: 1.8; margin: 16px 0 22px; }
.civil-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.civil-tags span { background: rgba(255,255,255,.1); color: var(--white); font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 20px; }

/* Industries Served */
.industries-section { padding: 80px 0; background: var(--g50); }
.industries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 40px; }
.ind-card { background: var(--white); border: 1.5px solid var(--g200); border-radius: 12px; padding: 26px 14px; text-align: center; transition: border-color .2s, box-shadow .2s, transform .2s; }
.ind-card:hover { border-color: var(--blue-acc); box-shadow: var(--sh-md); transform: translateY(-3px); }
.ind-card svg { width: 36px; height: 36px; color: var(--blue-acc); margin: 0 auto 12px; }
.ind-title { font-size: 13.5px; font-weight: 700; color: var(--navy-mid); line-height: 1.3; }
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } .civil-tags span { font-size: 12px; } }

/* Right content */
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px; font-weight: 700;
  color: var(--blue-acc);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.about-label::before {
  content: '';
  width: 28px; height: 3px;
  background: var(--blue-acc);
  border-radius: 2px;
  flex-shrink: 0;
}
.about-h2 {
  font-family: var(--fh);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--navy-mid);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.chip {
  background: var(--blue-pale);
  color: var(--blue-acc);
  font-size: 12.5px; font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(37,99,235,.18);
}
.about-text p {
  font-size: 15.5px;
  color: var(--g700);
  line-height: 1.80;
  margin-bottom: 14px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--navy-mid); font-weight: 600; }
.about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-canvas-wrap { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 580px) {
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .astat:nth-child(2) { border-right: none; }
  .astat:nth-child(1),
  .astat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* ── Why Choose — redesigned ── */
.why-section { padding: 84px 0; background: var(--g50); }
.why-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-acc);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-label::before {
  content: '';
  width: 22px; height: 3px;
  background: var(--blue-acc);
  border-radius: 2px;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.why-card {
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.why-card:hover { border-color: var(--blue-acc); box-shadow: var(--sh-md); transform: translateY(-3px); }
.why-icon-wrap {
  width: 46px; height: 46px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-acc);
  flex-shrink: 0;
  margin-bottom: 16px;
  transition: background var(--tr), color var(--tr);
}
.why-icon-wrap svg { width: 22px; height: 22px; }
.why-card:hover .why-icon-wrap {
  background: var(--blue-acc);
  color: white;
}
.why-item-title { font-size: 16px; font-weight: 700; color: var(--navy-mid); line-height: 1.3; margin-bottom: 8px; }
.why-item-desc  { font-size: 14px; color: var(--g600); line-height: 1.65; font-weight: 400; }
.why-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 44px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } .why-footer { flex-direction: column; } }

/* ================================================================
   REVIEWS SECTION
   ================================================================ */
.reviews-section {
  padding: 88px 0;
  background: var(--g50);
  position: relative;
}
.reviews-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  padding: 14px 22px;
  box-shadow: var(--sh-sm);
}
.rating-score {
  font-family: var(--fh);
  font-size: 48px;
  font-weight: 800;
  color: var(--navy-mid);
  line-height: 1;
}
.rating-info { display: flex; flex-direction: column; gap: 5px; }
.stars-row { display: flex; gap: 3px; align-items: center; }
.rating-label { font-size: 12px; color: var(--g600); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--g600);
  background: var(--g100);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  padding: 28px 24px 20px;
  position: relative;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-acc);
}
.review-quote {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: .6;
  color: var(--blue-pale);
  font-weight: 700;
  flex-shrink: 0;
}
.review-text {
  font-size: 14.5px;
  color: var(--g700);
  line-height: 1.75;
  flex: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 14px;
  border-top: 1px solid var(--g100);
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name { font-size: 14px; font-weight: 700; color: var(--navy-mid); }
.reviewer-project { font-size: 11.5px; color: var(--g400); }
.review-stars-sm { display: flex; gap: 2px; flex-shrink: 0; }
.review-tag {
  display: inline-flex;
  background: var(--blue-pale);
  color: var(--blue-acc);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

/* Google CTA bar */
.google-cta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  padding: 22px 28px;
  box-shadow: var(--sh-sm);
  flex-wrap: wrap;
}
.google-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.google-cta-text strong { font-size: 15px; color: var(--navy-mid); }
.google-cta-text span   { font-size: 13.5px; color: var(--g600); }

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-top-row { flex-direction: column; align-items: flex-start; }
  .google-cta-bar { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section { padding: 80px 0; background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: 11px;
  padding: 22px 12px 18px;
  text-align: center;
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-acc);
}
.svc-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  color: var(--blue-acc);
}
.svc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-mid);
  line-height: 1.3;
  margin-bottom: 10px;
}
.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-acc);
  transition: gap var(--tr);
}
.svc-card:hover .svc-arrow { gap: 7px; }
.svc-arrow svg { width: 12px; height: 12px; }

/* ================================================================
   PROJECTS SECTION
   ================================================================ */
.projects-section {
  padding: 80px 0;
  background: var(--navy-mid);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.proj-card {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  cursor: pointer;
}
.proj-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.proj-card:hover .proj-thumb { transform: scale(1.07); }
.proj-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 14px 13px;
  background: linear-gradient(transparent, rgba(6,13,26,.9));
  color: var(--white);
}
.proj-name { font-size: 13px; font-weight: 700; line-height: 1.25; margin-bottom: 2px; }
.proj-type { font-size: 11px; color: rgba(255,255,255,.58); }
.proj-btn {
  position: absolute;
  top: 11px; right: 11px;
  width: 30px; height: 30px;
  background: var(--blue-acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--tr), transform var(--tr);
}
.proj-btn svg { width: 14px; height: 14px; }
.proj-card:hover .proj-btn { opacity: 1; transform: scale(1); }

/* project thumb backgrounds */
.pt-1 { background: linear-gradient(150deg, #12243f 0%, #1a4fd8 65%, #1e40af 100%); }
.pt-2 { background: linear-gradient(150deg, #2d3748 0%, #4a5568 55%, #718096 100%); }
.pt-3 { background: linear-gradient(150deg, #5c2d0a 0%, #92400e 55%, #b45309 100%); }
.pt-4 { background: linear-gradient(150deg, #0c2559 0%, #1e3a8a 55%, #2563eb 100%); }
.pt-5 { background: linear-gradient(150deg, #083b5c 0%, #0369a1 55%, #7dd3fc 100%); }
.pt-6 { background: linear-gradient(150deg, #78350f 0%, #d97706 55%, #fcd34d 100%); }

.pt-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .14;
}

/* ================================================================
   SERVICE AREAS + WHY CHOOSE
   ================================================================ */
.states-section { padding: 80px 0; background: var(--g50); }
.states-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.states-left {
  display: flex;
  flex-direction: column;
}
.states-left .sec-title { margin-bottom: 6px; }
.section-rule {
  width: 48px;
  height: 4px;
  background: var(--blue-acc);
  border-radius: 2px;
  margin-bottom: 24px;
}
.state-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.state-card {
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  padding: 20px 14px 16px;
  text-align: center;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  cursor: pointer;
}
.state-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-acc);
}
.state-svg { width: 88px; height: 66px; margin: 0 auto 10px; }
.state-name { font-weight: 700; font-size: 14.5px; color: var(--navy-mid); margin-bottom: 2px; }
.state-abbr { font-size: 13px; font-weight: 700; color: var(--blue-acc); margin-bottom: 6px; }
.state-cities { font-size: 11px; color: var(--g400); line-height: 1.45; }

/* Coverage highlights */
.coverage-highlights {
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.cov-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--g700);
  line-height: 1.5;
}
.cov-item svg { color: var(--blue-acc); flex-shrink: 0; margin-top: 2px; }

/* Why Choose — experience badge */
.exp-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--blue-acc), var(--blue));
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
}
.exp-num { font-family: var(--fh); font-size: 32px; font-weight: 800; }
.exp-txt { font-size: 9.5px; font-weight: 600; letter-spacing: .5px; opacity: .9; }

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232563eb' fill-opacity='0.055'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text .cta-h2 {
  font-family: var(--fh);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 8px;
}
.cta-text .cta-sub { font-size: 17px; color: rgba(255,255,255,.6); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.hiw-section {
  padding: 88px 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.hiw-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232563eb' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hiw-section .sec-title { color: var(--white); }
.hiw-section .about-label { color: var(--blue-lt); }
.hiw-sub {
  font-size: 16px;
  color: rgba(255,255,255,.60);
  max-width: 580px;
  line-height: 1.7;
  margin-top: 4px;
}
.hiw-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr;
  align-items: start;
  gap: 0;
  margin: 48px 0 44px;
  position: relative;
  z-index: 1;
}
.hiw-card {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(96,165,250,.18);
  border-radius: 14px;
  padding: 30px 22px 26px;
  text-align: center;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
  position: relative;
}
.hiw-card:hover {
  background: rgba(37,99,235,.12);
  border-color: rgba(96,165,250,.45);
  transform: translateY(-5px);
}
.hiw-num {
  font-family: var(--fh);
  font-size: 52px;
  font-weight: 800;
  color: rgba(37,99,235,.22);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.hiw-icon {
  width: 64px; height: 64px;
  background: rgba(37,99,235,.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--blue-lt);
  transition: background var(--tr);
}
.hiw-card:hover .hiw-icon { background: var(--blue-acc); }
.hiw-icon svg { width: 32px; height: 32px; }
.hiw-title {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.hiw-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.58);
  line-height: 1.72;
  margin-bottom: 14px;
}
.hiw-tag {
  display: inline-flex;
  background: rgba(37,99,235,.22);
  border: 1px solid rgba(96,165,250,.25);
  color: var(--blue-lt);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: .4px;
}
.hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  opacity: .7;
}
.hiw-connector svg { width: 60px; }
.hiw-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hiw-cta p { color: rgba(255,255,255,.6); font-size: 15px; margin-right: 4px; }
@media (max-width: 1100px) {
  .hiw-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hiw-connector { display: none; }
}
@media (max-width: 640px) {
  .hiw-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   CERTIFICATIONS & LICENSES
   ================================================================ */
.certs-section {
  padding: 80px 0;
  background: var(--white);
}
.certs-section .about-label { color: var(--blue-acc); }
.certs-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  align-items: stretch;
}
.cert-card {
  background: var(--g50);
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  padding: 24px 16px 20px;
  text-align: center;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-acc);
}
.cert-featured {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: rgba(37,99,235,.25);
}
.cert-logo { width: 100px; height: 80px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.cert-featured .cert-logo { width: 110px; height: 90px; }
.cert-logo svg { width: 100%; height: 100%; }
.cert-name { font-size: 13.5px; font-weight: 700; color: var(--navy-mid); margin-bottom: 3px; line-height: 1.25; }
.cert-sub  { font-size: 11px; color: var(--g400); line-height: 1.4; }

/* State licenses bar */
.state-licenses {
  background: var(--g50);
  border: 1.5px solid var(--g200);
  border-radius: 12px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sl-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--g600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sl-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}
.sl-badge svg { display: block; height: 36px; width: auto; border-radius: 5px; }

/* Footer credit */
.footer-credit { font-size: 11.5px; color: rgba(255,255,255,.30); display: block; margin-top: 4px; }

@media (max-width: 1100px) {
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .state-licenses { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .certs-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy-mid);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.1fr 1.3fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin: 16px 0 20px;
}
.footer-socials { display: flex; gap: 8px; }
.soc-link {
  width: 36px; height: 36px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: var(--tr);
}
.soc-link svg { width: 16px; height: 16px; }
.soc-link:hover { background: var(--blue-acc); border-color: var(--blue-acc); color: var(--white); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.52);
  transition: color var(--tr);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--blue-lt); }
.footer-links a svg { width: 13px; height: 13px; opacity: .6; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.52);
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--blue-lt); }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--blue-lt); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.35); transition: color var(--tr); }
.footer-legal a:hover { color: var(--blue-lt); }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }
.fade-up.delay-6 { transition-delay: .6s; }
.fade-up.delay-7 { transition-delay: .7s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1280px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 340px; gap: 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-col { max-width: 500px; }
  .states-row { grid-template-columns: 1fr; }
  .states-left { min-height: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .header-actions .header-phone { display: none; }
}
@media (max-width: 768px) {
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: fixed;
    inset: 74px 0 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    z-index: 899;
    overflow-y: auto;
    border-top: 1px solid var(--g200);
  }
  .nav.open .nav-list { flex-direction: column; gap: 4px; }
  .nav.open .nav-link { font-size: 16px; padding: 12px 14px; }
  .nav-item.has-dropdown > .nav-link { display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; }
  .nav-item.has-dropdown > .nav-link svg { transition: transform .25s; flex-shrink: 0; }
  .nav-item.has-dropdown.expanded > .nav-link svg { transform: rotate(180deg); }
  .nav.open .dropdown, .nav.open .mega-dropdown { display: none; }
  .nav-item.has-dropdown.expanded .dropdown, .nav-item.has-dropdown.expanded .mega-dropdown {
    display: grid;
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    width: auto;
    grid-template-columns: 1fr;
    gap: 2px;
    background: var(--g50);
    border-radius: 8px;
    padding: 8px 0 8px 14px;
    margin: 2px 0 6px;
  }
  .nav-item.has-dropdown.expanded .dropdown { display: block; }
  .mega-col-title { margin-top: 6px; }
  .mega-col-title:first-child { margin-top: 0; }
  .mega-cta { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .state-cards { grid-template-columns: repeat(2, 1fr); } /* already 2-col */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  .header, #heroCanvas, .hero-overlay, .final-cta { display: none; }
  body { color: #000; }
}
