/* ============================================================
   DIGILU.COM — MASTER STYLESHEET
   Version 1.0 | Pure CSS, no framework
   Font stack: Barlow Condensed (display) + Barlow + Inter (body)
   ============================================================ */

/* ------------------------------------------------------------
   0. GOOGLE FONTS IMPORT
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Barlow:wght@400;600&family=Inter:wght@400;500;600&display=swap');

html { scroll-padding-top: 80px; scroll-behavior: smooth; overflow-x: hidden; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }


/* ------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
  /* Brand Colors */
  --digilu-navy:    #1A2A34;
  --digilu-charcoal:#2B353B;
  --white:          #FFFFFF;
  --black:          #000000;
  --light-mist:     #F4F7F8;
  --cool-gray:      #6B7280;
  --proof-dark:     #0F1D25;

  /* Typography */
  --font-display:   'Barlow Condensed', sans-serif;
  --font-accent:    'Barlow', sans-serif;
  --font-body:      'Inter', sans-serif;

  /* Spacing */
  --section-padding-y:        7rem;
  --section-padding-y-mobile: 4rem;
  --container-max:            1280px;
  --container-px:             1.5rem;
  --container-px-lg:          5rem;

  /* Nav */
  --nav-height-desktop: 72px;
  --nav-height-mobile:  64px;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.18);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.24);
}


/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--digilu-charcoal);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ------------------------------------------------------------
   3. UTILITY CLASSES
   ------------------------------------------------------------ */

/* Screen-reader only — also used for LLM reinforcement text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--container-px-lg);
    padding-right: var(--container-px-lg);
  }
}

/* Section spacing */
.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

@media (max-width: 767px) {
  .section {
    padding-top: var(--section-padding-y-mobile);
    padding-bottom: var(--section-padding-y-mobile);
  }
}

/* Background variants */
.bg-navy     { background-color: var(--digilu-navy); }
.bg-charcoal { background-color: var(--digilu-charcoal); }
.bg-mist     { background-color: var(--light-mist); }
.bg-white    { background-color: var(--white); }
.bg-proof    { background-color: var(--proof-dark); }

/* Text colors */
.text-white     { color: var(--white); }
.text-navy      { color: var(--digilu-navy); }
.text-cool-gray { color: var(--cool-gray); }
.text-mist      { color: var(--light-mist); }

/* Display helpers */
.d-flex        { display: flex; }
.align-center  { align-items: center; }
.justify-center{ justify-content: center; }
.text-center   { text-align: center; }
.text-left     { text-align: left; }

/* Overflow hidden for image clips */
.overflow-hidden { overflow: hidden; }

/* Section label */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cool-gray);
  margin-bottom: 1rem;
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Divider */
.divider {
  width: 48px;
  height: 3px;
  background-color: var(--digilu-navy);
  margin-bottom: 1.5rem;
}

.divider--white {
  background-color: var(--white);
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}


/* ------------------------------------------------------------
   4. TYPOGRAPHY SCALE
   ------------------------------------------------------------ */

/* Display / H1 */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* H2 */
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* H3 */
h3, .h3 {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.3;
}

/* H4 */
h4, .h4 {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4;
}

/* H5 / accent */
h5, .h5 {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

/* Body */
p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 1.25em;
}

p:last-child {
  margin-bottom: 0;
}

/* Lead paragraph */
.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--cool-gray);
}

/* Small */
.small {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Kicker / eyebrow */
.kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cool-gray);
  margin-bottom: 1rem;
}

.kicker--light {
  color: rgba(255, 255, 255, 0.6);
}


/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  padding: 14px 28px;
  line-height: 1;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-fast),
              box-shadow var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary: navy bg, white text (global default) */
.btn-primary {
  background-color: var(--digilu-navy);
  color: var(--white);
  border-color: var(--digilu-navy);
}

.btn-primary:hover {
  background-color: var(--digilu-charcoal);
  border-color: var(--digilu-charcoal);
  box-shadow: var(--shadow-md);
}

/* Hero-scoped override: white bg, navy text */
.hero .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #1A2A34;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  border-radius: 4px;
  border-color: transparent;
  text-decoration: none;
}

.hero .btn-primary:hover {
  background-color: #f0f0f0;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

/* Secondary: white bg, navy text, 1px navy border */
.btn-secondary {
  background-color: var(--white);
  color: var(--digilu-navy);
  border-color: var(--digilu-navy);
}

.btn-secondary:hover {
  background-color: var(--light-mist);
  box-shadow: var(--shadow-sm);
}

/* Ghost: transparent, white border, white text (for dark bgs) */
.btn-ghost {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px var(--white);
}

/* Small button variant */
.btn-sm {
  font-size: 12px;
  padding: 10px 18px;
  letter-spacing: 0.06em;
}

/* Button group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-group--center {
  justify-content: center;
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-group .btn {
    text-align: center;
  }
}

/* Responsive 3-col stat grid (used in dark sections across special project pages) */
.stat-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: 6px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .stat-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Responsive 2-col stat/card grid */
.stat-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .stat-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Responsive 4-col stat row (collapses to 2x2 on mobile) */
.stat-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 767px) {
  .stat-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}


/* ------------------------------------------------------------
   6. NAVIGATION
   ------------------------------------------------------------ */

/* ─── HEADER / NAV ───────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(26, 42, 52, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-item.active .nav-link {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-chevron {
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.nav-item.active .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: #ffffff;
  color: #1A2A34;
  border-color: #ffffff;
}

/* ─── MEGA MENU ──────────────────────────────── */

