/* ==========================================================================
   IDEOLYNX Corporate BPO Theme Stylesheet - High Density & Motion Edition
   Design Aesthetic:
   - Base Canvas: #F4F6F8 (Crisp Light Background)
   - Primary Navy: #1B3A5C
   - Deep Navy: #0B1926 & #102436
   - Accent Blue: #2E6FB0
   - Growth Green: #3FAE7C
   - Growth Green Light: #EBF8F2
   - Border Slate: #E2E8F0 / #CBD5E1
   - White Surface: #FFFFFF
   - Text High Density: #1E293B / #3D4852
   - Text Muted: #64748B
   - Dynamic Backgrounds, Smooth Keyframe Motions & High-Density UI Geometry
   ========================================================================== */

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

:root {
  --primary-navy: #1B3A5C;
  --deep-navy: #102436;
  --space-navy: #0B1926;
  --accent-blue: #2E6FB0;
  --growth-green: #3FAE7C;
  --growth-green-light: #EBF8F2;
  --light-gray: #F4F6F8;
  --light-gray-alt: #EDF2F7;
  --border-gray: #E2E8F0;
  --border-subtle: #CBD5E1;
  --white: #FFFFFF;
  --body-text: #3D4852;
  --heading-text: #102436;
  --muted-text: #64748B;
  
  /* High Density Typography Stack */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  
  /* High Density Border Radii */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  
  /* Crisp Micro-Elevations */
  --shadow-xs: 0 1px 2px rgba(16, 36, 54, 0.04);
  --shadow-sm: 0 1px 3px rgba(16, 36, 54, 0.06), 0 1px 2px rgba(16, 36, 54, 0.03);
  --shadow-md: 0 4px 10px -1px rgba(16, 36, 54, 0.08), 0 2px 5px -1px rgba(16, 36, 54, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(16, 36, 54, 0.12), 0 4px 8px -2px rgba(16, 36, 54, 0.06);
  --shadow-hover: 0 10px 24px rgba(27, 58, 92, 0.14);
  --shadow-glow-green: 0 0 20px rgba(63, 174, 124, 0.35);
  --shadow-glow-blue: 0 0 25px rgba(46, 111, 176, 0.3);
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease-in-out;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-text);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 2.8vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

p {
  margin-bottom: 0.85rem;
  color: var(--body-text);
  font-size: 0.95rem;
}

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

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

a:hover {
  color: var(--primary-navy);
}

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

ul {
  list-style: none;
}

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

.container-narrow {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   Section Layouts & Enhanced Backgrounds
   ========================================================================== */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-sm {
  padding: 2.75rem 0;
}

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

.bg-light {
  background-color: var(--light-gray);
  background-image: radial-gradient(rgba(203, 213, 225, 0.4) 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-pattern {
  background-color: #F8FAFC;
  background-image: 
    radial-gradient(rgba(30, 58, 92, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 246, 248, 0.8), #FFFFFF);
  background-size: 24px 24px, 100% 100%;
}

.bg-navy {
  background: linear-gradient(135deg, #102436 0%, #1B3A5C 100%);
  color: var(--white);
}

.bg-deep-navy {
  background: linear-gradient(135deg, #091726 0%, #102436 100%);
  color: var(--white);
}

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4,
.bg-deep-navy h1, .bg-deep-navy h2, .bg-deep-navy h3, .bg-deep-navy h4 {
  color: var(--white);
}

.bg-navy p, .bg-deep-navy p {
  color: #E2E8F0;
}

/* ==========================================================================
   Animation Keyframes & Scroll-Reveal System
   ========================================================================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(63, 174, 124, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(63, 174, 124, 0);
  }
}

@keyframes pulseBlue {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

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

@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* Scroll Reveal Classes */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Buttons, Badges & Interactive Shimmers
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.45rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #3FAE7C 0%, #35966A 100%);
  color: var(--white);
  border-color: #3FAE7C;
  box-shadow: 0 2px 6px rgba(63, 174, 124, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #44BE87 0%, #318E63 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(63, 174, 124, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #1B3A5C 0%, #102436 100%);
  color: var(--white);
  border-color: #1B3A5C;
  box-shadow: 0 2px 6px rgba(27, 58, 92, 0.25);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #234B75 0%, #091726 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 36, 54, 0.35);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-navy);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.btn-outline-navy {
  background-color: transparent;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.btn-outline-navy:hover {
  background-color: var(--primary-navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.825rem;
}

.btn-lg {
  padding: 0.85rem 1.85rem;
  font-size: 0.975rem;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  animation: rippleEffect 0.6s linear;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.badge-green {
  background-color: var(--growth-green-light);
  color: #1f6844;
  border: 1px solid rgba(63, 174, 124, 0.35);
}

.badge-blue {
  background-color: #EBF3FA;
  color: var(--accent-blue);
  border: 1px solid rgba(46, 111, 176, 0.25);
}

.badge-navy {
  background-color: rgba(27, 58, 92, 0.08);
  color: var(--primary-navy);
  border: 1px solid rgba(27, 58, 92, 0.15);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--growth-green);
  display: inline-block;
  animation: pulseGlow 2s infinite;
}

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-gray);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  height: 70px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(16, 36, 54, 0.04);
}

.site-header.scrolled {
  height: 62px;
  box-shadow: 0 4px 16px rgba(16, 36, 54, 0.09);
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: height 0.2s ease;
}

.scrolled .logo-img {
  height: 33px;
}

/* Primary Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--deep-navy);
  font-size: 0.885rem;
  font-weight: 600;
  padding: 0.45rem 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.18s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.4rem;
  right: 0.4rem;
  height: 2px;
  background-color: var(--accent-blue);
  transform: scaleX(0);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-blue);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.nav-link svg.chevron {
  transition: transform 0.25s ease;
}

.has-dropdown:hover .nav-link svg.chevron {
  transform: rotate(180deg);
}

/* Dropdown Menus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gray);
  padding: 1.15rem;
  min-width: 270px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1010;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Mega Dropdown for Services */
.dropdown-mega {
  min-width: 620px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  left: -100px;
  transform: translateY(10px);
}

.has-dropdown:hover .dropdown-mega {
  transform: translateY(0);
}

.dropdown-group-title {
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--muted-text);
  margin-bottom: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border-gray);
}

.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--deep-navy);
  transition: all 0.18s ease;
}

.dropdown-link:hover {
  background-color: var(--light-gray);
  color: var(--accent-blue);
  transform: translateX(3px);
}

.dropdown-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  background-color: #EBF3FA;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.dropdown-link:hover .dropdown-icon {
  transform: scale(1.1);
  background-color: var(--growth-green-light);
}

.dropdown-text h4 {
  font-size: 0.865rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.dropdown-text p {
  font-size: 0.76rem;
  color: var(--muted-text);
  line-height: 1.3;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--deep-navy);
}

/* ==========================================================================
   Mobile Navigation Drawer
   ========================================================================== */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -4px 0 25px rgba(16, 36, 54, 0.18);
  z-index: 2000;
  transition: right 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 1.5rem;
}

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

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 36, 54, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

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

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-gray);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-submenu {
  margin-top: 0.6rem;
  margin-left: 0.6rem;
  padding-left: 0.6rem;
  border-left: 2px solid var(--border-gray);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-sub-link {
  font-size: 0.875rem;
  color: var(--muted-text);
}

/* ==========================================================================
   Hero Sections with Animated Aurora Glow & Interactive Console
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #091726 0%, #102436 45%, #1B3A5C 85%, #14304D 100%);
  color: var(--white);
  padding: 5.5rem 0 5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dynamic Ambient Glow Orbs */
.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: 5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 111, 176, 0.35) 0%, rgba(63, 174, 124, 0.15) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: pulseBlue 7s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 174, 124, 0.25) 0%, rgba(27, 58, 92, 0.2) 60%, transparent 75%);
  filter: blur(70px);
  pointer-events: none;
  animation: pulseBlue 9s ease-in-out infinite alternate;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(46, 111, 176, 0.28) 1.2px, transparent 1.2px),
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px, 140px 140px, 140px 140px;
  opacity: 0.65;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 40%, transparent 95%);
}

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

