/* ==========================================================================
   1. DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
  /* Dominant Sabal Color Palette */
  --brand-navy: #17156B;
  --brand-navy-dark: #0E1048;
  --brand-navy-light: #302E8F;
  --brand-cyan: #22AEDD;

  /* Neutral Grays */
  --brand-gray: #92949A;
  --brand-gray-dark: #555963;
  --brand-gray-light: #E5E7EC;

  /* Controlled Accents (Selective Node & Category Markers Only) */
  --brand-green: #75BE44;
  --brand-yellow: #F4D914;
  --brand-yellow-dark: #8A7200;
  --brand-orange: #F49A22;
  --brand-red: #ED2B23;
  --brand-magenta: #D91BC5;

  /* Background Hierarchy */
  --background-white: #FFFFFF;
  --background-soft: #F7F8FC;
  --background-blue: #F0F2FA;

  /* Typography & Contrast */
  --text-primary: #171923;
  --text-secondary: #5D6270;
  --border-light: #DDE0E8;
  --border-dark: rgba(255, 255, 255, 0.14);

  /* Font Family - Pure Modern Manrope */
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Refined Radius System */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Restrained Depth & Shadows */
  --shadow-sm: 0 2px 6px rgba(14, 16, 72, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 16, 72, 0.06);
  --shadow-lg: 0 16px 36px rgba(14, 16, 72, 0.12);

  /* Smooth Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--background-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 100px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

/* Focus Accessibility */
:focus-visible {
  outline: 2px solid var(--brand-cyan);
  outline-offset: 3px;
}

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

/* Progressive Enhancement Reveals */
.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   3. PROPOSAL CONCEPT BANNER & PREMIUM UTILITIES
   ========================================================================== */
.proposal-banner {
  background: linear-gradient(90deg, #0E1048 0%, #17156B 50%, #0E1048 100%);
  color: #FFFFFF;
  padding: 8px 0;
  font-size: 0.8125rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(34, 174, 221, 0.3);
  position: relative;
  z-index: 1001;
}

.proposal-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.proposal-badge {
  background: rgba(34, 174, 221, 0.2);
  color: var(--brand-cyan);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(34, 174, 221, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.pulse-sparkle {
  display: inline-block;
  animation: sparklePulse 2s infinite;
}

@keyframes sparklePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.proposal-text {
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.proposal-link {
  color: var(--brand-cyan);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.proposal-link:hover { color: #FFFFFF; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 88px 0; }

.section-header {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-cyan);
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.375rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--brand-navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title.light { color: #FFFFFF; }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-subtitle.light { color: rgba(255, 255, 255, 0.82); }

/* SVG Icon Helper */
.icon-svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

/* Premium Buttons with Light Reflection */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #1D1A82 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(23, 21, 107, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--brand-cyan) 0%, #1A95C1 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 174, 221, 0.38);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background-color: var(--brand-navy);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.brand-logo-img-footer {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  background-color: #FFFFFF;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.brand-logo-img-mobile {
  height: 38px;
  width: auto;
  background-color: #FFFFFF;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

/* Pulsing Dots */
.network-dot-row {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dot-cyan { width: 7px; height: 7px; border-radius: 50%; background-color: var(--brand-cyan); position: relative; }
.dot-green { width: 7px; height: 7px; border-radius: 50%; background-color: var(--brand-green); position: relative; }
.dot-yellow { width: 7px; height: 7px; border-radius: 50%; background-color: var(--brand-yellow); position: relative; }
.dot-orange { width: 7px; height: 7px; border-radius: 50%; background-color: var(--brand-orange); position: relative; }
.dot-red { width: 7px; height: 7px; border-radius: 50%; background-color: var(--brand-red); position: relative; }
.dot-magenta { width: 7px; height: 7px; border-radius: 50%; background-color: var(--brand-magenta); position: relative; }

.dot-cyan::after, .dot-green::after, .dot-yellow::after, .dot-orange::after, .dot-red::after, .dot-magenta::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.4;
  animation: dotGlow 2.5s infinite ease-in-out;
}

@keyframes dotGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.7); opacity: 0; }
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-cyan);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link:focus-visible { color: var(--brand-navy); }
.nav-link:hover::after, .nav-link:focus-visible::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions .btn {
  padding: 9px 18px;
  font-size: 0.84375rem;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--brand-navy);
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(14, 16, 72, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-drawer-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--brand-navy-dark);
  color: #FFFFFF;
  z-index: 1001;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.mobile-drawer.open { right: 0; }

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.mobile-drawer-close-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

.mobile-nav-link:hover, .mobile-nav-link:focus-visible { color: var(--brand-cyan); }

/* ==========================================================================
   5. HERO SECTION WITH AMBIENT GLOW & LIVE BADGE
   ========================================================================== */
.hero-section {
  background: radial-gradient(circle at 85% 30%, rgba(34, 174, 221, 0.16) 0%, rgba(23, 21, 107, 0.04) 50%, transparent 80%),
              var(--background-blue);
  padding: 68px 0 92px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--brand-navy);
  margin-bottom: 20px;
  letter-spacing: -0.035em;
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--brand-navy) 20%, var(--brand-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 24px;
}

.hero-trust-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 174, 221, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(34, 174, 221, 0.2);
}

.hero-credibility {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.hero-credibility-icon {
  color: var(--brand-cyan);
}

.hero-visual { position: relative; }

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(14, 16, 72, 0.15);
  border: 1px solid var(--border-light);
}

.hero-image-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 16, 72, 0.05) 0%, rgba(14, 16, 72, 0.3) 100%);
}

