/* ==========================================================================
   BC 2 Automate - Executive Design System & Corporate Stylesheet
   Theme: Bright, Modern, Minimal, Intelligent Corporate (Light Mode)
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;
  --bg-card: #FFFFFF;
  
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;
  --border-focus: #3B82F6;
  
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --accent-primary: #2563EB;
  --accent-primary-hover: #1D4ED8;
  --accent-primary-light: #EFF6FF;
  
  --accent-cyan: #0284C7;
  --accent-cyan-light: #E0F2FE;
  
  --accent-emerald: #10B981;
  --accent-emerald-light: #ECFDF5;
  
  /* Additional Vibrant Operational Accents */
  --accent-amber: #F59E0B;
  --accent-amber-light: #FEF3C7;
  --accent-rose: #F43F5E;
  --accent-rose-light: #FFE4E6;
  --accent-indigo: #6366F1;
  --accent-indigo-light: #EEF2FF;
  
  /* High-Contrast Midnight Theme Tokens */
  --bg-midnight: #090D1A;
  --bg-midnight-surface: #0E1628;
  --bg-midnight-card: #131E36;
  --border-midnight: rgba(255, 255, 255, 0.08);
  --border-midnight-glow: rgba(56, 189, 248, 0.25);
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;
  
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 40px -6px rgba(15, 23, 42, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1240px;
}

/* --- Base Reset & Typography --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

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

img, svg {
  display: block;
  max-width: 100%;
}

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

/* --- Utility Containers --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background-color: var(--accent-primary-light);
  color: var(--accent-primary);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.section-badge i {
  font-size: 0.75rem;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.975rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--text-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
  background-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: var(--text-primary);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  border-color: #CBD5E1;
  transform: translateY(-2px);
}

.btn-blue {
  background-color: var(--accent-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-blue:hover {
  background-color: var(--accent-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* --- Navigation Header (Seamless Unified Header & Hero) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.header.scrolled,
.header.menu-open {
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-primary);
  border-radius: var(--radius-full);
}

/* --- Subpage Hero Banner --- */
.page-hero {
  padding: 10rem 0 4.5rem;
  background: radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.04) 0%, rgba(255, 255, 255, 0) 65%);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.page-hero.audit-hero,
.page-hero.services-hero {
  border-bottom: none;
  padding: clamp(6.75rem, 9.5vh, 7.75rem) 0 6rem;
}

.audit-hero .page-hero-subtitle {
  margin-bottom: 2.75rem;
}

.services-hero .page-hero-subtitle {
  margin-bottom: 3.5rem;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  color: var(--accent-primary);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  max-width: 850px;
  margin: 0 auto 1.25rem;
  color: var(--text-primary);
}

.page-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta-box {
  margin-top: 3.5rem;
  text-align: center;
}

.nav-cta {
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.4rem;
  color: var(--text-primary);
}

/* --- Hero Section & Animated Moving Wave Background (Viewport Fit) --- */
.hero {
  position: relative;
  overflow: hidden;
  contain: paint;
  padding: clamp(5.75rem, 8.5vh, 6.75rem) 0 clamp(1.75rem, 3vh, 2.5rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.hero-wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.6;
  will-change: transform;
}

.hero-ambient-glow.glow-1 {
  top: 8%;
  left: 12%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.16) 0%, rgba(2, 132, 199, 0) 70%);
  animation: floatHeroGlow1 18s ease-in-out infinite alternate;
}

.hero-ambient-glow.glow-2 {
  top: 18%;
  right: 10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(0, 242, 254, 0.08) 50%, rgba(37, 99, 235, 0) 70%);
  animation: floatHeroGlow2 22s ease-in-out infinite alternate;
}

@keyframes floatHeroGlow1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 35px) scale(1.12);
  }
}

@keyframes floatHeroGlow2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-45px, 50px) scale(1.08);
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-primary);
  animation: pulsePing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulsePing {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  70%, 100% {
    width: 320%;
    height: 320%;
    opacity: 0;
  }
}

.hero-title {
  font-size: clamp(2.25rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto 0.85rem;
  color: var(--text-primary);
}

.hero-title .highlight {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding-right: 0.08em;
  background: linear-gradient(135deg, #0284C7 0%, #2563EB 40%, #00F2FE 75%, #0284C7 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 7s linear infinite;
  display: inline-block;
}

@keyframes textShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 250% center;
  }
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 1.35rem;
  line-height: 1.55;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* Floating Live Telemetry Chips in Hero */
.hero-telemetry-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 3;
}

