/* ==========================================================================
   EXITO LABS - DESIGN SYSTEM & STYLESHEET
   Typography: Lexend (Google Fonts)
   Colors: Primary #2E7D32 | Secondary #1B5E20 | Tertiary #81C784 | Neutral #455A64
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Design System Color Tokens */
  --primary: #2E7D32;         /* Main Forest Green */
  --primary-hover: #256628;
  --secondary: #1B5E20;       /* Deep Dark Forest Green */
  --tertiary: #81C784;        /* Soft Sage Mint Accent */
  --tertiary-light: #E8F5E9;  /* Very Light Green Tint */
  --neutral: #455A64;         /* Slate Grey / Blue Grey */
  --neutral-dark: #263238;    /* Dark Charcoal Slate */
  --neutral-muted: #78909C;   /* Light Slate */
  --neutral-light: #ECEFF1;   /* Subtle Border / Soft Fill */
  
  /* Background Tints matching design system image */
  --bg-main: #EBF3F5;         /* Soft Ice Slate Tint from design reference */
  --bg-card: #FFFFFF;         /* Crisp White Card */
  --bg-card-alt: #F4F8F9;     /* Secondary Card Surface */
  --bg-dark: #1C2A30;         /* Inverted Dark Surface */
  
  /* Text Colors */
  --text-main: #263238;
  --text-muted: #455A64;
  --text-light: #78909C;
  --text-on-dark: #FFFFFF;

  /* Status / Accents */
  --accent-red: #D32F2F;
  --accent-red-bg: #FFEBEE;
  --accent-green-bg: #E8F5E9;
  
  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(69, 90, 100, 0.06);
  --shadow-md: 0 8px 24px rgba(46, 125, 50, 0.08);
  --shadow-lg: 0 16px 36px rgba(27, 94, 32, 0.12);
  --shadow-pill: 0 4px 16px rgba(69, 90, 100, 0.1);

  /* Font Family */
  --font-family: 'Lexend', system-ui, -apple-system, sans-serif;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Theme Override */
[data-theme="dark"] {
  --bg-main: #121E23;
  --bg-card: #1C2A30;
  --bg-card-alt: #24363E;
  --text-main: #F0F4F6;
  --text-muted: #B0BEC5;
  --text-light: #78909C;
  --neutral-light: #2A3C44;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Typography Hierarchy based on Design System */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

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

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

ul {
  list-style: none;
}

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

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

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

/* Buttons matching design system image */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.25);
}

.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.35);
}

.btn-secondary {
  background-color: var(--tertiary-light);
  color: var(--secondary);
  border-color: var(--tertiary-light);
}

.btn-secondary:hover {
  background-color: rgba(129, 199, 132, 0.3);
  transform: translateY(-2px);
}

.btn-inverted {
  background-color: var(--neutral);
  color: #FFFFFF;
  border-color: var(--neutral);
}

.btn-inverted:hover {
  background-color: var(--neutral-dark);
  border-color: var(--neutral-dark);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

/* Badges & Labels */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-green {
  background-color: var(--tertiary-light);
  color: var(--secondary);
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.badge-neutral {
  background-color: var(--neutral-light);
  color: var(--neutral);
}

/* HEADER & FLOATING NAVIGATION */
.header-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: 1140px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pill);
  transition: var(--transition);
}

