/* Energy Optima Marketing Website - Main Stylesheet */
/* Design System v3.2 - Deep Technical Authority */
/* Updated: 2026-04-25 */

/* ============================================ */
/* FONT FACE - NEUE EINSTELLUNG                */
/* ============================================ */

@font-face {
  font-family: 'Neue Einstellung';
  src: url('../fonts/neue-einstellung/NeueEinstellung-Regular.woff2') format('woff2'),
       url('../fonts/neue-einstellung/NeueEinstellung-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Einstellung';
  src: url('../fonts/neue-einstellung/NeueEinstellung-Bold.woff2') format('woff2'),
       url('../fonts/neue-einstellung/NeueEinstellung-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Einstellung';
  src: url('../fonts/neue-einstellung/NeueEinstellung-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================ */
/* CSS VARIABLES - DESIGN TOKENS */
/* ============================================ */

:root {
  /* Primary Colors (Structure) */
  --navy-primary: #0a1929;
  --slate-blue: #1A2332;
  --navy-dark: #0D1117;
  --slate-gray: #4A5568;

  /* Accent Colors (Interactive) — Steel Blue + Amber/Gold */
  --primary: #426d8e;
  --primary-hover: #355A75;
  --accent: #f8cf5d;
  --accent-hover: #E8B840;
  --accent-light: #FADA80;
  --secondary: #50933e;
  --secondary-hover: #3F7A30;
  --forest-green: #3F7A30;
  --diesel: #6B6558;
  --diesel-light: #8A8477;
  --warning: #E8A020;
  --amber-warning: #E8A020;

  /* Semantic Colors */
  --success: #50933e;
  --destructive: #C45B4F;
  --destructive-hover: #B04A3F;

  /* Energy Component Colors */
  --pv: #f8cf5d;
  --wind: #50933e;
  --battery: #6B8DB5;
  --grid: #426d8e;
  --load: #C45B4F;

  /* Text Colors (Light Mode) */
  --text-primary: #0a1929;
  --text-secondary: #4A5568;
  --text-tertiary: #718096;
  --text-link: #426d8e;

  /* Background Colors (Light Mode) */
  --bg-primary: #F8F6F1;
  --bg-secondary: #F0EDE6;
  --bg-tertiary: #E8E3DA;
  --bg-accent: #FFF8E8;

  /* Border Colors */
  --border-light: #D4CFC7;
  --border-medium: #C2BDB5;
  --border-accent: #426d8e;

  /* Surface & Glass */
  --surface: rgba(255, 255, 255, 0.72);
  --border-glass: rgba(212, 207, 199, 0.7);

  /* Focus Ring */
  --ring: #426d8e;

  /* Spacing */
  --container-max: 1440px;
  --section-padding: 96px 24px;
  --section-padding-mobile: 60px 16px;
}

[data-theme="dark"] {
  /* Primary — brighter for dark mode (matches app) */
  --primary: #6BA3C7;
  --primary-hover: #426d8e;

  /* Text Colors (Dark Mode) */
  --text-primary: #E6E1D8;
  --text-secondary: #8B949E;
  --text-tertiary: #6E7681;
  --text-link: #6BA3C7;

  /* Background Colors (Dark Mode) */
  --bg-primary: #0D1117;
  --bg-secondary: #161B22;
  --bg-tertiary: #21262D;
  --bg-accent: #1A2332;

  /* Semantic Colors (Dark Mode) */
  --success: #6BBF54;
  --destructive: #D47268;
  --destructive-hover: #C45B4F;

  /* Energy Component Colors (Dark Mode) */
  --pv: #f8cf5d;
  --wind: #6BBF54;
  --battery: #6B8DB5;
  --grid: #6BA3C7;
  --load: #D47268;

  /* Accent Colors (Dark Mode) */
  --amber-warning: #f8cf5d;

  /* Surface & Glass (Dark Mode) */
  --surface: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.06);

  /* Focus Ring (Dark Mode) */
  --ring: #6BA3C7;

  /* Adjust borders for dark mode */
  --border-light: #30363D;
  --border-medium: #3D444D;
}

/* ============================================ */
/* BASE STYLES */
/* ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Neue Einstellung', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

/* ============================================ */
/* TYPOGRAPHY */
/* ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Neue Einstellung', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: 56px;
  letter-spacing: -1.5px;
}

h2 {
  font-size: 42px;
  letter-spacing: -1px;
}

h3 {
  font-size: 28px;
  letter-spacing: -0.5px;
}

h4 {
  font-size: 22px;
}

p {
  line-height: 1.7;
  color: var(--text-secondary);
}

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ============================================ */
/* LAYOUT CONTAINERS */
/* ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: var(--section-padding);
}

/* ============================================ */
/* NAVIGATION */
/* ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  height: 76px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo img {
  background: transparent !important;
  display: block;
  vertical-align: middle;
}

[data-theme="dark"] .logo-dark {
  display: block !important;
}


/* Logo theme switching */
.logo-light {
  display: block;
}

.logo-dark {
  display: none !important;
}

[data-theme="dark"] .logo-light {
  display: none !important;
}

[data-theme="dark"] .logo-dark {
  display: block !important;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--navy-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 14px;
  letter-spacing: -0.5px;
  border-radius: 4px;
}

.logo-text {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

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

[data-theme="dark"] .nav-links a:hover {
  color: #f8cf5d;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-light);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: var(--text-secondary);
}

.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

[data-theme="dark"] .theme-toggle:hover {
  border-color: #f8cf5d;
  color: #f8cf5d;
  background: rgba(248, 207, 93, 0.08);
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

[data-theme="dark"] .nav-link:hover {
  color: #f8cf5d;
}

.btn-nav {
  padding: 8px 18px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-nav:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

[data-theme="dark"] .btn-nav {
  background: #f8cf5d;
  color: #0D1117;
}

[data-theme="dark"] .btn-nav:hover {
  background: #f0c44d;
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-primary);
}

  .mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  padding: 24px;
  overflow-y: auto;
  z-index: 9999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

/* ============================================ */
/* BUTTONS */
/* ============================================ */

.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 17px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  padding: 14px 34px;
  height: auto;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(66, 109, 142, 0.2);
  color: white;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  border: 1px solid var(--primary);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--bg-accent);
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */

.hero {
  margin-top: 76px;
  padding: 120px 48px;
  min-height: 600px;
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%; /* More space for dashboard image */
  gap: 48px;
  align-items: center;
}

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

.hero-headline {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.trust-signal-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--forest-green);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-secondary-links {
  display: flex;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
}

.hero-secondary-links a {
  color: var(--primary);
}

.hero-secondary-links span {
  color: var(--text-tertiary);
}

.hero-social-proof {
  margin-top: 8px;
}

.social-proof-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
}

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

.social-proof-text {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  max-width: 100%; /* Removed constraint - image fills 55% grid column */
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(10, 25, 41, 0.15);
  border: 1px solid var(--border-light);
  transform: perspective(1000px) rotateY(-2deg);
  transition: transform 0.3s ease;
}

.hero-visual img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* ============================================ */
/* SEGMENT CARDS SECTION */
/* ============================================ */

.segment-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.segment-heading {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-primary);
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.segment-grid.segment-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1600px !important;
  padding: 0 32px !important;
}

.segment-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px 20px;
  transition: all 0.2s ease;
}

.segment-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(66, 109, 142, 0.1);
  transform: translateY(-2px);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--bg-accent);
  border: 1px solid rgba(66, 109, 142, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon-wrapper svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.segment-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.segment-card .description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefits li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 700;
}

.benefits li em {
  font-style: italic;
  color: var(--text-tertiary);
}

/* ============================================ */
/* CAPABILITY SECTIONS */
/* ============================================ */

.capability-section {
  padding: 80px 24px;
}

.capability-section:nth-child(even) {
  background: var(--bg-primary);
}

.capability-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: center;
}

.capability-section.reverse .capability-container {
  grid-template-columns: 60% 40%;
}

.capability-label {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
}

.capability-section h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.capability-section .description {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-list li {
  font-size: 18px;
  color: var(--text-secondary);
  padding-left: 36px;
  position: relative;
  line-height: 1.7;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 700;
  font-size: 20px;
}

.learn-more {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.learn-more:hover {
  gap: 12px;
}

.capability-visual img {
  width: 100%;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(10, 25, 41, 0.12);
  border: 1px solid rgba(10, 25, 41, 0.5);
}

.capability-visual iframe {
  border: 1px solid rgba(10, 25, 41, 0.5) !important;
}

/* ============================================ */
/* PLATFORM PAGE - DETAILED CAPABILITIES */
/* ============================================ */

.capability-detail {
  /* Container for detailed capability sections on platform page */
}

.capability-header {
  margin-bottom: 48px;
}

.capability-header .lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 32px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card ul li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
}

.feature-card ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--primary);
  font-weight: 700;
}

.technical-specs {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 32px;
  margin-top: 48px;
}

.technical-specs h3 {
  font-size: 18px;
  margin-bottom: 24px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  font-size: 14px;
}

.specs-grid div {
  color: var(--text-secondary);
}

.specs-grid strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