.hero-live-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(14, 16, 72, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(117, 190, 68, 0.4);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-green);
  box-shadow: 0 0 10px var(--brand-green);
  animation: livePulse 2s infinite ease-in-out;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.floating-info-panel {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(14, 16, 72, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(34, 174, 221, 0.35);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(14, 16, 72, 0.25);
  max-width: 330px;
  z-index: 3;
  transition: var(--transition-smooth);
}

.floating-info-panel:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cyan);
  box-shadow: 0 24px 48px rgba(14, 16, 72, 0.35);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-cyan);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 6px;
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.panel-tag {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tag-dot { width: 5px; height: 5px; border-radius: 50%; }

/* ==========================================================================
   6. CREDIBILITY & STANDARDS WITH EMERGENCY AUDIT TRIGGER
   ========================================================================== */
.standards-section {
  background-color: var(--background-white);
  padding: 72px 0;
  border-bottom: 1px solid var(--border-light);
}

.standards-label-row {
  text-align: center;
  margin-bottom: 24px;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gray-dark);
}

.standards-text-labels {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 36px;
}

.standard-label-item {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.emergency-audit-box {
  background: linear-gradient(135deg, rgba(237, 43, 35, 0.04) 0%, rgba(244, 154, 34, 0.08) 100%);
  border: 1px solid rgba(237, 43, 35, 0.25);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 40px;
}

.emergency-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.emergency-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.outcomes-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.outcome-item {
  text-align: left;
}

.outcome-title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.outcome-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px dashed var(--border-light);
}

.metric-card {
  background: var(--background-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition-smooth);
}

.metric-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-sm);
}

.metric-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   7. CORE SERVICES (Editorial Layout)
   ========================================================================== */
.services-section {
  background-color: var(--background-soft);
}

.services-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.service-card-featured {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.service-image-header {
  position: relative;
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}

.service-image-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card-featured:hover .service-image-header img {
  transform: scale(1.05);
}

.service-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(90deg, var(--brand-cyan) 0%, var(--brand-green) 33%, var(--brand-yellow) 66%, var(--brand-magenta) 100%);
}

.service-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 174, 221, 0.4);
}

.service-card-secondary {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.service-card-secondary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 174, 221, 0.35);
}

.secondary-services-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-cyan { background-color: rgba(34, 174, 221, 0.12); color: var(--brand-navy); }
.badge-yellow { background-color: rgba(244, 217, 20, 0.15); color: var(--brand-yellow-dark); }
.badge-magenta { background-color: rgba(217, 27, 197, 0.12); color: var(--brand-navy); }

.service-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 24px;
}