.mega-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background-color: #0A1520; border-top: 3px solid rgba(255,255,255,0.2); border-bottom: 2px solid rgba(255,255,255,0.1); box-shadow: 0 24px 48px rgba(0,0,0,0.5); z-index: 99; }
.mega-menu.open { display: block; animation: menuFade 0.18s ease-out; }
@keyframes menuFade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.mega-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; max-width: 1280px; margin: 0 auto; }
.mega-col { padding: 40px 48px; border-right: 1px solid rgba(255,255,255,0.05); }
.mega-col:last-child { border-right: none; }
.mega-intro-col { background-color: rgba(255,255,255,0.02); }
.mega-intro-statement { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.72); margin: 0 0 24px; max-width: 260px; }
.mega-intro-cta { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: #ffffff; text-decoration: none; }
.mega-intro-cta:hover { text-decoration: underline; }
.mega-col-head { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: #6B7280; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mega-link { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 14px; color: rgba(255,255,255,0.82); text-decoration: none; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.03); transition: color 0.15s ease, padding-left 0.15s ease; }
.mega-link:last-child { border-bottom: none; }
.mega-link:hover { color: #ffffff; padding-left: 6px; }
.mega-link-cta { font-weight: 500; color: rgba(255,255,255,0.8); }
.mega-inner--2col { grid-template-columns: 1fr 1.4fr; max-width: 860px; }
.mega-intro-head { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 26px; text-transform: uppercase; color: #ffffff; line-height: 1.1; margin: 0 0 12px; }
.mega-intro-body { font-family: 'Inter', sans-serif; font-size: 13px; color: #6B7280; line-height: 1.6; margin: 0; }
.mega-ref-link { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; padding: 6px 0; transition: color 0.15s ease, padding-left 0.15s ease; }
.mega-ref-link:hover { color: rgba(255,255,255,0.9); padding-left: 6px; }
.mega-label { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: #6B7280; margin: 0 0 12px; }

/* ─── SIMPLE DROPDOWN ────────────────────────── */

.simple-dropdown { display: none; position: absolute; top: 72px; background-color: #1A2A34; border: 1px solid rgba(255,255,255,0.08); border-top: none; border-radius: 0 0 6px 6px; box-shadow: 0 16px 32px rgba(0,0,0,0.25); padding: 8px 0; min-width: 200px; z-index: 99; }
.simple-dropdown.open { display: block; animation: menuFade 0.18s ease-out; }
.simple-dropdown a { display: block; font-family: 'Inter', sans-serif; font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; padding: 10px 24px; transition: color 0.15s ease, background-color 0.15s ease; }
.simple-dropdown a:hover { color: #ffffff; background-color: rgba(255,255,255,0.04); }

/* ─── HAMBURGER (mobile only) ────────────────── */

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* Mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #1A2A34;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-mobile-overlay.open {
  display: flex;
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.nav-mobile-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 12px 24px;
  transition: color 0.2s ease;
}

.nav-mobile-links a:hover {
  color: #ffffff;
}

/* ─── RESPONSIVE ─────────────────────────────── */

@media (max-width: 767px) {
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mega-menu { display: none !important; }
  .simple-dropdown { display: none !important; }
  .nav-inner { padding: 0 20px; }
}

@media (min-width: 768px) {
  .nav-hamburger { display: none; }
  .nav-mobile-overlay { display: none !important; }
}


/* ------------------------------------------------------------
   7. FOOTER
   ------------------------------------------------------------ */

/* ─── PROOF STRIP LOCKUP (logo + since) ─────────────────────── */
.proof-strip-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.proof-strip-logo {
  height: 28px;
  width: auto;
  opacity: 0.85;
}

.proof-strip-since {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── FOOTER ─────────────────────────────────── */

footer {
  background-color: #1A2A34;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 88px;
  width: auto;
  margin-bottom: 12px;
}

.footer-since {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #1A2A34;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.footer-cta:hover {
  background-color: #F4F7F8;
}

.footer-links {
  background-color: #0F1D25;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-nav-primary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.footer-nav-primary a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 6px 10px;
  transition: color 0.2s ease;
}

.footer-nav-primary a:hover {
  color: #ffffff;
}

.footer-nav-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.footer-nav-secondary a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.footer-nav-secondary a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-sep {
  font-size: 12px;
  color: rgba(255,255,255,0.12);
  user-select: none;
  padding: 0 2px;
}

.footer-bottom {
  background-color: #0F1D25;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.6);
}

.footer-trust {
  color: rgba(255,255,255,0.45);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}


/* ------------------------------------------------------------
   8. HERO SECTION
   ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0A1520 0%, #1A2A34 40%, #0F2535 70%, #0A1520 100%);
  background-size: 300% 300%;
  animation: heroGradient 12s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,155,213,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0%   { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  width: 100%;
  padding: 0 var(--container-px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.5s ease-out 0.1s forwards;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(80px, 16vw, 160px);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.6s ease-out 0.25s forwards;
}

.hero-sub {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.6s ease-out 0.45s forwards;
}

.hero-cta {
  display: inline-block;
  background: var(--white);
  color: var(--digilu-navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 3px;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.6s ease-out 0.6s forwards;
}

.hero-cta:hover {
  background: #e8ecef;
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@media (max-width: 767px) {
  .hero { min-height: 100svh; }
  .hero-h1 { font-size: clamp(3.5rem, 18vw, 6rem); line-height: 0.86; }
  .hero-sub { font-size: 0.9375rem; white-space: normal; max-width: 300px; margin-left: auto; margin-right: auto; }
  .hero-cta { padding: 14px 28px; font-size: 0.75rem; }
  .hero-cta-ghost { padding: 14px 28px; font-size: 0.75rem; }
  .logo-bar-item { font-size: 13px; padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(2.25rem, 16vw, 3rem); }
  .hero-sub { font-size: 0.875rem; max-width: 260px; }
  .hero-stats-bar { gap: 16px; padding: 12px 16px; }
  .hero-stats-number { font-size: 1.25rem; }
}


/* ------------------------------------------------------------
   9. PAGE HERO (interior pages)
   ------------------------------------------------------------ */

.page-hero {
  min-height: 50vh;
  background-color: var(--digilu-navy);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-height-desktop) + 4rem);
  padding-bottom: 4rem;
}

.page-hero--tall {
  min-height: 65vh !important;
}

/* Full-viewport page hero with background image */
.page-hero--image {
  min-height: 100vh;
  position: relative;
  background-color: var(--digilu-navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 42, 52, 0.5) 0%,
    rgba(26, 42, 52, 0.75) 60%,
    rgba(26, 42, 52, 0.95) 100%
  );
  z-index: 1;
}

.page-hero--image .page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-content .lead {
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .page-hero {
    padding-top: calc(var(--nav-height-mobile) + 2.5rem);
    padding-bottom: 2.5rem;
    min-height: 45vh;
  }
}


/* ------------------------------------------------------------
   10. BREADCRUMB
   ------------------------------------------------------------ */

/* Breadcrumb nav wrapper */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 1.75rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 0.45rem 0.9rem;
  width: fit-content;
  max-width: 100%;
}

/* ol/li pattern: .breadcrumb__list */
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

/* Chevron separator via ::before on every item after the first */
.breadcrumb__item + .breadcrumb__item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid rgba(255,255,255,0.3);
  border-top: 1.5px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  margin: 0 0.6rem;
  flex-shrink: 0;
}

.breadcrumb__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.breadcrumb__link:hover {
  color: rgba(255,255,255,0.9);
}

.breadcrumb__item--current {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Legacy pattern: .breadcrumb-link / .breadcrumb-sep / .breadcrumb-current */
.breadcrumb-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.breadcrumb-link:hover {
  color: rgba(255,255,255,0.9);
}

.breadcrumb-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid rgba(255,255,255,0.3);
  border-top: 1.5px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  margin: 0 0.6rem;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
  flex-shrink: 0;
}

.breadcrumb-current {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Naked a › span pattern (fire pages) */
.breadcrumb > a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.breadcrumb > a:hover {
  color: rgba(255,255,255,0.9);
}

.breadcrumb > span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Old breadcrumb-item / breadcrumb-separator (kept for compat) */
.breadcrumb-item {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-separator {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid rgba(255,255,255,0.3);
  border-top: 1.5px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  margin: 0 0.6rem;
  font-size: 0;
}

.breadcrumb-item.current {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  pointer-events: none;
}


/* ------------------------------------------------------------
   11. PROOF STRIP
   ------------------------------------------------------------ */

.proof-strip {
  background-color: var(--proof-dark);
  padding: 3rem 0;
  text-align: center;
}

.proof-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.proof-strip-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  color: var(--white);
}

.proof-strip-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
}

.proof-strip-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Industry pills */
.industry-pill {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  margin: 4px;
}

.industry-pill:hover {
  background-color: #ffffff;
  color: #1A2A34;
  border-color: #ffffff;
}


/* ------------------------------------------------------------
   12. TRUST SIGNAL STATS
   ------------------------------------------------------------ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cool-gray);
  line-height: 1.4;
}

/* Stats on light bg */
.stats-grid--light .stat-number {
  color: var(--digilu-navy);
}

.stats-grid--light .stat-label {
  color: var(--cool-gray);
}

/* Stats dividers (horizontal layout) */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-row .stat-item {
  padding: 0 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-row .stat-item:last-child {
  border-right: none;
}

@media (max-width: 1023px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stats-row {
    flex-wrap: wrap;
  }

  .stats-row .stat-item {
    padding: 1rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 50%;
  }
}


/* ------------------------------------------------------------
   13. WORK FEATURE (Full-width alternating)
   ------------------------------------------------------------ */

.work-feature {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 520px;
  overflow: hidden;
}

/* Even/Reverse: text left, image right */
.work-feature--even,
.work-feature--reverse {
  grid-template-columns: 45fr 55fr;
}

.work-feature--dark {
  background-color: var(--digilu-navy);
}

.work-feature__image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

/* Odd: image is first column (left) */
.work-feature .work-feature__image {
  order: 1;
}

.work-feature .work-feature__content {
  order: 2;
}

/* Even/Reverse: image is second column (right) */
.work-feature--even .work-feature__image,
.work-feature--reverse .work-feature__image {
  order: 2;
}

.work-feature--even .work-feature__content,
.work-feature--even .work-feature__text,
.work-feature--reverse .work-feature__content,
.work-feature--reverse .work-feature__text {
  order: 1;
}

.work-feature__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
  border-radius: 0 !important;
}

.work-feature:hover .work-feature__image img {
  transform: scale(1.03);
}

.work-feature__content,
.work-feature__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem;
}

/* Also support text-inner sub-wrapper */
.work-feature__text-inner {
  max-width: 560px;
}

/* Dark variant text */
.work-feature--dark .work-feature__content h3,
.work-feature--dark .work-feature__content h2,
.work-feature--dark .work-feature__text h3,
.work-feature--dark .work-feature__text h2 {
  color: var(--white);
}

.work-feature--dark .work-feature__content p,
.work-feature--dark .work-feature__text p {
  color: rgba(255, 255, 255, 0.65);
}

.work-feature__category {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cool-gray);
  margin-bottom: 0.75rem;
}

.work-feature--dark .work-feature__category {
  color: rgba(255, 255, 255, 0.4);
}

.work-feature__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--digilu-navy);
  margin-bottom: 1rem;
}