/* Responsive: Stack feature cards on tablet/mobile */
@media (max-width: 1023px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Tablet-specific optimizations */
  nav .logo img {
    height: 32px !important;
  }
  
  .hero-headline {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 17px;
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .bento-card.bento-featured {
    grid-column: 1 / -1;
  }
  
  .pricing-table-five {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .segment-grid.segment-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-signal-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* ============================================ */
/* TRUST SECTION */
/* ============================================ */

.trust-section {
  padding: var(--section-padding);
  background: var(--navy-primary);
  color: white;
  text-align: center;
}

.trust-section h2 {
  color: white;
  margin-bottom: 16px;
}

.stat-highlight {
  font-size: 20px;
  opacity: 0.85;
  margin-bottom: 48px;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.metric {
  text-align: center;
}

.metric-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

.methodology-note {
  font-size: 14px;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */

.cta-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section .lead {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.trial-note {
  margin-top: 16px;
  font-size: 15px;
  color: var(--text-tertiary);
}

.trial-note a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */

footer {
  background: #F0EDE6;
  border-top: 1px solid var(--border-light);
  padding: 64px 48px 32px;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

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

.footer-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin: 16px 0 12px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--primary);
}

.footer-email svg {
  flex-shrink: 0;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-tertiary);
}

.footer-location svg {
  flex-shrink: 0;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  transition: all 0.2s ease;
  color: var(--text-secondary);
}

.social-link:hover {
  background: #426d8e;
  color: white;
  transform: translateY(-2px);
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
}

.footer-location-text {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ============================================ */
/* PRICING PAGE COMPONENTS */
/* ============================================ */

.founding-banner {
  background: var(--bg-accent);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 24px 32px;
  margin-bottom: 48px;
  text-align: center;
}

.founding-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background: white;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.founding-banner h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.founding-banner p {
  font-size: 15px;
  margin-bottom: 20px;
}

.category-toggles {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 64px auto;
  max-width: 900px;
  flex-wrap: wrap;
}

.toggle {
  flex: 1;
  min-width: 250px;
  padding: 20px 32px;
  background: var(--bg-primary);
  border: 2px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.toggle:hover {
  border-color: var(--border-medium);
  box-shadow: 0 4px 12px rgba(10, 25, 41, 0.08);
}

.toggle.active {
  border-color: var(--primary);
  background: var(--bg-accent);
}

.toggle-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.toggle-helper {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.8;
}

/* Billing Period Toggle */
.billing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.billing-toggle {
  display: inline-flex;
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  padding: 6px;
  gap: 6px;
}

.billing-option {
  padding: 12px 32px;
  background: transparent;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Neue Einstellung', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.billing-option:hover {
  color: var(--text-primary);
}

.billing-option.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(66, 109, 142, 0.25);
}

.billing-label {
  font-size: 15px;
}

.billing-badge {
  background: var(--forest-green);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.billing-option.active .billing-badge {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

/* ==========================================================================
   Feature Comparison Table
   ========================================================================== */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: #ffffff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}

.comparison-table thead th {
  padding: 20px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-light);
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 2;
  vertical-align: bottom;
}

.comparison-table thead th:first-child {
  text-align: left;
  color: var(--text-tertiary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  min-width: 180px;
  position: sticky;
  left: 0;
  z-index: 3;
  vertical-align: bottom;
}

.comparison-table thead th.col-professional {
  position: sticky;
  top: 0;
  text-align: center;
}

.comparison-table thead th:not(:first-child) {
  text-align: center;
}

.comparison-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  transition: background 0.15s ease;
  height: 44px;
  vertical-align: middle;
  line-height: 1.3;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
  position: sticky;
  left: 0;
  background: #ffffff;
  z-index: 1;
}

.comparison-table tbody tr:hover td {
  background: rgba(66, 109, 142, 0.04);
}

.comparison-table tbody tr:hover td:first-child {
  background: rgba(66, 109, 142, 0.04);
}

.comparison-table .category-header td {
  padding: 14px 16px 12px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  border-bottom: 1px solid var(--border-light);
  background: #ffffff;
  text-align: center !important;
  height: auto;
}

.comparison-table .category-header td:first-child {
  background: #ffffff;
  text-align: center !important;
}

.comparison-table .category-header:hover td {
  background: #ffffff;
}

.comparison-table .category-header:first-child td {
  padding-top: 16px;
}

.comparison-table .category-name {
  display: inline-block;
  position: relative;
  padding: 3px 16px;
}

.comparison-table .category-name::before,
.comparison-table .category-name::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--primary);
  opacity: 0.25;
}

.comparison-table .category-name::before {
  right: 100%;
  margin-right: 6px;
}

.comparison-table .category-name::after {
  left: 100%;
  margin-left: 6px;
}

.comparison-table tbody tr.even-row td {
  background: rgba(0, 0, 0, 0.015);
}

.comparison-table tbody tr.even-row td:first-child {
  background: rgba(0, 0, 0, 0.015);
}

.comparison-table tbody tr.even-row:hover td {
  background: rgba(66, 109, 142, 0.04);
}

.comparison-table tbody tr.even-row:hover td:first-child {
  background: rgba(66, 109, 142, 0.04);
}

.comparison-table .check-icon {
  color: var(--secondary);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.comparison-table .dash-icon {
  color: var(--text-tertiary);
  line-height: 1;
}

[data-theme="dark"] .comparison-table-wrapper {
  background: #161B22;
  border-color: #30363D;
}

[data-theme="dark"] .comparison-table thead th {
  background: #161B22;
  color: #E6E1D8;
}

[data-theme="dark"] .comparison-table thead th:first-child {
  background: #161B22;
}

[data-theme="dark"] .comparison-table thead th.col-professional {
  position: sticky;
  top: 0;
}

[data-theme="dark"] .comparison-table tbody td:first-child {
  background: #161B22;
}

[data-theme="dark"] .comparison-table tbody tr:hover td {
  background: rgba(107, 163, 199, 0.08);
}

[data-theme="dark"] .comparison-table tbody tr:hover td:first-child {
  background: rgba(107, 163, 199, 0.08);
}

[data-theme="dark"] .comparison-table .category-header td {
  background: #161B22;
  color: #6BA3C7;
  border-bottom-color: #30363D;
}

[data-theme="dark"] .comparison-table .category-header td:first-child {
  background: #161B22;
}

[data-theme="dark"] .comparison-table .category-name::before,
[data-theme="dark"] .comparison-table .category-name::after {
  background: #6BA3C7;
}

[data-theme="dark"] .comparison-table tbody tr.even-row td {
  background: rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .comparison-table tbody tr.even-row td:first-child {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-mobile-cards {
  display: none;
}

@media (max-width: 768px) {
  .comparison-table-wrapper {
    display: none;
  }

  .comparison-mobile-cards {
    display: block;
  }
}

@media (min-width: 769px) {
  .comparison-mobile-cards {
    display: none;
  }
}

.mc-tier {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
}

[data-theme="dark"] .mc-tier {
  background: #161B22;
  border-color: #30363D;
}

.mc-tier-header {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.mc-featured .mc-tier-header {
  background: var(--primary);
  color: #ffffff;
  border-bottom-color: var(--primary);
}

.mc-category {
  padding: 8px 16px 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.mc-featured .mc-category {
  color: var(--primary);
}

.mc-features {
  list-style: none;
  margin: 0;
  padding: 0 16px 12px;
}

.mc-features li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
  line-height: 1.3;
}

.mc-features li:last-child {
  border-bottom: none;
}

.mc-feat-name {
  color: var(--text-secondary);
  flex: 1;
  margin-right: 12px;
}

.mc-feat-val {
  color: var(--text-primary);
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}

.mc-yes {
  color: var(--secondary);
  font-weight: 600;
}

.mc-no {
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 13px;
  }

  .comparison-table thead th:first-child {
    min-width: 130px;
  }

  .comparison-table thead th {
    padding: 14px 10px;
    font-size: 13px;
    min-width: 80px;
  }

  .comparison-table tbody td {
    padding: 10px;
  }
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.pricing-table-two {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

.pricing-table-two .tier-card {
  flex: 0 1 580px;
  min-width: 480px;
}

.pricing-table-five {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1400px) {
  .pricing-table-five {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .pricing-table-five {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .pricing-table-five {
    grid-template-columns: 1fr;
  }
}

.tier-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  min-width: 0;
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.tier-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px rgba(66, 109, 142, 0.15);
}

.tier-card:hover {
  box-shadow: 0 12px 32px rgba(66, 109, 142, 0.12);
  transform: translateY(-6px);
  border-color: var(--primary);
}

.tier-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, rgba(66, 109, 142, 0.02) 0%, #ffffff 100%);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(66, 109, 142, 0.15);
}

.tier-card.featured:hover {
  box-shadow: 0 16px 40px rgba(66, 109, 142, 0.2);
  transform: scale(1.02) translateY(-6px);
}

.tier-card.founding {
  border: 2px solid var(--amber-warning);
  background: #FFF8E8;
  position: relative;
}

[data-theme="dark"] .tier-card.founding {
  background: rgba(245, 158, 11, 0.1);
}

.badge-exclusive {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--amber-warning);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.tier-header h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.price {
  margin-bottom: 8px;
}

.amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.amount.strikethrough {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 32px;
}

.amount.discounted {
  color: var(--forest-green);
}

.period {
  font-size: 18px;
  color: var(--text-secondary);
}

.discount-badge {
  display: inline-block;
  background: var(--forest-green);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 8px 0;
}

.annual-option {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}

.tier-features {
  flex: 1;
  margin-bottom: 24px;
  min-height: 200px;
}

.tier-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-group {
  margin-bottom: 24px;
}

.feature-group h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.feature-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-group li {
  font-size: 13px;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.4;
  word-wrap: break-word;
}

.feature-group li.included::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 700;
}

.feature-group li.roadmap::before {
  content: '🏗️';
  position: absolute;
  left: 0;
  font-size: 14px;
}

.feature-group li.roadmap {
  font-style: italic;
  opacity: 0.8;
}

.feature-group li.exclusive::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--amber-warning);
  font-weight: 700;
}

.cta-tier {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--primary);
  color: white !important;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.25);
}

.cta-tier:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-hover) 100%);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 109, 142, 0.35);
}

/* Dark mode button visibility fix */
[data-theme="dark"] .cta-tier {
  background: linear-gradient(135deg, #6BA3C7 0%, #355A75 100%);
  color: #FFFFFF !important;
}

[data-theme="dark"] .cta-tier:hover {
  background: linear-gradient(135deg, #8BB8D8 0%, #2A4A60 100%);
  color: #FFFFFF !important;
}

.cta-tier.founding-cta {
  background: var(--amber-warning);
  color: white;
}

.cta-tier.founding-cta:hover {
  background: #D4A830;
}

.limited-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--amber-warning);
  font-weight: 600;
  text-align: center;
}

/* New Pricing Tier Elements */

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, #2A4A60 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.3);
  white-space: nowrap;
}

.tier-users {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tier-users::before {
  content: '✓';
  color: var(--forest-green);
  font-weight: 700;
}

.price-group {
  margin-bottom: 16px;
}

.founding-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(53, 90, 117, 0.12) 0%, rgba(66, 109, 142, 0.08) 100%);
  border-radius: 10px;
  border: 1px solid rgba(53, 90, 117, 0.25);
  position: relative;
  overflow: visible;
  min-width: 0;
}

.founding-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary);
}

.founding-price span:first-child {
  flex-shrink: 0;
  font-size: 13px;
  white-space: nowrap;
}

.founding-price span:last-child {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.founding-label {
  font-size: 13px !important;
  color: var(--forest-green) !important;
  font-weight: 600 !important;
  white-space: nowrap;
}

.founding-amount {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--forest-green) !important;
  white-space: nowrap;
}

.founding-period {
  font-size: 14px !important;
  font-weight: 500 !important;
  margin-left: 2px;
}

.additional-user {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  font-style: italic;
}

.tier-target {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.tier-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-features .feature-list li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.5;
}

.tier-features .feature-list li.included::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--forest-green);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  /* Reset properties from general .feature-list styling */
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  display: inline !important;
}

.tier-features .feature-list li.roadmap {
  font-style: normal;
  color: var(--text-tertiary);
}

.tier-features .feature-list li.roadmap::before {
  content: '🏗️';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 13px;
  /* Reset properties */
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  display: inline !important;
}