.telemetry-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(203, 213, 225, 0.8);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8);
  font-size: 0.775rem;
  color: var(--text-secondary);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: floatChip 4s ease-in-out infinite alternate;
}

.telemetry-chip:nth-child(2) {
  animation-delay: 1.3s;
}

.telemetry-chip:nth-child(3) {
  animation-delay: 2.6s;
}

.telemetry-chip:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.35);
}

.chip-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.chip-status-dot.dot-green {
  background-color: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
}

.chip-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

@keyframes floatChip {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

/* Process Simplification Diagram in Hero */
.process-simplifier-card {
  max-width: 960px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.65rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.sim-stage {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.sim-stage:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  border-color: #CBD5E1;
}

.sim-stage.featured {
  background-color: var(--accent-primary-light);
  border-color: rgba(37, 99, 235, 0.3);
}

.sim-stage.outcome {
  background-color: var(--accent-emerald-light);
  border-color: rgba(16, 185, 129, 0.3);
}

.stage-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  display: block;
}

.sim-stage:nth-child(1) .stage-tag { color: #EF4444; }
.sim-stage.featured .stage-tag { color: var(--accent-primary); }
.sim-stage.outcome .stage-tag { color: var(--accent-emerald); }

.stage-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stage-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.sim-arrow {
  color: var(--accent-primary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-arrow i {
  animation: arrowGlide 2.2s ease-in-out infinite;
}

@keyframes arrowGlide {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.55;
  }
  50% {
    transform: translateX(5px);
    opacity: 1;
    color: #00F2FE;
  }
}

/* --- Section 2: The Core Problem (Architectural Dot Pattern & Color Identities) --- */
#the-problem {
  background-color: #F8FAFC;
  background-image: radial-gradient(rgba(148, 163, 184, 0.3) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  position: relative;
}

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

.problem-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.85rem;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.problem-card:hover {
  transform: translateY(-5px);
}

.problem-category-badge {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Card 1: Amber Accent */
.problem-card.card-amber {
  border-top: 4px solid #F59E0B;
}
.problem-card.card-amber:hover {
  border-color: #F59E0B;
  box-shadow: 0 16px 36px -6px rgba(245, 158, 11, 0.16);
}
.problem-card.card-amber .problem-icon {
  background-color: #FEF3C7;
  color: #D97706;
}
.problem-card.card-amber .problem-category-badge {
  color: #D97706;
}

/* Card 2: Rose Accent */
.problem-card.card-rose {
  border-top: 4px solid #F43F5E;
}
.problem-card.card-rose:hover {
  border-color: #F43F5E;
  box-shadow: 0 16px 36px -6px rgba(244, 63, 94, 0.16);
}
.problem-card.card-rose .problem-icon {
  background-color: #FFE4E6;
  color: #E11D48;
}
.problem-card.card-rose .problem-category-badge {
  color: #E11D48;
}

/* Card 3: Indigo Accent */
.problem-card.card-indigo {
  border-top: 4px solid #6366F1;
}
.problem-card.card-indigo:hover {
  border-color: #6366F1;
  box-shadow: 0 16px 36px -6px rgba(99, 102, 241, 0.16);
}
.problem-card.card-indigo .problem-icon {
  background-color: #EEF2FF;
  color: #4F46E5;
}
.problem-card.card-indigo .problem-category-badge {
  color: #4F46E5;
}

/* Card 4: Cyan Accent */
.problem-card.card-cyan {
  border-top: 4px solid #0284C7;
}
.problem-card.card-cyan:hover {
  border-color: #0284C7;
  box-shadow: 0 16px 36px -6px rgba(2, 132, 199, 0.16);
}
.problem-card.card-cyan .problem-icon {
  background-color: #E0F2FE;
  color: #0284C7;
}
.problem-card.card-cyan .problem-category-badge {
  color: #0284C7;
}

.problem-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.35rem;
  transition: transform 0.25s ease;
}

.problem-card:hover .problem-icon {
  transform: scale(1.08);
}

.problem-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Cosmic Midnight Strategic Bridge Banner */
.strategic-bridge-banner {
  background: radial-gradient(circle at 12% 20%, rgba(56, 189, 248, 0.18) 0%, transparent 45%),
              radial-gradient(circle at 88% 80%, rgba(99, 102, 241, 0.22) 0%, transparent 45%),
              #0B1329;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3.5rem;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0 25px 60px -15px rgba(2, 6, 23, 0.8), 0 0 35px rgba(56, 189, 248, 0.1);
  position: relative;
  overflow: hidden;
}

.strategic-bridge-banner h3 {
  color: #FFFFFF;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.strategic-bridge-banner p {
  color: #94A3B8;
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.cta-slot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34D399;
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}

/* --- Section 3: The Outsourced Department Model (Radiant Mesh Gradient) --- */
#model {
  background: radial-gradient(ellipse at 50% 0%, #E0F2FE 0%, #EFF6FF 40%, #F8FAFC 85%);
  position: relative;
  overflow: hidden;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}

.model-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.model-card.highlighted {
  border: 2px solid #2563EB;
  box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.25), 0 0 0 1px rgba(37, 99, 235, 0.15);
  background: #FFFFFF;
  transform: translateY(-4px);
}

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

.model-card.highlighted:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -10px rgba(37, 99, 235, 0.35);
}

.model-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
}

