@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&family=Figtree:wght@400;500;600;700;800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Brand Color System (Customized around #272f7a palette) */
  --bg-color: #f4f6fc; /* Elegant ice-slate matching the new theme */
  --bg-soft: #ffffff; /* Crisp white */
  --bg-alt: #e2e7f5; /* Custom soft blue-gray accent */
  --primary-navy: #272f7a; /* Main deep navy-indigo brand color */
  --primary-navy-light: #323b91; /* Brightened indigo-navy shade */
  --secondary-blue: #1d579b; /* Solid slate-blue matching the theme spectrum */
  --secondary-blue-hover: #1e6da6; /* Beautiful ocean blue */
  --soft-blue: #ebf0fa; /* Very soft light blue with indigo undertone */
  --accent-light: #ebf0fa; /* Premium soft backdrop tint */
  
  /* Gradients */
  --btn-gradient: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-navy) 100%);
  --accent-gradient: linear-gradient(135deg, rgba(39, 47, 122, 0.05) 0%, rgba(29, 87, 155, 0.05) 100%);
  --glow-gradient: radial-gradient(circle at top left, rgba(39, 47, 122, 0.1), transparent 70%);

  /* Typography */
  --font-headings: 'Figtree', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Shadows and Borders */
  --border-light: 1px solid #E2E8F0;
  --border-focus: 1px solid #93C5FD;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px -5px rgba(10, 25, 47, 0.05), 0 8px 10px -6px rgba(10, 25, 47, 0.03);
  --shadow-xl: 0 20px 40px -8px rgba(10, 25, 47, 0.08), 0 12px 20px -8px rgba(10, 25, 47, 0.04);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

/* Base Typography styling */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.25;
}

p {
  font-size: 0.95rem;
  color: #475569;
}

a {
  text-decoration: none;
  color: var(--secondary-blue);
  transition: all 0.2s ease-in-out;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 3.5rem 0;
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/* Buttons and Call to Actions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 0.5rem;
}

.btn-primary {
  background: var(--btn-gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background-color: var(--primary-navy);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-navy-light);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--bg-soft);
  border-color: var(--primary-navy);
  transform: translateY(-2px);
}

.btn-tertiary {
  background-color: var(--accent-light);
  color: var(--secondary-blue);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.btn-tertiary:hover {
  background-color: #E0F2FE;
  transform: translateY(-2px);
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

body.dark-theme header {
  background-color: rgba(13, 21, 39, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #334155;
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 0.88rem;
  position: relative;
  transition: color 0.25s ease;
  padding: 0.25rem 0;
}

body.dark-theme .nav-links a {
  color: #e2e8f0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-blue);
  transition: width 0.25s ease;
}

body.dark-theme .nav-links a::after {
  background-color: #60a5fa;
}

.nav-links a:hover {
  color: var(--secondary-blue);
}

body.dark-theme .nav-links a:hover {
  color: #60a5fa;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Theme Toggle Button Styles */
.theme-toggle-btn {
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
  cursor: pointer;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

body.dark-theme .theme-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.theme-toggle-btn:hover {
  background: rgba(15, 23, 42, 0.1);
  transform: scale(1.05);
}

body.dark-theme .theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.nav-ctas {
  display: flex;
  gap: 1rem;
}

.nav-cta-pulse {
  position: relative;
}

.nav-cta-pulse::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 7px;
  height: 7px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Hamburger for Mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #091e36;
  margin: 5px 0;
  transition: 0.3s;
}

body.dark-theme .hamburger span {
  background-color: #ffffff;
}

/* Sections Styling */

/* Badge Styling */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: var(--bg-soft);
  border: var(--border-light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary-blue);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-outline {
  border-color: rgba(37, 99, 235, 0.2);
  background-color: var(--accent-light);
}

/* Section Title block */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
}

/* Hero (Section 01) */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subhead {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-subhead-bold {
  color: var(--primary-navy);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 500;
}

.hero-trust-dots {
  display: flex;
  gap: 4px;
}

.hero-trust-dots span {
  width: 6px;
  height: 6px;
  background-color: var(--secondary-blue);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite ease-in-out;
}

.hero-trust-dots span:nth-child(2) { animation-delay: 0.3s; }
.hero-trust-dots span:nth-child(3) { animation-delay: 0.6s; }

/* Interactive Dashboard Control Center (Reference 1) */
.dashboard-container {
  background-color: #f8fafc;
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  border: var(--border-light);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.dashboard-inner {
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.02));
}

.mock-window-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #ECEFF1;
  margin-bottom: 1rem;
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.mock-dots span.red { background-color: #EF4444; }
.mock-dots span.yellow { background-color: #F59E0B; }
.mock-dots span.green { background-color: #10B981; }

.mock-window-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  color: #64748B;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dashboard Hub Grid */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.9rem;
  align-items: center;
  position: relative;
}

.hub-center {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: relative;
}

.hub-logo-spine {
  width: 68px;
  height: 68px;
  background-color: white;
  border-radius: 50%;
  border: 3px solid var(--secondary-blue);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.15), var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float-slow 4s infinite ease-in-out, glow-pulse 3s infinite ease-in-out;
}

.hub-logo-spine::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px dashed rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  animation: spin-slow 15s infinite linear;
}

.hub-node-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--secondary-blue);
  border-radius: 50%;
}