.coming-soon-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.coming-soon-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.tier-cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.trial-note {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* Responsive: Stack tiers on mobile/tablet */
@media (max-width: 1200px) {
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-table-five {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .pricing-table,
  .pricing-table-two,
  .pricing-table-five {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ============================================ */
/* ROADMAP SECTION */
/* ============================================ */

.roadmap-container {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 64px 48px;
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.roadmap-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.2s ease;
}

.roadmap-card:hover {
  box-shadow: 0 4px 12px rgba(10, 25, 41, 0.1);
  transform: translateY(-2px);
}

.roadmap-card.live {
  border: 2px solid var(--forest-green);
  background: linear-gradient(135deg, rgba(53, 90, 117, 0.05) 0%, var(--bg-primary) 100%);
}

.roadmap-quarter {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.roadmap-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: 10px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.roadmap-status.live-badge {
  background: var(--forest-green);
  color: white;
}

.roadmap-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roadmap-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.roadmap-card.live .roadmap-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 700;
}

.roadmap-card:not(.live) .roadmap-features li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--primary);
  font-weight: 700;
}

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

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

  .roadmap-container {
    padding: 48px 24px;
  }
}

/* ============================================ */
/* FAQ SECTION - ACCORDION */
/* ============================================ */

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-item[open] {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  transition: all 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

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

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--text-tertiary);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 24px 24px 24px;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

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

/* Cookie banner styles moved to section 8 below */

/* ============================================ */
/* UTILITY CLASSES */
/* ============================================ */

.text-center { text-align: center; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

@media (max-width: 1023px) {
  nav {
    height: 56px;
  }

  .nav-container {
    height: 56px;
  }

  nav .logo img {
    height: 44px !important;
    width: auto !important;
  }

  .hero {
    margin-top: 56px;
  }

  .page-hero {
    margin-top: 56px;
  }

  .hero-container,
  .capability-container,
  .capability-section.reverse .capability-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .capability-visual {
    order: -1;
  }

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

  .pricing-table,
  .pricing-table-five {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 767px) {
  :root {
    --section-padding: 48px 16px;
  }

  .container,
  .nav-container {
    padding: 0 16px;
  }

  /* Navigation */
  nav {
    height: 76px;
  }

  .nav-container {
    height: 76px;
  }

  /* Logo */
  nav .logo img {
    height: 67px !important;
    width: auto !important;
  }

  .footer-brand .logo img {
    height: 80px !important;
    width: auto !important;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  /* Burger menu */
  .mobile-menu-btn {
    display: block;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
  }

  .mobile-menu-btn svg {
    width: 22px;
    height: 22px;
  }

  /* Mobile menu */
  .mobile-menu {
    top: 76px;
    padding: 16px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
  }

  .mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
  }

  .mobile-menu a:hover {
    color: var(--primary);
  }

  [data-theme="dark"] .mobile-menu a:hover {
    color: #f8cf5d;
  }

  .mobile-menu-btn svg {
    width: 24px;
    height: 24px;
  }

  /* Mobile menu */
  .mobile-menu {
    top: 76px;
    padding: 16px;
  }

  .mobile-menu a {
    padding: 14px 0;
    font-size: 15px;
  }

  /* Typography - reduced overall */
  h1, .hero-headline {
    font-size: 26px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

  h2, .segment-heading, .cta-section h2 {
    font-size: 22px;
  }

  h3, .bento-card h3 {
    font-size: 17px;
  }

  p, .hero-subheadline, .bento-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Hero section - much more compact */
  .hero {
    padding: 40px 16px 32px;
    min-height: auto;
    margin-top: 76px;
  }

  .page-hero {
    margin-top: 76px;
    padding: 40px 16px 32px;
  }

  .hero-subheadline {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-stats {
    gap: 12px;
    margin-bottom: 20px;
  }

  .hero-stat {
    padding: 10px 12px;
  }

  .stat-header {
    font-size: 12px;
  }

  .stat-description {
    font-size: 11px;
  }

  .stat-number {
    font-size: 18px;
  }

  /* CTA button - smaller, less dominant */
  .hero-cta-group {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    height: auto;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .btn-primary-glow {
    box-shadow: 0 2px 8px rgba(66, 109, 142, 0.2);
  }

  .hero-social-proof {
    margin-top: 12px;
  }

  .social-proof-text {
    font-size: 12px;
  }

  .hero-secondary-links {
    margin-top: 12px;
    font-size: 12px;
  }

  .hero-secondary-links a {
    color: var(--text-secondary);
    text-decoration: none;
  }

  /* Trust signal bar - 2 column grid */
  .trust-signal-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
  }

  .trust-item {
    padding: 6px 10px;
    font-size: 11px;
  }

  .trust-icon {
    width: 16px;
    height: 16px;
  }

  /* Bento grid - better card spacing */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bento-card {
    padding: 16px;
  }

  .bento-icon-wrapper {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

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

  .bento-card h3 {
    margin-bottom: 8px;
  }

  .bento-card p {
    margin-bottom: 12px;
  }

  .bento-stats {
    gap: 6px;
  }

  .stat-pill {
    padding: 4px 8px;
    font-size: 11px;
  }

  .stat-number {
    font-size: 16px;
  }

  /* Segment/Pricing cards - readable on mobile */
  .segment-grid,
  .segment-grid.segment-grid-5 {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    gap: 16px;
    padding: 0 16px;
  }

  .segment-card {
    padding: 20px 16px;
  }

  .segment-card .icon-wrapper {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }

  .segment-card .icon-wrapper svg {
    width: 16px;
    height: 16px;
  }

  .segment-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .segment-card p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .segment-card .segment-price {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .segment-card ul {
    margin-bottom: 16px;
  }

  .segment-card li {
    font-size: 12px;
    padding: 6px 0 6px 20px;
  }

  /* Capability section */
  .capability-section {
    padding: 40px 16px;
  }

  .capability-section h2 {
    font-size: 22px;
  }

  /* Trust metrics */
  .trust-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .metric-number {
    font-size: 28px;
  }

  .metric-label {
    font-size: 12px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-contact,
  .footer-social {
    justify-content: center;
    align-items: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 8px;
  }

  .category-toggles {
    flex-direction: column;
  }

  .toggle {
    min-width: 100%;
    padding: 16px 20px;
  }

  .toggle-title {
    font-size: 15px;
  }

  .toggle-helper {
    font-size: 12px;
  }

  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Tables and data displays */
  .pricing-table-five {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .tier-card {
    padding: 20px 16px;
  }

  /* Value section */
  .value-section {
    padding: 40px 16px;
  }

  .value-heading {
    font-size: 22px;
  }

  /* Fix card text stacking - add overlap with icons */
  .bento-card {
    display: flex;
    flex-direction: column;
  }

  .bento-icon-wrapper {
    flex-shrink: 0;
  }

  /* Ensure cards have proper minimum height */
  .bento-card,
  .segment-card {
    min-height: auto;
  }

  .btn-accept,
  .btn-reject {
    flex: 1;
  }

  /* Hide interactive chart iframes on mobile, show fallback message */
  .chart-frame-mobile-hidden iframe {
    display: none !important;
  }

  .chart-frame-mobile-hidden .chart-mobile-message {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-secondary, #ffffff);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    min-height: 180px;
  }

  .chart-frame-mobile-hidden .chart-mobile-message svg {
    color: var(--primary);
    opacity: 0.6;
  }

  .chart-frame-mobile-hidden .chart-mobile-message p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.5;
  }

  /* Decorative section separator on mobile */
  .section-separator {
    display: block;
    width: 60px;
    height: 2px;
    border: none;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0 auto;
    opacity: 0.5;
  }
}

/* Desktop: hide mobile chart message, show iframe */
@media (min-width: 768px) {
  .chart-frame-mobile-hidden .chart-mobile-message {
    display: none !important;
  }

  .chart-frame-mobile-hidden iframe {
    display: block !important;
  }
}

/* Decorative section separator — blue gradient line between all sections */
.section-separator {
  display: block;
  width: 80px;
  height: 2px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 0 auto;
  opacity: 0.5;
}

/* ============================================ */
/* FOCUS STATES (Accessibility) */
/* ============================================ */

button:focus-visible,
a:focus-visible,
.toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============================================ */
/* VALUE PROPOSITION BLOCKS */
/* ============================================ */

.value-section {
  padding: var(--section-padding);
  background: #ffffff;
}

.value-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 767px) {
  .value-container {
    padding: 0 16px;
  }
}

.value-heading {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -1.5px;
  color: var(--text-primary);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.value-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(66, 109, 142, 0.15);
  transform: translateY(-6px);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.25);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.value-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.value-card p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.value-card strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================ */
/* PRINT STYLES */
/* ============================================ */

@media print {
  nav,
  footer,
  .cookie-banner,
  .cta-section {
    display: none;
  }
}

/* ============================================ */
/* HOMEPAGE IMPROVEMENTS & DESIGN OVERHAUL */
/* ============================================ */

/* ============================================ */
/* 1. HERO SECTION IMPROVEMENTS */
/* ============================================ */

.hero {
  margin-top: 76px;
  padding: 100px 48px 80px;
  min-height: auto;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

[data-theme="dark"] .hero {
  background: var(--bg-primary);
}

/* Subtle accent line at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
}

.hero-headline {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* Gradient text for emphasis */
.hero-headline .highlight {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 21px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}

/* Larger trust badges */
.trust-signal-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 44px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(66, 109, 142, 0.1);
  transition: all 0.2s ease;
}

[data-theme="dark"] .trust-item {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.trust-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.1);
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: var(--forest-green);
}

/* Hero CTA improvements */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 38px;
  background: linear-gradient(135deg, var(--primary) 0%, #2A4A60 100%);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(66, 109, 142, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #2A4A60 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(66, 109, 142, 0.35);
  color: white;
}

/* Hero visual - LARGER screenshot */
.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(10, 25, 41, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: all 0.4s ease;
}

.hero-visual img:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 40px 80px rgba(10, 25, 41, 0.25);
}

/* Decorative glow behind screenshot */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  right: 5%;
  bottom: 10%;
  background: linear-gradient(135deg, rgba(66, 109, 142, 0.15) 0%, rgba(53, 90, 117, 0.15) 100%);
  border-radius: 20px;
  filter: blur(40px);
  z-index: -1;
}

/* ============================================ */
/* 2. VALUE CARDS (Why Energy Optima) */
/* ============================================ */

.value-section {
  padding: 120px 48px;
  background: #ffffff;
}

.value-heading {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(66, 109, 142, 0.12);
  transform: translateY(-4px);
}

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

/* Icons - refined size */
.value-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.2);
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.05);
}

.value-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================ */
/* 3. SEGMENT/PRICING CARDS */
/* ============================================ */

.segment-section {
  padding: 120px 48px;
  background: var(--bg-primary);
}

.segment-heading {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.segment-grid.segment-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.segment-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
}

/* Middle card - FEATURED/RECOMMENDED */
.segment-card:nth-child(3) {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
  transform: scale(1.02);
  z-index: 1;
  box-shadow: 0 8px 28px rgba(66, 109, 142, 0.12);
}

.segment-card:nth-child(3)::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, #2A4A60 100%);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.3);
}