.model-card h3 {
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
}

.model-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.model-list {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 1.75rem;
}

.model-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.model-list li i {
  color: var(--accent-emerald);
  font-size: 0.9rem;
}

/* --- Section 4: What We Automate --- */
.function-tabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.function-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.function-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.function-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--accent-primary-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.function-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.function-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.function-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.function-tag {
  padding: 0.35rem 0.75rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.785rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --- Section 5: Business Outcomes --- */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.outcome-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.outcome-card:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.outcome-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.outcome-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.outcome-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Section 6: Real Scenarios (Before -> Automated -> After) --- */
.scenarios-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.scenario-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.scenario-header {
  padding: 1.75rem 2.5rem;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scenario-header h3 {
  font-size: 1.35rem;
}

.scenario-meta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  background-color: var(--accent-primary-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.scenario-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  padding: 2.5rem;
  gap: 2rem;
  align-items: stretch;
}

.scenario-col {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.scenario-col.before {
  background-color: #FEF2F2;
  border: 1px solid #FEE2E2;
}

.scenario-col.change {
  background-color: var(--accent-primary-light);
  border: 1px solid #DBEAFE;
}

.scenario-col.after {
  background-color: #F0FDF4;
  border: 1px solid #DCFCE7;
}

.col-tag {
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.scenario-col.before .col-tag { color: #DC2626; }
.scenario-col.change .col-tag { color: var(--accent-primary); }
.scenario-col.after .col-tag { color: #16A34A; }

.col-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.col-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Section 7: The 5-Step Process --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-primary);
}

.step-badge {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-primary);
  background-color: var(--accent-primary-light);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.process-step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Section 8: Ongoing Partnership / Retainer --- */
.retainer-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 4rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.retainer-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.retainer-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.deliv-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.deliv-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-emerald-light);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.deliv-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.deliv-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Section 9: Business ROI Assessment (Viewport Fit on Desktop) --- */
@media (min-width: 993px) {
  #roi-calc {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2.5rem, 4vh, 3.5rem) 0;
  }
}

#roi-calc .section-header {
  margin-bottom: 1.25rem;
}

#roi-calc .section-title {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: 0.4rem;
}

#roi-calc .section-subtitle {
  font-size: clamp(0.925rem, 1.1vw, 1rem);
  margin-bottom: 0;
  max-width: 720px;
}

.roi-presets-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

.roi-preset-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.roi-preset-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.preset-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.85rem;
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-btn:hover {
  background: #FFFFFF;
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.preset-btn.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.roi-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.85rem 2.25rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Visual Hours Reclaimed Bar inside ROI Display Card */
.roi-visual-bar-wrap {
  margin-top: 1rem;
  margin-bottom: 1.15rem;
  text-align: left;
}

.roi-bar-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94A3B8;
  margin-bottom: 0.4rem;
}

.roi-bar-legend strong {
  color: #34D399;
}