.hero-content {
  max-width: 680px;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.hero-title {
  color: var(--white);
  margin: 0.5rem 0 1.15rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.hero-title .text-growth {
  background: linear-gradient(135deg, #44BE87 0%, #76E2B1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #E2E8F0;
  margin-bottom: 1.85rem;
  line-height: 1.6;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-chip-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #CBD5E1;
}

.trust-chip-item svg {
  color: var(--growth-green);
}

/* Hero Right Visual: Live Operations Console */
.hero-visual-card {
  background: rgba(16, 36, 54, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4), 0 0 30px rgba(46, 111, 176, 0.15);
  backdrop-filter: blur(12px);
  position: relative;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.console-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #76E2B1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.console-ticker {
  font-size: 0.75rem;
  color: #94A3B8;
  font-family: var(--font-body);
}

/* Animated SVG Growth Chart Card */
.console-chart-wrap {
  background: rgba(11, 25, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.chart-title {
  font-size: 0.785rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chart-badge {
  font-size: 0.725rem;
  color: #76E2B1;
  font-weight: 700;
  background: rgba(63, 174, 124, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-xs);
}

.console-metrics-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.console-metric-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

.console-metric-num {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.console-metric-label {
  font-size: 0.725rem;
  color: #94A3B8;
  font-weight: 600;
}

/* Floating Badges */
.floating-metric-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #1B3A5C 0%, #102436 100%);
  border: 1px solid rgba(63, 174, 124, 0.45);
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: float 4.5s ease-in-out infinite;
  z-index: 10;
}

.floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  background: var(--growth-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.floating-badge-text h5 {
  font-size: 0.825rem;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.floating-badge-text p {
  font-size: 0.7rem;
  color: #76E2B1;
  font-weight: 700;
}

.hero-page-header {
  background: linear-gradient(135deg, #091726 0%, #102436 50%, #1B3A5C 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
}

.hero-page-header p {
  color: #CBD5E1;
  font-size: 1.025rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   Stats Bar & High-Density Counters
   ========================================================================== */
.stats-bar {
  background-color: var(--white);
  margin-top: -2.75rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px -5px rgba(16, 36, 54, 0.12), 0 4px 8px -2px rgba(16, 36, 54, 0.05);
  border: 1px solid var(--border-gray);
  padding: 1.65rem 1.85rem;
}

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

.stat-item {
  position: relative;
  padding: 0.25rem 0.5rem;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: var(--border-gray);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  letter-spacing: -0.02em;
}

.stat-number .highlight {
  color: var(--growth-green);
}

.stat-label {
  font-size: 0.785rem;
  font-weight: 700;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  margin-bottom: 2.75rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-top: 0.45rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1rem;
  color: var(--muted-text);
  line-height: 1.55;
}

/* ==========================================================================
   Cards & Spotlight Interactive Grids
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

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

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

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gray);
  padding: 1.65rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

/* Spotlight dynamic cursor reflection */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(350px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(46, 111, 176, 0.08), transparent 80%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-subtle);
}

.card-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: #EBF3FA;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.15rem;
  transition: var(--transition);
  border: 1px solid rgba(46, 111, 176, 0.15);
}

.card:hover .card-icon-box {
  background: linear-gradient(135deg, #3FAE7C 0%, #35966A 100%);
  color: var(--white);
  border-color: #3FAE7C;
  transform: scale(1.08) rotate(3deg);
}

.card-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.card-desc {
  font-size: 0.895rem;
  color: var(--body-text);
  margin-bottom: 1.15rem;
  flex-grow: 1;
  line-height: 1.5;
}

.card-stat-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-xs);
  font-size: 0.785rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.95rem;
  width: fit-content;
}

.card-footer-link {
  font-size: 0.865rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-blue);
  margin-top: auto;
}

.card-footer-link:hover {
  color: var(--primary-navy);
  gap: 0.55rem;
}

/* Value Pillars Cards */
.pillar-card {
  text-align: center;
  padding: 1.65rem 1.35rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--growth-green);
}

.pillar-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.15rem;
  border-radius: var(--radius-md);
  background: var(--growth-green-light);
  color: var(--growth-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(63, 174, 124, 0.25);
  transition: transform 0.25s ease;
}

.pillar-card:hover .pillar-icon-wrap {
  transform: scale(1.1);
  background: var(--growth-green);
  color: var(--white);
}

.pillar-title {
  font-size: 1.075rem;
  margin-bottom: 0.45rem;
}

.pillar-desc {
  font-size: 0.865rem;
  color: var(--muted-text);
  line-height: 1.48;
}

/* ==========================================================================
   Industries Strip
   ========================================================================== */
.industries-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  transition: var(--transition);
  color: var(--deep-navy);
  box-shadow: var(--shadow-xs);
}

.industry-chip:hover {
  background: linear-gradient(135deg, #1B3A5C 0%, #102436 100%);
  color: var(--white);
  border-color: #1B3A5C;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.industry-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--light-gray);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid var(--border-gray);
}

.industry-chip:hover .industry-chip-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.industry-chip-title {
  font-size: 0.945rem;
  font-weight: 600;
}

/* ==========================================================================
   Testimonial Slider
   ========================================================================== */
.testimonial-container {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gray);
  padding: 2.75rem;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.65rem;
  align-items: flex-start;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--growth-green);
  opacity: 0.7;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.285rem;
  line-height: 1.48;
  color: var(--deep-navy);
  font-style: italic;
  margin-bottom: 1.35rem;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B3A5C 0%, #102436 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--growth-green-light);
}

.author-role {
  font-weight: 700;
  color: var(--deep-navy);
  font-size: 0.95rem;
}

.author-company {
  font-size: 0.835rem;
  color: var(--muted-text);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gray);
  background: var(--white);
  color: var(--deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
  transform: translateY(-1px);
}

.slider-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-gray);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 22px;
  border-radius: var(--radius-pill);
  background: var(--growth-green);
}

/* ==========================================================================
   Case Studies Components
   ========================================================================== */
.case-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gray);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-subtle);
}