.work-feature--dark .work-feature__title {
  color: var(--white);
}

.work-feature__desc {
  font-size: 16px;
  color: var(--cool-gray);
  margin-bottom: 1.5rem;
  max-width: 420px;
}

.work-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.work-feature__tag {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--cool-gray);
  border: 1px solid rgba(107, 114, 128, 0.35);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
}

.work-feature--dark .work-feature__tag {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1023px) {
  .work-feature,
  .work-feature--even {
    grid-template-columns: 1fr;
  }

  .work-feature .work-feature__image,
  .work-feature--even .work-feature__image {
    order: 1;
    min-height: 300px;
  }

  .work-feature .work-feature__content,
  .work-feature--even .work-feature__content {
    order: 2;
  }

  .work-feature__content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 767px) {
  .work-feature__content {
    padding: 2.5rem 1.5rem;
  }
}


/* ------------------------------------------------------------
   14. PROJECT CARDS (Special Projects, 3-col grid)
   ------------------------------------------------------------ */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.project-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.05);
}

.project-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card__body .btn {
  white-space: normal;
  text-align: center;
  align-self: flex-start;
  margin-top: auto;
}

.project-card__category {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cool-gray);
  margin-bottom: 0.5rem;
}

.project-card__title {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--digilu-navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.project-card__desc {
  font-size: 15px;
  color: var(--cool-gray);
  line-height: 1.65;
  flex: 1;
}

.project-card__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-card__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--digilu-navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-base);
}

.project-card:hover .project-card__link {
  gap: 0.7rem;
}

/* Dark variant */
.project-card--dark {
  background-color: var(--digilu-charcoal);
  border-color: rgba(255, 255, 255, 0.06);
}

.project-card--dark .project-card__title {
  color: var(--white);
}

.project-card--dark .project-card__desc {
  color: rgba(255, 255, 255, 0.72);
}

.project-card--dark .project-card__footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.project-card--dark .project-card__link {
  color: rgba(255, 255, 255, 0.8);
}

/* 2-col override for grids with exactly 2 items (avoids orphan) */
.project-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1023px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .project-grid,
  .project-grid--2col {
    grid-template-columns: 1fr;
  }
}

/* Homepage 5-card centered flex grid */
.project-flex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.project-flex-grid .project-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
  max-width: 420px;
}

@media (max-width: 1023px) {
  .project-flex-grid .project-card {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: none;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .project-flex-grid .project-card {
    flex: 0 0 100%;
    max-width: none;
  }
}


/* ------------------------------------------------------------
   15. SERVICE TILES
   ------------------------------------------------------------ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-tile {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-tile:hover {
  border-color: var(--digilu-navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-tile__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-tile__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--digilu-navy);
  fill: none;
  stroke-width: 1.5;
}

.service-tile__title {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--digilu-navy);
  line-height: 1.3;
}

.service-tile__desc {
  font-size: 14px;
  color: var(--cool-gray);
  line-height: 1.6;
}

/* Dark service tile */
.service-tile--dark {
  background-color: var(--digilu-charcoal);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-tile--dark:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.service-tile--dark .service-tile__icon svg {
  stroke: rgba(255, 255, 255, 0.8);
}

.service-tile--dark .service-tile__title {
  color: var(--white);
}

.service-tile--dark .service-tile__desc {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1023px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------
   16. FIRE / WILDFIRE CARDS
   ------------------------------------------------------------ */

.fire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fire-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.fire-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fire-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fire-card:hover .fire-card__bg img {
  transform: scale(1.05);
}

/* Dark gradient overlay */
.fire-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(15, 20, 25, 0.92) 0%,
    rgba(15, 20, 25, 0.5) 50%,
    rgba(15, 20, 25, 0.15) 100%
  );
  transition: opacity var(--transition-base);
}

.fire-card:hover::before {
  opacity: 0.85;
}

.fire-card__content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}

.fire-card__content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.fire-card__content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.fire-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.35rem;
}

.fire-card__meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.fire-card__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  display: none;
}

.fire-card:hover .fire-card__desc {
  display: block;
}

@media (max-width: 1023px) {
  .fire-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fire-grid {
    grid-template-columns: 1fr;
  }

  .fire-card {
    min-height: 240px;
  }
}


/* ------------------------------------------------------------
   17. FIRE FACTS BAR
   ------------------------------------------------------------ */

.fire-facts {
  background-color: var(--digilu-charcoal);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fire-facts-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.fire-fact {
  text-align: center;
  padding: 0.5rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  min-width: 180px;
}

.fire-fact:last-child {
  border-right: none;
}

.fire-fact__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.fire-fact__label {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 767px) {
  .fire-fact {
    padding: 0.75rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 50%;
  }

  .fire-fact:last-child {
    border-bottom: none;
  }
}


/* ------------------------------------------------------------
   18. BEFORE / AFTER CARDS
   ------------------------------------------------------------ */

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.before-after-card {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.before-after-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after-panel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.before-after-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-panel__label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  z-index: 2;
}

.before-after-panel__label--before {
  background-color: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

.before-after-panel__label--after {
  background-color: var(--digilu-navy);
  color: var(--white);
}

.before-after-card__body {
  padding: 1.5rem;
}

.before-after-card__title {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--digilu-navy);
  margin-bottom: 0.5rem;
}

.before-after-card__desc {
  font-size: 14px;
  color: var(--cool-gray);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------
   19. CONTACT STRIP / CTA BLOCK
   ------------------------------------------------------------ */

.cta-strip {
  background-color: var(--digilu-navy);
  padding: 5rem 0;
  text-align: center;
}

.cta-strip--mist {
  background-color: var(--light-mist);
}

.cta-strip__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.cta-strip--mist .cta-strip__eyebrow {
  color: var(--cool-gray);
}

.cta-strip__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip--mist .cta-strip__headline {
  color: var(--digilu-navy);
}

.cta-strip__subtext {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip--mist .cta-strip__subtext {
  color: var(--cool-gray);
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 767px) {
  .cta-strip {
    padding: 3.5rem 0;
  }
}


/* ------------------------------------------------------------
   20. CONTENT / EDITORIAL LAYOUTS
   ------------------------------------------------------------ */

/* Two-column content with sidebar */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.content-with-sidebar--reversed {
  grid-template-columns: 320px 1fr;
}

.content-sidebar {
  position: sticky;
  top: calc(var(--nav-height-desktop) + 2rem);
}

/* Sticky sidebar panel */
.sidebar-panel {
  background-color: var(--light-mist);
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.sidebar-panel__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cool-gray);
  margin-bottom: 1rem;
}

.sidebar-panel--dark {
  background-color: var(--digilu-navy);
}

.sidebar-panel--dark .sidebar-panel__title {
  color: rgba(255, 255, 255, 0.4);
}

/* Case study nav links */
.sidebar-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-nav-link {
  display: block;
  font-size: 14px;
  color: var(--cool-gray);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  border-left: 2px solid transparent;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
  color: var(--digilu-navy);
  background-color: rgba(26, 42, 52, 0.06);
  border-left-color: var(--digilu-navy);
}

@media (max-width: 1023px) {
  .content-with-sidebar,
  .content-with-sidebar--reversed {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    position: static;
    order: -1;
  }
}


/* ------------------------------------------------------------
   21. RICH TEXT / PROSE CONTENT
   ------------------------------------------------------------ */

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: var(--digilu-navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--digilu-navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.35rem;
  color: var(--digilu-charcoal);
}

.prose ul,
.prose ol {
  margin-bottom: 1.35rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: var(--digilu-charcoal);
  font-size: 17px;
  line-height: 1.7;
}

.prose ul li {
  list-style-type: disc;
}

.prose ol li {
  list-style-type: decimal;
}

.prose strong {
  font-weight: 600;
  color: var(--digilu-navy);
}

.prose blockquote {
  border-left: 3px solid var(--digilu-navy);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background-color: var(--light-mist);
  border-radius: 0 6px 6px 0;
}

.prose blockquote p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--digilu-navy);
  margin-bottom: 0;
}

