/* =========================================================
   Envision Contracting (EC-GC.com) — Premium Site Styles
   Palette: Brand blue + accent green (matches logo)
   Logo blue: #1E5BE8   ·   Logo green: #22C55E
   Type:    Inter (Google Fonts)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* ===== Envision Contracting brand palette (matches logo) =====
     Logo blue: #1E5BE8   |   Logo green: #22C55E
     Variables retain legacy "--navy" / "--orange" names so every
     component continues to compile after the recolor.
     "--navy" family = deep brand blue (dark headers, hero, footer)
     "--orange" family = accent green (CTAs, eyebrow accents, dividers)
  */
  --navy:        #0F2A6B;   /* deep brand blue (was navy) */
  --navy-deep:   #081D4F;   /* deepest blue (hero, footer, dark sections) */
  --navy-soft:   #1E3A8A;   /* mid blue (hover states, alt backgrounds) */
  --navy-line:   #1E40AF;   /* line / border accent */
  --brand-blue:  #1E5BE8;   /* primary logo blue (for highlights) */
  --steel:       #4a5870;
  --steel-light: #7886a0;
  --gray-50:     #fafbfc;
  --gray-100:    #f4f6f9;
  --gray-200:    #e2e7ee;
  --gray-300:    #c8d0dc;
  --gray-700:    #2d3748;
  --orange:      #22C55E;   /* brand accent green (was safety orange) */
  --orange-dark: #16A34A;   /* dark green for hover */
  --orange-soft: #DCFCE7;   /* very light green tint */
  --green:       #22C55E;   /* alias */
  --gold:        #c79a4a;
  --white:       #ffffff;
  --black:       #0a0f1d;
  --shadow-sm:   0 1px 3px rgba(15, 42, 107, 0.08);
  --shadow-md:   0 6px 20px rgba(15, 42, 107, 0.10);
  --shadow-lg:   0 18px 48px rgba(15, 42, 107, 0.18);
  --radius:      4px;
  --radius-lg:   8px;
  --max-width:   1240px;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .15s; }
a:hover { color: var(--orange); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 96px 0; }
section.tight { padding: 56px 0; }

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); margin-bottom: 20px; font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.75rem); margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 700; }
h4 { font-size: 1.05rem; margin-bottom: 8px; font-weight: 700; }
p  { margin-bottom: 14px; }
.lead { font-size: 1.15rem; color: var(--steel); line-height: 1.6; }

ul.clean { list-style: none; }
ul.checks { list-style: none; }
ul.checks li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}
ul.checks li:before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 16px; height: 16px;
  background: var(--orange);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
}

/* ---------- Top Utility Bar ---------- */
.top-utility {
  background: var(--navy-deep);
  color: var(--gray-300);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 8px 28px;
  border-bottom: 1px solid var(--navy-line);
}
.top-utility .row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-utility a { color: var(--gray-300); }
.top-utility a:hover { color: var(--orange); }
.top-utility .left span { margin-right: 18px; display: inline-block; }
.top-utility .left strong { color: var(--white); font-weight: 600; }
.top-utility .right { display: flex; gap: 16px; align-items: center; }
.top-utility .right .verify { color: var(--orange); font-weight: 600; }

@media (max-width: 700px) {
  .top-utility { font-size: 0.72rem; }
  .top-utility .row { justify-content: center; }
  .top-utility .left span { margin-right: 12px; }
  .top-utility .right { display: none; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.brand:hover { color: var(--white); }
.brand-logo {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
  filter: brightness(1.05);
}
.brand-subline {
  display: none;
  color: var(--gray-300);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.18);
}
@media (min-width: 1100px) { .brand-subline { display: inline-block; } }

/* legacy text mark — kept as fallback */
.brand-mark {
  width: 42px; height: 42px;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--gray-300);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
}
nav.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
}
nav.primary-nav ul li a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 9px 14px;
  display: inline-block;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
nav.primary-nav ul li a:hover,
nav.primary-nav ul li a.active {
  background: var(--navy-soft);
  color: var(--white);
}
nav.primary-nav ul li a.cta-nav {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  margin-left: 10px;
  padding: 10px 18px;
}
nav.primary-nav ul li a.cta-nav:hover { background: var(--orange-dark); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gray-300);
  color: var(--white);
  padding: 7px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
}