[data-theme="dark"] .navbar {
  background: rgba(28, 42, 48, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.brand-logo:hover {
  opacity: 0.9;
}

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

@media (max-width: 768px) {
  .brand-logo-img {
    height: 36px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.nav-link svg,
.nav-link i {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  opacity: 0.85;
}

.nav-dropdown:hover .nav-link svg,
.nav-dropdown:hover .nav-link i {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.12);
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.75rem;
  width: 240px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-light);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 100;
  animation: fadeIn 0.2s ease forwards;
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-item {
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: var(--tertiary-light);
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle-btn {
  background: var(--neutral-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--neutral);
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  background: var(--tertiary-light);
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--neutral);
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  padding-top: 9.5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-subtag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--tertiary-light);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  border: 1px solid rgba(46, 125, 50, 0.15);
}

.hero-title {
  color: var(--text-main);
  line-height: 1.15;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 620px;
}

.hero-bullets {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.85rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

.hero-bullet-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.hero-bullet-icon {
  width: 24px;
  height: 24px;
  background-color: #72C785;
  color: #121A21;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(114, 199, 133, 0.25);
}

.hero-bullet-icon svg,
.hero-bullet-icon i {
  width: 14px;
  height: 14px;
  stroke-width: 2.75px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  h1, .hero-title {
    font-size: clamp(1.75rem, 7.5vw, 2.5rem);
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-section {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero-subtag {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    max-width: 100%;
    white-space: normal;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-bullets {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-ctas .btn,
  .hero-ctas a,
  .btn-lg {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.92rem;
  }
}

/* HERO INTERACTIVE DIAGRAM / WIDGET */
.hero-visual-container {
  position: relative;
}

.hero-engine-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 2.25rem 2rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
}

[data-theme="dark"] .hero-engine-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.engine-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

[data-theme="dark"] .engine-header {
  border-color: rgba(255, 255, 255, 0.08);
}

.engine-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

[data-theme="dark"] .engine-title {
  color: var(--text-main);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: #1B5E20;
  background: #E8F5E9;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
}

[data-theme="dark"] .live-indicator {
  background: rgba(46, 125, 50, 0.2);
  color: #A5D6A7;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #28732C;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.engine-nodes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.engine-node {
  background: #F4F8F7;
  border-radius: 20px;
  padding: 1.25rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

[data-theme="dark"] .engine-node {
  background: var(--bg-card-alt);
}

.engine-node:hover, .engine-node.active {
  border-color: #28732C;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(40, 115, 44, 0.08);
  transform: translateX(4px);
}

[data-theme="dark"] .engine-node:hover, [data-theme="dark"] .engine-node.active {
  background: var(--bg-card);
  border-color: var(--primary);
}

.node-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.node-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #E8F5E9;
  color: #28732C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.node-icon i {
  width: 22px;
  height: 22px;
  stroke-width: 2.2px;
}

.node-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 0.2rem;
}

[data-theme="dark"] .node-title {
  color: var(--text-main);
}

.node-desc {
  font-size: 0.86rem;
  color: #64748B;
  font-weight: 500;
}

[data-theme="dark"] .node-desc {
  color: var(--text-muted);
}

.node-stat {
  font-size: 0.92rem;
  font-weight: 800;
  color: #1B5E20;
  background: #E8F5E9;
  padding: 0.65rem 1rem;
  border-radius: 18px;
  white-space: nowrap;
}

[data-theme="dark"] .node-stat {
  background: rgba(46, 125, 50, 0.2);
  color: #A5D6A7;
}

/* Revenue Chip Badge above Engine Nodes */
.revenue-chip {
  background: #17232B;
  color: #F8FAFC;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.85rem 1.35rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
}

.revenue-chip i {
  width: 22px;
  height: 22px;
  color: #56C075;
  flex-shrink: 0;
}

.revenue-chip-highlight {
  font-weight: 800;
  color: #56C075;
  font-size: 1.15rem;
}

[data-theme="dark"] .revenue-chip {
  background: #17232B;
  color: #F8FAFC;
  border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .revenue-chip i,
[data-theme="dark"] .revenue-chip-highlight {
  color: #56C075;
}

@media (max-width: 540px) {
  .hero-engine-card {
    padding: 1.25rem 1rem;
    border-radius: 20px;
  }

  .engine-header {
    padding-bottom: 1rem;
    margin-bottom: 1.15rem;
    gap: 0.5rem;
  }

  .engine-title {
    font-size: 0.95rem;
  }

  .engine-title i {
    width: 18px;
    height: 18px;
  }

  .live-indicator {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    flex-shrink: 0;
  }

  .engine-node {
    padding: 0.95rem 0.85rem;
    gap: 0.5rem;
    border-radius: 16px;
  }

  .node-info {
    gap: 0.65rem;
    flex: 1;
    min-width: 0;
  }

  .node-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .node-icon i {
    width: 18px;
    height: 18px;
  }

  .node-title {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .node-desc {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .node-stat {
    font-size: 0.78rem;
    padding: 0.4rem 0.65rem;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .revenue-chip {
    padding: 0.65rem 0.95rem;
    font-size: 0.875rem;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
  }

  .revenue-chip-highlight {
    font-size: 0.95rem;
  }
}

/* TRUST / LOGO CAROUSEL SECTION */
.trust-section {
  padding: 2.25rem 0;
  border-top: 1px solid var(--neutral-light);
  border-bottom: 1px solid var(--neutral-light);
}

.trust-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.trust-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: -0.01em;
}

[data-theme="dark"] .trust-title {
  color: #94A3B8;
}

.trust-sub {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 0.35rem;
  text-align: center;
}

[data-theme="dark"] .trust-sub {
  color: #64748B;
}

.logo-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

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

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

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  transition: all 0.3s ease;
  opacity: 0.9;
  filter: none;
  cursor: pointer;
}

.logo-item:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.08);
}

.logo-icon-svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
  flex-shrink: 0;
}

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

/* WHO WE ARE SECTION */
.who-section {
  background-color: #EBF3F5;
  padding: 5.5rem 0;
}

[data-theme="dark"] .who-section {
  background-color: var(--bg-card);
}

.who-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.who-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.who-title .highlight-green {
  color: #28732C;
}

.who-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 580px;
}

.problem-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.problem-item {
  background: #FFFFFF;
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  border-left: 4px solid #E53935;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

[data-theme="dark"] .problem-item {
  background: var(--bg-card-alt);
}

.problem-item:hover {
  transform: translateX(4px);
}

.problem-icon-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FCE8E6;
  color: #E53935;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.problem-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E293B;
}

[data-theme="dark"] .problem-text {
  color: var(--text-main);
}

.solution-box {
  background: linear-gradient(145deg, #1C5123 0%, #103314 100%);
  color: #FFFFFF;
  border-radius: 28px;
  padding: 3rem 2.25rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-box h3 {
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.3;
}

.solution-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.diagnostic-trigger-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.diagnostic-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.diag-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.diag-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.btn-audit {
  background-color: #FFFFFF;
  color: #1C5123;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-audit:hover {
  transform: translateY(-2px);
  background-color: #F8FAFC;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
}

.btn-audit svg,
.btn-audit i {
  width: 15px;
  height: 15px;
  stroke-width: 2.5px;
}

/* OUR SERVICES SECTION */
.services-section {
  background-color: var(--bg-card);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.services-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
  text-align: left;
}

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

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

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(46, 125, 50, 0.3);
}

[data-theme="dark"] .service-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.service-title-row .service-icon-badge {
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

.service-title-row h3 {
  margin-bottom: 0 !important;
}

.service-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #28732C;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(40, 115, 44, 0.25);
}

.service-icon-badge svg,
.service-icon-badge i {
  width: 22px;
  height: 22px;
  stroke-width: 2.2px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

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

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.service-link:hover {
  gap: 0.6rem;
}

/* WHY EXITO LABS COMPARISON SECTION */
.why-section {
  background-color: var(--bg-main);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

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

.questions-card,
.comparison-box {
  background: var(--bg-card);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

[data-theme="dark"] .questions-card,
[data-theme="dark"] .comparison-box {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.questions-card h3,
.comparison-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.questions-card p,
.comparison-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}

.question-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.question-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.check-icon {
  width: 22px;
  height: 22px;
  background-color: #28732C;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(40, 115, 44, 0.25);
}

.check-icon svg,
.check-icon i {
  width: 13px;
  height: 13px;
  stroke-width: 2.5px;
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.comp-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(69, 90, 100, 0.1);
}

[data-theme="dark"] .comp-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.comp-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.comp-bad-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--accent-red);
  font-weight: 500;
}

[data-theme="dark"] .comp-bad-line {
  color: #EF5350;
}

.comp-good-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 700;
}

[data-theme="dark"] .comp-good-line {
  color: var(--tertiary);
}

.comp-bad-line svg, .comp-good-line svg,
.comp-bad-line i, .comp-good-line i {
  width: 15px;
  height: 15px;
  stroke-width: 2.5px;
  flex-shrink: 0;
}

/* WHO WE WORK WITH (SOLUTIONS) */
.solutions-section {
  background-color: var(--bg-card);
}

.solutions-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.sol-tab {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--neutral-light);
  color: var(--neutral);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.sol-tab.active, .sol-tab:hover {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

.solution-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--neutral-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
}

.sol-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--tertiary-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 1rem;
}

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

/* OUR APPROACH SECTION */
.approach-section {
  background-color: var(--bg-main);
}

.approach-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

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

@media (max-width: 576px) {
  .approach-timeline {
    grid-template-columns: 1fr;
  }
}

.approach-step {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--neutral-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.approach-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--tertiary);
  line-height: 1;
  margin-bottom: 1rem;
}

.approach-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--secondary);
}

.approach-step p {
  font-size: 0.9rem;
}

/* RESULTS SECTION */
.results-section {
  background-color: var(--bg-card);
}

.results-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
  .results-board {
    grid-template-columns: 1fr;
  }
}