.case-card-header {
  background: linear-gradient(135deg, #091726 0%, #1B3A5C 100%);
  padding: 1.35rem 1.45rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-client-tag {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--growth-green);
  margin-bottom: 0.25rem;
}

.case-card-title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
}

.case-card-body {
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.15rem 0;
  padding: 0.95rem;
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
}

.case-metric-val {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--growth-green);
  letter-spacing: -0.02em;
}

.case-metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-text);
  line-height: 1.25;
}

/* ==========================================================================
   Blog / Insights Cards
   ========================================================================== */
.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gray);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-subtle);
}

.article-img-box {
  height: 165px;
  background: linear-gradient(135deg, #1B3A5C 0%, #2E6FB0 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 1.25rem;
}

.article-category-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(16, 36, 54, 0.85);
  color: var(--white);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-xs);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.article-content {
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.785rem;
  color: var(--muted-text);
  margin-bottom: 0.55rem;
}

.article-title {
  font-size: 1.075rem;
  margin-bottom: 0.55rem;
  line-height: 1.35;
}

.article-title a {
  color: var(--deep-navy);
}

.article-title a:hover {
  color: var(--accent-blue);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #091726 0%, #102436 40%, #1B3A5C 80%, #2E6FB0 100%);
  border-radius: var(--radius-md);
  padding: 3.25rem 2.75rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 174, 124, 0.3) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
}

