/* ============================================================
   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@700&family=Barlow:wght@400;600&family=Inter:wght@400;500&display=swap');


/* ------------------------------------------------------------
   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;
}

/* 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 */
.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);
}

/* 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);
}

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


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

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height-desktop);
  background-color: transparent;
  transition: background-color var(--transition-base),
              backdrop-filter var(--transition-base),
              box-shadow var(--transition-base);
  display: flex;
  align-items: center;
}

.site-nav.nav--scrolled {
  background-color: rgba(26, 42, 52, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

/* Always show dark nav for pages with non-hero backgrounds */
.site-nav.nav--dark {
  background-color: rgba(26, 42, 52, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-inner {
    padding: 0 var(--container-px-lg);
  }
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

/* Individual nav item */
.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.875rem;
  border-radius: 4px;
  transition: color var(--transition-base), background-color var(--transition-base);
  white-space: nowrap;
  letter-spacing: 0.02em;
  cursor: pointer;
  user-select: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: var(--white);
}

/* Dropdown chevron */
.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-item:hover .nav-chevron,
.nav-item.dropdown-open .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background-color: var(--digilu-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  box-shadow: var(--shadow-xl);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base),
              visibility var(--transition-base),
              transform var(--transition-base);
  transform: translateX(-50%) translateY(-6px);
}

.nav-item:hover .nav-dropdown,
.nav-item.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.nav-dropdown-item {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.6rem 1.25rem;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.07);
}

/* Dropdown separator / label */
.nav-dropdown-separator {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0.4rem 0;
}

.nav-dropdown-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  padding: 0.4rem 1.25rem 0.2rem;
}

/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-base),
              opacity var(--transition-base),
              width var(--transition-base);
  transform-origin: center;
}

/* Hamburger → X state */
.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--digilu-navy);
  padding: var(--nav-height-mobile) 0 2rem;
  overflow-y: auto;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-inner {
  padding: 2rem var(--container-px);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Mobile nav items */
.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white);
  padding: 1.1rem 0;
  width: 100%;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}

.mobile-nav-link .nav-chevron {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.mobile-nav-item.accordion-open .mobile-nav-link .nav-chevron {
  transform: rotate(180deg);
}

/* Mobile accordion content */
.mobile-dropdown {
  display: none;
  padding: 0 0 0.75rem 1rem;
  flex-direction: column;
  gap: 0.1rem;
}

.mobile-nav-item.accordion-open .mobile-dropdown {
  display: flex;
}

.mobile-dropdown-item {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0.5rem;
  border-radius: 4px;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.mobile-dropdown-item:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.06);
}

.mobile-dropdown-separator {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 0.3rem 0.5rem;
}

.mobile-dropdown-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  padding: 0.5rem 0.5rem 0.2rem;
}

/* Mobile nav CTA */
.mobile-nav-cta {
  padding: 2rem var(--container-px) 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Responsive breakpoints for nav */
@media (max-width: 1023px) {
  .site-nav {
    height: var(--nav-height-mobile);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}


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

.site-footer {
  background-color: var(--digilu-navy);
  color: var(--white);
  padding-top: 5rem;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

/* Footer brand column */
.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.footer-since {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* Footer nav columns */
.footer-col-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.25rem;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--white);
}

.footer-cta-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-cta-col .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-trust-badge {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* Footer responsive */
@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}


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

.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: var(--digilu-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height-desktop);
}

/* Noise texture overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* Subtle dot pattern as alternative/additional texture */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.025;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 32px 32px;
}

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

/* Hero kicker */
.hero-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;

  /* Animation */
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.6s ease-out 0s forwards;
}

/* Hero H1 */
.hero-section h1 {
  color: var(--white);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.95;
  margin-bottom: 1.75rem;

  /* Animation */
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.6s ease-out 0.2s forwards;
}

/* Hero subhead */
.hero-subhead {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.375rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin-bottom: 1.25rem;

  /* Animation */
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.6s ease-out 0.5s forwards;
}

/* Hero body */
.hero-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 580px;
  margin-bottom: 2.5rem;

  /* Animation */
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.6s ease-out 0.7s forwards;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;

  /* Animation */
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.6s ease-out 0.9s forwards;
}

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

@media (max-width: 767px) {
  .hero-section {
    padding-top: var(--nav-height-mobile);
    min-height: 100svh;
  }

  .hero-section h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    text-align: center;
    justify-content: center;
  }
}


/* ------------------------------------------------------------
   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 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.breadcrumb-item {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.breadcrumb-item:hover {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-separator {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-item.current {
  color: rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

/* Dark breadcrumb (light bg pages) */
.breadcrumb--dark .breadcrumb-item {
  color: var(--cool-gray);
}

.breadcrumb--dark .breadcrumb-item:hover {
  color: var(--digilu-navy);
}

.breadcrumb--dark .breadcrumb-separator {
  color: rgba(0, 0, 0, 0.2);
}

.breadcrumb--dark .breadcrumb-item.current {
  color: var(--digilu-charcoal);
}


/* ------------------------------------------------------------
   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.55);
  max-width: 640px;
}

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

/* Industry pills */
.industry-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

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


/* ------------------------------------------------------------
   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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.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__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.55);
}

.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);
}

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

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


/* ------------------------------------------------------------
   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.55);
}

@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.55);
  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.55);
  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: 12px;
  color: var(--cool-gray);
}

@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.55);
}

.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.55);
}

@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.55);
  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
   (CSS had .breadcrumb-item / .breadcrumb-separator,
    HTML uses .breadcrumb-link / .breadcrumb-sep / .breadcrumb-current)
   --------------------------------------------------------- */

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

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

.breadcrumb-sep {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  margin: 0 0.25rem;
}

.breadcrumb-current {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}


/* ---------------------------------------------------------
   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.55); }


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

.proof-strip p,
.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;
}

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