/* Prose on dark background */
.prose--light h2,
.prose--light h3 {
  color: var(--white);
}

.prose--light p,
.prose--light li {
  color: rgba(255, 255, 255, 0.65);
}

.prose--light strong {
  color: var(--white);
}


/* ------------------------------------------------------------
   22. HIGHLIGHT / PULL QUOTE
   ------------------------------------------------------------ */

.pull-quote {
  border-left: 4px solid var(--digilu-navy);
  padding: 1.25rem 1.75rem;
  margin: 2.5rem 0;
}

.pull-quote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  color: var(--digilu-navy);
  line-height: 1.1;
  margin-bottom: 0;
}

.pull-quote--light {
  border-left-color: rgba(255, 255, 255, 0.5);
}

.pull-quote--light p {
  color: var(--white);
}


/* ------------------------------------------------------------
   23. TESTIMONIALS
   ------------------------------------------------------------ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-card--dark {
  background-color: var(--digilu-charcoal);
  border-color: rgba(255, 255, 255, 0.06);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-star {
  width: 16px;
  height: 16px;
  color: #F59E0B;
  fill: currentColor;
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--digilu-charcoal);
  font-style: italic;
  flex: 1;
}

.testimonial-card--dark .testimonial-quote {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--light-mist);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--digilu-navy);
  line-height: 1.3;
}

.testimonial-card--dark .testimonial-name {
  color: var(--white);
}

.testimonial-role {
  font-size: 13px;
  color: #4B5563;
}

@media (max-width: 1023px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------
   24. RESULTS / OUTCOME BLOCK
   ------------------------------------------------------------ */

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.result-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

@media (max-width: 767px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ------------------------------------------------------------
   25. PROCESS / STEPS
   ------------------------------------------------------------ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: steps;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-increment: steps;
}

.process-step__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(26, 42, 52, 0.1);
  content: counter(steps, decimal-leading-zero);
}

.process-step__number::before {
  content: counter(steps, decimal-leading-zero);
}

.process-step__title {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--digilu-navy);
}

.process-step__desc {
  font-size: 15px;
  color: var(--cool-gray);
  line-height: 1.65;
}

@media (max-width: 1023px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ------------------------------------------------------------
   26. LOGO / CLIENT STRIP
   ------------------------------------------------------------ */

.client-strip {
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.client-strip__label {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cool-gray);
  margin-bottom: 1.75rem;
}

.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
}

.client-logo {
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity var(--transition-base), filter var(--transition-base);
  max-height: 32px;
  width: auto;
}

.client-logo:hover {
  opacity: 0.75;
  filter: grayscale(0%);
}


/* ------------------------------------------------------------
   27. IMAGE GRID / GALLERY
   ------------------------------------------------------------ */

.image-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.image-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.image-grid-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}

.image-grid-featured .image-cell:first-child {
  grid-row: span 2;
}

.image-cell {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
}

.image-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-cell:hover img {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .image-grid-2,
  .image-grid-3,
  .image-grid-featured {
    grid-template-columns: 1fr;
  }

  .image-grid-featured .image-cell:first-child {
    grid-row: span 1;
  }
}


/* ------------------------------------------------------------
   28. SECTION HEADER PATTERN
   ------------------------------------------------------------ */

.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--cool-gray);
  font-size: 1.0625rem;
}

/* Dark section headers */
.section-header--light h2 {
  color: var(--white);
}

.section-header--light p {
  color: rgba(255, 255, 255, 0.72);
}

.section-header--light .section-label {
  color: rgba(255, 255, 255, 0.4);
}


/* ------------------------------------------------------------
   29. TAGS / BADGES
   ------------------------------------------------------------ */

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  background-color: var(--light-mist);
  color: var(--cool-gray);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.tag--navy {
  background-color: rgba(26, 42, 52, 0.08);
  color: var(--digilu-navy);
  border-color: rgba(26, 42, 52, 0.15);
}

.tag--dark {
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.12);
}


/* ------------------------------------------------------------
   30. FORMS
   ------------------------------------------------------------ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--digilu-charcoal);
}

.form-label--light {
  color: rgba(255, 255, 255, 0.75);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--digilu-charcoal);
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--digilu-navy);
  box-shadow: 0 0 0 3px rgba(26, 42, 52, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Dark form inputs */
.form-input--dark,
.form-textarea--dark {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.form-input--dark::placeholder,
.form-textarea--dark::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input--dark:focus,
.form-textarea--dark:focus {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Contact form wrapper */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

/* Form in dark strip */
.contact-strip-form {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2.5rem;
}


/* ------------------------------------------------------------
   31. ABOUT / TEAM
   ------------------------------------------------------------ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  background-color: var(--light-mist);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--digilu-navy);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 14px;
  color: var(--cool-gray);
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 14px;
  color: var(--cool-gray);
  line-height: 1.65;
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------
   32. UTILITY STRIPS / CALLOUTS
   ------------------------------------------------------------ */

/* Info banner */
.info-banner {
  background-color: rgba(26, 42, 52, 0.06);
  border-left: 3px solid var(--digilu-navy);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  font-size: 15px;
  color: var(--digilu-charcoal);
}

.info-banner--warning {
  background-color: rgba(245, 158, 11, 0.08);
  border-left-color: #F59E0B;
}

/* Two-column feature list */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--digilu-navy);
}

.feature-item p {
  font-size: 15px;
  color: var(--cool-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.feature-item strong {
  display: block;
  font-weight: 600;
  color: var(--digilu-charcoal);
  margin-bottom: 0.2rem;
  font-size: 15px;
}

@media (max-width: 600px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------
   33. TIMELINE
   ------------------------------------------------------------ */

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 76px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--digilu-navy);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--digilu-navy);
}

.timeline-year {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--cool-gray);
  padding-top: 2px;
  text-align: right;
}

.timeline-content h4 {
  color: var(--digilu-navy);
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 15px;
  color: var(--cool-gray);
  line-height: 1.65;
}

/* Dark timeline */
.timeline--dark::before {
  background-color: rgba(255, 255, 255, 0.1);
}