.roi-visual-progress {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.roi-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10B981 0%, #34D399 100%);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.slider-header label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.slider-val-badge {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent-primary);
  background-color: var(--accent-primary-light);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 7px;
  border-radius: 4px;
  background: #E2E8F0;
  outline: none;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
  transition: var(--transition);
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.roi-display-card {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.85rem;
  color: #FFFFFF;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.roi-display-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.roi-display-stat {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  color: #38BDF8;
  line-height: 1.1;
  margin-bottom: 1.15rem;
}

.roi-secondary-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.sec-metric-item small {
  display: block;
  font-size: 0.725rem;
  color: #94A3B8;
  margin-bottom: 0.25rem;
}

.sec-metric-item span {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
}

.roi-disclaimer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Section 10: Technology Ecosystem Infinite Marquee --- */
.tech-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden !important;
  overflow-x: hidden !important;
  padding: 1rem 0;
  margin-bottom: 3.5rem;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.tech-marquee-wrapper::-webkit-scrollbar,
.tech-marquee-row::-webkit-scrollbar,
.tech-marquee-track::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.tech-marquee-row {
  display: flex;
  overflow: hidden !important;
  overflow-x: hidden !important;
  user-select: none;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.tech-marquee-row:last-child {
  margin-bottom: 0;
}

.tech-marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.tech-pill {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--text-secondary);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease,
              color 0.25s ease,
              opacity 0.25s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.tech-pill i {
  font-size: 1.35rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dim non-hovered badges when user enters the marquee area */
.tech-marquee-wrapper:hover .tech-pill {
  opacity: 0.65;
}

/* Spotlight hovered badge */
.tech-marquee-wrapper:hover .tech-pill:hover,
.tech-pill:focus-visible {
  opacity: 1 !important;
  transform: translateY(-5px) scale(1.05);
  border-color: var(--primary-color);
  color: var(--text-primary);
  box-shadow: 0 12px 24px -4px rgba(2, 132, 199, 0.18), 0 4px 8px -2px rgba(15, 23, 42, 0.06);
}

.tech-pill:hover i {
  transform: scale(1.2);
}

.tech-callout-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 2rem;
  background-color: var(--accent-primary-light);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-lg);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-primary);
}