.cta-text {
  max-width: 640px;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 0.55rem;
  font-size: 1.85rem;
}

.cta-text p {
  color: #E2E8F0;
  font-size: 0.985rem;
  line-height: 1.55;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-heading);
  font-size: 0.965rem;
  font-weight: 600;
  color: var(--deep-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 0.85rem;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-xs);
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
  font-size: 0.85rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-navy);
  color: var(--white);
}

.faq-body {
  padding: 0 1.35rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-body {
  padding: 0 1.35rem 1.15rem;
  max-height: 380px;
  font-size: 0.915rem;
  color: var(--body-text);
  line-height: 1.55;
}

/* ==========================================================================
   Forms & Controls
   ========================================================================== */
.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.835rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 0.35rem;
}

.form-label .required {
  color: #DC2626;
}

.form-control {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.915rem;
  color: var(--deep-navy);
  background-color: var(--white);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(46, 111, 176, 0.15);
}

.form-control.error {
  border-color: #DC2626;
  background-color: #FEF2F2;
}

.form-error-msg {
  color: #DC2626;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error .form-error-msg {
  display: block;
}

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

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 36, 54, 0.7);
  backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

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

.modal-card {
  background: var(--white);
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gray);
  transform: translateY(20px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--deep-navy);
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: #E2E8F0;
  transform: rotate(90deg);
}

/* ==========================================================================
   Filter Pills & Calculator Widget
   ========================================================================== */
.filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--border-gray);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-xs);
  font-size: 0.845rem;
  font-weight: 600;
  color: var(--body-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
  transform: translateY(-1px);
}

/* Instant Calculator Widget */
.calc-box {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-md);
  padding: 2.25rem;
}

.calc-result-box {
  background: linear-gradient(135deg, #091726 0%, #102436 50%, #1B3A5C 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.calc-savings-number {
  font-family: var(--font-heading);
  font-size: 2.65rem;
  font-weight: 800;
  color: var(--growth-green);
  line-height: 1.1;
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--space-navy);
  color: #CBD5E1;
  padding: 4.25rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(63, 174, 124, 0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.75rem;
  margin-bottom: 3.25rem;
}

.footer-brand p {
  color: #94A3B8;
  margin: 1.15rem 0 1.35rem;
  font-size: 0.895rem;
  max-width: 330px;
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-btn:hover {
  background: var(--growth-green);
  color: var(--white);
  border-color: var(--growth-green);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.15rem;
}

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

.footer-link {
  color: #94A3B8;
  font-size: 0.865rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--growth-green);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
  font-size: 0.865rem;
  color: #94A3B8;
  line-height: 1.45;
}

.footer-contact-item svg {
  color: var(--growth-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.35rem;
}

.footer-bottom-links a {
  color: #64748B;
}

.footer-bottom-links a:hover {
  color: #CBD5E1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .main-nav, .nav-actions .btn-quote {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industries-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.25rem 0;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .industries-strip {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slide {
    grid-template-columns: 1fr;
  }
  
  .quote-icon {
    display: none;
  }
  
  .stats-bar {
    padding: 1.35rem 1rem;
    margin-top: -1.85rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-item::after {
    display: none !important;
  }
  
  .floating-metric-badge {
    position: static;
    margin-top: 1rem;
  }
}