.timeline--dark .timeline-item::before {
  background-color: rgba(255, 255, 255, 0.6);
  border-color: var(--digilu-navy);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.timeline--dark .timeline-year {
  color: rgba(255, 255, 255, 0.4);
}

.timeline--dark .timeline-content h4 {
  color: var(--white);
}

.timeline--dark .timeline-content p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 600px) {
  .timeline::before {
    left: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 1.5rem;
  }

  .timeline-item::before {
    left: -5px;
  }

  .timeline-year {
    text-align: left;
    order: -1;
  }
}


/* ------------------------------------------------------------
   34. MAP / GEOGRAPHIC ELEMENT
   ------------------------------------------------------------ */

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--cool-gray);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}

.location-chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}


/* ------------------------------------------------------------
   35. REVIEW / STAR RATINGS BLOCK
   ------------------------------------------------------------ */

.review-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-platform-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 1.75rem;
  text-align: center;
  background-color: var(--white);
}

.review-platform-logo {
  height: 28px;
  width: auto;
  margin: 0 auto 1rem;
}

.review-platform-rating {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--digilu-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.review-platform-count {
  font-size: 13px;
  color: var(--cool-gray);
}

@media (max-width: 767px) {
  .review-platform-grid {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------
   36. CASE STUDY DETAIL ELEMENTS
   ------------------------------------------------------------ */

/* Challenge / Solution two-col */
.case-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.case-split--dark {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.case-split--reverse > *:first-child {
  order: 2;
}

.case-split--reverse > *:last-child {
  order: 1;
}

.case-split__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cool-gray);
  margin-bottom: 0.75rem;
}

.case-split--dark .case-split__label {
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
  .case-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Full-bleed image with caption */
.figure {
  margin: 2.5rem 0;
}

.figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.figure figcaption {
  margin-top: 0.75rem;
  font-size: 13px;
  color: var(--cool-gray);
  text-align: center;
}


/* ------------------------------------------------------------
   37. SKIP LINK (accessibility)
   ------------------------------------------------------------ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background-color: var(--white);
  color: var(--digilu-navy);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 4px 4px;
  font-weight: 500;
  font-size: 14px;
  transition: top 0.1s;
}

.skip-link:focus {
  top: 0;
}


/* ------------------------------------------------------------
   38. PAGE TRANSITIONS / LOADING
   ------------------------------------------------------------ */

.page-fade-in {
  animation: pageFadeIn 0.4s ease-out both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ------------------------------------------------------------
   39. PRINT STYLES
   ------------------------------------------------------------ */

@media print {
  .site-nav,
  .mobile-nav,
  .site-footer,
  .cta-strip,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  h1, h2, h3 {
    color: #000;
  }

  a {
    text-decoration: underline;
  }
}


/* ------------------------------------------------------------
   40. ANIMATIONS & KEYFRAMES
   ------------------------------------------------------------ */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Loading shimmer skeleton */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--light-mist) 25%,
    #e8ecee 50%,
    var(--light-mist) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}


/* ------------------------------------------------------------
   41. FOCUS STYLES (accessibility)
   ------------------------------------------------------------ */

:focus-visible {
  outline: 2px solid var(--digilu-navy);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Dark background focus */
.bg-navy :focus-visible,
.bg-charcoal :focus-visible,
.hero-section :focus-visible {
  outline-color: var(--white);
}


/* ------------------------------------------------------------
   42. SELECTION
   ------------------------------------------------------------ */

::selection {
  background-color: var(--digilu-navy);
  color: var(--white);
}


/* ------------------------------------------------------------
   43. SCROLLBAR (WebKit)
   ------------------------------------------------------------ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-mist);
}

::-webkit-scrollbar-thumb {
  background: rgba(26, 42, 52, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 42, 52, 0.55);
}


/* ------------------------------------------------------------
   44. INDUSTRY / SERVICE PAGE SPECIFIC
   ------------------------------------------------------------ */

/* Industry hero grid overlay */
.industry-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2rem;
}

/* Service page feature list with icons */
.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-feature-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: rgba(26, 42, 52, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-feature-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--digilu-navy);
  fill: none;
  stroke-width: 1.5;
}

.service-feature-item--dark .service-feature-item__icon {
  background-color: rgba(255, 255, 255, 0.08);
}

.service-feature-item--dark .service-feature-item__icon svg {
  stroke: rgba(255, 255, 255, 0.7);
}

.service-feature-item h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.service-feature-item--dark h4 {
  color: var(--white);
}

.service-feature-item p {
  font-size: 14px;
  color: var(--cool-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.service-feature-item--dark p {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  .service-features {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------
   45. WILDFIRE / FIRE LITIGATION SPECIFIC
   ------------------------------------------------------------ */

/* Fire case header */
.fire-case-header {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.fire-case-facts {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--nav-height-desktop) + 2rem);
}

.fire-case-fact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.fire-case-fact-row:last-child {
  border-bottom: none;
}

.fire-case-fact-key {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.fire-case-fact-value {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

@media (max-width: 1023px) {
  .fire-case-header {
    grid-template-columns: 1fr;
  }

  .fire-case-facts {
    position: static;
  }
}


/* ------------------------------------------------------------
   46. RESPONSIVE HELPERS
   ------------------------------------------------------------ */

.hide-mobile {
  display: block;
}

.show-mobile {
  display: none;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }

  .show-mobile {
    display: block !important;
  }
}

.hide-tablet {
  display: block;
}

@media (max-width: 1023px) {
  .hide-tablet {
    display: none !important;
  }
}


/* ------------------------------------------------------------
   47. SPACING UTILITIES
   ------------------------------------------------------------ */

.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }
.mt-8  { margin-top: 4rem; }

.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-6  { margin-bottom: 3rem; }
.mb-8  { margin-bottom: 4rem; }

.pt-0  { padding-top: 0; }
.pt-4  { padding-top: 2rem; }
.pt-8  { padding-top: 4rem; }

.pb-0  { padding-bottom: 0; }
.pb-4  { padding-bottom: 2rem; }
.pb-8  { padding-bottom: 4rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }


/* ------------------------------------------------------------
   48. HARMON TOWER / SPECIFIC CASE STUDY ELEMENTS
   ------------------------------------------------------------ */

.case-outcome-banner {
  background-color: var(--digilu-charcoal);
  border-radius: 8px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.case-outcome-item__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.case-outcome-item__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 600px) {
  .case-outcome-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ------------------------------------------------------------
   49. STRATUS CLEAN REBRAND VISUAL
   ------------------------------------------------------------ */

.rebrand-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.rebrand-panel {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.rebrand-panel img {
  width: 100%;
  height: auto;
  display: block;
}

.rebrand-panel__label {
  padding: 0.75rem 1rem;
  background-color: var(--light-mist);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cool-gray);
  text-align: center;
}

.rebrand-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cool-gray);
  font-size: 1.5rem;
}

@media (max-width: 600px) {
  .rebrand-comparison {
    grid-template-columns: 1fr;
  }

  .rebrand-arrow {
    transform: rotate(90deg);
  }
}


/* ------------------------------------------------------------
   50. TRUST PROOF PAGE SPECIFIC
   ------------------------------------------------------------ */

.trust-tier {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-tier:last-child {
  border-bottom: none;
}

.trust-tier__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}

.trust-tier__title {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.trust-tier__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}


/* ============================================================
   51. PATCHES — CLASS ALIASES & CONTRAST FIXES
   ============================================================ */

/* ---------------------------------------------------------
   A. page-hero__content BEM alias
   (CSS had .page-hero-content, HTML uses .page-hero__content)
   --------------------------------------------------------- */

.page-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.page-hero--image .page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__content h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__content .lead,
.page-hero__subhead {
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   B. Breadcrumb class aliases — consolidated in section 27
   --------------------------------------------------------- */


/* ---------------------------------------------------------
   C. sidebar-panel--dark text colors
   (body paragraphs and lists inside dark panels were
    inheriting charcoal on navy — nearly invisible)
   --------------------------------------------------------- */

.sidebar-panel--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.sidebar-panel--dark h2,
.sidebar-panel--dark h3 {
  color: var(--white);
}

.sidebar-panel--dark ul,
.sidebar-panel--dark li {
  color: rgba(255, 255, 255, 0.75);
}

.sidebar-panel--dark .sidebar-panel__title {
  color: rgba(255, 255, 255, 0.45);
}


/* ---------------------------------------------------------
   D. sidebar-list, sidebar-divider, deliverables-list
   (used in HTML but missing from CSS)
   --------------------------------------------------------- */

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-list li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 1.1rem;
  position: relative;
}

.sidebar-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
}

.sidebar-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 1.25rem 0;
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.deliverables-list li {
  font-size: 15px;
  color: var(--digilu-charcoal);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.deliverables-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--digilu-navy);
  font-weight: 700;
}


/* ---------------------------------------------------------
   E. Process steps — fix colors for light bg (bg-mist)
   (CSS had white text which is invisible on light-mist)
   --------------------------------------------------------- */

.process-step__number {
  color: rgba(26, 42, 52, 0.1);
}

.process-step__title {
  color: var(--digilu-navy);
}

.process-step__desc {
  color: var(--cool-gray);
}

/* Dark bg override if ever needed */
.process-steps--dark .process-step__number { color: rgba(255, 255, 255, 0.12); }
.process-steps--dark .process-step__title  { color: var(--white); }
.process-steps--dark .process-step__desc   { color: rgba(255, 255, 255, 0.72); }


/* ---------------------------------------------------------
   F. Proof strip text — dark text on very dark bg fix
   (bg-proof is #0F1D25, body text is charcoal — illegible)
   --------------------------------------------------------- */

.bg-proof p {
  color: rgba(255, 255, 255, 0.7);
}

.proof-strip .section-label,
.bg-proof .section-label {
  color: rgba(255, 255, 255, 0.4);
}


/* ---------------------------------------------------------
   G. services-grid alias + service-tile__body alias
   (homepage uses .services-grid but CSS only had .service-grid;
    homepage uses .service-tile__body but CSS only had .service-tile__desc)
   --------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-tile__body {
  font-size: 14px;
  color: var(--cool-gray);
  line-height: 1.6;
}

/* ---------------------------------------------------------
   H. result-card (used on Robertson hub credentials section)
   (on bg-mist / white — dark text needed)
   --------------------------------------------------------- */

.result-card {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.result-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  color: var(--digilu-navy);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.result-card__stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.result-card__label {
  font-size: 13px;
  color: var(--cool-gray);
  line-height: 1.4;
}


/* ---------------------------------------------------------
   I. sidebar-panel BEM element aliases
   (sidebar-panel__stat, sidebar-panel__label, sidebar-panel__list)
   --------------------------------------------------------- */

.sidebar-panel__stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.sidebar-panel__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.sidebar-panel__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-panel__list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}


/* ---------------------------------------------------------
   J. Breadcrumbs without class (plain <a> and <span> on dark)
   (some fire pages use naked <a> tags in .breadcrumb — make them visible)
   --------------------------------------------------------- */

.breadcrumb a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb > span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Auto-chevron between naked a/span children */
.breadcrumb > a + a::before,
.breadcrumb > a + span::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid rgba(255,255,255,0.3);
  border-top: 1.5px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  margin: 0 0.6rem;
  vertical-align: middle;
  flex-shrink: 0;
}