/* --- Section 11: Trust, Security & Ownership --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--accent-emerald-light);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.trust-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.trust-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Section 12: Audit Request Intake Form --- */
.audit-form-card {
  max-width: 840px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.975rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background-color: #FFFFFF;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-success-banner {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background-color: var(--accent-emerald-light);
  color: var(--accent-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

/* --- Section 13: Calendly Booking Wrapper --- */
.booking-container {
  max-width: 980px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* --- Footer --- */
.footer {
  background-color: #0F172A;
  color: #94A3B8;
  padding: 5rem 0 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.footer-brand h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-socials {
  margin-top: 1.25rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social-link i {
  font-size: 1.15rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.footer-nav-col h5 {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.885rem;
  color: #94A3B8;
}

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

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

.footer-bottom-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-security-text {
  color: #64748B;
  font-size: 0.85rem;
}

.footer-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.725rem;
  font-weight: 600;
  font-family: var(--font-mono, monospace);
  color: #64748B;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
  line-height: 1.4;
  cursor: pointer;
}

.footer-portal-btn i {
  font-size: 0.65rem;
  color: #475569;
  transition: all 0.2s ease;
}

.footer-portal-btn:hover {
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.footer-portal-btn:hover i {
  color: #38BDF8;
}

.footer-portal-btn:active {
  transform: scale(0.96);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .process-simplifier-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    padding: 2.25rem 1.75rem;
  }
  
  .sim-arrow {
    transform: rotate(90deg);
    margin: 0.5rem auto;
  }
  
  .problems-grid,
  .model-grid,
  .function-tabs-grid,
  .outcomes-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .scenario-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .retainer-card,
  .roi-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.75rem 2rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
    max-width: 100%;
  }
  
  .section {
    padding: 4.5rem 0;
  }
  
  .section-title {
    font-size: 2.15rem;
  }
  
  .nav-container {
    padding: 0 1.25rem;
    height: 70px;
  }
  
  .hero {
    padding: 6.5rem 0 3.5rem;
    contain: paint;
    overflow: hidden;
  }
  
  .hero-ambient-glow {
    filter: blur(50px);
    opacity: 0.45;
  }
  
  .hero-ambient-glow.glow-1 {
    width: 240px;
    height: 240px;
    left: 0;
    top: 5%;
  }
  
  .hero-ambient-glow.glow-2 {
    width: 240px;
    height: 240px;
    right: 0;
    top: 15%;
  }

  .hero-badge {
    font-size: 0.775rem;
    padding: 0.35rem 0.85rem;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    line-height: 1.35;
  }

  .hero-title {
    font-size: clamp(2rem, 7.5vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 3rem;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }

  .process-simplifier-card {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
  }

  .sim-stage {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
  }
  
  /* Mobile Navigation Toggle */
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-light);
    padding: 1.75rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-btn-wrapper {
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .nav-btn-wrapper .btn {
    width: 100%;
  }
  
  .problems-grid,
  .model-grid,
  .function-tabs-grid,
  .outcomes-grid,
  .trust-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row,
  .deliverables-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  /* ROI Assessment Tool - Polished Mobile Styles */
  .roi-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.35rem;
    border-radius: var(--radius-lg);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .roi-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .slider-group {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 0.65rem;
  }

  .slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .slider-header label {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    word-break: normal;
    overflow-wrap: break-word;
  }

  .slider-val-badge {
    flex: 0 0 auto;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 0.3rem 0.65rem;
    white-space: nowrap;
    border-radius: var(--radius-sm);
  }

  .roi-slider {
    width: 100%;
    max-width: 100%;
    height: 6px;
    display: block;
  }

  .roi-slider::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
  }

  .roi-display-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1.85rem 1.25rem;
    border-radius: var(--radius-md);
    box-sizing: border-box;
  }

  .roi-display-label {
    font-size: 0.775rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
  }

  .roi-display-stat {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }

  .roi-secondary-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding-top: 1.25rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .sec-metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    width: 100%;
  }

  .sec-metric-item small {
    margin-bottom: 0;
    min-height: auto;
    font-size: 0.775rem;
    color: #94A3B8;
  }

  .sec-metric-item span {
    font-size: 1.15rem;
    color: #FFFFFF;
    white-space: nowrap;
  }

  .roi-display-card .btn,
  .roi-cta-btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.925rem;
    line-height: 1.35;
    box-sizing: border-box;
  }
  
  .tech-marquee-wrapper {
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    padding: 0.75rem 0;
    margin-bottom: 2.5rem;
  }
  
  .tech-pill {
    padding: 0.9rem 1.35rem;
    font-size: 0.9rem;
    gap: 0.65rem;
  }

  .tech-pill i {
    font-size: 1.15rem;
  }
  
  .strategic-bridge-banner {
    padding: 2.25rem 1.25rem;
    border-radius: var(--radius-lg);
  }
  
  .strategic-bridge-banner h3 {
    font-size: 1.5rem;
  }

  .strategic-bridge-banner p {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
  }

  .strategic-bridge-banner .btn {
    width: 100%;
  }

  .strategic-bridge-banner div[style*="display: flex"] {
    flex-direction: column;
    width: 100%;
  }
  
  .audit-form-card {
    padding: 2rem 1.5rem;
  }
  
  .booking-container {
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.85rem, 8.5vw, 2.25rem);
  }

  .roi-card {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
  
  .slider-header label {
    font-size: 0.85rem;
  }
  
  .slider-val-badge {
    font-size: 0.9rem;
    padding: 0.25rem 0.6rem;
  }

  .roi-display-card {
    padding: 1.5rem 0.85rem;
  }

  .roi-display-stat {
    font-size: 2.35rem;
  }

  .roi-secondary-metrics {
    gap: 0.5rem;
  }

  .sec-metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.75rem;
    text-align: left;
  }

  .sec-metric-item small {
    margin-bottom: 0;
    min-height: auto;
    font-size: 0.75rem;
    justify-content: flex-start;
  }

  .sec-metric-item span {
    font-size: 1.1rem;
  }

  .roi-display-card .btn,
  .roi-cta-btn {
    padding: 0.8rem 0.75rem;
    font-size: 0.875rem;
  }
}

/* ==========================================================================
   Pricing Section & Pricing Cards
   ========================================================================== */
.pricing-section {
  padding: 5rem 0 8rem;
  background-color: var(--bg-primary);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-top: 2rem;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3.25rem 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

/* Featured / Recommended Card Styling */
.pricing-card.featured {
  border: 2px solid var(--accent-primary);
  box-shadow: 0 16px 36px -4px rgba(37, 99, 235, 0.14), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.pricing-card.featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px -4px rgba(37, 99, 235, 0.2), 0 6px 16px -2px rgba(15, 23, 42, 0.06);
}

.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-primary);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  z-index: 2;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-tier-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  display: block;
}