.result-column {
  border-radius: 32px;
  padding: 3rem 2.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.result-bad {
  background-color: rgba(244, 246, 248, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

[data-theme="dark"] .result-bad {
  background: rgba(28, 44, 52, 0.55) !important;
  backdrop-filter: blur(24px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(190%) !important;
  border: 1px solid rgba(255, 82, 82, 0.25) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.result-bad h3 {
  color: #334155;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

[data-theme="dark"] .result-bad h3 {
  color: #F0F4F6 !important;
}

.result-good {
  background-color: #28732C;
  border: none;
}

[data-theme="dark"] .result-good {
  background: rgba(27, 94, 32, 0.45) !important;
  backdrop-filter: blur(24px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(190%) !important;
  border: 1px solid rgba(129, 199, 132, 0.35) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(46, 125, 50, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.result-good h3 {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.result-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.result-item {
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  letter-spacing: -0.01em;
}

.result-bad .result-item {
  color: #1E293B;
}

[data-theme="dark"] .result-bad .result-item {
  color: #E2E8F0 !important;
}

.result-good .result-item {
  color: #FFFFFF;
}

[data-theme="dark"] .result-good .result-item {
  color: #F0F4F6 !important;
}

.result-icon-bad {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #FCE8E6;
  color: #E53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-theme="dark"] .result-icon-bad {
  background-color: rgba(255, 82, 82, 0.2) !important;
  color: #FF5252 !important;
  border: 1px solid rgba(255, 82, 82, 0.4) !important;
  box-shadow: 0 0 10px rgba(255, 82, 82, 0.3) !important;
}

.result-icon-bad svg,
.result-icon-bad i {
  width: 14px;
  height: 14px;
  stroke-width: 2.8px;
}

.result-icon-good {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-theme="dark"] .result-icon-good {
  background-color: rgba(129, 199, 132, 0.25) !important;
  color: #81C784 !important;
  border: 1px solid rgba(129, 199, 132, 0.45) !important;
  box-shadow: 0 0 10px rgba(129, 199, 132, 0.3) !important;
}

.result-icon-good svg,
.result-icon-good i {
  width: 14px;
  height: 14px;
  stroke-width: 2.8px;
}

.metrics-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--bg-dark);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

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

.counter-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.counter-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--tertiary);
}

.counter-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* CASE STUDIES SECTION */
.cases-section {
  background-color: var(--bg-main);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.case-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--neutral-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.case-client {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neutral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-metric-highlight {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0.5rem 0 0.75rem 0;
}

.case-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.case-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.case-card button {
  margin-top: 1.25rem;
  width: 100%;
}

/* PHILOSOPHY / WHAT WE BELIEVE SECTION */
.philosophy-section {
  background-color: #F4F6F8;
  padding: 5.5rem 0;
  text-align: center;
}

[data-theme="dark"] .philosophy-section {
  background-color: var(--bg-card);
}

.philosophy-content {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.philosophy-title {
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.philosophy-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* INTERACTIVE GROWTH CALCULATOR SECTION */
.calculator-section {
  background-color: var(--bg-main);
}

.calc-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 850px) {
  .calc-box {
    grid-template-columns: 1fr;
  }
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.range-slider {
  width: 100%;
  accent-color: var(--primary);
  height: 8px;
  border-radius: 4px;
  background: var(--neutral-light);
  cursor: pointer;
}

.slider-val-display {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.select-input, .text-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-light);
  font-family: var(--font-family);
  font-size: 0.95rem;
  background: var(--bg-card-alt);
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.select-input:focus, .text-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
  background: var(--bg-card);
}

.calc-results {
  background: linear-gradient(160deg, var(--neutral-dark), var(--bg-dark));
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-res-value {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--tertiary);
  line-height: 1.1;
  margin: 0.5rem 0;
}

/* FINAL CTA SECTION */
.final-cta-section {
  background-color: #111A1F;
  background-image: 
    radial-gradient(circle at 12% 88%, rgba(40, 115, 44, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 88% 12%, rgba(40, 115, 44, 0.28) 0%, transparent 45%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-box {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-box h2 {
  font-size: clamp(2rem, 3.8vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin-bottom: 1.25rem;
}

.cta-box p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 2.5rem auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background-color: #28732C;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(40, 115, 44, 0.4);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  background-color: #236526;
  box-shadow: 0 8px 24px rgba(40, 115, 44, 0.55);
}

.cta-btn-primary svg,
.cta-btn-primary i {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
}

.cta-btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.cta-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

/* FOOTER */
.footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

.footer-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 0;
  display: block;
}

@media (max-width: 768px) {
  .footer-logo-img {
    height: 44px;
  }
}

.footer-brand h3 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--tertiary);
}

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

/* MODAL SYSTEM */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 30, 35, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.25s ease forwards;
}

.modal-backdrop.open {
  display: flex;
}

.modal-container {
  background: var(--bg-card);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-light);
  padding: 2.5rem;
  position: relative;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--neutral-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--neutral);
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--accent-red-bg);
  color: var(--accent-red);
}

/* ANIMATIONS */
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(46, 125, 50, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

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

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

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

/* RESPONSIVE UTILITIES */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }
}

/* ==========================================================================
   MAVEN INSTRUCTOR GROWTH SECTION STYLES
   ========================================================================== */
.maven-section {
  background: var(--bg-main);
  position: relative;
}

.maven-banner-card {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 2.5rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #FFFFFF;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.maven-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(129, 199, 132, 0.2) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.maven-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}

.maven-banner-content h3 {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.maven-banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.maven-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: rgba(0, 0, 0, 0.18);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.maven-stat-card {
  text-align: center;
}

.maven-stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--tertiary);
}

.maven-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.maven-banner-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.maven-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tertiary);
  margin-bottom: 1rem;
}

.maven-quote-box p {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.maven-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.btn-block {
  width: 100%;
}

.maven-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.maven-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--neutral-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.maven-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--tertiary);
}

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

.pillar-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--tertiary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.maven-pillar-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.maven-pillar-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--neutral-light);
}

.pillar-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
}

.pillar-list li i {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Calculator Section & Card */
.calculator-section {
  background-color: var(--bg-main);
  padding: 5.5rem 0;
}

[data-theme="dark"] .calculator-section {
  background-color: var(--bg-card-alt);
}

.maven-calc-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 32px;
  padding: 3.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
  width: 100%;
}

[data-theme="dark"] .maven-calc-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.maven-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .maven-calc-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.maven-calc-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1E293B;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

[data-theme="dark"] .maven-calc-info h3 {
  color: var(--text-main);
}

.maven-calc-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 1.5rem;
}

.calc-tip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #F4F8F7;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  border-left: 4px solid #28732C;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #334155;
}

[data-theme="dark"] .calc-tip-item {
  background: rgba(46, 125, 50, 0.15);
  color: var(--text-main);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-weight: 700;
  font-size: 0.94rem;
  color: #1E293B;
}

[data-theme="dark"] .slider-header {
  color: var(--text-main);
}

.slider-val-display {
  color: #28732C;
  font-weight: 800;
  font-size: 1.15rem;
}

.range-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  accent-color: #28732C;
  cursor: pointer;
}

.maven-calc-results-box {
  background: #F4F6F8;
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 1.6rem 1.75rem;
  border-radius: 20px;
  margin-top: 1.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

[data-theme="dark"] .maven-calc-results-box {
  background: var(--bg-card-alt);
  border-color: rgba(255, 255, 255, 0.08);
}

.res-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748B;
}

.res-row strong {
  color: #1E293B;
  font-size: 1.15rem;
  font-weight: 800;
}

[data-theme="dark"] .res-row strong {
  color: var(--text-main);
}

.res-row.main {
  font-size: 1.05rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.res-row.main strong {
  color: #28732C;
  font-size: 1.45rem;
  font-weight: 800;
}

.res-row.sub strong {
  color: #28732C;
  font-size: 0.95rem;
  font-weight: 700;
}

.res-row.main strong {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 800;
}

.res-row.sub {
  font-size: 0.88rem;
}

.res-row.sub strong {
  color: var(--secondary);
  font-size: 1rem;
}

@media (max-width: 992px) {
  .maven-banner-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .maven-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   MAVEN GROWTH PAGE CUSTOM COMPONENT STYLES
   ========================================================================== */

/* Trust Checkmark Grid */
.trust-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 0 auto;
}

.trust-check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--neutral-light);
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-check-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.trust-check-item i {
  color: var(--primary);
  width: 18px;
  height: 18px;
}

/* Takeaway Card */
.takeaway-card {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #FFFFFF;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-md);
}

.takeaway-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.takeaway-card p strong {
  color: var(--tertiary);
  font-weight: 800;
  font-size: 1.4rem;
  display: block;
  margin-top: 0.5rem;
}

/* Rule Callouts inside Service Cards */
.rule-callout {
  background: var(--tertiary-light);
  color: var(--secondary);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  border-left: 4px solid var(--primary);
  margin-top: 1rem;
}

/* Why Different Section / Why Exito Labs Section */
.why-section {
  background-color: var(--bg-main);
  padding: 5.5rem 0;
}

[data-theme="dark"] .why-section {
  background-color: var(--bg-card-alt);
}

.why-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #64748B;
  margin-top: 0.75rem;
}

[data-theme="dark"] .why-subtitle {
  color: var(--text-muted);
}

.why-different-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

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

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.why-list-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: #1E293B;
}

[data-theme="dark"] .why-list-item {
  color: var(--text-main);
}

.why-list-item i {
  color: #1E293B;
  width: 22px;
  height: 22px;
  stroke-width: 2.2px;
  flex-shrink: 0;
}

[data-theme="dark"] .why-list-item i {
  color: var(--primary);
}

.why-takeaway-box {
  background: #0E3414;
  padding: 2.5rem 2.25rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  box-shadow: 0 10px 30px rgba(14, 52, 20, 0.3);
  color: #FFFFFF;
}

.why-takeaway-box h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.45;
  margin: 0;
}

.btn-pill-green {
  background: #28732C;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.85rem 1.6rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  transition: var(--transition);
}

/* Outcomes Grid / Results We Help Create */
.results-section {
  background-color: #FFFFFF;
  padding: 5.5rem 0;
}