.hub-node-dot.top { top: -3px; left: 50%; transform: translateX(-50%); background: #3B82F6;}
.hub-node-dot.right { right: -3px; top: 50%; transform: translateY(-50%); background: #10B981;}
.hub-node-dot.bottom { bottom: -3px; left: 50%; transform: translateX(-50%); background: #F59E0B;}
.hub-node-dot.left { left: -3px; top: 50%; transform: translateY(-50%); background: #8B5CF6;}

.dashboard-card {
  background-color: var(--soft-blue);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  border: 1px solid rgba(59, 130, 246, 0.12);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-blue);
  background-color: #ffffff;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.card-purchasing { grid-column: 1 / 2; grid-row: 1 / 2; }
.card-purchasing::before { background-color: var(--secondary-blue); }

.card-inventory { grid-column: 3 / 4; grid-row: 1 / 2; }
.card-inventory::before { background-color: #10B981; }

.card-production { grid-column: 1 / 2; grid-row: 2 / 3; }
.card-production::before { background-color: #8B5CF6; }

.card-finance { grid-column: 3 / 4; grid-row: 2 / 3; }
.card-finance::before { background-color: #F59E0B; }

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 700;
}

.card-title svg {
  width: 18px;
  height: 18px;
}

.card-title.purchasing { color: var(--secondary-blue); }
.card-title.inventory { color: #059669; }
.card-title.production { color: #7C3AED; }
.card-title.finance { color: #D97706; }

.card-badge {
  background-color: rgba(59, 130, 246, 0.08);
  color: var(--secondary-blue);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

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

.stat-item {
  background-color: #F8FAFC;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: help;
}

/* Custom Lightweight Tooltips */
.stat-tooltip {
  visibility: hidden;
  opacity: 0;
  width: 150px;
  background-color: var(--primary-navy);
  color: #FFFFFF;
  text-align: center;
  border-radius: 6px;
  padding: 8px 10px;
  position: absolute;
  z-index: 100;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  font-size: 0.68rem;
  line-height: 1.35;
  box-shadow: 0 10px 20px rgba(10,25,47,0.15), var(--shadow-md);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--primary-navy) transparent transparent transparent;
}

.stat-item:hover .stat-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.stat-val {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.stat-lbl {
  font-size: 0.6rem;
  color: #64748B;
}

.progress-bar-container {
  margin-top: 0.6rem;
}

.progress-lbl-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.progress-bar {
  height: 5px;
  background-color: #E2E8F0;
  border-radius: 2.5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 2.5px;
}

.purchasing-fill { background-color: #3B82F6; width: 65%; }
.inventory-fill { background-color: #10B981; width: 85%; }
.production-fill { background-color: #8B5CF6; width: 78%; }
.finance-fill { background-color: #F59E0B; width: 72%; }

/* Bottom Sparklines Panel */
.dashboard-sparklines {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-top: 1rem;
}

.sparkline-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.sparkline-title {
  font-size: 0.65rem;
  color: #64748B;
  font-weight: 600;
}

.sparkline-val-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.sparkline-val {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.sparkline-trend {
  font-size: 0.65rem;
  font-weight: 600;
}

.sparkline-trend.green { color: #10B981; }
.sparkline-trend.orange { color: #F59E0B; }

.sparkline-chart-svg {
  width: 100%;
  height: 25px;
}

/* SVG Connection Lines in Hub Grid */
.hub-connector-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.connector-path {
  fill: none;
  stroke: rgba(37, 99, 235, 0.15);
  stroke-width: 2;
  stroke-dasharray: 4 4;
}

.connector-path-flow {
  fill: none;
  stroke: var(--secondary-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 12;
  animation: dash-flow 2.5s infinite linear;
}

.connector-path-flow-inventory { stroke: #10B981; }
.connector-path-flow-production { stroke: #8B5CF6; }
.connector-path-flow-finance { stroke: #F59E0B; }

/* Trusted Group / Counter Section (Section 02 & Section 13) */
.trust-strip {
  background-color: var(--primary-navy);
  color: #ffffff;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  text-align: center;
  width: 100%;
}

.counter-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.counter-num {
  font-family: var(--font-headings);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--secondary-blue);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.counter-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trust-subtext {
  text-align: center;
  max-width: 800px;
  margin: 1.5rem auto 0 auto;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* Premium Monochrome Logo Wall styling */
.logo-wall-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.logo-wall-item {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(100%) brightness(3.5) contrast(0.5);
  opacity: 0.45;
}

.logo-wall-item:hover {
  opacity: 0.9;
  filter: grayscale(0%) brightness(1) contrast(1);
}

.logo-wall-item svg {
  width: 130px;
  height: auto;
  pointer-events: none;
}

/* Growth Brings Complexity (Section 03) */
.growth-columns {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.complexity-narrative p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.growth-belief-box {
  background-color: var(--bg-soft);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: var(--border-light);
  margin-top: 2rem;
}

.growth-belief-box .belief-label {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-blue);
  margin-bottom: 0.5rem;
}

.growth-belief-box p {
  font-size: 0.95rem;
  color: var(--primary-navy);
  font-weight: 500;
  line-height: 1.5;
}

/* Transition/Belief Cards in Section 03 & 04 */
.belief-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.belief-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: var(--border-light);
}

.belief-card.old {
  background-color: #FFF5F5;
  border-color: #FEE2E2;
}

.belief-card.new {
  background-color: #F0FDF4;
  border-color: #DCFCE7;
}

.belief-card-lbl {
  font-family: var(--font-headings);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.belief-card.old .belief-card-lbl { color: #EF4444; }
.belief-card.new .belief-card-lbl { color: #22C55E; }

.belief-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

/* Framework lists */
.framework-tick-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.framework-tick-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.framework-tick-item svg {
  color: #10B981;
}

/* Interactive Slider Box for Stage Growth Complexity (Reference 2) */
.stage-slider-box {
  background-color: var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: var(--border-light);
  box-shadow: var(--shadow-lg);
}

.stage-nav {
  display: flex;
  background-color: #E2E8F0;
  padding: 4px;
  border-radius: 50px;
  margin-bottom: 2.5rem;
}

.stage-btn {
  flex: 1;
  border: none;
  background: none;
  text-align: center;
  padding: 0.6rem 0.5rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  cursor: pointer;
  color: #64748B;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-btn.active {
  background-color: white;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.stage-content-item {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.stage-content-item.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.stage-nodes-panel {
  position: relative;
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: var(--border-light);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stage-visual-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.stage-1-lbl { background-color: #DCFCE7; color: #166534; }
.stage-2-lbl { background-color: #FEF3C7; color: #92400E; }
.stage-3-lbl { background-color: #FEE2E2; color: #991B1B; }

.stage-graphic {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.stage-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stage-metric-box {
  background-color: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  text-align: center;
  border: var(--border-light);
}

.stage-metric-val {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.stage-metric-lbl {
  font-size: 0.6rem;
  color: #64748B;
  text-transform: uppercase;
}

.simple-factory-svg {
  transition: all 0.5s ease;
}

/* Sections 04 & 05: Mix vs. Hub (Reference 3) */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-box {
  background-color: white;
  border-radius: var(--radius-xl);
  border: var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.comparison-box.chaos {
  border-color: #F87171;
  background: radial-gradient(circle at top left, #FFFDFD, #ffffff);
}

.comparison-box.order {
  border-color: #60A5FA;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.02), #ffffff);
}

.comp-header {
  padding: 1.5rem;
  border-bottom: var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.comp-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.chaos .comp-indicator { background-color: #EF4444; animation: blink 1.5s infinite; }
.order .comp-indicator { background-color: #10B981; }

.comp-title-group h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.comp-title-group p {
  font-size: 0.75rem;
}

.comp-body {
  padding: 2rem;
  flex: 1;
}

/* Chaos Graph - Scattered and Disconnected elements */
.chaos-network {
  position: relative;
  height: 250px;
  width: 100%;
}

.chaos-node {
  position: absolute;
  background: white;
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: bounce-gentle 4s infinite ease-in-out;
}

.chaos-node.node-excel { top: 10%; left: 10%; border-color: #10B981; animation-delay: 0s;}
.chaos-node.node-tally { top: 50%; left: 5%; border-color: #3B82F6; animation-delay: 1.2s;}
.chaos-node.node-busy { top: 80%; left: 35%; border-color: #EF4444; animation-delay: 0.5s;}
.chaos-node.node-whatsapp { top: 15%; right: 15%; border-color: #22C55E; animation-delay: 1.8s;}
.chaos-node.node-emails { top: 45%; right: 5%; border-color: #F59E0B; animation-delay: 2.1s;}
.chaos-node.node-reports { top: 75%; left: 70%; border-color: #EC4899; animation-delay: 0.9s;}

.chaos-scents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chaos-face {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EF4444;
}

/* Circular Shivaizer Hub Model (Reference 3 Right Side) */
.order-hub {
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.central-commander {
  width: 76px;
  height: 76px;
  background-color: var(--secondary-blue);
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4), var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.satellite-node {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  z-index: 4;
}

.satellite-node:hover {
  transform: scale(1.1);
  border-color: var(--secondary-blue);
  box-shadow: var(--shadow-md);
}

.satellite-node.node-p { top: 12%; left: 50%; transform: translateX(-50%); }
.satellite-node.node-i { right: 15%; top: 50%; transform: translateY(-50%); }
.satellite-node.node-pr { bottom: 12%; left: 50%; transform: translateX(-50%); }
.satellite-node.node-f { left: 15%; top: 50%; transform: translateY(-50%); }

.order-connector-circle {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 1px dashed rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  animation: spin-slow 30s infinite linear;
}

/* Compare Bullet items */
.comp-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comp-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.comp-bullet-item svg {
  margin-top: 2px;
  flex-shrink: 0;
}

.chaos .comp-bullet-item svg { color: #EF4444; }
.order .comp-bullet-item svg { color: #10B981; }

.bullet-bold-label {
  font-weight: 700;
  color: var(--primary-navy);
}

/* Section 06: One System One Data One View One Control */
.shivaizer-framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.framework-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.framework-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-blue);
}

.framework-card-num {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: #E2E8F0;
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.framework-card:hover .framework-card-num {
  color: var(--accent-light);
}

.framework-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Section 07: Workflows and Journey */
.workflow-map-container {
  background-color: var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: var(--border-light);
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
}

.workflow-journey {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1.5rem 0;
}

.workflow-journey-line {
  position: absolute;
  top: 50%;
  left: 3%;
  right: 3%;
  height: 4px;
  background-color: #E2E8F0;
  transform: translateY(-50%);
  z-index: 1;
}

.workflow-journey-progress {
  position: absolute;
  top: 50%;
  left: 3%;
  width: 0%;
  height: 4px;
  background: var(--btn-gradient);
  transform: translateY(-50%);
  z-index: 2;
  transition: width 1s ease-in-out;
}

.workflow-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workflow-step-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  border: 3px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.workflow-step.active .workflow-step-node {
  border-color: var(--secondary-blue);
  color: white;
  background-color: var(--secondary-blue);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
  transform: scale(1.15);
}

.workflow-step-lbl {
  margin-top: 0.75rem;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748B;
  white-space: nowrap;
}

.workflow-step.active .workflow-step-lbl {
  color: var(--primary-navy);
}

.workflow-card-viewer {
  background-color: white;
  border-radius: var(--radius-lg);
  border: var(--border-light);
  padding: 2rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-sm);
  min-height: 180px;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.workflow-viewer-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light);
  color: var(--secondary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.workflow-viewer-icon svg {
  width: 32px;
  height: 32px;
}

.workflow-viewer-detail h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* Alternate flex grid alignment section */
.connected-scenarios {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3.5rem;
}

.scenario-card {
  background-color: white;
  border-radius: var(--radius-lg);
  border: var(--border-light);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.scenario-card:hover {
  border-color: var(--secondary-blue);
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.scenario-num {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondary-blue);
}

.scenario-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-navy);
}

.scenario-text span {
  color: #64748B;
  font-weight: 400;
}

/* Section 08: Value Block Bento Grid style */
.bento-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-blue);
}

.bento-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.bento-card p {
  font-size: 0.85rem;
  color: #64748B;
}

.bento-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-light);
  color: var(--secondary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bento-icon svg {
  width: 22px;
  height: 22px;
}

.bento-col-span-2 {
  grid-column: span 2;
}

.bento-col-span-3 {
  grid-column: span 3;
}

/* Section 09: Industry Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.industry-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-blue);
}

.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-light);
  color: var(--secondary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.industry-icon svg {
  width: 24px;
  height: 24px;
}

.industry-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.industry-desc {
  font-size: 0.85rem;
  color: #64748B;
  flex-grow: 1;
}

/* Section 10: Money Loss & ROI Engine Calculator inside Section 10 */
.roi-calculator-box {
  background-color: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: var(--border-light);
  box-shadow: var(--shadow-lg);
}

.roi-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  border-bottom: var(--border-light);
  padding-bottom: 1rem;
}

.roi-form-group {
  margin-bottom: 1.5rem;
}

.roi-lbl {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.roi-lbl span {
  color: var(--secondary-blue);
}

.roi-range {
  width: 100%;
  accent-color: var(--secondary-blue);
  height: 6px;
  border-radius: 4px;
  background-color: #E2E8F0;
  outline: none;
}

.roi-output-panel {
  background-color: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px dashed rgba(37, 99, 235, 0.2);
  margin-top: 2rem;
  text-align: center;
}

.roi-output-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748B;
  letter-spacing: 0.05em;
}

.roi-output-val {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: #10B981;
  line-height: 1.2;
}

.roi-output-desc {
  font-size: 0.8rem;
  color: #64748B;
}

/* Section 12: Integrations Platform Logos */
.integrations-holder {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.01), transparent 80%);
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-item {
  background-color: white;
  border: 1.5px solid rgba(13, 27, 42, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 68px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03), var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* Premium 4K micro line highlighting the top edge of the tool on hover */
.logo-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background-color: var(--logo-color, var(--secondary-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Logo icon styling for original vs monochrome state */
.logo-item svg {
  height: 32px; /* Amplified SVG resolution height for 4K crispness */
  width: auto;
  max-width: 100%;
}

.logo-item.monochrome svg path, 
.logo-item.monochrome svg text {
  fill: #94A3B8;
  transition: fill 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.logo-item:hover::before {
  opacity: 1;
}

.logo-item:hover svg path {
  fill: var(--logo-color, var(--secondary-blue));
}

.logo-item:hover svg text {
  fill: var(--logo-text-color, var(--primary-navy));
}

/* Section 15: FAQ Accordion styling */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--radius-md);
  border: var(--border-light);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: white;
  transition: background-color 0.2s ease;
}

.faq-header:hover {
  background-color: var(--bg-soft);
}

.faq-title {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: #64748B;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.6;
}

.faq-item.open {
  border-color: var(--secondary-blue);
  box-shadow: var(--shadow-md);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--secondary-blue);
}

/* Section 16: Resources / Guides */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.resource-card {
  background-color: white;
  border-radius: var(--radius-lg);
  border: var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-blue);
}

.resource-card-img-placeholder {
  height: 140px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: var(--border-light);
}

.resource-card-img-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--secondary-blue);
  opacity: 0.7;
}

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

.resource-card-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--primary-navy);
}

.resource-card-desc {
  font-size: 0.8rem;
  color: #64748B;
  margin-bottom: auto;
}

.resource-card-link {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.25rem;
}

/* Section 18: Conversion footer */
.final-conversion-panel {
  background: radial-gradient(circle at top right, var(--accent-light) 0%, white 60%);
  border-radius: var(--radius-xl);
  border: var(--border-light);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-conversion-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--btn-gradient);
}

.conv-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.conv-para {
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.1rem;
  color: #475569;
}

.conv-ctas-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Footer styling */
footer {
  background-color: var(--primary-navy);
  color: #94A3B8;
  padding: 5rem 0 3rem 0;
  border-top: var(--border-light);
}

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

.footer-brand h4 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.footer-col h5 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #94A3B8;
  font-size: 0.85rem;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

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

.footer-bottom-links a {
  color: #94A3B8;
}

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

.trust-layer {
  font-size: 0.75rem;
  color: #64748B;
  margin-top: 0.5rem;
}

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

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

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 1; }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.25), 0 0 30px rgba(37, 99, 235, 0.15), var(--shadow-lg);
    border-color: var(--secondary-blue);
  }
  50% {
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.65), 0 0 55px rgba(37, 99, 235, 0.35), var(--shadow-2xl);
    border-color: #3b82f6;
  }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -36;
  }
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .grid-2, .grid-3, .growth-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .shivaizer-framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 2.25rem 0;
  }
  
  .hero-main-title {
    font-size: 2.75rem;
  }
  
  .comparison-container {
    grid-template-columns: 1fr;
  }
  
  .workflow-journey {
    display: none; /* Hide interactive map on small mob for a list */
  }
  
  .workflow-journey-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .workflow-journey-vertical .workflow-step {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
  
  .workflow-journey-vertical .workflow-step-node {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  
  .bento-grid-3x2 {
    grid-template-columns: 1fr;
  }
  
  .bento-col-span-2, .bento-col-span-3 {
    grid-column: span 1;
  }
  
  .logo-row {
    gap: 1rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .nav-links {
    display: none; /* JS will toggle active state */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .dash-sparklines-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stage-content-item.active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .shivaizer-framework-grid,
  .industry-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-main-title {
    font-size: 2.25rem;
  }
  
  .conv-title {
    font-size: 2.25rem;
  }
}

/* ==========================================================================
   22. INTERACTIVE DEMO BOOKING SUITE & MODAL POPUP
   ========================================================================== */

/* Layout & General Suite Styling */
.demo-suite-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(10, 25, 47, 0.05);
  margin-top: 1.5rem;
}

@media (max-width: 991px) {
  .demo-suite-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Left Side Walkthrough Representation */
.walkthrough-visual-box {
  background: #FAFBFD;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
}

.walkthrough-tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.walkthrough-tab-content.active {
  display: block;
  opacity: 1;
}

.walkthrough-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.walkthrough-live-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #3B82F6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.walkthrough-live-tag span {
  width: 6px;
  height: 6px;
  background-color: #3B82F6;
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(59, 130, 246, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* Form Styling & Interaction */
.booking-form-wrapper {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.step-indicator-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-bars {
  display: flex;
  gap: 6px;
  width: 120px;
  height: 6px;
}

.step-bar-pill {
  flex: 1;
  background: #EEF2F6;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.step-bar-pill.active {
  background: var(--secondary-blue);
}

.form-step-pane {
  display: none;
}

.form-step-pane.active {
  display: block;
  animation: slideFadeIn 0.3s ease-out;
}

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

/* Choice Cards (Industry Selection) */
.choices-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.choice-card {
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s ease;
  background: #ffffff;
  user-select: none;
}

.choice-card:hover {
  border-color: #93C5FD;
  background: #FAFBFD;
}

.choice-card.selected {
  border-color: var(--secondary-blue);
  background: rgba(37, 99, 235, 0.03);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.06);
}

.choice-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EEF2F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: all 0.2s ease;
}

.choice-card.selected .choice-card-icon {
  background: var(--secondary-blue);
  color: #ffffff;
}

.choice-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.choice-card-desc {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.35;
}

/* Scale selection pills */
.scale-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.scale-pill {
  border: 1.5px solid #E2E8F0;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.scale-pill:hover {
  border-color: #93C5FD;
  background: #FAFBFD;
}

.scale-pill.selected {
  border-color: var(--secondary-blue);
  background: var(--secondary-blue);
  color: #ffffff;
}

/* Slots Grid */
.slots-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.slot-option {
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s ease;
  user-select: none;
}

.slot-option:hover {
  border-color: #93C5FD;
  background: #FAFBFD;
}

.slot-option.selected {
  border-color: var(--secondary-blue);
  background: rgba(37, 99, 235, 0.03);
}

.slot-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.slot-day {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 500;
}

.slot-status {
  font-size: 0.65rem;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Form Controls */
.form-input-group {
  margin-bottom: 1.25rem;
}

.form-label-premium {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
  display: block;
}

.form-field-premium {
  width: 100%;
  border: 1.5px solid #E2E8F0;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--primary-navy);
  transition: all 0.2s ease;
  background: #ffffff;
}

.form-field-premium:focus {
  border-color: var(--secondary-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.06);
}

/* Form Footer Buttons */
.form-navigation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 12px;
}

/* Success layout */
.form-success-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-circle-check {
  width: 60px;
  height: 60px;
  background: #D1FAE5;
  color: #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: scaleBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleBounce {
  from { transform: scale(0.3); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Global Premium Modal Overlay */
.demo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.demo-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.demo-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 960px;
  border-radius: 20px;
  box-shadow: 0 25px 60px -15px rgba(10, 25, 47, 0.3);
  border: 1px solid #E2E8F0;
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-modal-overlay.active .demo-modal-content {
  transform: translateY(0);
}

.demo-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  position: relative;
}

.demo-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  background: #F1F5F9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #475569;
  transition: all 0.2s;
  z-index: 10;
}

.demo-modal-close:hover {
  background: #E2E8F0;
  color: var(--primary-navy);
  transform: scale(1.05);
}

.demo-modal-header {
  padding: 2.25rem 2.25rem 0.75rem 2.25rem;
}

/* Inline suite layout adaptations in modal setting */
.demo-modal-body .demo-suite-container {
  margin-top: 0;
  border: none;
  padding: 0;
  box-shadow: none;
}


/* Redesigned Section 08: Coordination Layout */
.redesigned-coordination-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.narrative-banner-card {
  background: white;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
}
.narrative-banner-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-md);
}
.narrative-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--secondary-blue);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.narrative-headline {
  font-size: 1.8rem;
  color: var(--primary-navy);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  font-family: var(--font-headings);
}
.narrative-headline .highlight-text {
  color: var(--secondary-blue);
}
.narrative-paragraph {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.outcomes-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .outcomes-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .outcomes-full-grid {
    grid-template-columns: 1fr;
  }
  .narrative-banner-card {
    padding: 2rem 1.5rem;
  }
  .narrative-headline {
    font-size: 1.4rem;
  }
}

/* Floating WhatsApp & Callback CTA styles */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
}
.floating-call-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #1B75BC;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 18px rgba(27, 117, 188, 0.45);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(27, 117, 188, 0.65);
  background-color: #155e96;
}
.call-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .floating-call-btn {
    padding: 10px 14px;
    font-size: 0.85rem;
    bottom: 16px;
    right: 16px;
  }
  .floating-whatsapp-btn {
    width: 48px;
    height: 48px;
    bottom: 16px;
    left: 16px;
  }
}

/* ==========================================================================
   INTERACTIVE FOOTER DEMO BOOKING (IMAGE 8 INSPIRED)
   ========================================================================= */

.growth-engine-section {
  background-color: #F8FAFC;
  padding: 5rem 0;
  border-top: var(--border-light);
  border-bottom: var(--border-light);
  font-family: var(--font-body);
}

.growth-engine-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .growth-engine-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.ge-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ge-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #EEF2FF;
  color: #4F46E5;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  width: fit-content;
  font-family: var(--font-headings);
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.ge-heading {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #0A192F;
}

.heading-gradient-together {
  background: linear-gradient(135deg, #4F46E5 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ge-desc {
  font-size: 1.05rem;
  color: #4B5563;
  line-height: 1.6;
}

/* Stat Grid */
.ge-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.stat-badge-card {
  background-color: white;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.02);
}

.stat-badge-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(10, 25, 47, 0.04);
  border-color: #C7D2FE;
}

.stat-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #EEF2FF;
  color: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card-text {
  display: flex;
  flex-direction: column;
}

.stat-card-label {
  font-size: 0.78rem;
  color: #6B7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.stat-card-number {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0A192F;
  font-family: var(--font-headings);
}

/* Secure Card */
.ge-secure-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #F1F5F9;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  border: 1px solid #E2E8F0;
}

.ge-secure-card p {
  font-size: 0.85rem;
  color: #475569;
}

/* Ratings */
.ge-ratings-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.rating-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #374151;
  font-weight: 600;
}

/* Right Column: Form Card */
.ge-right-form-wrapper {
  perspective: 1000px;
}

.ge-form-card {
  background-color: white;
  border: 1px solid #E5E7EB;
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(10, 25, 47, 0.08);
  position: relative;
  transition: all 0.4s ease;
}

@media (max-width: 480px) {
  .ge-form-card {
    padding: 1.5rem;
  }
}

.ge-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.ge-form-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #EEF2FF;
  color: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.ge-form-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0A192F;
  margin-bottom: 0.5rem;
}

.ge-form-subtitle {
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.45;
}

/* Form inputs styling */
.ge-form-group {
  margin-bottom: 1.25rem;
}

.ge-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.375rem;
}

.ge-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.ge-input {
  width: 100%;
  padding: 0.85rem 2.75rem 0.85rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all 0.2s ease;
  color: #1F2937;
  background-color: #FAFAFA;
}

.ge-input:focus {
  outline: none;
  border-color: #4F46E5;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.ge-input-icon {
  position: absolute;
  right: 1.25rem;
  color: #9CA3AF;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tel input with Prefix */
.ge-tel-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #D1D5DB;
  border-radius: 0.75rem;
  background-color: #FAFAFA;
  transition: all 0.2s ease;
}

.ge-tel-wrapper:focus-within {
  border-color: #4F46E5;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.ge-tel-flag-dropdown {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0 0.75rem 0 1rem;
  border-right: 1px solid #E5E7EB;
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
  cursor: default;
  user-select: none;
}

.ge-tel-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #1F2937;
}

.ge-tel-input:focus {
  outline: none;
}

/* Button & Experts */
.ge-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #4F46E5 0%, #3B82F6 100%);
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
  transition: all 0.25s ease;
  margin-top: 1.75rem;
}

.ge-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.5);
  filter: brightness(1.05);
}

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

.ge-experts-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #E5E7EB;
}

.expert-avatars-group {
  display: flex;
  align-items: center;
}

.expert-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
  background-color: #E2E8F0;
  background-size: cover;
  background-position: center;
}

.expert-avatar-circle:first-child {
  margin-left: 0;
}

.ge-experts-text {
  font-size: 0.8rem;
  color: #6B7280;
  line-height: 1.35;
  font-weight: 500;
}

/* On submit success state inside card */
.ge-success-pane {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 0.4s ease forwards;
  min-height: 400px;
}

.ge-success-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #DEF7EC;
  color: #03543F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(3, 84, 63, 0.15);
}

.ge-success-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #03543F;
  margin-bottom: 0.75rem;
}

.ge-success-desc {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.ge-success-box {
  background-color: #EEF2FF;
  border: 1px solid #C7D2FE;
  border-radius: 1rem;
  padding: 1.25rem;
  width: 100%;
  text-align: left;
}

.ge-success-box h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3730A3;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ge-success-box p {
  font-size: 0.88rem;
  color: #4338CA;
  line-height: 1.45;
}

/* ==========================================================================
   PREMIUM ENTERPRISE SAAS VISUAL PASS CLASSES
   ========================================================================= */

.luxury-status-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(10, 25, 47, 0.08);
}

.luxury-status-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(10, 25, 47, 0.08);
}

.stable-state {
  border-left: 4px solid #10B981 !important;
}

.growth-state {
  border-left: 4px solid #F59E0B !important;
}

.insight-state {
  border-left: 4px solid #3B82F6 !important;
}

.negative-block-alert {
  background: rgba(239, 68, 68, 0.02) !important;
  border: 1px solid rgba(239, 68, 68, 0.08) !important;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.01);
}

.negative-alert-header {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #EF4444;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.premium-bento-highlight {
  background: white;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(10,25,47,0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-bento-highlight:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 16px 36px rgba(10,25,47,0.04);
}

.system-mix-chip {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(10,25,47,0.01);
  transition: all 0.2s ease;
}

.system-mix-chip:hover {
  transform: translateY(-1px);
  border-color: #CBD5E1;
  box-shadow: 0 4px 8px rgba(10,25,47,0.02);
}

.framework-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.framework-card:hover {
  transform: translateY(-3px);
  border-color: var(--secondary-blue) !important;
  box-shadow: 0 15px 30px -10px rgba(59, 130, 246, 0.15);
}

.luxury-step-item {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0.04) 100%);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 30px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
  transition: all 0.2s ease;
}

.luxury-step-item:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(37, 99, 235, 0.06) 100%);
  border-color: rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}

/* Infinite Scrolling Logo Marquee Stripe */
.logo-marquee-section {
  background-color: #0b1a30; /* Matches the trust strip's rich navy color */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.2rem 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-marquee-section::before,
.logo-marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee-section::before {
  left: 0;
  background: linear-gradient(to right, #0A192F 0%, rgba(10, 25, 47, 0) 100%);
}

.logo-marquee-section::after {
  right: 0;
  background: linear-gradient(to left, #0A192F 0%, rgba(10, 25, 47, 0) 100%);
}

.logo-marquee-container {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: scroll-marquee-left 32s linear infinite;
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(100%) brightness(3) contrast(0.5);
  opacity: 0.55;
  cursor: pointer;
}

.logo-marquee-item:hover {
  filter: grayscale(0%) brightness(1) contrast(1);
  opacity: 1;
  transform: translateY(-2px) scale(1.06);
}

.logo-marquee-item svg {
  height: 28px;
  width: auto;
  pointer-events: none;
}

/* Simulator Knob & Animations */
.integrity-switch-btn {
  position: relative;
  width: 48px;
  height: 26px;
  background-color: #E2E8F0;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}

.integrity-switch-btn::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.integrity-switch-btn.active {
  background-color: #10B981;
}

.integrity-switch-btn.active::after {
  transform: translateX(22px);
}

/* Travel Dot Keyframes */
@keyframes sim-progress-dots {
  0% {
    left: 0%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.sim-flow-dot.travel-red-fast {
  animation: sim-progress-dots 1.8s infinite linear;
}

.sim-flow-dot.travel-red-fast-delay {
  animation: sim-progress-dots 1.8s infinite linear;
  animation-delay: 0.9s;
}

.sim-flow-dot.travel-green-steady {
  animation: sim-progress-dots 3.2s infinite linear;
}

.border-color-change {
  transition: border-color 0.4s ease, border-left-color 0.4s ease;
}

.shivaizer-active .border-color-change {
  border-left-color: #10B981 !important;
}

/* ==========================================================================
   COSMIC DARK HERO LAYOUT (Inspired by Reference Image)
   ========================================================================== */
.cosmic-dark-hero {
  background-color: #030712; /* Premium rich deep navy/black space backdrop */
  background-image: 
    radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.16) 0%, transparent 60%),
    radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.03) 0%, transparent 60%);
  position: relative;
  padding: 6.5rem 0;
  overflow: hidden;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cosmic-dark-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.08) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

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

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }
}

.cosmic-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.85rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 50px;
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  color: #93C5FD;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.cosmic-hero-title {
  font-family: var(--font-headings);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .cosmic-hero-title {
    font-size: 2.4rem;
  }
}

.cosmic-hero-gradient-text {
  background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.cosmic-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #94A3B8;
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.cosmic-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cosmic-hero-btn-primary {
  background: #2563EB;
  color: #ffffff !important;
  font-weight: 600;
  font-family: var(--font-headings);
  border-radius: 8px;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cosmic-hero-btn-primary:hover {
  background: #3B82F6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.cosmic-hero-btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
  font-family: var(--font-headings);
  border-radius: 8px;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cosmic-hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Premium Tech Decor Container */
.cosmic-tech-decor {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .cosmic-tech-decor {
    height: 320px;
    margin-top: 1.5rem;
  }
}

.glowing-fiber-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.nebula-core {
  position: relative;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, transparent 75%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.nebula-core-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1.5px dashed rgba(59, 130, 246, 0.25);
  border-radius: 50%;
  animation: spin-slow 25s infinite linear;
}

.nebula-core-active {
  width: 76px;
  height: 76px;
  background: rgba(10, 25, 47, 0.85);
  border: 2px solid #3B82F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
  animation: float-slow 4s infinite ease-in-out;
  z-index: 5;
}

.floating-connected-node {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.65rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 4;
  backdrop-filter: blur(6px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-connected-node:hover {
  border-color: #3B82F6;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.30);
}

.floating-connected-node.purchasing {
  top: 15%;
  left: 0;
  border-left: 3px solid #3B82F6;
}
.floating-connected-node.inventory {
  top: 15%;
  right: 0;
  border-left: 3px solid #10B981;
}
.floating-connected-node.production {
  bottom: 12%;
  left: 0;
  border-left: 3px solid #8B5CF6;
}
.floating-connected-node.finance {
  bottom: 12%;
  right: 0;
  border-left: 3px solid #F59E0B;
}

.made-in-india-strip {
  width: 100%;
  text-align: center;
  margin-top: 4rem;
  font-family: var(--font-headings);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   SHIVAIZER PREMIUM DARK THEME OVERRIDES
   ========================================================================== */

body.dark-theme {
  --bg-color: #0d1527;      /* Extremely deep navy-slate base */
  --bg-soft: #14213d;       /* Matching luxurious deep secondary navy */
  --bg-alt: #1e293b;        /* Crisp medium slate background */
  --primary-navy: #f8fafc;  /* Clean high contrast off-white for headings */
  --primary-navy-light: #e2e8f0;
  --secondary-blue: #3b82f6;
  --secondary-blue-hover: #60a5fa;
  --soft-blue: #1e293b;
  --accent-light: #1e2d4a;   /* Eye-friendly subtle deep blue */
  --border-light: 1px solid rgba(255, 255, 255, 0.08); /* Clean thin borders */
  --border-focus: 1px solid #3b82f6;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.4);
}

body.dark-theme p {
  color: #94a3b8; /* Calming muted text */
}

body.dark-theme {
  color: #cbd5e1;
}

body.dark-theme .logo-text-suffix {
  fill: #f8fafc !important;
}

body.dark-theme .logo-dot-suffix {
  fill: #f8fafc !important;
}

body.dark-theme h1, 
body.dark-theme h2, 
body.dark-theme h3, 
body.dark-theme h4, 
body.dark-theme h5, 
body.dark-theme h6 {
  color: #f8fafc;
}

/* Section elements visual refinements in dark mode */
body.dark-theme .cosmic-dark-hero {
  background-color: #0a1120 !important;
  background-image: radial-gradient(circle at 50% 0%, #15223c 0%, #0a1120 100%) !important;
  border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

body.dark-theme .cosmic-hero-subtitle-new {
  color: #94a3b8 !important;
}

body.dark-theme .cosmic-hero-badge {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #e2e8f0 !important;
}

body.dark-theme .nav-links {
  background-color: #0a1120;
}

@media (max-width: 991px) {
  body.dark-theme .nav-links {
    background-color: #0a1120;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

body.dark-theme .choice-card {
  background-color: #14213d;
  border-color: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

body.dark-theme .choice-card.selected {
  background-color: rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

body.dark-theme .choice-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
}

body.dark-theme .form-field-premium,
body.dark-theme .ge-input,
body.dark-theme .ge-tel-input {
  background-color: #14213d;
  border-color: rgba(255, 255, 255, 0.12);
  color: #f8fafc !important;
}

body.dark-theme .form-field-premium::placeholder,
body.dark-theme .ge-input::placeholder,
body.dark-theme .ge-tel-input::placeholder {
  color: #475569 !important;
}

body.dark-theme .roi-calculator-box {
  background-color: #14213d;
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .roi-output-panel {
  background-color: #0a1120;
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .roi-title {
  color: #f8fafc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-theme .roi-lbl {
  color: #cbd5e1;
}

body.dark-theme .workflow-step {
  border-color: rgba(255, 255, 255, 0.08);
  background-color: #14213d;
}

body.dark-theme .workflow-step.active {
  border-color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.08);
}

body.dark-theme .workflow-step h4 {
  color: #f8fafc;
}

body.dark-theme .bento-card,
body.dark-theme .resource-card,
body.dark-theme .faq-item,
body.dark-theme .benefit-card,
body.dark-theme .industry-card {
  background-color: #14213d;
  border-color: rgba(255, 255, 255, 0.06);
}

body.dark-theme .bento-card-title,
body.dark-theme .resource-card-title,
body.dark-theme .industry-card h3,
body.dark-theme .benefit-card h3 {
  color: #f8fafc;
}

body.dark-theme .faq-header {
  color: #f8fafc;
}

body.dark-theme .faq-content p {
  color: #cbd5e1;
}

body.dark-theme .expert-profile-banner {
  background-color: #14213d !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .testimonial-slider-container {
  background-color: #14213d !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme section[style*="background-color:var(--bg-soft)"] {
  background-color: #14213d !important;
}

body.dark-theme section[style*="background:#FAFBFD"],
body.dark-theme section[style*="background-color:#FAFBFD"] {
  background-color: #0a1120 !important;
}

body.dark-theme .interactive-pane-new {
  background: #14213d !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .ge-tel-flag-dropdown {
  background-color: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-theme .ge-tel-flag-dropdown strong {
  color: #f8fafc !important;
}

body.dark-theme .ge-success-box {
  background-color: #0a1120 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .ge-experts-text {
  color: #94a3b8;
}

body.dark-theme .demo-modal-content {
  background-color: #0d1527;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-theme .demo-modal-header {
  background-color: #14213d !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-theme .demo-modal-header p {
  color: #94a3b8 !important;
}

body.dark-theme .scale-pill {
  background-color: #14213d;
  color: #cbd5e1;
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .scale-pill.selected {
  background-color: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}

body.dark-theme .slot-option {
  background-color: #14213d;
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .slot-option.selected {
  border-color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
}

body.dark-theme .slot-time {
  color: #f8fafc;
}

body.dark-theme .slot-day {
  color: #94a3b8;
}

body.dark-theme .form-success-box {
  background-color: #0d1527;
}

body.dark-theme .form-success-box div[style*="background: #F8FAFC"] {
  background-color: #14213d !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
}

body.dark-theme .logo-item {
  background-color: #14213d !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .logo-item.monochrome svg path, 
body.dark-theme .logo-item.monochrome svg text {
  fill: #64748B;
}

body.dark-theme .logo-item:hover {
  border-color: rgba(59,130,246,0.3) !important;
}