.pricing-card.featured .pricing-tier-label {
  color: var(--accent-primary);
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.pricing-prefix {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.035em;
  line-height: 1;
}

.pricing-period {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  min-height: 4.8rem;
}

.pricing-best-for {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  margin-bottom: 2rem;
  min-height: 5.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-card.featured .pricing-best-for {
  background-color: var(--accent-primary-light);
  border-color: rgba(37, 99, 235, 0.15);
}

.pricing-best-for-label {
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  display: block;
}

.pricing-card.featured .pricing-best-for-label {
  color: var(--accent-primary);
}

.pricing-best-for p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.pricing-features-wrap {
  margin-bottom: 2.25rem;
}

.pricing-features-label {
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.1rem;
  display: block;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-check-icon {
  color: var(--accent-primary);
  font-size: 0.85rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
}

.pricing-cta-wrap {
  margin-top: auto;
  padding-top: 1.5rem;
}

.pricing-cta-wrap .btn {
  width: 100%;
  text-align: center;
}

/* Pricing Advisory Box */
.pricing-advisory-box {
  margin-top: 5rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.advisory-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  background-color: var(--accent-cyan-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.pricing-advisory-box h3 {
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
  color: var(--text-primary);
}

.pricing-advisory-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* Responsive Pricing Rules */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    gap: 2.5rem;
  }
  
  .pricing-desc,
  .pricing-best-for {
    min-height: auto;
  }

  .pricing-advisory-box {
    padding: 2.75rem 1.75rem;
    margin-top: 3.5rem;
  }

  .pricing-advisory-box h3 {
    font-size: 1.5rem;
  }

  .pricing-advisory-box p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .pricing-section {
    padding: 3.5rem 0 5rem;
  }

  .pricing-card {
    padding: 2.5rem 1.35rem 2rem;
  }

  .pricing-amount {
    font-size: 2.25rem;
  }

  .pricing-card-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.85rem;
    top: -12px;
  }

  .pricing-advisory-box {
    padding: 2.25rem 1.25rem;
    border-radius: var(--radius-lg);
  }
}

/* ==========================================================================
   Recruitment Specialization & Personality Design System
   ========================================================================== */

/* --- Philosophy / Point of View Section (Midnight High-Contrast Anchor - Viewport Fit) --- */
.philosophy-section {
  padding: clamp(2.5rem, 4vh, 3.75rem) 0;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 0%, #172554 0%, #090D1A 60%, #040711 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  color: #F8FAFC;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.philosophy-banner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.philosophy-lead-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #38BDF8;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.18);
}

.philosophy-headline {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
}

.philosophy-subtitle {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: #94A3B8;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.55;
}

.philosophy-contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  text-align: left;
}

.contrast-card {
  border-radius: var(--radius-lg);
  padding: 1.45rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contrast-card:hover {
  transform: translateY(-3px);
}

.contrast-card.problem-side {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(244, 63, 94, 0.28);
  border-left: 4px solid #F43F5E;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(244, 63, 94, 0.08);
}

.contrast-card.problem-side:hover {
  box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.6), 0 0 25px rgba(244, 63, 94, 0.18);
  border-color: rgba(244, 63, 94, 0.5);
}

.contrast-card.solution-side {
  background: linear-gradient(180deg, rgba(13, 33, 62, 0.8) 0%, rgba(8, 22, 44, 0.85) 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-left: 4px solid #10B981;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.12);
}

.contrast-card.solution-side:hover {
  box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.22);
  border-color: rgba(16, 185, 129, 0.6);
}

.contrast-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.contrast-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.problem-side .contrast-badge {
  background-color: rgba(244, 63, 94, 0.15);
  color: #FB7185;
  border: 1px solid rgba(244, 63, 94, 0.35);
}

.solution-side .contrast-badge {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.contrast-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.contrast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contrast-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  line-height: 1.35;
  color: #CBD5E1;
}

.contrast-list li i {
  font-size: 0.825rem;
  margin-top: 0.18rem;
  flex-shrink: 0;
}

.problem-side .contrast-list li i {
  color: #FB7185;
}

.solution-side .contrast-list li i {
  color: #34D399;
}

.philosophy-punchline {
  margin-top: 1.25rem;
  text-align: center;
}

.philosophy-punchline p {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* --- Workday Allocation Simulator (Mid-Page Midnight Anchor - Viewport Fit) --- */
.day-simulator-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 4vh, 3.5rem) 0;
  background: radial-gradient(circle at 50% 100%, #0F172A 0%, #090D1A 65%, #050812 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  color: #F8FAFC;
}

.day-simulator-wrapper {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.simulator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sim-header-text {
  text-align: left;
}

.sim-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #38BDF8;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.sim-header-text h4 {
  font-size: 1.35rem;
  color: #FFFFFF;
  margin: 0;
}

.sim-toggle-pill {
  display: inline-flex;
  background: rgba(2, 6, 23, 0.85);
  padding: 0.3rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sim-toggle-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  padding: 0.5rem 1.15rem;
  font-size: 0.825rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.sim-toggle-btn.active {
  background: #1E293B;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.sim-toggle-btn#simManualBtn.active {
  border: 1px solid rgba(244, 63, 94, 0.4);
  color: #FECDD3;
}

.sim-toggle-btn#simAutoBtn.active {
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #A7F3D0;
}

.sim-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.sim-status-dot.dot-red {
  background: #F43F5E;
  box-shadow: 0 0 6px #F43F5E;
}

.sim-status-dot.dot-green {
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
}

.sim-visual-container {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.sim-bar-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.sim-bar-label-row strong {
  font-size: 1rem;
}

.sim-progress-track {
  width: 100%;
  height: 42px;
  background: rgba(2, 6, 23, 0.8);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6);
}

.sim-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.825rem;
  font-weight: 700;
  white-space: nowrap;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  padding: 0 0.65rem;
  min-width: 0;
}