/* Color-specific card hover effects */
.segment-orange:hover {
  border-color: var(--amber-warning);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
  transform: translateY(-4px);
}

.segment-green:hover {
  border-color: var(--forest-green);
  box-shadow: 0 8px 24px rgba(53, 90, 117, 0.15);
  transform: translateY(-4px);
}

.segment-blue:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(66, 109, 142, 0.15);
  transform: translateY(-4px);
}

.segment-card:nth-child(3):hover {
  transform: scale(1.02) translateY(-3px);
}

/* Refined icons in segment cards */
.icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--bg-accent), rgba(66, 109, 142, 0.1));
  border: 1px solid rgba(66, 109, 142, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/* Color-specific icon hover states */
.segment-orange:hover .icon-wrapper {
  background: var(--amber-warning);
  border-color: transparent;
}

.segment-green:hover .icon-wrapper {
  background: var(--primary);
  border-color: transparent;
}

.segment-blue:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--primary), #6BA3C7);
  border-color: transparent;
}

.segment-card:hover .icon-wrapper svg {
  stroke: white;
}

.icon-wrapper svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  transition: stroke 0.3s ease;
}

.segment-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.segment-card .description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Segment Card Pricing & CTA */
.segment-pricing {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 28px;
  margin-bottom: 20px;
}

.segment-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.segment-cta:hover {
  gap: 12px;
  color: var(--primary-hover);
}

/* Capability Section Alternating Backgrounds */
.capability-alt-1 {
  background: #ffffff;
}

.capability-alt-2 {
  background: #ffffff;
}

/* Capability Numbered Badges */
.capability-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.25);
}

/* Enhanced Trust Metrics */
.trust-section {
  background: var(--bg-primary);
  padding: 96px 48px;
}

.trust-content {
  max-width: var(--container-max);
  margin: 0 auto;
}

.trust-section h2 {
  color: var(--text-primary);
}

.stat-highlight {
  color: var(--text-secondary);
}

.methodology-note {
  color: var(--text-secondary);
}

.metric-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.metric-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.metric-detail {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 400;
}

/* ============================================ */
/* 4. CAPABILITY SECTIONS - ENHANCED */
/* ============================================ */

.capability-section {
  padding: 100px 48px;
  position: relative;
}

.capability-alt-1 {
  background: var(--bg-primary);
}

.capability-alt-2 {
  background: var(--bg-primary);
}

[data-theme="dark"] .capability-alt-2 {
  background: var(--bg-primary);
}

.capability-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 64px;
  align-items: center;
}

.capability-section.reverse .capability-container {
  grid-template-columns: 55% 45%;
}

/* Refined numbered badges */
.capability-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), #2A4A60);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.25);
  transition: transform 0.3s ease;
}

.capability-section:hover .capability-number {
  transform: scale(1.05);
}

.capability-label {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.capability-section h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.2;
}

.capability-section .description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.feature-list li {
  font-size: 17px;
  color: var(--text-secondary);
  padding-left: 40px;
  position: relative;
  line-height: 1.7;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--secondary);
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learn-more {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.learn-more:hover {
  gap: 16px;
  background: var(--primary);
  color: white;
  transform: translateX(4px);
}

.learn-more:hover svg {
  stroke: white;
}

/* Capability images - LARGER with effects */
.capability-visual {
  position: relative;
}

.capability-visual img {
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(10, 25, 41, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.capability-visual img:hover {
  transform: scale(1.03);
  box-shadow: 0 35px 80px rgba(10, 25, 41, 0.2);
}

.capability-visual iframe {
  border-radius: 16px !important;
  box-shadow: 0 25px 60px rgba(10, 25, 41, 0.15);
  transition: all 0.4s ease;
}

.capability-visual iframe:hover {
  box-shadow: 0 35px 80px rgba(10, 25, 41, 0.2);
}

/* ============================================ */
/* 5. TRUST SECTION - ENHANCED */
/* ============================================ */

.trust-section {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .trust-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #0D1117 100%);
}

/* Decorative elements */
.trust-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(66, 109, 142, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.trust-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(53, 90, 117, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.trust-content {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.trust-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.stat-highlight {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 64px;
  font-weight: 500;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 64px;
}

.metric {
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(66, 109, 142, 0.1);
  border-color: var(--primary);
}

.metric-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.2);
  transition: transform 0.3s ease;
}

.metric:hover .metric-icon {
  transform: scale(1.05);
}

.metric-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

/* Refined metric numbers */
.metric-number {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.metric-detail {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.methodology-note {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 48px auto 0;
  line-height: 1.7;
  padding: 24px 32px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

/* ============================================ */
/* 6. CTA SECTION - ENHANCED */
/* ============================================ */

.cta-section {
  padding: 96px 48px;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border-light);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--primary);
  border-radius: 0 0 4px 4px;
}

[data-theme="dark"] .cta-section {
  background: var(--bg-primary);
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .lead {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  line-height: 1.4;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #2A4A60 100%);
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(66, 109, 142, 0.3);
  transition: all 0.2s ease;
}

.cta-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66, 109, 142, 0.4);
}

.cta-section .trial-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-tertiary);
}

.cta-section .trial-note a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.cta-section .trial-note a:hover {
  text-decoration: underline;
}

/* ============================================ */
/* 7. FOOTER - ENHANCED */
/* ============================================ */

footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 80px 48px 40px;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
   max-width: 340px;
   text-align: center;
}

.footer-brand .logo {
   justify-content: center;
}

.footer-tagline {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0 16px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.footer-column a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ============================================ */
/* 8. COOKIE BANNER - SMALLER, BOTTOM */
/* ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -8px 32px rgba(10, 25, 41, 0.1);
  z-index: 9999;
  padding: 16px 24px;
  transition: transform 0.3s ease;
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-accept {
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-accept:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-reject {
  padding: 10px 20px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reject:hover {
  border-color: var(--text-secondary);
  background: var(--bg-tertiary);
}

/* ============================================ */
/* 9. RESPONSIVE ADJUSTMENTS */
/* ============================================ */

@media (max-width: 1200px) {
  .hero-headline {
    font-size: 48px;
  }

  .hero-visual img {
    max-width: 100%;
  }

  .value-heading,
  .segment-heading,
  .trust-section h2,
  .cta-section h2 {
    font-size: 40px;
  }

  .capability-section h2 {
    font-size: 36px;
  }

  .segment-card:nth-child(3) {
    transform: scale(1.02);
  }

  .segment-card:nth-child(3):hover {
    transform: scale(1.02) translateY(-6px);
  }
}

@media (max-width: 1023px) {
  .hero-container,
  .capability-container,
  .capability-section.reverse .capability-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    transform: none;
    max-width: 100%;
  }

  .hero-visual img:hover {
    transform: scale(1.02);
  }

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

  .segment-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .segment-card:nth-child(3) {
    transform: none;
  }

  .segment-card:nth-child(3):hover {
    transform: translateY(-6px);
  }

  .trust-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

@media (max-width: 767px) {
  .hero {
    padding: 80px 24px;
    min-height: auto;
    margin-top: 64px;
  }

  .hero-headline {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .hero-subheadline {
    font-size: 17px;
  }

  .trust-signal-bar {
    gap: 12px;
  }

  .trust-item {
    padding: 6px 12px;
    font-size: 13px;
  }

  .value-section,
  .segment-section,
  .capability-section,
  .trust-section,
  .cta-section {
    padding: 80px 24px;
  }

  .value-heading,
  .segment-heading,
  .trust-section h2,
  .cta-section h2 {
    font-size: 32px;
  }

  .capability-section h2 {
    font-size: 28px;
  }

  .value-card,
  .segment-card {
    padding: 32px 24px;
  }

  .metric {
    padding: 24px 16px;
  }

  .metric-number {
    font-size: 42px;
  }

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

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

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
  }

  .btn-accept,
  .btn-reject {
    flex: 1;
  }
}

/* ============================================ */
/* PRICING CALCULATOR */
/* ============================================ */

.pricing-calculator {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 40px;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.calculator-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.calculator-header svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  flex-shrink: 0;
}

.calculator-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.calculator-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.calculator-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.calculator-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

  .calc-option {
    padding: 12px 18px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
  }

.calc-option:hover {
  border-color: var(--border-medium);
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.calc-option.selected {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

[data-theme="dark"] .calc-option.selected {
  background: white;
  border-color: white;
  color: var(--navy-dark);
}

.calculator-result {
  margin-top: 24px;
  padding: 20px 24px;
  background: #FDFCFA;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.result-recommendation {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.result-recommendation .result-label {
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.result-recommendation .result-plan {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.result-recommendation .result-category {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 6px;
}

.result-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.result-price .result-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.result-price .result-period {
  font-size: 14px;
  color: var(--text-secondary);
}

.result-price .result-per-user {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-left: 8px;
}

.calculator-result .btn-primary {
  padding: 12px 24px;
  font-size: 14px;
}

/* ============================================ */
/* CHARTER MEMBER SECTION */
/* ============================================ */

.charter-member-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.charter-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
}

.charter-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.charter-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, #2A4A60 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.25);
}

.charter-icon svg {
  color: white;
}

.charter-title h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 4px 0;
  color: var(--text-primary);
}

.charter-title p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.charter-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  position: relative;
}

.charter-benefits h4,
.charter-spots h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.charter-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.charter-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}

.charter-benefits li:last-child {
  border-bottom: none;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-tertiary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
}

.charter-benefits li > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.charter-benefits li strong {
  font-weight: 600;
  display: block;
  color: var(--text-primary);
}

.charter-benefits li span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.spots-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.spot-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spot-label {
  font-size: 14px;
  font-weight: 500;
  min-width: 90px;
  color: var(--text-secondary);
}

.spot-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
}

.spot-progress {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.spot-count {
  font-size: 13px;
  min-width: 60px;
  text-align: right;
  color: var(--text-secondary);
}

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

.btn-charter {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #2A4A60 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.25);
}

.btn-charter:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 109, 142, 0.35);
}

.charter-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 12px;
}

/* ============================================ */
/* PER-USER PRICING DISPLAY */
/* ============================================ */

.per-user-breakdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(53, 90, 117, 0.1);
  border: 1px solid rgba(53, 90, 117, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 12px;
  font-size: 13px;
}

.per-user-breakdown span {
  color: var(--text-secondary);
}