[data-theme="dark"] .results-section {
  background-color: var(--bg-card);
}

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

@media (max-width: 992px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }
}

@media (max-width: 540px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
}

.outcome-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 9999px;
  padding: 0.95rem 1.6rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E293B;
  transition: var(--transition);
}

[data-theme="dark"] .outcome-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.outcome-card:hover {
  transform: translateY(-3px);
  border-color: rgba(40, 115, 44, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.outcome-card i {
  color: #1E293B;
  width: 20px;
  height: 20px;
  stroke-width: 2.2px;
  flex-shrink: 0;
}

[data-theme="dark"] .outcome-card i {
  color: var(--primary);
}

[data-theme="dark"] .outcome-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.outcome-card:hover {
  transform: translateY(-3px);
  border-color: rgba(40, 115, 44, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.outcome-card i {
  color: #28732C;
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
  flex-shrink: 0;
}

/* Who This Is For / Audience Section */
.audience-section {
  background-color: #FFFFFF;
  padding: 5.5rem 0;
}

[data-theme="dark"] .audience-section {
  background-color: var(--bg-card);
}

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

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

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

.audience-card {
  background: #F4F8F7;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 2rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: var(--transition);
}

[data-theme="dark"] .audience-card {
  background: var(--bg-card-alt);
  border-color: rgba(255, 255, 255, 0.08);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  border-color: rgba(40, 115, 44, 0.3);
}

.audience-card i {
  color: #FFFFFF;
  background-color: #28732C;
  padding: 0.65rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(40, 115, 44, 0.2);
}

.audience-card div h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 0.35rem;
}

[data-theme="dark"] .audience-card div h4 {
  color: var(--text-main);
}

.audience-card div p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #64748B;
}

/* Process Section */
.process-section {
  background-color: var(--bg-main);
  padding: 5.5rem 0;
}

[data-theme="dark"] .process-section {
  background-color: var(--bg-card-alt);
}

.process-funnel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

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

@media (max-width: 640px) {
  .process-funnel-grid {
    grid-template-columns: 1fr;
  }
}

.process-step-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  padding: 2.25rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  position: relative;
  text-align: center;
  transition: var(--transition);
}

[data-theme="dark"] .process-step-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.process-step-card.featured {
  border: 2px solid #28732C;
  box-shadow: 0 8px 24px rgba(40, 115, 44, 0.15);
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(40, 115, 44, 0.3);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #28732C;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.process-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #28732C;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(40, 115, 44, 0.2);
}

.process-step-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

[data-theme="dark"] .process-step-card h3 {
  color: var(--text-main);
}

.process-step-card .step-desc {
  font-size: 0.88rem;
  color: #64748B;
  margin-bottom: 1.5rem;
  line-height: 1.45;
}

.process-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.process-bullet-item {
  background: #E8F5E9;
  color: #1B5E20;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

[data-theme="dark"] .process-bullet-item {
  background: rgba(46, 125, 50, 0.2);
  color: #A5D6A7;
}

.process-bullet-item i {
  width: 15px;
  height: 15px;
  color: #28732C;
  stroke-width: 2.2px;
}

/* ==========================================================================
   TESTIMONIALS SECTION STYLES
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-main);
  padding: 5.5rem 0;
}

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

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

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(46, 125, 50, 0.3);
}

[data-theme="dark"] .testimonial-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #F59E0B;
  margin-bottom: 1.25rem;
}

.testimonial-rating svg,
.testimonial-rating i {
  width: 18px;
  height: 18px;
  fill: #F59E0B;
}

.testimonial-quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

[data-theme="dark"] .testimonial-author-box {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.author-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   MAVEN SERVICES / WHAT WE DO GRID ENHANCEMENTS
   ========================================================================== */
#what-we-do {
  background-color: #FFFFFF;
  padding: 5.5rem 0;
}

[data-theme="dark"] #what-we-do {
  background-color: var(--bg-card);
}

.maven-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

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

@media (max-width: 640px) {
  .maven-services-grid {
    grid-template-columns: 1fr;
  }
}

.maven-service-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.maven-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(46, 125, 50, 0.3);
}

[data-theme="dark"] .maven-service-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.maven-service-icon {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.maven-service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.maven-service-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.maven-service-card .card-intro {
  margin-bottom: 0.85rem;
}

.maven-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.maven-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.45;
}

[data-theme="dark"] .maven-checklist li {
  color: var(--text-main);
}

.maven-checklist .check-icon {
  width: 17px;
  height: 17px;
  color: #1E293B;
  stroke-width: 3px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

[data-theme="dark"] .maven-checklist .check-icon {
  color: var(--primary);
}

.maven-rule-callout {
  background: #E8F5E9;
  border-radius: 16px;
  padding: 0.9rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1B5E20;
  line-height: 1.5;
  margin-top: 1.75rem;
  border: none;
}

[data-theme="dark"] .maven-rule-callout {
  background: rgba(46, 125, 50, 0.2);
  color: #A5D6A7;
}

/* ==========================================================================
   MAVEN REALITY SECTION ENHANCEMENTS
   ========================================================================== */
.reality-section {
  background-color: var(--bg-main);
  padding: 5.5rem 0;
}

/* THE PROBLEM / REALITY SECTION STYLES */
.reality-section {
  padding: 6rem 0;
  position: relative;
}

.badge-red-glow {
  background: rgba(239, 83, 80, 0.12) !important;
  color: #EF5350 !important;
  border: 1px solid rgba(239, 83, 80, 0.3) !important;
  padding: 0.4rem 1rem !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.05em !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  border-radius: 9999px !important;
  box-shadow: 0 0 16px rgba(239, 83, 80, 0.15) !important;
}

.badge-red-glow i,
.badge-red-glow svg {
  width: 14px;
  height: 14px;
}

.reality-subheading {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.reality-subheading em {
  color: var(--text-main);
  font-style: italic;
  font-weight: 600;
}

[data-theme="dark"] .reality-subheading em {
  color: #E2E8F0;
}

.reality-box {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(229, 57, 53, 0.2) !important;
  border-top: 3px solid #EF5350 !important;
  border-radius: 24px !important;
  padding: 3rem 2.5rem !important;
  max-width: 860px !important;
  margin: 0 auto !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.05) !important;
  position: relative;
}

[data-theme="dark"] .reality-box {
  background: rgba(20, 32, 38, 0.8) !important;
  border-color: rgba(239, 83, 80, 0.28) !important;
  border-top-color: #EF5350 !important;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4),
              0 0 32px rgba(239, 83, 80, 0.08) !important;
}

.reality-title {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

[data-theme="dark"] .reality-title {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.reality-warn-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(239, 83, 80, 0.12);
  color: #EF5350;
  border: 1px solid rgba(239, 83, 80, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reality-warn-badge i,
.reality-warn-badge svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2px;
}

.reality-title h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

[data-theme="dark"] .reality-title h3 {
  color: #F8FAFC;
}

.reality-title-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

[data-theme="dark"] .reality-title-sub {
  color: #94A3B8;
}

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

@media (max-width: 768px) {
  .reality-list-grid {
    grid-template-columns: 1fr;
  }
}

.reality-card-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .reality-card-item {
  background: rgba(26, 40, 48, 0.6);
  border-color: rgba(255, 255, 255, 0.07);
}

.reality-card-item:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 83, 80, 0.4);
  box-shadow: 0 8px 20px rgba(239, 83, 80, 0.12);
}

.reality-card-item.full-width {
  grid-column: 1 / -1;
}

.reality-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(239, 83, 80, 0.12);
  color: #EF5350;
  border: 1px solid rgba(239, 83, 80, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reality-icon-badge i,
.reality-icon-badge svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.5px;
}

.reality-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.reality-card-content strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
}

[data-theme="dark"] .reality-card-content strong {
  color: #F1F5F9;
}

.reality-card-content span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