@media (max-width: 1000px) {
  nav.primary-nav ul { display: none; flex-direction: column; gap: 0; }
  nav.primary-nav.open ul {
    display: flex;
    position: absolute;
    top: 100%; right: 0; left: 0;
    background: var(--navy);
    padding: 12px;
    border-top: 1px solid var(--navy-soft);
  }
  nav.primary-nav ul li { width: 100%; }
  nav.primary-nav ul li a { display: block; }
  .menu-toggle { display: inline-block; }
}

/* ---------- HERO (premium image-overlay style) ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(8,29,79,0.88) 0%, rgba(15,42,107,0.78) 50%, rgba(30,58,138,0.72) 100%),
    url('https://static.wixstatic.com/media/5aa9ab0d41b44713a78b4e9c7fa4ce3f.jpg/v1/fill/w_1920,h_960,al_c,q_85/construction.jpg'),
    var(--navy-deep);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 28px;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><g fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'><path d='M30 0v60M0 30h60'/></g></svg>");
  pointer-events: none;
}
.hero .container {
  position: relative;
  max-width: 1100px;
}
.hero h1 { color: var(--white); max-width: 920px; }
.hero p.lead { color: var(--gray-200); max-width: 800px; font-size: 1.2rem; }
.hero .eyebrow {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.28);
  border-radius: var(--radius);
}
.hero .tagline {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 8px 0 24px;
  letter-spacing: -0.01em;
  border-left: 3px solid var(--orange);
  padding-left: 18px;
  max-width: 640px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-meta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.85rem;
  color: var(--gray-300);
}
.hero-meta strong { color: var(--white); display: block; font-size: 1rem; margin-bottom: 2px; font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.01em;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--orange);
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(34,197,94,0.25);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,197,94,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--white) !important;
  border-color: var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--navy) !important; }
.btn-ghost {
  background: var(--white);
  color: var(--navy) !important;
  border: 1px solid var(--gray-300);
  font-weight: 600;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange) !important; }
.btn-arrow:after { content: " \2192"; }

/* ---------- Trust Badges Strip ---------- */
.trust-badges {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 28px;
}
.trust-badges .row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.trust-badges .badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 0.02em;
}
.trust-badges .badge svg {
  width: 28px; height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.trust-badges .badge strong { color: var(--navy); display: block; font-size: 0.92rem; }

/* ---------- Stats ---------- */
.stats {
  background: var(--navy-deep);
  color: var(--white);
  padding: 72px 28px;
  border-top: 4px solid var(--orange);
  border-bottom: 1px solid var(--navy-line);
}
.stats .grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats .stat {
  text-align: center;
  padding: 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats .stat:last-child { border-right: none; }
.stats .stat .num {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
  font-feature-settings: "tnum" 1;
}
.stats .stat .num .accent { color: var(--orange); }
.stats .stat .label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-300);
}
.stats .stat .placeholder-note {
  display: block;
  font-size: 0.65rem;
  color: var(--steel-light);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 8px;
}
@media (max-width: 800px) {
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .stats .stat { border-right: none; }
}

/* ---------- Trust bar (legacy pill row) ---------- */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 28px;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  align-items: center;
}
.trust-bar .pill {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-right: 28px;
}
.trust-bar .pill:last-child { padding-right: 0; }
.trust-bar .pill:after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  transform: translateY(-50%);
}
.trust-bar .pill:last-child:after { display: none; }

/* ---------- Sections ---------- */
.section-head {
  max-width: 800px;
  margin-bottom: 36px;
}
.section-head .eyebrow {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-head h2 { margin-top: 12px; }
.section-head .lead { margin-top: 6px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.service-card:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card h3 { color: var(--navy); }
.service-card p { color: var(--steel); flex-grow: 1; font-size: 0.95rem; }
.service-card .btn { align-self: flex-start; margin-top: 18px; }

/* ---------- Service icon (premium minimal) ---------- */
.svc-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--orange-soft);
  border-radius: var(--radius);
  margin-bottom: 18px;
  border: 1px solid rgba(34,197,94,0.18);
}
.svc-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Two-column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Project Fit / dark band ---------- */
.alt-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.alt-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(at 80% 50%, rgba(34,197,94,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.alt-section .container { position: relative; }
.alt-section h2 { color: var(--white); }
.alt-section p { color: var(--gray-200); }
.alt-section .pill-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.alt-section .pill-row span {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
}

/* ---------- Real photo frame (rounded, shadowed, premium) ---------- */
.img-frame {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--navy-deep);
}
.img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  max-height: 480px;
}
.img-frame .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(8,29,79,0.85) 0%, rgba(8,29,79,0) 100%);
  color: var(--white);
  padding: 36px 22px 18px;
  font-size: 0.85rem;
}
.img-frame .caption strong { color: var(--white); display: block; font-size: 1rem; margin-bottom: 4px; }
.img-frame.aspect-3-2 img { aspect-ratio: 3 / 2; min-height: 0; max-height: none; }
.img-frame.aspect-4-3 img { aspect-ratio: 4 / 3; min-height: 0; max-height: none; }
.img-frame.aspect-16-9 img { aspect-ratio: 16 / 9; min-height: 0; max-height: none; }