.sim-segment span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.sim-segment.segment-admin {
  background: linear-gradient(90deg, #BE123C 0%, #F43F5E 100%);
  color: #FFFFFF;
  min-width: 85px;
}

.sim-segment.segment-revenue {
  background: linear-gradient(90deg, #059669 0%, #10B981 100%);
  color: #FFFFFF;
  flex: 1;
}

.sim-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: left;
}

.sim-breakdown-card {
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  transition: all 0.3s ease;
}

.sim-breakdown-card.highlight {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(14, 30, 56, 0.45);
}

.sim-breakdown-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #94A3B8;
  margin-bottom: 0.25rem;
  display: flex;
  justify-content: space-between;
}

.sim-breakdown-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.sim-breakdown-desc {
  font-size: 0.775rem;
  color: #94A3B8;
  line-height: 1.35;
  margin: 0;
}

/* --- ATS Reality / The Real Problem Section --- */
.ats-reality-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 3.5rem;
}

.ats-reality-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.ats-reality-content h3 {
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.ats-reality-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.ats-promise-box {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent-emerald);
  font-size: 0.925rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 1.5rem;
}

.ats-ecosystem-display {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.ats-ecosystem-label {
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: block;
}

.ats-pill-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.ats-tag-pill {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ats-tag-pill i {
  color: var(--accent-primary);
  font-size: 0.8rem;
}

/* --- Interactive Live Workflow Studio --- */
.workflow-studio-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}

.studio-tabs-bar {
  display: flex;
  background: #090D1A;
  padding: 0.5rem 0.5rem 0;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.studio-tabs-bar::-webkit-scrollbar { display: none; }

.studio-tab-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  padding: 0.75rem 1.15rem;
  font-size: 0.825rem;
  font-weight: 700;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.studio-tab-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.studio-tab-btn.active {
  background: #FFFFFF;
  color: var(--text-primary);
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.15);
}

.studio-tab-btn.active .tab-icon {
  color: var(--accent-primary);
}

.studio-canvas {
  padding: 1.85rem 2.25rem;
  background: #FFFFFF;
  text-align: left;
}

.studio-flow-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
}

.studio-flow-meta {
  max-width: 600px;
}

.studio-flow-meta h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.studio-flow-meta p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.studio-flow-telemetry {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.studio-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.studio-stat-chip strong {
  color: var(--text-primary);
}

/* Interactive Pipeline Nodes Track */
.studio-pipeline-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.65rem;
}

.pipeline-node {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.15rem 0.95rem;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.pipeline-node:hover, .pipeline-node.active {
  background: #FFFFFF;
  border-color: var(--accent-primary);
  box-shadow: 0 10px 25px -4px rgba(37, 99, 235, 0.16);
  transform: translateY(-4px);
}

.pipeline-node-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--accent-primary-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin: 0 auto 0.6rem;
  transition: transform 0.25s ease;
}