.per-user-breakdown strong {
  color: var(--forest-green);
  font-weight: 700;
}

.additional-user {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 8px;
  text-align: center;
}

/* ============================================ */
/* PRICING CALCULATOR RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
  .pricing-calculator {
    padding: 24px 20px;
  }

  .calculator-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .calculator-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .calculator-header h3 {
    font-size: 18px;
  }

  .calculator-options {
    gap: 8px;
  }

  .calc-option {
    padding: 8px 14px;
    font-size: 13px;
  }

  .calculator-result {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .result-price {
    justify-content: center;
  }

  .charter-member-card {
    padding: 24px 20px;
  }

  .charter-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .charter-title h3 {
    font-size: 22px;
  }

  .charter-icon {
    width: 40px;
    height: 40px;
  }

  .spot-item {
    flex-wrap: wrap;
  }

  .spot-label {
    min-width: 80px;
  }

  .spot-bar {
    min-width: 100px;
  }
}

/* ============================================ */
/* PAGE HERO - INNER PAGES (2026-01-09) */
/* Modern Gradient Design for Platform, Pricing, Methodology, About */
/* ============================================ */

.page-hero {
  margin-top: 76px;
  padding: 100px 48px 80px;
  min-height: auto;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

[data-theme="dark"] .page-hero {
  background: var(--bg-primary);
}

/* Decorative gradient orb */
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(66, 109, 142, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

[data-theme="dark"] .page-hero::before {
  background: radial-gradient(circle, rgba(66, 109, 142, 0.15) 0%, transparent 70%);
}

/* Accent line at bottom */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Category tag above title */
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(66, 109, 142, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(66, 109, 142, 0.15);
}

[data-theme="dark"] .page-hero-tag {
  background: rgba(66, 109, 142, 0.15);
  border-color: rgba(66, 109, 142, 0.25);
  color: #6BA3C7;
}

.page-hero-tag svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  max-width: 16px;
  flex-shrink: 0;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.page-hero .lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 80px 24px 60px;
  }

  .page-hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .page-hero .lead {
    font-size: 17px;
  }

  .page-hero-tag {
    font-size: 11px;
    padding: 6px 12px;
  }

  .page-hero::before {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
  }
}

/* ============================================ */
/* HOMEPAGE REDESIGN V4 - SHADCN-INSPIRED */
/* ============================================ */

/* Trust Badges with Gradient Borders */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg-primary);
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: all 0.3s ease;
}

.trust-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: var(--primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.15);
}

.trust-badge .badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge .badge-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  transition: transform 0.3s ease;
}

.trust-badge:hover .badge-icon svg {
  transform: scale(1.1);
}

/* Button Glow Effect */
.btn-primary-glow {
  position: relative;
  overflow: visible;
}

.btn-primary-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.3s ease;
}

.btn-primary-glow:hover::before {
  opacity: 0.5;
}

.btn-large {
  padding: 18px 36px;
  font-size: 17px;
}

/* Enhanced Hero Visual */
.hero-visual-enhanced {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px var(--border-light);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-visual-enhanced:hover .hero-image-wrapper img {
  transform: scale(1.02);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 25, 41, 0.03) 100%);
  pointer-events: none;
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  min-height: 480px;
}

.bento-card {
  background: #FDFCFA;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(66, 109, 142, 0.08);
  transform: translateY(-4px);
}

.bento-featured {
  grid-row: span 2;
  background: #FDFCFA;
}

.bento-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.bento-icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--bg-tertiary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.bento-icon-featured {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--slate-blue));
}

.bento-icon-featured .fallback-icon {
  stroke: white;
}

.bento-card:hover .bento-icon-wrapper {
  transform: scale(1.05);
}

.bento-icon-wrapper svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.bento-featured .bento-icon-wrapper svg {
  width: 36px;
  height: 36px;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.bento-featured h3 {
  font-size: 24px;
}

.bento-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.bento-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--bg-tertiary);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

.stat-pill .stat-number {
  font-weight: 600;
  color: var(--primary);
}

/* Lottie Icon Placeholder */
.lottie-icon {
  width: 100%;
  height: 100%;
  display: none; /* Will be shown when Lottie loads */
}

.fallback-icon {
  width: 28px;
  height: 28px;
}

/* Persona Card Color Accents */
.segment-card {
  position: relative;
  overflow: hidden;
}

.segment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height 0.3s ease;
}

.segment-card:hover::before {
  height: 6px;
}

.segment-orange::before {
  background: var(--amber-warning);
}

.segment-orange .icon-wrapper {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 146, 60, 0.05));
}

.segment-orange .icon-wrapper svg {
  stroke: var(--amber-warning);
}

.segment-green::before {
  background: var(--primary);
}

.segment-green .icon-wrapper {
  background: linear-gradient(135deg, rgba(53, 90, 117, 0.1), rgba(66, 109, 142, 0.05));
}

.segment-green .icon-wrapper svg {
  stroke: var(--forest-green);
}

.segment-blue::before {
  background: linear-gradient(90deg, var(--primary), #6BA3C7);
}

.segment-blue .icon-wrapper {
  background: linear-gradient(135deg, rgba(66, 109, 142, 0.1), rgba(66, 109, 142, 0.05));
}

.segment-blue .icon-wrapper svg {
  stroke: var(--primary);
}

.segment-gray::before {
  background: linear-gradient(90deg, #6B6558, #8A8477);
}

.segment-gray .icon-wrapper {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.1), rgba(156, 163, 175, 0.05));
}

.segment-gray .icon-wrapper svg {
  stroke: #6B6558;
}

.segment-gray:hover {
  border-color: #6B6558;
  box-shadow: 0 8px 24px rgba(107, 114, 128, 0.15);
  transform: translateY(-4px);
}

.segment-gray:hover .icon-wrapper {
  background: linear-gradient(135deg, #6B6558, #8A8477);
  border-color: transparent;
}

/* Purple theme (Enterprise) */
.segment-purple::before {
  background: linear-gradient(90deg, #6B8DB5, #8BB8D8);
}

.segment-purple .icon-wrapper {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(167, 139, 250, 0.05));
}

.segment-purple .icon-wrapper svg {
  stroke: #6B8DB5;
}

.segment-purple:hover {
  border-color: #6B8DB5;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
  transform: translateY(-4px);
}

.segment-purple:hover .icon-wrapper {
  background: linear-gradient(135deg, #6B8DB5, #8BB8D8);
  border-color: transparent;
}

/* Popular Badge */
.segment-popular {
  border: 2px solid var(--forest-green);
  box-shadow: 0 8px 24px rgba(53, 90, 117, 0.15);
  transform: scale(1.02);
}

/* Remove the old nth-child(2) badge - using .popular-badge HTML element instead */
.segment-popular.segment-card:nth-child(3)::before,
.segment-card.segment-popular::before {
  content: none !important;
  display: none !important;
}

.segment-popular:hover {
  transform: scale(1.04);
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}

/* Bold Keywords in Feature Lists */
.benefits strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Manufacturer Logo Bar */
.manufacturer-logos {
  margin-top: 48px;
  padding: 32px 24px;
  background: #FAF8F5;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.logos-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.logo-item {
  padding: 12px 24px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.logo-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

/* Professional Brand Logo Styling */
.logo-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  min-height: 56px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.logo-brand:hover {
  background: var(--bg-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.brand-lg, .brand-catl, .brand-byd, .brand-kokam, .brand-samsung, .brand-a123 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.brand-catl {
  font-size: 18px;
  letter-spacing: 1px;
}

.brand-byd {
  font-size: 22px;
  letter-spacing: 0.5px;
}

.brand-kokam {
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Logo Marquee / Infinite Scroll */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #FAF8F5, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #FAF8F5, transparent);
}

.logo-marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}

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

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

.logo-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  min-width: 180px;
  height: 90px;
  transition: all 0.3s ease;
}

.logo-slide:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(66, 109, 142, 0.15);
}

.logo-slide img {
  max-width: 140px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive marquee */
@media (max-width: 768px) {
  .logo-marquee-track {
    gap: 20px;
    animation-duration: 25s;
  }

  .logo-slide {
    min-width: 140px;
    height: 70px;
    padding: 12px 20px;
  }

  .logo-slide img {
    max-width: 110px;
    max-height: 40px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 40px;
  }
}

.brand-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Tooltip Styles */
.metric-tooltip {
  position: relative;
  cursor: help;
}

.metric-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy-dark);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  white-space: normal;
  width: 240px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  pointer-events: none;
}

.metric-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: var(--navy-dark);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.metric-tooltip:hover::after,
.metric-tooltip:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Scroll Animation Styles */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* Counter Animation */
.metric-number {
  transition: color 0.3s ease;
}

.metric-number.counting {
  color: var(--primary);
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }

  .bento-featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .bento-featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .trust-signal-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-badge {
    font-size: 13px;
    padding: 8px 14px;
  }

  .logos-grid {
    gap: 16px;
  }

  .logo-item {
    padding: 8px 16px;
  }

  .logo-text {
    font-size: 12px;
  }

  .segment-popular {
    transform: none;
  }

  .segment-popular:hover {
    transform: translateY(-4px);
  }
}

/* ============================================ */
/* FEATURE DEMO CHARTS - ENHANCED */
/* ============================================ */

/* Full-width demo visual with hover interaction */
.capability-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
}

.capability-visual:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(66, 109, 142, 0.12);
}

.capability-visual iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.capability-visual:hover iframe {
  transform: scale(1.01);
}

/* Removed "Click to interact" overlay - demos have their own buttons */

/* Removed hover state for removed overlay */
.capability-visual:hover::after {
  display: none;
}

/* Image-based capability visuals */
.capability-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.capability-visual:hover img {
  transform: scale(1.03);
}

/* Capability section animations */
.capability-section {
  opacity: 1;
}

.capability-section[data-animate] {
  opacity: 0;
  transform: translateY(40px);
}