/* ---------- Photo placeholder (premium image-overlay style) ---------- */
.photo-placeholder {
  position: relative;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(15,42,107,0.92) 0%, rgba(30,58,138,0.85) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 18px),
    var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  min-height: 320px;
  overflow: hidden;
}
.photo-placeholder:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'><path d='M40 0v80M0 40h80M0 0l80 80M80 0L0 80'/></g></svg>");
  opacity: 0.6;
  pointer-events: none;
}
.photo-placeholder > * { position: relative; z-index: 1; }
.photo-placeholder .ph-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  padding: 5px 12px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  border-radius: 2px;
  z-index: 2;
}
.photo-placeholder .ph-icon {
  width: 56px; height: 56px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.photo-placeholder .ph-icon svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 1.6; }
.photo-placeholder .ph-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.photo-placeholder .ph-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.photo-placeholder .ph-prompt {
  font-size: 0.82rem;
  color: var(--gray-300);
  font-style: italic;
  line-height: 1.55;
  max-width: 540px;
}

/* ---------- The Envision Standard (named process) ---------- */
.standard {
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 96px 28px;
  position: relative;
  overflow: hidden;
}
.standard:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'><path d='M40 0v80M0 40h80'/></g></svg>");
  pointer-events: none;
}
.standard .container { position: relative; }
.standard h2 { color: var(--white); }
.standard .lead { color: var(--gray-300); }
.standard-name {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-radius: 2px;
}
.standard-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 48px;
  position: relative;
}
.standard-grid:before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8.33%;
  right: 8.33%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 100%);
  opacity: 0.3;
  z-index: 0;
}
.standard-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.standard-step .step-num {
  background: var(--orange);
  color: var(--white);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  font-weight: 900;
  border: 4px solid var(--navy-deep);
  box-shadow: 0 0 0 2px var(--orange);
}
.standard-step h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}
.standard-step p {
  color: var(--gray-300);
  font-size: 0.85rem;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .standard-grid { grid-template-columns: repeat(3, 1fr); }
  .standard-grid:before { display: none; }
}
@media (max-width: 600px) {
  .standard-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Industries Served grid ---------- */
.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 900px) { .industries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .industries { grid-template-columns: 1fr; } }
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.industry-card .ico {
  width: 40px; height: 40px;
  background: var(--orange-soft);
  border-radius: var(--radius);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.industry-card .ico svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
.industry-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.industry-card p { font-size: 0.85rem; color: var(--steel); margin: 0; line-height: 1.5; }

/* ---------- Awards / Memberships row ---------- */
.awards {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 56px 28px;
}
.awards .row {
  max-width: var(--max-width);
  margin: 0 auto;
}
.awards h3 {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 28px;
}
.awards .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
}
.awards .badge-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.15s;
}
.awards .badge-card:hover { border-color: var(--orange); }
.awards .badge-card .acro {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  font-feature-settings: "tnum" 1;
}
.awards .badge-card .name {
  font-size: 0.7rem;
  color: var(--steel);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* ---------- Project / Case studies ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s, transform 0.18s;
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.project-card .photo-placeholder {
  border-radius: 0;
  min-height: 220px;
}
.project-card .body { padding: 28px; }
.project-card .meta {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.case-card { /* alias for project-card */ }
.case-card .photo-placeholder { border-radius: 0; min-height: 220px; }
.case-card .body { padding: 28px; }
.case-card h3 { color: var(--navy); margin-bottom: 16px; }
.case-card .meta {
  font-size: 0.72rem; color: var(--orange); font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px;
}
.case-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  margin: 0 0 16px;
  font-size: 0.9rem;
}
.case-card dt {
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding-top: 2px;
}
.case-card dd { color: var(--steel); margin: 0; }
.case-card .result {
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.case-card .result strong { color: var(--navy); }

/* ---------- Who We Serve ---------- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.serve-grid div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--orange);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform 0.15s;
}
.serve-grid div:hover { transform: translateX(4px); }

/* ---------- Why grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.why-grid .item {
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.15s, box-shadow 0.15s;
}
.why-grid .item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.why-grid .item h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.why-grid .num {
  background: var(--orange);
  color: var(--white);
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 0.85rem;
}
.why-grid .item p { color: var(--steel); font-size: 0.93rem; margin: 0; }

/* ---------- FAQ Accordion ---------- */
.faq {
  max-width: 880px;
  margin: 32px auto 0;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:after {
  content: "+";
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary:after { content: "\2212"; }
.faq-item .answer {
  padding: 0 24px 22px;
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Testimonials placeholder ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testimonial-card .quote-mark {
  font-size: 3rem;
  color: var(--orange-soft);
  position: absolute;
  top: 4px; right: 16px;
  line-height: 1;
  font-weight: 900;
}
.testimonial-card p { font-style: italic; color: var(--steel); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.6; }
.testimonial-card .who {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
  margin-top: 12px;
}
.testimonial-card .who small { color: var(--steel); font-weight: 500; display: block; }
.testimonial-card.placeholder {
  border-style: dashed;
  background: var(--gray-50);
}
.testimonial-card.placeholder p { color: var(--steel-light); }

/* ---------- Capabilities Statement download ---------- */
.cap-statement {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}
.cap-statement .ico {
  width: 64px; height: 64px;
  background: var(--orange-soft);
  border-radius: var(--radius);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cap-statement .ico svg { width: 30px; height: 30px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
.cap-statement .body { flex: 1; }
.cap-statement h4 { margin-bottom: 4px; }
.cap-statement p { color: var(--steel); margin: 0; font-size: 0.9rem; }
.cap-statement a { white-space: nowrap; }
@media (max-width: 600px) { .cap-statement { flex-direction: column; text-align: center; } }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 28px;
  position: relative;
  overflow: hidden;
}
.final-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(at 30% 50%, rgba(34,197,94,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-cta h2 { color: var(--white); margin-bottom: 14px; }
.final-cta p { color: var(--gray-200); max-width: 720px; margin: 0 auto 28px; font-size: 1.1rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.form-card:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.form-card h3 { color: var(--navy); }
.form-card p.muted { color: var(--steel); margin-bottom: 22px; font-size: 0.95rem; }

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--gray-700);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Process timeline (legacy) ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.timeline .step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--orange);
  padding: 22px;
  border-radius: var(--radius);
  position: relative;
}
.timeline .step .n {
  position: absolute;
  top: -14px; right: 16px;
  background: var(--navy);
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  display: grid; place-items: center;
}
.timeline .step h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.timeline .step p { font-size: 0.88rem; color: var(--steel); margin: 0; }

/* ---------- Page Hero (non-home pages) ---------- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(8,29,79,0.88) 0%, rgba(30,58,138,0.82) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px),
    var(--navy-deep);
  color: var(--white);
  padding: 88px 28px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(at 80% 50%, rgba(34,197,94,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--gray-200); max-width: 760px; }
.page-hero .crumb {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--gray-300);
  padding: 72px 28px 28px;
  border-top: 4px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}
.footer-grid h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}
.footer-grid a { color: var(--gray-300); display: block; padding: 4px 0; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--orange); }
.footer-grid p { color: var(--gray-300); font-size: 0.92rem; margin-bottom: 8px; }
.footer-grid .brand-block strong { color: var(--white); display: block; margin-top: 4px; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  font-size: 0.82rem;
  color: var(--steel-light);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky Mobile Bottom CTA ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 3px solid var(--orange);
  padding: 10px 14px;
  display: none;
  gap: 10px;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-cta .call {
  background: var(--white);
  color: var(--navy) !important;
}
.mobile-cta .bid {
  background: var(--orange);
  color: var(--white) !important;
}
@media (max-width: 800px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ---------- Utility classes ---------- */
.muted { color: var(--steel); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 28px; }
.mt-4 { margin-top: 40px; }
.divider { height: 4px; width: 64px; background: var(--orange); margin: 16px 0 24px; border: none; }
.bg-gray-50 { background: var(--gray-50); }
.bg-white { background: var(--white); }

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.6s ease forwards;
  }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
}