.pipeline-node:hover .pipeline-node-icon {
  transform: scale(1.1);
}

.pipeline-node-stage {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  margin-bottom: 0.25rem;
}

.pipeline-node-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.pipeline-node-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0;
}

/* Connector Line with Moving Pulse */
.pipeline-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  position: relative;
}

.pipeline-connector-line {
  width: 100%;
  height: 2px;
  background: #CBD5E1;
  position: relative;
}

.pipeline-connector-line::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
  animation: movePulse 2.2s linear infinite;
}

@keyframes movePulse {
  0% { left: 0%; opacity: 0.3; }
  50% { opacity: 1; }
  100% { left: 85%; opacity: 0.3; }
}

.pipeline-connector-arrow {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-left: -2px;
}

/* Workflow Details Footer */
.studio-flow-footer {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border: 1px solid var(--border-light);
}

.studio-footer-highlights {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.studio-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.studio-highlight-item i {
  color: var(--accent-emerald);
}

/* --- What We Automate: 6 Core Recruitment Systems --- */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.system-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.system-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.system-index-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-primary);
  background-color: var(--accent-primary-light);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  width: fit-content;
  margin-bottom: 1.25rem;
}

.system-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--accent-primary-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.35rem;
}

.system-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.system-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.system-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.system-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.system-checklist li i {
  color: var(--accent-primary);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* --- FAQ Accordion Section --- */
.faq-section {
  padding: 6.5rem 0;
  background-color: #FFFFFF;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 3.5rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background-color: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.faq-item.active {
  border-color: var(--accent-primary);
  box-shadow: 0 4px 16px -2px rgba(37, 99, 235, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--accent-primary);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.75rem 1.75rem;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* --- Recruitment Blueprint Architecture Cards (for case-studies.html) --- */
.blueprint-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.blueprint-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.blueprint-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.blueprint-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-primary);
  background-color: var(--accent-primary-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.blueprint-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.blueprint-objective {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 820px;
}

.blueprint-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.25rem 0;
  background-color: var(--bg-secondary);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.blueprint-step {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
}

.step-header {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.step-label {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.step-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.blueprint-outcomes-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.75rem;
}

.blueprint-outcome-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.blueprint-outcome-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- Responsive Adaptations for Recruitment Components --- */
@media (max-width: 1024px) {
  .hero,
  .philosophy-section,
  .day-simulator-section,
  #roi-calc {
    min-height: auto;
    display: block;
  }

  .philosophy-contrast-grid,
  .ats-reality-grid,
  .systems-grid,
  .blueprint-flow,
  .blueprint-outcomes-wrap {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

  .studio-pipeline-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .pipeline-connector {
    display: none;
  }

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

  .ats-reality-card,
  .blueprint-card {
    padding: 2.5rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .philosophy-section {
    padding: 4.5rem 0;
  }

  .contrast-card {
    padding: 2rem 1.5rem;
  }

  .philosophy-headline {
    font-size: 2.35rem;
  }

  .philosophy-subtitle {
    font-size: 1.05rem;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .day-simulator-wrapper {
    padding: 1.75rem 1.25rem;
  }

  .simulator-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sim-toggle-pill {
    width: 100%;
    flex-direction: column;
  }

  .sim-toggle-btn {
    width: 100%;
    justify-content: center;
  }

  .sim-breakdown-grid {
    grid-template-columns: 1fr;
  }

  .studio-canvas {
    padding: 2rem 1.25rem;
  }

  .studio-pipeline-track {
    grid-template-columns: 1fr;
  }

  .roi-presets-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .roi-preset-buttons {
    width: 100%;
  }

  .preset-btn {
    flex: 1 1 calc(50% - 0.5rem);
    text-align: center;
  }

  .hero-telemetry-cluster {
    margin-top: -1rem;
    margin-bottom: 2.5rem;
  }

  .telemetry-chip {
    font-size: 0.775rem;
    padding: 0.4rem 0.85rem;
  }

  .strategic-bridge-banner {
    padding: 3rem 1.5rem;
  }

  .strategic-bridge-banner h3 {
    font-size: 1.85rem;
  }

  .system-card {
    padding: 2rem 1.5rem;
  }

  .faq-question {
    padding: 1.25rem 1.35rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.35rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.35rem 1.35rem;
  }
}