/* ---------------------------------------------------------
   K. fire-facts inline (on page-hero) — text must be white
   --------------------------------------------------------- */

.fire-facts .fire-case-fact-row {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.fire-facts .fire-case-fact-key {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.fire-facts .fire-case-fact-value {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  text-align: right;
}


/* ---------------------------------------------------------
   L. service-feature (used in Stratus Clean "What Was Built")
   --------------------------------------------------------- */

.service-feature {
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  background-color: var(--white);
}

.service-feature h3 {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  color: var(--digilu-navy);
  margin-bottom: 0.5rem;
}

.service-feature p {
  font-size: 14px;
  color: var(--cool-gray);
  line-height: 1.65;
  margin: 0;
}


/* ---------------------------------------------------------
   N. svc-card grid (Services page)
   --------------------------------------------------------- */

.svc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.svc-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transform: translateY(-3px);
  border-color: var(--digilu-navy);
}

.svc-card__icon {
  background: var(--digilu-navy);
  padding: 1.75rem 2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.svc-card__icon svg {
  width: 36px;
  height: 36px;
  stroke: #ffffff;
  flex-shrink: 0;
}

.svc-card__body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-card__title {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--digilu-navy);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.25;
}

.svc-card__desc {
  font-size: 14px;
  color: var(--cool-gray);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.svc-card__cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--digilu-navy);
  letter-spacing: 0.02em;
}

@media (max-width: 1023px) {
  .svc-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .svc-card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .svc-card__icon {
    padding: 1.25rem 1.5rem;
  }
  .svc-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
  }
}

/* ---------------------------------------------------------
   M. feature-tiles + content-list (special project pages)
   --------------------------------------------------------- */

/* Styled bullet list for deliverable items */
.content-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.content-list li {
  font-size: 15px;
  color: var(--digilu-charcoal);
  line-height: 1.55;
  padding-left: 1.375rem;
  position: relative;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--digilu-navy);
  opacity: 0.45;
}

.feature-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-tile {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 2rem 1.75rem;
}

.feature-tile__title {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  color: var(--digilu-navy);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.feature-tile p {
  font-size: 14px;
  color: var(--cool-gray);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1023px) {
  .feature-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-tiles {
    grid-template-columns: 1fr;
  }
}


/* ---------------------------------------------------------
   N. container--narrow, text-center utility
   --------------------------------------------------------- */

.container--narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ============================================================
   52. PROOF STRIP
   ============================================================ */

.proof-strip {
  background: var(--proof-dark);
  padding: 3.5rem var(--container-px);
  text-align: center;
}

.proof-strip-text {
  font-family: var(--font-accent);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.proof-pills span { padding: 0 0.6rem; }
.pill-sep { opacity: 0.4; }

@media (max-width: 767px) {
  .proof-strip { padding: 2.5rem var(--container-px); }
  .proof-pills { font-size: 0.75rem; gap: 0.25rem 0; }
}


/* ============================================================
   53. TRUST, MEASURED
   ============================================================ */

.trust-measured {
  background: var(--white);
  padding: 7rem var(--container-px);
}

.tm-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.tm-left .section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cool-gray);
  display: block;
  margin-bottom: 1.25rem;
}

.tm-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.0;
  color: var(--digilu-navy);
  margin-bottom: 1.25rem;
}

.tm-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cool-gray);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
}

.tm-signals {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.tm-signals li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--digilu-navy);
  padding-left: 1.1em;
  position: relative;
}

.tm-signals li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cool-gray);
  font-size: 0.75rem;
}

.tm-card {
  background: var(--light-mist);
  border: 1px solid rgba(26, 42, 52, 0.08);
  border-radius: 6px;
  padding: 2.5rem 2rem;
}

.tm-card .section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cool-gray);
  display: block;
  margin-bottom: 1.5rem;
}

.tm-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--digilu-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tm-arrow {
  color: var(--cool-gray);
  font-size: 0.6em;
  vertical-align: middle;
}

.tm-google-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.5rem;
}

.tm-google-icon {
  flex-shrink: 0;
}

.tm-google-label span {
  font-size: 0.8125rem;
  color: var(--cool-gray);
}

.tm-stat-label {
  font-size: 0.875rem;
  color: var(--cool-gray);
  margin-bottom: 1.5rem;
}

.tm-rule {
  border: none;
  border-top: 1px solid rgba(26, 42, 52, 0.1);
  margin-bottom: 1.5rem;
}