[data-theme="dark"] .reality-card-content span {
  color: #94A3B8;
}

.reality-takeaway-card {
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.95) 0%, rgba(12, 36, 18, 0.98) 100%) !important;
  border: 1px solid rgba(129, 199, 132, 0.35) !important;
  border-radius: 24px !important;
  padding: 2.25rem 2.5rem !important;
  text-align: center;
  max-width: 860px !important;
  margin: 2.25rem auto 0 auto !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 24px rgba(46, 125, 50, 0.2) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.takeaway-badge {
  background: rgba(129, 199, 132, 0.15);
  color: #81C784;
  border: 1px solid rgba(129, 199, 132, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.takeaway-badge i,
.takeaway-badge svg {
  width: 14px;
  height: 14px;
}

.takeaway-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.takeaway-line1 {
  font-size: 1.12rem;
  font-weight: 600;
  color: rgba(240, 253, 244, 0.85);
}

.takeaway-line2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px rgba(129, 199, 132, 0.4);
}

/* ==========================================================================
   MAVEN TRUST SECTION ENHANCEMENTS
   ========================================================================== */
.trust-section {
  background-color: var(--bg-card-alt);
  border-top: 1px solid var(--neutral-light);
  border-bottom: 1px solid var(--neutral-light);
  padding: 5.5rem 0;
}

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

.trust-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.trust-subtitle {
  font-size: 0.98rem;
  font-weight: 700;
  color: #64748B;
}

.trust-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.75rem;
  max-width: 980px;
}

@media (max-width: 992px) {
  .trust-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-grid-3col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.trust-pill-item {
  background: #FFFFFF;
  border-radius: 9999px;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E293B;
  transition: var(--transition);
}

[data-theme="dark"] .trust-pill-item {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.trust-pill-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(40, 115, 44, 0.3);
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: #1E293B;
  stroke-width: 2.2px;
  flex-shrink: 0;
}

[data-theme="dark"] .trust-icon {
  color: var(--primary);
}


/* Responsive Navbar CTA Button (Calendar icon on mobile) */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition);
}

.nav-cta-btn i {
  width: 16px;
  height: 16px;
  stroke-width: 2.2px;
}

@media (max-width: 640px) {
  .nav-cta-btn .nav-cta-text {
    display: none;
  }

  .nav-cta-btn {
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-cta-btn i {
    width: 18px;
    height: 18px;
  }
}

/* ==========================================================================
   ALLNEURONS.AI INSPIRED ANIMATIONS & DYNAMIC TRANSITIONS
   ========================================================================== */

/* Top Scroll Progress Bar */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--tertiary), #4CAF50, #81C784);
  z-index: 999999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.8);
}

/* Global Fullscreen Particle Canvas Background Theme */
#global-particle-canvas,
#hero-particle-canvas {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.85;
}

/* Ensure normal page sections float over the background canvas & crisp mesh */
section,
.hero-section,
.who-section,
.services-section,
.explorer-section,
.why-section,
.solutions-section,
.approach-section,
.results-section,
.cases-section,
.testimonials-section,
.calculator-section {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Dark Forest Ambient Gradient Sections (What We Believe, Trusted By, Final CTA) */
.philosophy-section,
.trust-section,
.final-cta-section {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
  background-image: 
    radial-gradient(ellipse 70% 80% at 10% 40%, rgba(37, 125, 52, 0.48) 0%, rgba(20, 75, 35, 0.22) 55%, transparent 80%),
    radial-gradient(ellipse 70% 80% at 90% 60%, rgba(27, 100, 42, 0.42) 0%, rgba(15, 55, 28, 0.18) 55%, transparent 80%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(12, 28, 20, 0.65) 0%, rgba(8, 20, 15, 0.85) 100%) !important;
  border-top: 1px solid rgba(129, 199, 132, 0.16) !important;
  border-bottom: 1px solid rgba(129, 199, 132, 0.16) !important;
  overflow: hidden;
}

.philosophy-section .philosophy-title {
  color: #FFFFFF !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.philosophy-section .philosophy-desc {
  color: rgba(240, 253, 244, 0.88) !important;
}

.trust-section .trust-title {
  color: #F1F5F9 !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.trust-section .trust-sub {
  color: rgba(226, 232, 240, 0.78) !important;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

/* Dynamic Cursor Spotlight & Glow Card System */
.glow-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid rgba(69, 90, 100, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

[data-theme="dark"] .glow-card {
  border-color: rgba(255, 255, 255, 0.08);
}

/* Spotlight overlay generated by JS --mouse-x and --mouse-y */
.glow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(46, 125, 50, 0.14),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

[data-theme="dark"] .glow-card::before {
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(129, 199, 132, 0.22),
    transparent 45%
  );
}

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

/* Sheen sweep effect on hover */
.glow-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
  z-index: 3;
}

.glow-card:hover::after {
  animation: shineSweep 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shineSweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

.glow-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 16px 40px rgba(46, 125, 50, 0.16), 0 0 25px rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.4);
}

[data-theme="dark"] .glow-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(129, 199, 132, 0.2);
  border-color: rgba(129, 199, 132, 0.4);
}

/* 3D Subtle Tilt Container */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}

/* Animated Shimmer Text & Highlight */
.text-shimmer {
  background: linear-gradient(
    120deg,
    var(--primary) 0%,
    #388E3C 25%,
    var(--tertiary) 50%,
    #4CAF50 75%,
    var(--primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 6s linear infinite;
}

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

.highlight {
  position: relative;
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
}

[data-theme="dark"] .highlight {
  color: var(--tertiary);
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(129, 199, 132, 0.3);
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-visible .highlight::after,
.highlight.animated::after {
  transform: scaleX(1);
}

/* Pulsing Badge & Neural Indicator */
.pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #4CAF50;
  border-radius: 50%;
  position: relative;
  margin-right: 6px;
}

.pulse-dot::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background-color: rgba(76, 175, 80, 0.5);
  animation: pulseRing 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-subtag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--tertiary-light);
  border: 1px solid rgba(46, 125, 50, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.1);
  animation: float 4s ease-in-out infinite;
}

[data-theme="dark"] .hero-subtag {
  background: rgba(46, 125, 50, 0.2);
  border-color: rgba(129, 199, 132, 0.3);
  color: var(--tertiary);
}

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