.capability-section[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Removed pulsing animation - cleaner look for professional audience */

/* ============================================ */
/* SHADCN-INSPIRED NAVBAR ENHANCEMENTS */
/* ============================================ */

nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] nav {
  background: rgba(13, 17, 23, 0.92);
  border-bottom-color: #30363D;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

[data-theme="dark"] .nav-links a::after {
  background: #f8cf5d;
}

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

.btn-nav {
  position: relative;
  overflow: hidden;
}

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

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

[data-theme="dark"] .btn-nav::before {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* ============================================ */
/* SHADCN-INSPIRED FOOTER ENHANCEMENTS */
/* ============================================ */

footer {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-top: 1px solid var(--border-light);
}

.footer-brand .logo img {
  transition: transform 0.3s ease;
}

.footer-brand:hover .logo img {
  transform: scale(1.02);
}

.footer-column h4 {
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.footer-column ul li a {
  position: relative;
  display: inline-block;
}

.footer-column ul li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-column ul li a:hover::before {
  width: 100%;
}

[data-theme="dark"] footer {
  background: linear-gradient(180deg, #0D1117 0%, #161B22 100%);
  border-top-color: #30363D;
}

[data-theme="dark"] .footer-column h4 {
  color: #E6E1D8;
}

[data-theme="dark"] .footer-column h4::after {
  background: #f8cf5d;
}

[data-theme="dark"] .footer-column a {
  color: #8B949E;
}

[data-theme="dark"] .footer-column a:hover {
  color: #f8cf5d;
}

[data-theme="dark"] .footer-column ul li a::before {
  background: #f8cf5d;
}

[data-theme="dark"] .footer-tagline {
  color: #f8cf5d;
}

[data-theme="dark"] .footer-email:hover {
  color: #f8cf5d;
}

[data-theme="dark"] .social-link:hover {
  background: rgba(248, 207, 93, 0.15);
  color: #f8cf5d;
  border-color: rgba(248, 207, 93, 0.3);
}

[data-theme="dark"] .footer-bottom {
  border-top-color: #30363D;
  color: #8B949E;
}

/* ============================================ */
/* ABOUT PAGE STYLES */
/* ============================================ */

/* Stats Section */
.about-stats-section {
  padding: 0 24px 80px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.about-stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-stat-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.about-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.about-stat-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* Gap Section */
.about-gap-section {
  padding: 80px 24px 120px;
  background: var(--bg-primary);
}

.about-gap-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-gap-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.about-section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.about-gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-gap-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-gap-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C45B4F, #D47268);
}

.about-gap-accent-green {
  background: var(--primary);
}

.about-gap-new {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(66, 109, 142, 0.1);
}

.about-gap-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.about-gap-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-gap-icon-red {
  background: linear-gradient(135deg, #E8E3DA, #D4CFC7);
}

.about-gap-icon-green {
  background: linear-gradient(135deg, #DDE9F2, #B0D4EA);
}

.about-gap-header h3 {
  font-size: 20px;
  margin: 0;
}

.about-gap-old .about-gap-header h3 {
  color: #B04A3F;
}

.about-gap-new .about-gap-header h3 {
  color: #2A4A60;
}

.about-gap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-gap-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

.about-gap-list li:last-child {
  margin-bottom: 0;
}

.about-gap-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.about-gap-callout {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(66, 109, 142, 0.05), rgba(66, 109, 142, 0.05));
  border-radius: 12px;
}

.about-gap-callout p {
  color: var(--text-primary);
  font-size: 19px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.about-gap-callout span {
  color: var(--primary);
}

/* Founder Section */
.about-founder-section {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.about-founder-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-founder-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-founder-content h2 {
  font-size: 40px;
  margin-bottom: 28px;
  line-height: 1.2;
}

.about-founder-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about-founder-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-founder-links {
  margin-top: 32px;
}

.about-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.about-social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 109, 142, 0.15);
}

.about-founder-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-founder-image-container {
  width: 280px;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-tertiary), rgba(66, 109, 142, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-founder-placeholder {
  color: var(--text-tertiary);
  opacity: 0.5;
}

.about-founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-credential {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.about-credential svg {
  color: var(--forest-green);
  flex-shrink: 0;
}

/* Vision Section */
.about-vision-section {
  padding: 120px 24px;
  background: var(--bg-primary);
}

.about-vision-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-vision-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-vision-quote {
  font-size: 32px;
  line-height: 1.5;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0 0 32px 0;
  border: none;
  padding: 0;
}

.about-vision-description {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Differentiators Section */
.about-differentiators-section {
  padding: 120px 24px;
  background: var(--bg-primary);
}

.about-differentiators-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-differentiators-container h2 {
  font-size: 36px;
  margin-bottom: 60px;
  text-align: center;
}

.about-differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-differentiator-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-differentiator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.about-differentiator-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.about-differentiator-icon-blue {
  background: linear-gradient(135deg, var(--primary), #6BA3C7);
  box-shadow: 0 8px 24px rgba(66, 109, 142, 0.25);
}

.about-differentiator-icon-green {
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(66, 109, 142, 0.25);
}

.about-differentiator-icon-slate {
  background: linear-gradient(135deg, var(--slate-blue), #6B6558);
  box-shadow: 0 8px 24px rgba(100, 116, 139, 0.25);
}

.about-differentiator-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 600;
}

.about-differentiator-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Roadmap / Timeline Section */
.about-roadmap-section {
  padding: 120px 24px;
  background: var(--bg-primary);
}

.about-roadmap-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-roadmap-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.about-timeline {
  position: relative;
  padding-left: 48px;
  margin-top: 64px;
}

.about-timeline-line {
  position: absolute;
  left: 15px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.about-timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.about-timeline-item:last-child {
  margin-bottom: 0;
}

.about-timeline-dot {
  position: absolute;
  left: -48px;
  top: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 4px solid var(--bg-primary);
}

.about-timeline-dot-blue {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(66, 109, 142, 0.2);
}

.about-timeline-dot-green {
  background: var(--forest-green);
  box-shadow: 0 0 0 4px rgba(66, 109, 142, 0.2);
}

.about-timeline-dot-slate {
  background: var(--slate-blue);
  box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.2);
}

.about-timeline-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
}

.about-timeline-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 6px;
}

.about-timeline-badge-blue {
  color: var(--primary);
  background: rgba(66, 109, 142, 0.1);
}

.about-timeline-badge-green {
  color: var(--forest-green);
  background: rgba(66, 109, 142, 0.1);
}

.about-timeline-badge-slate {
  color: var(--slate-blue);
  background: rgba(100, 116, 139, 0.1);
}

.about-timeline-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-timeline-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Location Section */
.about-location-section {
  padding: 120px 24px;
  background: var(--bg-primary);
}

.about-location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-location-badge {
  display: inline-block;
  background: rgba(66, 109, 142, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.about-location-content h2 {
  font-size: 40px;
  margin-bottom: 28px;
  line-height: 1.2;
}

.about-location-content p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-location-card {
  background: linear-gradient(135deg, var(--bg-primary), rgba(66, 109, 142, 0.05));
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.about-location-icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--primary), #6BA3C7);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 24px rgba(66, 109, 142, 0.3);
}

.about-location-address {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-location-city {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 32px;
}

.about-location-contact {
  border-top: 1px solid var(--border-light);
  padding-top: 28px;
}

.about-location-contact-label {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.about-location-contact a {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
}

/* About CTA Section */
.about-cta-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, rgba(66, 109, 142, 0.08), rgba(66, 109, 142, 0.08));
}

.about-cta-container {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-cta-container p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ============================================ */
/* CONTACT PAGE STYLES */
/* ============================================ */

/* Contact Main Section */
.contact-main-section {
  padding: 0 24px 80px;
}

.contact-main-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
}

/* Contact Form */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-form-header h2 {
  font-size: 28px;
  margin: 0;
}

.contact-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(66, 109, 142, 0.1);
  color: var(--forest-green);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: inherit;
  transition: all 0.2s ease;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(66, 109, 142, 0.1);
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: var(--text-tertiary);
}

.contact-form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 48px;
}

.contact-form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-submit {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.contact-form-submit .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
}

.contact-form-privacy {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 0;
}

.contact-form-privacy a {
  color: var(--primary);
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-info-card-primary {
  background: linear-gradient(135deg, rgba(66, 109, 142, 0.05), var(--bg-secondary));
  border: 1px solid rgba(66, 109, 142, 0.1);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-info-icon-blue {
  background: var(--primary);
}

.contact-info-icon-green {
  background: var(--forest-green);
}

.contact-info-icon-slate {
  background: var(--slate-blue);
}

.contact-info-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1.5;
}

.contact-info-secondary {
  color: var(--text-tertiary) !important;
}

.contact-info-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
}

.contact-response-times {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.contact-response-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-response-value {
  font-weight: 600;
  color: var(--text-primary);
}

.contact-info-timezone {
  font-size: 12px !important;
  color: var(--text-tertiary) !important;
  font-style: italic;
  margin-top: 12px !important;
}

/* Social Card */
.contact-social-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
}

.contact-social-card h4 {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.contact-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.contact-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Map Section */
.contact-map-section {
  padding: 80px 24px;
  background: var(--bg-primary);
}

.contact-map-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-map-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-map-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-map-header p {
  color: var(--text-secondary);
  font-size: 16px;
}

.contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-map-wrapper iframe {
  display: block;
}

/* FAQ Section */
.contact-faq-section {
  padding: 80px 24px;
  background: var(--bg-primary);
}

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

.contact-faq-container h3 {
  font-size: 28px;
  margin-bottom: 40px;
  text-align: center;
}

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

.contact-faq-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  transition: all 0.2s ease;
}

.contact-faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.contact-faq-icon {
  width: 48px;
  height: 48px;
  background: rgba(66, 109, 142, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-faq-card h4 {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.contact-faq-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-faq-link {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

/* ============================================ */
/* RESPONSIVE STYLES - ABOUT & CONTACT */
/* ============================================ */

@media (max-width: 1023px) {
  .about-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-gap-grid {
    grid-template-columns: 1fr;
  }

  .about-founder-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-founder-visual {
    order: -1;
  }

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

  .about-location-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-main-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 767px) {
  .about-stats-section {
    margin-top: -20px;
    padding-bottom: 60px;
  }

  .about-stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-stat-card {
    padding: 24px 16px;
  }

  .about-stat-number {
    font-size: 36px;
  }

  .about-stat-label {
    font-size: 14px;
  }

  .about-gap-section {
    padding: 60px 24px 80px;
  }

  .about-gap-card {
    padding: 28px;
  }

  .about-founder-section {
    padding: 80px 24px;
  }

  .about-founder-content h2 {
    font-size: 32px;
  }

  .about-vision-quote {
    font-size: 24px;
  }

  .about-differentiators-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline {
    padding-left: 40px;
  }

  .about-timeline-line {
    left: 12px;
  }

  .about-timeline-dot {
    left: -40px;
    width: 28px;
    height: 28px;
  }

  .about-timeline-content {
    padding: 24px;
  }

  .about-location-section {
    padding: 80px 24px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-wrapper iframe {
    height: 300px;
  }
}

/* ============================================ */
/* INVESTORS PAGE STYLES */
/* ============================================ */

/* Opportunity Section */
.investors-opportunity-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.investors-opportunity-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.investors-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.investors-section-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.investors-section-header p {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.investors-opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.investors-opportunity-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.investors-opportunity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--border-accent);
}

.investors-opportunity-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.investors-opportunity-icon svg {
  color: white;
}

.investors-opportunity-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.investors-opportunity-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Why Energy Optima Section */
.investors-why-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.investors-why-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.investors-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.investors-why-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid var(--border-light);
  position: relative;
  transition: all 0.3s ease;
}

.investors-why-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.investors-why-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 24px;
  right: 32px;
  line-height: 1;
}

.investors-why-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.investors-why-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Market Position Section */
.investors-market-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.investors-market-container {
  max-width: 1200px;
  margin: 0 auto;
}

.investors-market-content h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-align: center;
}

.investors-market-intro {
  font-size: 20px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.investors-market-segments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.investors-market-segment {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

.investors-market-segment h4 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.investors-market-segment p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.investors-market-segment ul {
  list-style: none;
  padding: 0;
}

.investors-market-segment ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  line-height: 1.7;
}

.investors-market-segment ul li:last-child {
  border-bottom: none;
}

.investors-market-segment ul li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Technology Section */
.investors-tech-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.investors-tech-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.investors-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.investors-tech-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.investors-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.investors-tech-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.investors-tech-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.investors-tech-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.investors-tech-link:hover {
  gap: 12px;
  color: var(--forest-green);
}

/* Leadership Section */
.investors-leadership-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.investors-leadership-container {
  max-width: 1200px;
  margin: 0 auto;
}

.investors-leadership-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.investors-leadership-main {
  background: var(--bg-primary);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

.investors-leadership-main h3 {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.investors-leadership-main p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.investors-leadership-main p:last-child {
  margin-bottom: 0;
}

.investors-leadership-vision {
  background: var(--primary);
  padding: 48px;
  border-radius: 16px;
  color: white;
}

.investors-leadership-vision h4 {
  font-size: 24px;
  margin-bottom: 20px;
  color: white;
}

.investors-leadership-vision p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 24px;
}

.investors-leadership-vision ul {
  list-style: none;
  padding: 0;
}

.investors-leadership-vision ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.investors-leadership-vision ul li:last-child {
  border-bottom: none;
}

.investors-leadership-vision ul li strong {
  color: white;
  font-weight: 600;
}

/* Materials Request Section */
.investors-materials-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
  scroll-margin-top: 100px;
}

.investors-materials-container {
  max-width: 900px;
  margin: 0 auto;
}

.investors-materials-header {
  text-align: center;
  margin-bottom: 48px;
}

.investors-materials-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.investors-materials-header p {
  font-size: 20px;
  color: var(--text-secondary);
}

.investors-materials-form {
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

.investors-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.investors-form-field {
  margin-bottom: 24px;
}

.investors-form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.investors-form-field input,
.investors-form-field select,
.investors-form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.investors-form-field input:focus,
.investors-form-field select:focus,
.investors-form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.investors-form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.investors-form-submit {
  text-align: center;
  margin-top: 32px;
}

.investors-form-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-tertiary);
}

/* Schedule Section */
.investors-schedule-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
  scroll-margin-top: 100px;
}

.investors-schedule-container {
  max-width: 1000px;
  margin: 0 auto;
}

.investors-schedule-header {
  text-align: center;
  margin-bottom: 48px;
}

.investors-schedule-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.investors-schedule-header p {
  font-size: 20px;
  color: var(--text-secondary);
}

.investors-schedule-widget {
  background: var(--bg-primary);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .investors-opportunity-grid,
  .investors-why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .investors-market-segments,
  .investors-tech-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .investors-leadership-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .investors-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .investors-section-header h2,
  .investors-materials-header h2,
  .investors-schedule-header h2 {
    font-size: 32px;
  }

  .investors-section-header p,
  .investors-materials-header p,
  .investors-schedule-header p {
    font-size: 18px;
  }

  .investors-opportunity-card,
  .investors-why-card,
  .investors-tech-card,
  .investors-market-segment {
    padding: 28px;
  }

  .investors-leadership-main,
  .investors-leadership-vision,
  .investors-materials-form {
    padding: 32px 24px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .investors-schedule-widget {
    padding: 16px;
  }

  .calendly-inline-widget {
    height: 600px !important;
  }
}

/* Investors Trust Badges */
.investors-trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.investors-trust-badge {
  padding: 10px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Traction Section */
.investors-traction-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.investors-traction-container {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.investors-traction-container h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.investors-traction-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.investors-traction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.investors-traction-stat {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.investors-traction-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.traction-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 12px;
}

.traction-stat-icon svg {
  color: white;
}

.traction-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.traction-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Buttons Group */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* Responsive */
@media (max-width: 1023px) {
  .investors-traction-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .investors-trust-badges {
    gap: 12px;
  }

  .investors-trust-badge {
    font-size: 13px;
    padding: 8px 16px;
  }

  .investors-traction-container h2 {
    font-size: 32px;
  }

  .investors-traction-subtitle {
    font-size: 18px;
  }

  .investors-traction-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Hide Calendly Branding */
.calendly-inline-widget iframe {
  border-radius: 12px;
}

/* Adjust Calendly responsive height */
@media (max-width: 767px) {
  .investors-schedule-widget .calendly-inline-widget {
    height: 550px !important;
  }
}

/* Investor Page Hero CTA Buttons - Horizontal Layout */
.page-hero .hero-cta-group {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .page-hero .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .page-hero .hero-cta-group .btn-primary,
  .page-hero .hero-cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================ */
/* ANNOUNCEMENT BANNER - 2026-01-16 */
/* ============================================ */

.announcement-banner {
  background: linear-gradient(90deg, var(--navy-primary) 0%, var(--slate-blue) 100%);
  color: white;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  position: relative;
  z-index: 1001;
}

.banner-badge {
  background: var(--forest-green);
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-text {
  color: rgba(255, 255, 255, 0.9);
}

.banner-link {
  color: #6BA3C7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.banner-link:hover {
  color: #8BB8D8;
}

.banner-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  position: absolute;
  right: 16px;
}

.banner-close:hover {
  color: white;
}

@media (max-width: 767px) {
  .announcement-banner {
    flex-wrap: wrap;
    padding: 12px 48px 12px 16px;
    gap: 8px;
    text-align: center;
  }

  .banner-text {
    flex-basis: 100%;
    order: 2;
  }

  .banner-badge {
    order: 1;
  }

  .banner-link {
    order: 3;
  }
}

/* ============================================ */
/* HERO GRADIENT BACKGROUND - 2026-01-16 */
/* ============================================ */

.hero {
  background: var(--bg-primary);
}

[data-theme="dark"] .hero {
  background: var(--bg-primary);
}

/* ============================================ */
/* ACCENT TEXT COLOR - 2026-01-16 */
/* ============================================ */

.text-accent {
  color: var(--primary);
  position: relative;
}

/* Alternative: gradient text */
.text-accent-gradient {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .text-accent {
  color: #6BA3C7;
}

/* ============================================ */
/* HERO STATS - 2026-01-16 */
/* ============================================ */

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  flex: 1;
  min-width: 180px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-stat:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66, 109, 142, 0.1);
}

.stat-header {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.stat-number {
  color: var(--primary);
  font-weight: 700;
}

.stat-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

[data-theme="dark"] .hero-stat {
  background: rgba(22, 27, 34, 0.8);
  border-color: #30363D;
}

[data-theme="dark"] .hero-stat:hover {
  background: rgba(22, 27, 34, 1);
  border-color: rgba(248, 207, 93, 0.3);
  box-shadow: 0 8px 24px rgba(248, 207, 93, 0.08);
}

[data-theme="dark"] .stat-number {
  color: #f8cf5d;
}

[data-theme="dark"] .bento-card {
  background: #161B22;
  border-color: #30363D;
}

[data-theme="dark"] .bento-card:hover {
  border-color: rgba(248, 207, 93, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .bento-card h3 {
  color: #E6E1D8;
}

[data-theme="dark"] .bento-card p {
  color: #8B949E;
}

@media (max-width: 767px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat {
    min-width: 100%;
  }
}

/* LOGO STRIP - Above the Fold */
.logo-strip {
  background: linear-gradient(180deg, #F8F6F1 0%, #ffffff 100%);
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.logo-strip-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.logo-strip-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo-strip-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-strip-logos img {
  height: 28px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-strip-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

[data-theme="dark"] .logo-strip {
  background: linear-gradient(180deg, #0D1117 0%, #161B22 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .logo-strip-logos img {
  filter: grayscale(100%) brightness(2);
}

[data-theme="dark"] .logo-strip-logos img:hover {
  filter: grayscale(0%) brightness(1);
}

@media (max-width: 767px) {
  .logo-strip-container {
    flex-direction: column;
    gap: 16px;
  }

  .logo-strip-logos {
    gap: 20px;
  }

  .logo-strip-logos img {
    height: 22px;
  }
}

/* ============================================ */
/* STRATEGIC COLOR OVERRIDES - OPTION A */
/* ============================================ */

/* Primary CTA uses Green (Brand Color) */
.btn-primary-glow {
  background: var(--primary) !important;
}

.btn-primary-glow::before {
  background: var(--primary) !important;
}

.btn-primary-glow:hover {
  background: var(--secondary) !important;
}

/* Keep .text-accent as green for headlines */
.text-accent {
  color: var(--primary) !important;
}

[data-theme="dark"] .text-accent {
  color: #6BA3C7 !important;
}

/* Keep stat numbers as green */
.stat-number {
  color: var(--primary) !important;
}

[data-theme="dark"] .stat-number {
  color: #6BA3C7 !important;
}

/* Secondary text can use Earth Brown */
.text-earth {
  color: var(--diesel);
}

/* Success/sustainability use Bright Green */
.text-success {
  color: var(--secondary);
}

/* ============================================ */
/* UX/UI FIXES - 2026-01-18 */
/* ============================================ */

/* Fix 1: Strengthen card contrast */
.segment-card {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 2px solid rgba(148, 163, 184, 0.15) !important;
}

.segment-card:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 12px 40px rgba(66, 109, 142, 0.12) !important;
}

/* Fix 2: Component count cards visibility */
.stat-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid rgba(148, 163, 184, 0.12) !important;
}

.stat-card .stat-value {
  color: var(--primary) !important;
  font-weight: 800 !important;
}

/* Fix 3: Normalize manufacturer logo sizes */
.manufacturer-logos img,
.logo-slide img {
  height: 36px !important;
  width: auto !important;
  object-fit: contain !important;
  max-width: 140px !important;
}

/* Fix 4: Add micro-interactions */
.bento-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.bento-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1) !important;
}

.segment-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.segment-card:hover {
  transform: translateY(-4px) !important;
}

/* Fix 5: Icon hover effects */
.icon-wrapper svg,
.bento-icon-wrapper svg,
.value-icon svg {
  transition: all 0.3s ease !important;
}

.icon-wrapper:hover svg,
.bento-icon-wrapper:hover svg,
.value-icon:hover svg {
  transform: scale(1.1) rotate(5deg) !important;
}

/* Fix 6: Link hover underline */
a:not(.btn-primary):not(.btn-secondary):hover {
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;
}

/* Fix 7: Strengthen number visibility */
.stat-pill .stat-number,
.bento-stats .stat-number {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

/* Fix 8: Ensure hero gradient shows */
.hero {
  background: var(--bg-primary) !important;
}

[data-theme="dark"] .hero {
  background: var(--bg-primary) !important;
}

/* Differentiation Strip */
.differentiation-strip {
  background: linear-gradient(90deg, #EDF3F8 0%, #EDF3F8 100%);
  border-top: 1px solid rgba(66, 109, 142, 0.1);
  border-bottom: 1px solid rgba(66, 109, 142, 0.1);
  padding: 24px 0;
}

.diff-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.diff-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.diff-points {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.diff-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.diff-point svg {
  stroke: var(--secondary);
  flex-shrink: 0;
}

[data-theme="dark"] .differentiation-strip {
  background: linear-gradient(90deg, #0D1117 0%, #1A2332 100%);
  border-top: 1px solid rgba(52, 211, 153, 0.1);
  border-bottom: 1px solid rgba(66, 109, 142, 0.1);
}

@media (max-width: 767px) {
  .diff-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .diff-points {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================ */
/* DARK MODE TEXT VISIBILITY FIXES */
/* ============================================ */

/* Value Section ("Why Energy Optima") */
[data-theme="dark"] .value-section {
  background: var(--bg-primary);
}

[data-theme="dark"] .value-heading {
  color: #D4CFC7;
}

[data-theme="dark"] .value-card {
  background: var(--bg-secondary) !important;
  border-color: var(--border-light);
}

[data-theme="dark"] .value-card h3 {
  color: #D4CFC7;
}

[data-theme="dark"] .value-card p {
  color: #8B949E;
}

/* Segment/Pricing Cards */
[data-theme="dark"] .segment-section {
  background: var(--bg-primary);
}

[data-theme="dark"] .segment-heading {
  color: #D4CFC7;
}

[data-theme="dark"] .segment-card {
  background: var(--bg-secondary) !important;
  border-color: var(--border-light) !important;
}

[data-theme="dark"] .segment-card h3 {
  color: #D4CFC7;
}

[data-theme="dark"] .segment-card .description {
  color: #8B949E;
}

[data-theme="dark"] .segment-pricing {
  color: var(--text-link);
}

[data-theme="dark"] .segment-card:nth-child(3) {
  background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-secondary) 100%) !important;
}

/* Persona Cards (same structure as segment cards) */
[data-theme="dark"] .segment-card .benefits li {
  color: #8B949E;
}

/* Feature Cards */
[data-theme="dark"] .feature-card {
  background: var(--bg-secondary);
  border-color: var(--border-light);
}

[data-theme="dark"] .feature-card h3 {
  color: #D4CFC7;
}

[data-theme="dark"] .feature-card p {
  color: #8B949E;
}

[data-theme="dark"] .feature-card ul li {
  color: #8B949E;
}

/* Stat Cards */
[data-theme="dark"] .stat-card {
  background: var(--bg-secondary) !important;
  border-color: var(--border-light) !important;
}

[data-theme="dark"] .stat-card h3 {
  color: #D4CFC7;
}

[data-theme="dark"] .stat-card .stat-number {
  color: #6BA3C7;
}

/* Trust Section */
[data-theme="dark"] .trust-section h2 {
  color: #D4CFC7;
}

[data-theme="dark"] .stat-highlight {
  color: #8B949E;
}

[data-theme="dark"] .metric {
  background: var(--bg-secondary);
  border-color: var(--border-light);
}

[data-theme="dark"] .metric-label {
  color: #D4CFC7;
}

[data-theme="dark"] .metric-detail {
  color: #8B949E;
}

[data-theme="dark"] .methodology-note {
  background: var(--bg-secondary);
  border-color: var(--border-light);
  color: #8B949E;
}

/* Trust Badges */
[data-theme="dark"] .trust-badge {
  background: var(--bg-secondary);
  color: #8B949E;
}

/* Capability Sections */
[data-theme="dark"] .capability-section h2 {
  color: #D4CFC7;
}

[data-theme="dark"] .capability-section .description {
  color: #8B949E;
}

[data-theme="dark"] .capability-label {
  color: #6BA3C7;
}

[data-theme="dark"] .feature-list li {
  color: #8B949E;
}

/* Tier Cards (Pricing Page) */
[data-theme="dark"] .tier-card {
  background: var(--bg-secondary);
  border-color: var(--border-light);
}

[data-theme="dark"] .tier-card h3 {
  color: #D4CFC7;
}

[data-theme="dark"] .tier-card p,
[data-theme="dark"] .tier-card .description {
  color: #8B949E;
}

[data-theme="dark"] .tier-card .price {
  color: #D4CFC7;
}

/* CTA Section */
[data-theme="dark"] .cta-section h2 {
  color: #D4CFC7;
}

[data-theme="dark"] .cta-section .lead {
  color: #8B949E;
}

[data-theme="dark"] .cta-section .trial-note {
  color: #718096;
}

/* Differentiation Strip */
[data-theme="dark"] .diff-label {
  color: #D4CFC7;
}

[data-theme="dark"] .diff-point {
  color: #8B949E;
}

/* ============================================ */
/* INLINE MOCK UI MOBILE OVERRIDES */
/* ============================================ */

@media (max-width: 767px) {
  .report-formats-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .report-formats-grid-2 {
    grid-template-columns: 1fr 1fr !important;
  }

  .capability-visual > div {
    padding: 20px !important;
    min-height: auto !important;
  }
}

/* Footer text */
[data-theme="dark"] .footer-section h4 {
  color: #D4CFC7;
}

[data-theme="dark"] .footer-section a {
  color: #8B949E;
}

/* Technical Specs */
[data-theme="dark"] .technical-specs {
  background: var(--bg-secondary);
}

[data-theme="dark"] .technical-specs h3 {
  color: #D4CFC7;
}

/* ============================================ */
/* MOBILE OPTIMIZATION PASS (2026-04-23)
   iPhone 14 Pro: 390×844, Samsung Galaxy S24: 360×780
   ============================================ */

/* P0: Prevent horizontal overflow from comparison table and wide elements */
html {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  .comparison-table-wrapper {
    margin: 0 -24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .comparison-table-wrapper::after {
    content: '← Scroll to see more →';
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-tertiary);
    padding: 8px;
    background: var(--bg-accent);
  }

  /* P0: Inline max-width divs on platform/methodology — add padding */
  .capability-section [style*="max-width"] {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .page-section [style*="max-width"] {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* P1: Hamburger button touch target (44×44px minimum) */
@media (max-width: 1023px) {
  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
}

/* P1: Segment grid — single column on mobile */
@media (max-width: 767px) {
  .segment-grid.segment-grid-5 {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px !important;
  }

  .segment-card {
    padding: 20px 16px;
  }

  .segment-card .icon-wrapper {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .segment-card .icon-wrapper svg {
    width: 22px;
    height: 22px;
  }

  .segment-card h3 {
    font-size: 14px;
    line-height: 1.3;
  }

  .segment-card .description {
    font-size: 13px;
    line-height: 1.4;
  }

  .segment-card ul {
    font-size: 12px;
  }

  .segment-card .segment-price {
    font-size: 18px;
  }
}

/* P1: Trust metrics — tighter on mobile */
@media (max-width: 767px) {
  .metric-number {
    font-size: 36px;
  }

  .metric-label {
    font-size: 12px;
    line-height: 1.3;
  }

  .trust-metrics {
    gap: 12px;
  }
}

/* P1: Billing toggle — stack or shrink on mobile */
@media (max-width: 767px) {
  .billing-option {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* P1: Pricing cards — tighter on mobile */
@media (max-width: 767px) {
  .tier-card {
    padding: 24px 16px;
  }
}

/* P1: Pricing table two — horizontal scroll on mobile */
@media (max-width: 767px) {
  .pricing-table-two {
    flex-direction: column;
    padding: 0 16px;
  }

  .pricing-table-two .tier-card {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* P1: Platform "Choose Your Path" cards — stack cleanly */
@media (max-width: 767px) {
  .workflow-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .workflow-card {
    padding: 24px 20px;
  }

  .workflow-card h3 {
    font-size: 18px;
  }

  .workflow-card ul {
    font-size: 13px;
  }
}

/* P1: Steps section — stack vertically */
@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-card {
    padding: 20px 16px;
  }
}

/* P1: Built Different cards — stack */
@media (max-width: 767px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bento-card {
    padding: 24px 20px;
  }
}

/* P1: Integration cards — stack */
@media (max-width: 767px) {
  .integration-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .integration-card {
    padding: 20px 16px;
  }
}

/* P2: Footer gap reduced on mobile */
@media (max-width: 767px) {
  .footer-content {
    gap: 32px;
  }

  .footer-column {
    margin-bottom: 0;
  }
}

/* P2: Cookie banner buttons */
@media (max-width: 767px) {
  .btn-accept,
  .btn-reject {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* P2: Page hero margin-top for mobile nav */
@media (max-width: 767px) {
  .page-hero {
    margin-top: 56px;
  }
}

/* P2: Pricing calculator — full width on mobile */
@media (max-width: 767px) {
  .pricing-calculator {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* P2: FAQ — full width touch targets */
@media (max-width: 767px) {
  .faq-item {
    border-radius: 8px;
  }

  .faq-question {
    padding: 16px;
    font-size: 15px;
    min-height: 48px;
  }
}

/* P2: Section separators — shorter on mobile */
@media (max-width: 767px) {
  .section-separator {
    width: 60px;
  }
}

/* P2: Capability visual boxes — scale down */
@media (max-width: 767px) {
  .capability-visual > div {
    padding: 16px !important;
    gap: 12px !important;
  }
}

/* P2: Chat demo — scale down on mobile */
@media (max-width: 767px) {
  .chat-demo {
    transform: scale(0.85);
    transform-origin: top center;
    margin-bottom: -40px;
  }
}

/* P2: Investors tables — scroll wrapper */
@media (max-width: 767px) {
  .investor-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .investor-table-wrapper table {
    min-width: 500px;
  }
}

/* P2: Methodology tables — scroll wrapper */
@media (max-width: 767px) {
  .methodology-content table,
  .page-section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .methodology-content table thead,
  .methodology-content table tbody,
  .methodology-content table tr,
  .methodology-content table th,
  .methodology-content table td {
    display: block;
  }
}

/* ============================================ */
/* ACCESSIBILITY: REDUCED MOTION */
/* ============================================ */

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

.section-heading-heavy {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