.tm-quote {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--digilu-charcoal);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.tm-card-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--digilu-navy);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.tm-card-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .tm-container { grid-template-columns: 1fr; gap: 3rem; }
  .trust-measured { padding: 4.5rem var(--container-px); }
}

@media (max-width: 767px) {
  .tm-signals { grid-template-columns: 1fr; }
  .trust-measured { padding: 3.5rem var(--container-px); }
}


/* ============================================================
   54. FEATURED WORK SECTIONS
   ============================================================ */

.featured-work {
  overflow: hidden;
}

.featured-robertson {
  background: var(--light-mist);
}

.featured-stratus {
  background: var(--digilu-navy);
}

.fw-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.fw-reverse {
  direction: rtl;
}

.fw-reverse > * {
  direction: ltr;
}

.fw-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.fw-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fw-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fw-content .section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cool-gray);
  display: block;
  margin-bottom: 1.25rem;
}

.fw-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  line-height: 0.95;
  color: var(--digilu-navy);
  margin-bottom: 1rem;
}

.fw-subhead {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--digilu-charcoal);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.fw-body {
  font-size: 0.9375rem;
  color: var(--cool-gray);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.fire-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.fire-badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid rgba(26, 42, 52, 0.12);
  color: var(--digilu-navy);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.fire-badge:hover {
  background: var(--digilu-navy);
  color: var(--white);
  border-color: var(--digilu-navy);
}

.fw-trust-signal {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--digilu-navy);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

/* Dark content panel (Stratus) */
.fw-content-dark {
  background: var(--digilu-navy);
}

.fw-content-dark .section-label {
  color: rgba(255, 255, 255, 0.4);
}

.fw-content-dark .fw-body {
  color: rgba(255, 255, 255, 0.72);
}

.stratus-metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stratus-before,
.stratus-after {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--white);
}

.stratus-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.35);
}

.stratus-metric-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
}

/* Stratus brand panel (before/after logos) */
.stratus-brand-panel {
  background-color: #0A1520;
  display: flex;
  align-items: stretch;
  min-height: 480px;
}

.stratus-ba {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.stratus-ba-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 32px;
}

.stratus-ba-before {
  background-color: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stratus-ba-after {
  background-color: rgba(255,255,255,0.04);
}

.stratus-ba-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6B7280;
  margin: 0;
}

.stratus-ba-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

.stratus-ba-rating {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  margin: 0;
  letter-spacing: 0.02em;
}

.stratus-ba-rating--after {
  color: #F59E0B;
}

.stratus-ba-arrow {
  font-size: 40px;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  padding: 0 8px;
}

.stratus-progression {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
}

/* Ghost buttons */
.btn-ghost-light {
  display: inline-block;
  border: 1px solid rgba(26, 42, 52, 0.25);
  color: var(--digilu-navy);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn-ghost-light:hover {
  background: var(--digilu-navy);
  border-color: var(--digilu-navy);
  color: var(--white);
}

.btn-ghost-dark {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .fw-container {
    grid-template-columns: 1fr;
  }
  .fw-reverse { direction: ltr; }
  .fw-image-wrap { min-height: 320px; }
  .fw-content { padding: 3rem 2rem; }
}

@media (max-width: 767px) {
  .fw-content { padding: 2.5rem var(--container-px); }
  .fw-image-wrap { min-height: 260px; }
}

/* ============================================================
   55. INNER PAGE HERO
   ============================================================ */

.inner-hero {
  background-color: var(--digilu-navy);
  padding: 100px 24px 80px;
  text-align: center;
}

.inner-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.inner-hero .section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 1.25rem;
}

.inner-hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  margin: 0 0 20px;
}

.inner-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .inner-hero { padding: 80px 20px 60px; }
  .inner-hero-sub { font-size: 16px; }
}

/* ============================================================
   56. FAQ PAGE
   ============================================================ */

.faq-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem var(--container-px);
}

.faq-section {
  margin-bottom: 4rem;
}

.faq-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  color: var(--digilu-navy);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--digilu-navy);
}

.faq-item {
  border-bottom: 1px solid rgba(26, 42, 52, 0.1);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}

.faq-q-text {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--digilu-navy);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 42, 52, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, border-color 0.2s ease, background-color 0.2s ease;
  color: var(--digilu-navy);
  font-size: 14px;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--digilu-navy);
  border-color: var(--digilu-navy);
  color: #ffffff;
}

.faq-a {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--cool-gray);
  line-height: 1.8;
}

.faq-a p { margin-bottom: 0.75rem; }
.faq-a p:last-child { margin-bottom: 0; }

.faq-a ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.75rem;
}

.faq-a ul li {
  padding: 0.2rem 0 0.2rem 1.25rem;
  position: relative;
  color: var(--digilu-charcoal);
}

.faq-a ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cool-gray);
  font-size: 0.75rem;
  top: 0.3rem;
}

.faq-a a {
  color: var(--digilu-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-cta {
  background: #F4F7F8;
  padding: 5rem var(--container-px);
  text-align: center;
  border-top: 3px solid #1A2A34;
}

.faq-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #1A2A34;
  margin-bottom: 1rem;
}

.faq-cta p {
  color: #6B7280;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.faq-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .faq-body { padding: 3rem var(--container-px); }
  .faq-section { margin-bottom: 2.5rem; }
  .faq-q-text { font-size: 1rem; }
  .faq-cta { padding: 3.5rem var(--container-px); }
}

/* ============================================================
   END OF STYLESHEET
   ============================================================ */

/* ============================================================
   HERO CTAs
   ============================================================ */

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-cta-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 3px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-cta-ghost:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: heroFadeUp 0.6s ease-out 0.8s forwards;
}

.hero-stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stats-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #ffffff;
  line-height: 1;
}

.hero-stats-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.72);
}

.hero-stats-sep {
  font-size: 18px;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}

/* ============================================================
   LOGO BAR — CSS MARQUEE
   ============================================================ */

.logo-bar {
  background-color: #0A1520;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 18px 0;
}

.logo-bar-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-bar-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  padding: 0 32px;
  transition: color 0.2s ease;
}

.logo-bar-sep {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}

/* ============================================================
   STAT BAR
   ============================================================ */

.stat-bar {
  background-color: #0F1D25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 36px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  max-width: 280px;
}

.stat-bar-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #ffffff;
  line-height: 1;
}

.stat-bar-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}

.stat-bar-divider {
  width: 1px;
  height: 48px;
  background-color: rgba(255,255,255,0.08);
  flex-shrink: 0;
  margin: 0 24px;
}

@media (max-width: 600px) {
  .stat-bar { flex-direction: column; gap: 28px; }
  .stat-bar-divider { width: 48px; height: 1px; margin: 0; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stat-number { font-size: 1.75rem; }
}


/* ============================================================
   CONTACT PAGE HERO
   ============================================================ */

.contact-hero {
  min-height: 75vh;
  background: linear-gradient(135deg, #0A1520 0%, #1A2A34 50%, #0A1520 100%);
  background-size: 300% 300%;
  animation: heroGradient 12s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.contact-hero-inner {
  max-width: 760px;
}

.contact-hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.92;
  margin: 0 0 1.5rem;
}

.contact-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.contact-hero-cta {
  display: inline-block;
  background: #ffffff;
  color: #1A2A34;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 48px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.contact-hero-cta:hover {
  background: #F4F7F8;
}

/* Before/After comparison row (1fr auto 1fr with arrow in center) */
.before-after-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 600px) {
  .before-after-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  /* Hide the arrow on mobile — stack before and after vertically */
  .before-after-row > *:nth-child(2) {
    display: none;
  }
}

@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .contact-trust-grid { grid-template-columns: 1fr !important; }
  .contact-hero-h1 { font-size: clamp(2.5rem, 10vw, 4rem); }

  /* Fix contact dark card padding on mobile */
  .contact-grid > div:last-child {
    padding: 32px 24px !important;
  }

  /* Fix outer contact section padding on mobile */
  .contact-grid {
    padding: 0 !important;
  }
}