/* SCROLL REVEAL ANIMATIONS (IntersectionObserver) */
.reveal-on-scroll {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up {
  transform: translateY(35px);
}

.reveal-scale-up {
  transform: scale(0.92) translateY(20px);
}

.reveal-slide-right {
  transform: translateX(-35px);
}

.reveal-slide-left {
  transform: translateX(35px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger Delays for Grid Elements */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Interactive Engine & Diagram Glow Nodes */
.engine-node {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.engine-node:hover,
.engine-node.active {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--primary) !important;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.25) !important;
}

/* Interactive Floating Engine Card Effect */
.hero-engine-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.hero-engine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(27, 94, 32, 0.25);
}

/* Glassmorphism Sticky Navbar on Scroll */
.header-wrapper.scrolled .navbar {
  background: rgba(235, 243, 245, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(46, 125, 50, 0.2);
}

[data-theme="dark"] .header-wrapper.scrolled .navbar {
  background: rgba(18, 30, 35, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Button Micro-Interactions */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease-out, height 0.5s ease-out;
  pointer-events: none;
}

.btn:active::before {
  width: 300px;
  height: 300px;
  transition: 0s;
}

/* Modal Open Spring Animation */
.modal-overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.modal-content {
  transform: scale(0.85) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-content {
  transform: scale(1) translateY(0);
}

/* ==========================================================================
   ULTRA-PREMIUM GLASSMORPHISM DESIGN SYSTEM
   ========================================================================== */

/* Glass Cards & Containers (Complete Website Coverage) */
.glass-card,
.glow-card,
.questions-card,
.comparison-box,
.solution-box,
.service-card,
.solution-card,
.case-card,
.counter-card,
.result-column,
.reality-box,
.maven-service-card,
.maven-calc-card,
.hero-engine-card,
.approach-step,
.allneurons-widget-card,
.cta-card,
.insight-card,
.diagnostic-card,
.modal-content,
.testimonial-card,
.audit-card,
.calculator-box,
.calc-result-box,
.footer {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  box-shadow: 0 16px 40px rgba(46, 125, 50, 0.07),
              inset 0 1px 1px rgba(255, 255, 255, 0.95),
              0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="dark"] .glass-card,
[data-theme="dark"] .glow-card,
[data-theme="dark"] .questions-card,
[data-theme="dark"] .comparison-box,
[data-theme="dark"] .solution-box,
[data-theme="dark"] .service-card,
[data-theme="dark"] .solution-card,
[data-theme="dark"] .case-card,
[data-theme="dark"] .counter-card,
[data-theme="dark"] .result-column,
[data-theme="dark"] .reality-box,
[data-theme="dark"] .maven-service-card,
[data-theme="dark"] .maven-calc-card,
[data-theme="dark"] .hero-engine-card,
[data-theme="dark"] .approach-step,
[data-theme="dark"] .allneurons-widget-card,
[data-theme="dark"] .cta-card,
[data-theme="dark"] .insight-card,
[data-theme="dark"] .diagnostic-card,
[data-theme="dark"] .modal-content,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .audit-card,
[data-theme="dark"] .calculator-box,
[data-theme="dark"] .calc-result-box,
[data-theme="dark"] .footer {
  background: rgba(24, 38, 45, 0.52) !important;
  backdrop-filter: blur(24px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.2),
              inset 0 -1px 0 rgba(0, 0, 0, 0.3) !important;
}

/* Glass Hover States */
.glow-card:hover,
.questions-card:hover,
.comparison-box:hover,
.service-card:hover,
.solution-card:hover,
.case-card:hover,
.counter-card:hover,
.result-column:hover,
.reality-box:hover,
.maven-service-card:hover,
.maven-calc-card:hover,
.approach-step:hover,
.insight-card:hover,
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(46, 125, 50, 0.45) !important;
  box-shadow: 0 24px 50px rgba(46, 125, 50, 0.16),
              inset 0 1px 2px rgba(255, 255, 255, 1),
              0 0 25px rgba(46, 125, 50, 0.15) !important;
}

[data-theme="dark"] .glow-card:hover,
[data-theme="dark"] .questions-card:hover,
[data-theme="dark"] .comparison-box:hover,
[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .solution-card:hover,
[data-theme="dark"] .case-card:hover,
[data-theme="dark"] .counter-card:hover,
[data-theme="dark"] .result-column:hover,
[data-theme="dark"] .reality-box:hover,
[data-theme="dark"] .maven-service-card:hover,
[data-theme="dark"] .maven-calc-card:hover,
[data-theme="dark"] .approach-step:hover,
[data-theme="dark"] .insight-card:hover,
[data-theme="dark"] .testimonial-card:hover {
  background: rgba(32, 52, 62, 0.72) !important;
  border-color: rgba(129, 199, 132, 0.45) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.3),
              0 0 30px rgba(129, 199, 132, 0.25) !important;
}

/* Frosted Glass Question Items & Lists */
.question-item {
  background: rgba(46, 125, 50, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(46, 125, 50, 0.18) !important;
  color: var(--secondary) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.9rem 1.25rem !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 12px rgba(0, 0, 0, 0.02) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease !important;
}

[data-theme="dark"] .question-item {
  background: rgba(129, 199, 132, 0.12) !important;
  border: 1px solid rgba(129, 199, 132, 0.25) !important;
  color: #E8F5E9 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 4px 14px rgba(0, 0, 0, 0.25) !important;
}

.question-item:hover {
  transform: translateX(8px) scale(1.015);
  background: rgba(46, 125, 50, 0.16) !important;
  border-color: rgba(46, 125, 50, 0.4) !important;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

[data-theme="dark"] .question-item:hover {
  background: rgba(129, 199, 132, 0.22) !important;
  border-color: rgba(129, 199, 132, 0.55) !important;
  box-shadow: 0 8px 24px rgba(129, 199, 132, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Glass Comparison Pill & Rows */
.comp-pill {
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

[data-theme="dark"] .comp-pill {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: var(--tertiary) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.comp-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Glass Badges & Tags */
.badge,
.sol-tag,
.hero-subtag {
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(46, 125, 50, 0.25) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="dark"] .badge,
[data-theme="dark"] .sol-tag,
[data-theme="dark"] .hero-subtag {
  background: rgba(46, 125, 50, 0.2) !important;
  border-color: rgba(129, 199, 132, 0.35) !important;
  color: var(--tertiary) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}

/* Glass Takeaway & Inner Feature Callouts */
.diagnostic-trigger-box,
.why-takeaway-box,
.reality-takeaway-card {
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 12px 32px rgba(0, 0, 0, 0.25) !important;
}

/* Frosted Glass Form Controls & Modal Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: var(--radius-sm) !important;
  color: #FFFFFF !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: rgba(129, 199, 132, 0.6) !important;
  box-shadow: 0 0 18px rgba(129, 199, 132, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  outline: none !important;
}

/* ==========================================================================
   AGENTICAIINSTITUTE.ORG INSPIRED ENTERPRISE TECH FEATURES
   ========================================================================== */

/* Monospace Tech Badge Indicator */
.tech-mono-badge {
  font-family: 'JetBrains Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(32, 128, 141, 0.12);
  border: 1px solid rgba(32, 128, 141, 0.35);
  color: #20808d;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .tech-mono-badge {
  background: rgba(32, 128, 141, 0.2);
  border-color: rgba(32, 128, 141, 0.5);
  color: #4DD0E1;
}

/* Glowing Cyber Divider Line */
.glow-divider {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(32, 128, 141, 0.2) 20%,
    rgba(46, 125, 50, 0.6) 50%,
    rgba(32, 128, 141, 0.2) 80%,
    transparent 100%
  );
  margin: 3.5rem 0;
  box-shadow: 0 0 12px rgba(32, 128, 141, 0.4);
}

/* Executive Callout Card (Institute Authority Style) */
.executive-callout {
  border-left: 4px solid #20808d !important;
  background: rgba(32, 128, 141, 0.06) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  padding: 1.25rem 1.5rem !important;
  border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
  border-top: 1px solid rgba(32, 128, 141, 0.2) !important;
  border-right: 1px solid rgba(32, 128, 141, 0.2) !important;
  border-bottom: 1px solid rgba(32, 128, 141, 0.2) !important;
}

[data-theme="dark"] .executive-callout {
  background: rgba(32, 128, 141, 0.14) !important;
  border-top-color: rgba(32, 128, 141, 0.35) !important;
  border-right-color: rgba(32, 128, 141, 0.35) !important;
  border-bottom-color: rgba(32, 128, 141, 0.35) !important;
}

/* Enhanced Cyber Spotlight Overlay for Dark Cards */
[data-theme="dark"] .glow-card::before {
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(32, 128, 141, 0.25),
    rgba(129, 199, 132, 0.15) 35%,
    transparent 65%
  ) !important;
}

/* INSIGHT CARDS (GTM & Growth Frameworks) STYLING (Matching Reference Image) */
.insight-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 246, 248, 0.95) 100%) !important;
  border: 1px solid rgba(46, 125, 50, 0.22) !important;
  border-radius: var(--radius-lg) !important;
  padding: 2.25rem 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: var(--transition) !important;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

[data-theme="dark"] .insight-card {
  background: linear-gradient(145deg, rgba(20, 42, 46, 0.88) 0%, rgba(12, 26, 30, 0.92) 100%) !important;
  border: 1px solid rgba(129, 199, 132, 0.25) !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.insight-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 20px 45px rgba(46, 125, 50, 0.2), 0 0 25px rgba(46, 125, 50, 0.15) !important;
}

[data-theme="dark"] .insight-card:hover {
  border-color: var(--tertiary) !important;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6), 0 0 30px rgba(129, 199, 132, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.insight-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

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

.insight-tag {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: var(--radius-pill) !important;
}

.insight-link {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  transition: gap 0.25s ease !important;
}

[data-theme="dark"] .insight-link {
  color: var(--tertiary) !important;
}

.insight-card:hover .insight-link {
  gap: 0.7rem !important;
}

/* Service Card Container with Liquid Aura Background */
.service-card {
  position: relative;
  background: rgba(14, 25, 30, 0.75) !important;
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--radius-lg) !important;
  padding: 2.25rem !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

/* Fluid Liquid Aura Glow Effect inside Card */
.service-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(21, 101, 192, 0.35) 0%,
    rgba(32, 128, 141, 0.25) 35%,
    rgba(46, 125, 50, 0.15) 60%,
    transparent 80%
  );
  filter: blur(35px);
  pointer-events: none;
  z-index: 0;
  animation: fluidMesh 8s ease-in-out infinite alternate;
}

@keyframes fluidMesh {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10%, 10%) scale(1.1); }
  100% { transform: translate(5%, -5%) scale(1.05); }
}

.service-card > * {
  position: relative;
  z-index: 1;
}

/* Service Card Monospace Header Subtitle */
.service-header-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(176, 190, 197, 0.8);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Dedicated Impact Metrics Section & Grid */
.impact-metrics-section {
  position: relative;
  z-index: 1;
}

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

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

@media (max-width: 640px) {
  .impact-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.metric-card-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

[data-theme="dark"] .metric-card-header {
  color: var(--tertiary);
}

.glass-metric-box {
  margin-top: 1.5rem;
  background: rgba(10, 20, 26, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.impact-metrics-grid .glass-metric-box {
  margin-top: 0;
  height: 100%;
}

.glass-metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0.3rem 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.glass-metric-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(176, 190, 197, 0.75);
  margin-bottom: 1rem;
}

/* Side-by-Side Before / After Comparison Widgets */
.metric-comparison-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.before-widget {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.5rem;
  text-align: center;
}

.before-widget .widget-label {
  font-size: 0.7rem;
  color: rgba(176, 190, 197, 0.6);
  margin-bottom: 0.2rem;
}

.before-widget .widget-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.1;
}

.before-widget .widget-desc {
  font-size: 0.65rem;
  color: rgba(176, 190, 197, 0.5);
  margin-top: 0.2rem;
}

.comparison-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.after-widget {
  background: rgba(46, 125, 50, 0.18);
  border: 1px solid rgba(129, 199, 132, 0.45);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.5rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(46, 125, 50, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.after-widget .widget-label {
  font-size: 0.7rem;
  color: #81C784;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.after-widget .widget-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #81C784;
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(129, 199, 132, 0.5);
}

.after-widget .widget-desc {
  font-size: 0.65rem;
  color: #A5D6A7;
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ==========================================================================
   ALLNEURONS.AI INTERACTIVE OPPORTUNITY EXPLORER WIDGET
   ========================================================================== */

.explorer-section {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.explorer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .explorer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Floating Dynamic Widget Card */
.allneurons-widget-card {
  position: relative;
  background: rgba(10, 20, 26, 0.85) !important;
  backdrop-filter: blur(28px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(200%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 28px !important;
  padding: 2.5rem !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  overflow: hidden;
}

.allneurons-widget-card::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 130%;
  height: 130%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(21, 101, 192, 0.4) 0%,
    rgba(32, 128, 141, 0.3) 30%,
    rgba(46, 125, 50, 0.15) 60%,
    transparent 80%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: fluidMesh 10s ease-in-out infinite alternate;
}

.allneurons-widget-card > * {
  position: relative;
  z-index: 1;
}

/* Widget Header */
.widget-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.widget-header-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(176, 190, 197, 0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.widget-badge-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
}

/* Widget Giant Metric */
.widget-giant-val {
  font-size: 3.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.35);
}

.widget-metric-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(176, 190, 197, 0.7);
  margin-bottom: 1.25rem;
}

.widget-roi-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(32, 128, 141, 0.25);
  border: 1px solid rgba(32, 128, 141, 0.5);
  color: #4DD0E1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(32, 128, 141, 0.3);
}

/* Animated Progress Bars */
.widget-progress-bars {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.widget-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bar-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
}

.bar-label {
  color: rgba(255, 255, 255, 0.9);
}

.bar-val {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: #81C784;
}

.bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #20808d, #4CAF50, #81C784);
  border-radius: 999px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(129, 199, 132, 0.6);
}

/* Interactive Filter Pills (AllNeurons Style) */
.explorer-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.explorer-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.interactive-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.interactive-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.interactive-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.interactive-pill.active {
  background: rgba(32, 128, 141, 0.28) !important;
  border-color: rgba(129, 199, 132, 0.6) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 20px rgba(32, 128, 141, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.interactive-pill i {
  width: 16px;
  height: 16px;
  color: #81C784;
}

/* ==========================================================================
   PRIVACY POLICY PAGE STYLES
   ========================================================================== */
.policy-section {
  padding: 5rem 0 6rem 0;
}

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

.policy-header h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.policy-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.policy-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-light);
  box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .policy-card {
  background: rgba(24, 36, 44, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.policy-block {
  margin-bottom: 2.75rem;
}

.policy-block:last-child {
  margin-bottom: 0;
}

.policy-block h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.policy-block h2 i,
.policy-block h2 svg {
  color: var(--primary);
  width: 22px;
  height: 22px;
  stroke-width: 2.2px;
}

[data-theme="dark"] .policy-block h2 i,
[data-theme="dark"] .policy-block h2 svg {
  color: var(--tertiary);
}

.policy-block p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

[data-theme="dark"] .policy-block p {
  color: #CBD5E1;
}

.policy-block ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.policy-block li {
  font-size: 0.96rem;
  line-height: 1.68;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

[data-theme="dark"] .policy-block li {
  color: #CBD5E1;
}

.policy-block li::before {
  content: '•';
  color: var(--primary);
  font-size: 1.35rem;
  position: absolute;
  left: 0.5rem;
  top: -0.15rem;
}

[data-theme="dark"] .policy-block li::before {
  color: var(--tertiary);
}

.policy-contact-box {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(27, 94, 32, 0.04) 100%);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
}

[data-theme="dark"] .policy-contact-box {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.2) 0%, rgba(16, 36, 27, 0.4) 100%);
  border-color: rgba(129, 199, 132, 0.3);
}

@media (max-width: 768px) {
  .policy-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   MASTER CARD ANIMATIONS & MICRO-INTERACTIONS SYSTEM
   ========================================================================== */

/* Universal Card Positioning, Transition & Edge Setup */
.glow-card,
.service-card,
.solution-card,
.case-card,
.insight-card,
.hero-engine-card,
.questions-card,
.comparison-box,
.solution-box,
.glass-metric-box,
.counter-card,
.allneurons-widget-card,
.problem-card-item,
.maven-service-card,
.maven-pillar-card,
.maven-stat-card,
.maven-calc-card,
.takeaway-card,
.why-takeaway-box,
.reality-takeaway-card,
.reality-box,
.reality-card-item,
.outcome-card,
.audience-card,
.process-step-card,
.policy-card,
.testimonial-card,
.audit-card {
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              background 0.4s ease;
}

/* Tactile Active Press Feedback */
.glow-card:active,
.service-card:active,
.solution-card:active,
.case-card:active,
.insight-card:active,
.hero-engine-card:active,
.questions-card:active,
.comparison-box:active,
.solution-box:active,
.glass-metric-box:active,
.counter-card:active,
.allneurons-widget-card:active,
.maven-service-card:active,
.maven-pillar-card:active,
.maven-calc-card:active,
.takeaway-card:active,
.reality-card-item:active,
.outcome-card:active,
.audience-card:active,
.process-step-card:active,
.policy-card:active,
.testimonial-card:active {
  transform: translateY(-2px) scale(0.985) !important;
  transition: transform 0.1s ease !important;
}

/* Spotlight Cursor Beam Overlay (tracked via --mouse-x and --mouse-y) */
.glow-card::before,
.service-card::before,
.solution-card::before,
.case-card::before,
.insight-card::before,
.hero-engine-card::before,
.questions-card::before,
.comparison-box::before,
.solution-box::before,
.glass-metric-box::before,
.counter-card::before,
.allneurons-widget-card::before,
.maven-service-card::before,
.maven-pillar-card::before,
.maven-stat-card::before,
.maven-calc-card::before,
.takeaway-card::before,
.why-takeaway-box::before,
.reality-takeaway-card::before,
.reality-box::before,
.outcome-card::before,
.audience-card::before,
.process-step-card::before,
.policy-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(46, 125, 50, 0.15),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

[data-theme="dark"] .glow-card::before,
[data-theme="dark"] .service-card::before,
[data-theme="dark"] .solution-card::before,
[data-theme="dark"] .case-card::before,
[data-theme="dark"] .insight-card::before,
[data-theme="dark"] .hero-engine-card::before,
[data-theme="dark"] .questions-card::before,
[data-theme="dark"] .comparison-box::before,
[data-theme="dark"] .solution-box::before,
[data-theme="dark"] .glass-metric-box::before,
[data-theme="dark"] .counter-card::before,
[data-theme="dark"] .allneurons-widget-card::before,
[data-theme="dark"] .maven-service-card::before,
[data-theme="dark"] .maven-pillar-card::before,
[data-theme="dark"] .maven-stat-card::before,
[data-theme="dark"] .maven-calc-card::before,
[data-theme="dark"] .takeaway-card::before,
[data-theme="dark"] .why-takeaway-box::before,
[data-theme="dark"] .reality-takeaway-card::before,
[data-theme="dark"] .reality-box::before,
[data-theme="dark"] .outcome-card::before,
[data-theme="dark"] .audience-card::before,
[data-theme="dark"] .process-step-card::before,
[data-theme="dark"] .policy-card::before,
[data-theme="dark"] .testimonial-card::before {
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(129, 199, 132, 0.22),
    transparent 45%
  );
}

.glow-card:hover::before,
.service-card:hover::before,
.solution-card:hover::before,
.case-card:hover::before,
.insight-card:hover::before,
.hero-engine-card:hover::before,
.questions-card:hover::before,
.comparison-box:hover::before,
.solution-box:hover::before,
.glass-metric-box:hover::before,
.counter-card:hover::before,
.allneurons-widget-card:hover::before,
.maven-service-card:hover::before,
.maven-pillar-card:hover::before,
.maven-stat-card:hover::before,
.maven-calc-card:hover::before,
.takeaway-card:hover::before,
.why-takeaway-box:hover::before,
.reality-takeaway-card:hover::before,
.reality-box:hover::before,
.outcome-card:hover::before,
.audience-card:hover::before,
.process-step-card:hover::before,
.policy-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

/* Light Sheen Sweep Effect on Hover */
.glow-card::after,
.service-card::after,
.solution-card::after,
.case-card::after,
.insight-card::after,
.hero-engine-card::after,
.questions-card::after,
.comparison-box::after,
.solution-box::after,
.glass-metric-box::after,
.counter-card::after,
.allneurons-widget-card::after,
.maven-service-card::after,
.maven-pillar-card::after,
.maven-calc-card::after,
.takeaway-card::after,
.why-takeaway-box::after,
.reality-takeaway-card::after,
.reality-box::after,
.outcome-card::after,
.audience-card::after,
.process-step-card::after,
.policy-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}

.glow-card:hover::after,
.service-card:hover::after,
.solution-card:hover::after,
.case-card:hover::after,
.insight-card:hover::after,
.hero-engine-card:hover::after,
.questions-card:hover::after,
.comparison-box:hover::after,
.solution-box:hover::after,
.glass-metric-box:hover::after,
.counter-card:hover::after,
.allneurons-widget-card:hover::after,
.maven-service-card:hover::after,
.maven-pillar-card:hover::after,
.maven-calc-card:hover::after,
.takeaway-card:hover::after,
.why-takeaway-box:hover::after,
.reality-takeaway-card:hover::after,
.reality-box:hover::after,
.outcome-card:hover::after,
.audience-card:hover::after,
.process-step-card:hover::after,
.policy-card:hover::after,
.testimonial-card:hover::after {
  opacity: 1;
  animation: shineSweep 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shineSweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* Card Icon Micro-Animations on Hover */
.service-card:hover i[data-lucide],
.service-card:hover svg,
.solution-card:hover i[data-lucide],
.solution-card:hover svg,
.case-card:hover i[data-lucide],
.case-card:hover svg,
.insight-card:hover i[data-lucide],
.insight-card:hover svg,
.maven-service-card:hover i[data-lucide],
.maven-service-card:hover svg,
.maven-pillar-card:hover i[data-lucide],
.maven-pillar-card:hover svg,
.outcome-card:hover i[data-lucide],
.outcome-card:hover svg,
.audience-card:hover i[data-lucide],
.audience-card:hover svg,
.process-step-card:hover i[data-lucide],
.process-step-card:hover svg,
.policy-card:hover i[data-lucide],
.policy-card:hover svg,
.glow-card:hover i[data-lucide],
.glow-card:hover svg {
  transform: translateY(-4px) scale(1.15) rotate(3deg);
  filter: drop-shadow(0 6px 14px rgba(129, 199, 132, 0.45));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

/* Service & Card Icon Badge Pulsing Glow */
.service-card:hover .service-icon-badge,
.maven-service-card:hover .service-icon-badge,
.glow-card:hover .service-icon-badge,
.glow-card:hover .icon-box,
.glow-card:hover .metric-icon {
  transform: scale(1.12) rotate(-3deg);
  background-color: var(--primary) !important;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.4), 0 0 16px rgba(129, 199, 132, 0.4) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background-color 0.35s ease;
}

/* Card Heading (H3 / H4) Soft Text Glow on Hover */
.service-card:hover h3,
.solution-card:hover h3,
.case-card:hover h3,
.insight-card:hover h3,
.maven-service-card:hover h3,
.maven-pillar-card:hover h4,
.audience-card:hover h4,
.policy-card:hover h3,
.glow-card:hover h3,
.glow-card:hover h4 {
  color: #FFFFFF !important;
  text-shadow: 0 0 16px rgba(129, 199, 132, 0.35);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Card Tags & Pills Micro-bounce on Hover */
.solution-card:hover .sol-tag,
.insight-card:hover .card-tag,
.service-card:hover .service-tag,
.glow-card:hover .sol-tag,
.glow-card:hover .card-tag,
.glow-card:hover .badge {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

/* Link Arrow Slide Micro-interaction */
.service-card:hover .service-link i,
.solution-card:hover .card-link i,
.case-card:hover button i,
.insight-card:hover .insight-link i,
.maven-service-card:hover .service-link i,
.glow-card:hover a i,
.glow-card:hover button i {
  transform: translateX(6px) scale(1.1);
  color: #81C784 !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

/* Solution Filtered Card Entrance Keyframe */
@keyframes solCardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.solution-card.filtered-in {
  animation: solCardFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Gentle Ambient Oscillating Float for Key Feature Cards when idle */
@keyframes cardAmbientFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

.hero-engine-card:not(:hover),
.allneurons-widget-card:not(:hover) {
  animation: cardAmbientFloat 6s ease-in-out infinite;
}