.service-list {
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

/* ==========================================================================
   8. WHY SABAL & RISK CALLOUT BOX
   ========================================================================== */
.why-section {
  background-color: var(--background-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.why-content { max-width: 580px; }

.diff-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.diff-item {
  background-color: var(--background-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-smooth);
}

.diff-item:hover {
  border-color: rgba(34, 174, 221, 0.35);
  box-shadow: var(--shadow-sm);
}

.diff-item-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.diff-item-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.risk-callout-box {
  background: linear-gradient(135deg, rgba(23, 21, 107, 0.04) 0%, rgba(34, 174, 221, 0.08) 100%);
  border: 1px solid rgba(34, 174, 221, 0.3);
  border-left: 4px solid var(--brand-cyan);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 28px;
}

.risk-callout-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.risk-callout-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.why-visual { position: relative; }

.why-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.why-image-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* ==========================================================================
   9. INDUSTRIES & FACILITY TYPES SERVED
   ========================================================================== */
.industries-section {
  background-color: var(--background-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.industry-image-thumb {
  position: relative;
  height: 140px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  margin: -28px -24px 20px -24px;
  border-bottom: 1px solid var(--border-light);
}

.industry-image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.industry-card:hover .industry-image-thumb img {
  transform: scale(1.06);
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-md);
}

.industry-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--background-blue);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition-fast);
}

.industry-card:hover .industry-icon-wrapper {
  background-color: var(--brand-navy);
  color: var(--brand-cyan);
}

.industry-card-title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.industry-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   10. PROCESS & EXPERTISE
   ========================================================================== */
.process-expertise-section {
  background-color: var(--brand-navy-dark);
  color: #FFFFFF;
}

.process-expertise-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.process-timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.timeline-number-node {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--brand-cyan);
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(34, 174, 221, 0.2);
  transition: var(--transition-smooth);
}

.process-timeline-step:hover .timeline-number-node {
  transform: scale(1.1);
  background-color: var(--brand-cyan);
  box-shadow: 0 0 24px rgba(34, 174, 221, 0.5);
}

.timeline-step-content {
  padding-top: 4px;
}

.timeline-step-title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.timeline-step-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.expertise-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.expertise-category-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-smooth);
}

.expertise-category-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(34, 174, 221, 0.4);
  transform: translateY(-3px);
}

.category-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-cyan);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* ==========================================================================
   11. FINAL CTA, QUICK NEED SELECTOR & CONTACT FORM
   ========================================================================== */
.cta-contact-section {
  background-color: var(--background-blue);
  color: var(--text-primary);
  position: relative;
  border-top: 1px solid var(--border-light);
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.cta-info { max-width: 500px; }

.cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--brand-navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 32px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-detail-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gray-dark);
}

.contact-detail-text strong,
.contact-detail-text a {
  color: var(--brand-navy);
  font-weight: 700;
}

.contact-detail-text a:hover, .contact-detail-text a:focus-visible { color: var(--brand-cyan); }

/* Quick Need Selector Pills */
.quick-need-selector {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-light);
}

.quick-need-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quick-need-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-pill {
  background-color: var(--background-soft);
  border: 1px solid var(--border-light);
  color: var(--brand-navy);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78125rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.quick-pill:hover, .quick-pill.active {
  background-color: var(--brand-navy);
  color: var(--brand-cyan);
  border-color: var(--brand-navy);
  transform: translateY(-1px);
}

/* Form Container Card */
.contact-form-container {
  background-color: #FFFFFF;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.form-errors-summary {
  display: none;
  background-color: #FFF2F2;
  border: 1px solid var(--brand-red);
  color: #900;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width { grid-column: span 2; }

.form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #FAFAFA;
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  background-color: #FFFFFF;
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(23, 21, 107, 0.1);
  outline: none;
}

.form-control.is-invalid {
  border-color: var(--brand-red);
  background-color: #FFF8F8;
}

.field-error {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-red);
  min-height: 16px;
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 8px;
}

.form-guarantee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-gray-dark);
}

.form-success-message {
  display: none;
  background-color: var(--background-blue);
  border: 1px solid var(--brand-cyan);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}

.form-success-message h4 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.form-success-message p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ==========================================================================
   12. FOOTER (#0E1048 Dark Navy)
   ========================================================================== */
.site-footer {
  background-color: var(--brand-navy-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { max-width: 320px; }

.footer-heading {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.72);
  transition: var(--transition-fast);
}

.footer-link:hover, .footer-link:focus-visible {
  color: var(--brand-cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   13. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .why-grid, .process-expertise-grid, .cta-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-layout, .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .metrics-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  .nav-menu, .header-actions .btn { display: none; }
  .mobile-nav-toggle { display: block; }
  .outcomes-row { grid-template-columns: 1fr; gap: 24px; }
  .proposal-banner-inner { justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section-padding { padding: 56px 0; }
  .section-title { font-size: 1.875rem; }
  .hero-title { font-size: 2.125rem; }
  .hero-subtitle { font-size: 1.0625rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-image-wrapper img { height: 300px; }
  .floating-info-panel { position: relative; bottom: 0; left: 0; margin-top: -24px; max-width: none; }
  .diff-list, .expertise-categories-grid, .form-grid, .metrics-bar, .industries-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .contact-form-container { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