/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 100%);
  z-index: 10000;
  pointer-events: none;
  transition: width 0.05s linear;
}


/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  will-change: transform;
  transition: opacity 0.2s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.2s ease;
}

.cursor-ring.cursor--link {
  width: 56px;
  height: 56px;
  border-color: rgba(255, 255, 255, 0.8);
}

.cursor-ring.cursor--cta {
  width: 64px;
  height: 64px;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.cursor-ring.cursor--image {
  width: 72px;
  height: 72px;
  border-color: rgba(255, 255, 255, 0.4);
}

.cursor-ring.cursor--press {
  transform: scale(0.85) !important;
}

.cursor-dot.cursor--link { opacity: 0.6; }


/* ============================================================
   SECTION NUMBERS
   ============================================================ */
.section-num {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  color: rgba(0, 0, 0, 0.045);
  opacity: 0;
  transition: opacity 1.2s ease;
}

.section-num--visible { opacity: 1; }

/* On dark backgrounds */
.trust-measured .section-num,
.featured-robertson .section-num,
.featured-stratus .section-num,
.quote-section .section-num,
.bg-navy .section-num {
  color: rgba(255, 255, 255, 0.045);
}


/* ============================================================
   QUOTE / TESTIMONIAL SECTION
   ============================================================ */
.quote-section {
  background: #0A1520;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24rem;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
}

.quote-section .container {
  position: relative;
  z-index: 1;
}

.site-quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.site-quote__mark {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  line-height: 0.5;
  color: rgba(255,255,255,0.15);
  margin-bottom: 2rem;
}

.site-quote__text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.site-quote__cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  font-style: normal;
}
.site-quote__cite-role {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  margin-top: 2px;
}

.site-quote__divider {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 1.5rem;
}

.site-quote__attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.site-quote__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}


/* ============================================================
   FOOTER SUBSCRIBE
   ============================================================ */
.footer-subscribe {
  background: #162430;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-subscribe__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.footer-subscribe__form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-subscribe__input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  padding: 12px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff;
  width: 260px;
  outline: none;
  transition: border-color 0.2s ease;
}

.footer-subscribe__input::placeholder { color: rgba(255,255,255,0.3); }
.footer-subscribe__input:focus { border-color: rgba(255,255,255,0.4); }

.footer-subscribe__btn {
  background: #ffffff;
  color: #1A2A34;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.footer-subscribe__btn:hover {
  background: #F4F7F8;
  transform: translateY(-1px);
}


/* ============================================================
   IMPROVED CARD + TILE MICRO-INTERACTIONS
   ============================================================ */
.project-card {
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.32s ease;
  will-change: transform;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.22);
}

.service-tile {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, border-color 0.2s ease, box-shadow 0.28s ease;
}

.service-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.fire-badge {
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fire-badge:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
}

/* Project card image zoom */
.project-card__image {
  overflow: hidden;
}

.project-card__image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-card__image img {
  transform: scale(1.04);
}


/* ============================================================
   STAGGER CHILDREN
   ============================================================ */
.stagger-child {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-child--visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   HERO CONTENT PARALLAX (contain overflow)
   ============================================================ */
.hero {
  overflow: hidden;
}

.hero-content {
  will-change: transform, opacity;
}


/* ============================================================
   FEATURED WORK SECTION HOVER GLOW
   ============================================================ */
.fw-image-wrap {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border-radius: 4px;
}

.fw-image-wrap:hover {
  transform: scale(1.015);
}

.fw-image {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fw-image-wrap:hover .fw-image {
  transform: scale(1.03);
}


/* ============================================================
   TRUST MEASURED — enhanced card
   ============================================================ */
.tm-card {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.tm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.28);
}


/* ============================================================
   BUTTON POLISH
   ============================================================ */
.btn-primary,
.btn,
.btn-secondary {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-cta {
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

.hero-cta:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}


/* ============================================================
   NAV CTA PULSE
   ============================================================ */
.nav-cta {
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}

.nav-cta:hover::after {
  background: rgba(255,255,255,0.06);
}


/* ============================================================
   ACCESSIBILITY — improved contrast
   ============================================================ */

/* Body text on dark: was 0.55, now 0.75 minimum */
.contact-hero-sub { color: rgba(255,255,255,0.72) !important; }
.hero-sub { color: rgba(255,255,255,0.78) !important; }

/* Gray text on light backgrounds */
.lead { color: #4B5563; }
.text-cool-gray { color: #4B5563; }


/* ============================================================
   LOGO BAR HOVER — client names brighten
   ============================================================ */
.logo-bar-item {
  transition: color 0.3s ease;
  cursor: default;
}

.logo-bar:hover .logo-bar-item:hover {
  color: rgba(255,255,255,0.95);
}


/* ============================================================
   INDUSTRIES SECTION — text contrast fix
   ============================================================ */
.section.bg-navy p {
  color: rgba(255,255,255,0.65);
}


/* ============================================================
   MOBILE — cursor disabled, no parallax visual artifacts
   ============================================================ */
@media (max-width: 767px) {
  .cursor-dot, .cursor-ring { display: none; }
  .hero-content { will-change: auto; }
}


/* ============================================================
   ENTREPRENEUR AWARD BADGE
   ============================================================ */
.entrepreneur-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: radial-gradient(circle at center, rgba(255,255,255,0.06) 0%, transparent 70%);
  padding: 2rem;
  gap: 6px;
  position: relative;
}

.entrepreneur-badge::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
}

.entrepreneur-badge__source {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
}

.entrepreneur-badge__award {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
}

.entrepreneur-badge__years {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 8px;
  margin-top: 4px;
}

/* ============================================================
   CASE PAGE STAT BAR (Robertson hero etc.)
   ============================================================ */
.case-stat-bar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  justify-content: flex-start;
}

.case-stat-bar__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2rem 0 0;
}

.case-stat-bar__item:first-child { padding-left: 0; }

.case-stat-bar__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}

.case-stat-bar__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
}

.case-stat-bar__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 0 2rem 0 0;
}

@media (max-width: 600px) {
  .case-stat-bar { gap: 16px; }
  .case-stat-bar__item { padding: 0; }
  .case-stat-bar__divider { display: none; }
}


.entrepreneur-badge__brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
}

.stratus-award-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 10px 16px;
  margin-bottom: 1.5rem;
}

.stratus-award-pill__label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
}

.stratus-award-pill__text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}


/* ============================================================
   SMOOTH IMAGE CLIP REVEALS
   ============================================================ */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-clip.revealed {
  clip-path: inset(0 0% 0 0);
}


/* ============================================================
   PROOF STRIP UPGRADE
   ============================================================ */
.proof-strip {
  position: relative;
  overflow: hidden;
}

.proof-pills span {
  transition: color 0.2s ease;
}

.proof-pills:hover span:not(.pill-sep) {
  color: rgba(255,255,255,0.5);
}

.proof-pills span:not(.pill-sep):hover {
  color: #ffffff !important;
}


/* ── Footer Ecosystem ── */
.footer-ecosystem {
  background-color: #0F1D25;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 24px;
}
.footer-ecosystem-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-ecosystem-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 0.75rem;
}
.footer-ecosystem-list p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 0.35rem;
}
.footer-ecosystem-list p:last-child { margin-bottom: 0; }
.footer-ecosystem-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-ecosystem-list a:hover { color: rgba(255,255,255,0.8); text-decoration: underline; }
.footer-ecosystem-cta { flex-shrink: 0; }
@media (max-width: 600px) {
  .footer-ecosystem-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
