/* ============================================================================
   SME-Empowerment Manufacturing | Dark Glassmorphic Design System
   ============================================================================ */

/* ============================================================================
   1. CSS CUSTOM PROPERTIES & ROOT STYLES
   ============================================================================ */

:root {
  /* Color Palette */
  --bg-dark: #000;
  --bg-deep: #00203a;
  --text-primary: #fff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);

  /* Accent & Interactive */
  --accent: #f94c00;
  --accent-hover: #ff6a2a;
  --accent-glow: rgba(249, 76, 0, 0.3);
  --accent-subtle: rgba(249, 76, 0, 0.1);

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Spacing & Sizing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Animation & Easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --white: #fff;
  --font: 'Montserrat', sans-serif;
}

/* ============================================================================
   2. GLOBAL RESET & BASE STYLES
   ============================================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    #000 0%,
    #00203a 17%,
    #000 31%,
    #001629 49%,
    #000 66%,
    #00203a 82%,
    #000 100%
  );
  pointer-events: none;
}

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

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

/* ============================================================================
   3. CONTAINER & LAYOUT
   ============================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================================
   4. TYPOGRAPHY
   ============================================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
}

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

/* ============================================================================
   5. NAVIGATION BAR
   ============================================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar .container,
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  font-weight: 400;
  color: var(--text-secondary);
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.nav-toggle:hover {
  color: var(--accent);
}

/* ============================================================================
   6. HERO SECTION
   ============================================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    var(--accent-subtle) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero .container,
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.hero-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(249, 76, 0, 0.3);
  border-radius: 100px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons,
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================================
   7. BUTTONS
   ============================================================================ */

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font);
  transition: all 0.3s var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

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

.btn-secondary,
.btn-outline,
.btn.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 8px;
}

.btn-secondary:hover,
.btn-outline:hover,
.btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary:active,
.btn-outline:active {
  transform: translateY(0);
}

/* ============================================================================
   8. HERO VISUAL & SLIDESHOW
   ============================================================================ */

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

.hero-slideshow {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  border-radius: var(--radius-lg);
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slide-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.slide-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.slide-dots .dot.active {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ============================================================================
   9. STATS ROW
   ============================================================================ */

.stats-row {
  padding: 80px 0;
  text-align: center;
}

/* When stats-row has direct stat-items (no container wrapper) */
.stats-row:not(:has(.container)) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  position: relative;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================================================
   10. SECTION PATTERNS
   ============================================================================ */

.section {
  padding: 100px 0;
  position: relative;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent),
    transparent
  );
  max-width: 100px;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-heading .highlight {
  color: var(--accent);
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 400;
}

/* ============================================================================
   11. GLASS CARDS
   ============================================================================ */

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

/* ============================================================================
   12. GRID LAYOUTS
   ============================================================================ */

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

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

/* ============================================================================
   13. MODULE CARDS
   ============================================================================ */

.module-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.module-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.module-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.module-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.module-list {
  list-style: none;
  margin-bottom: 20px;
}

.module-list li {
  padding: 6px 0 6px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  line-height: 1.5;
}

.module-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.module-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.module-link:hover {
  color: var(--accent-hover);
}

/* ============================================================================
   14. METRIC BARS
   ============================================================================ */

.metric-bar {
  margin-top: 16px;
}

.metric-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.metric-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--accent);
  transition: width 1.5s var(--ease);
  width: 0%;
}

/* ============================================================================
   15. CAPABILITY CARDS
   ============================================================================ */

.capability-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ============================================================================
   16. INTEGRATION CARDS
   ============================================================================ */

.integration-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.integration-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.integration-card .card-icon {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================================
   17. FAQ ACCORDION
   ============================================================================ */

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s var(--ease);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
}

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

.faq-question span {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.faq-answer p:last-child {
  padding-bottom: 0;
}

/* ============================================================================
   18. CTA SECTION
   ============================================================================ */

.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================================================
   19. FOOTER
   ============================================================================ */

.footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-logo span {
  font-weight: 400;
  color: var(--text-secondary);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--accent);
}

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

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================================================
   20. PILLAR TABS
   ============================================================================ */

.pillar-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pillar-tab {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: var(--font);
}

.pillar-tab:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.pillar-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.pillar-content {
  display: none;
}

.pillar-content.active {
  display: block;
  animation: fadeIn 0.3s var(--ease);
}

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

/* ============================================================================
   21. RESPONSIVE DESIGN - TABLET
   ============================================================================ */

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

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .hero::before {
    width: 600px;
    height: 600px;
    top: -20%;
    right: -30%;
  }
}

/* ============================================================================
   22. RESPONSIVE DESIGN - MOBILE
   ============================================================================ */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .section {
    padding: 60px 0;
  }

  .stats-row {
    padding: 60px 0;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-eyebrow::before,
  .section-eyebrow::after {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-section {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
  }

  .hero-eyebrow {
    font-size: 0.75rem;
  }
}

/* ============================================================================
   23. RESPONSIVE DESIGN - SMALL DEVICES
   ============================================================================ */

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

  .hero h1 {
    font-size: 2rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    padding: 40px 0;
    gap: 16px;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .glass-card,
  .module-card,
  .capability-card,
  .integration-card {
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .container {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  .footer-inner {
    gap: 20px;
  }

  .hero .container {
    gap: 20px;
  }

  .pillar-tabs {
    gap: 6px;
  }

  .pillar-tab {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* ============================================================================
   24. PREFERS REDUCED MOTION
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================================
   25. UTILITY CLASSES
   ============================================================================ */

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent);
}

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

.text-muted {
  color: var(--text-muted);
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.shadow-lg {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.shadow-md {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-50 {
  opacity: 0.5;
}

.flex {
  display: flex;
}

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

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

.inline-flex {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-600 {
  font-weight: 600;
}

.font-size-sm {
  font-size: 0.9rem;
}

.font-size-lg {
  font-size: 1.2rem;
}

/* ============================================================================
   26. MISSING CLASS ALIASES & PATCHES
   (Bridging HTML class names to CSS rules)
   ============================================================================ */

/* --- Mobile Toggle (HTML uses .mobile-toggle, CSS had .nav-toggle) --- */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s var(--ease);
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.mobile-toggle:hover {
  color: var(--accent);
}

.mobile-toggle:hover span {
  background: var(--accent);
}

/* --- Nav Links .active state (HTML toggles .active, CSS had .open) --- */
.nav-links.active {
  display: flex;
}

/* --- FAQ .active state (some pages use .active instead of .open) --- */
.faq-item.active .faq-question span,
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* --- Section Header (centering wrapper for eyebrow + heading) --- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-header .highlight {
  color: var(--accent);
}

/* --- Problem Cards (3-col grid) --- */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  text-align: center;
}

.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

/* --- Problem Section Spacing --- */
.problem-section {
  padding: 100px 0;
  position: relative;
}

/* --- Platform Section --- */
.platform-section {
  padding: 100px 0;
  position: relative;
}

/* --- Platform Cards (3-col grid) --- */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-card {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}

.platform-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

/* --- Card Accent Bar (colored top bar) --- */
.card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.accent-orange {
  --accent: #f94c00;
  --accent-hover: #ff6a2a;
  --accent-glow: rgba(249, 76, 0, 0.3);
  --accent-subtle: rgba(249, 76, 0, 0.1);
}

.accent-teal {
  --accent: #17a2b8;
  --accent-hover: #1fbdd4;
  --accent-glow: rgba(23, 162, 184, 0.3);
  --accent-subtle: rgba(23, 162, 184, 0.1);
}

.accent-green {
  --accent: #2ecc71;
  --accent-hover: #3ddc84;
  --accent-glow: rgba(46, 204, 113, 0.3);
  --accent-subtle: rgba(46, 204, 113, 0.1);
}

.accent-orange .card-accent-bar { background: #f94c00; }
.accent-teal .card-accent-bar { background: #17a2b8; }
.accent-green .card-accent-bar { background: #2ecc71; }

/* --- Card Tagline --- */
.card-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 400;
}

/* --- Card Features List --- */
.card-features {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.card-features li {
  padding: 6px 0 6px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  line-height: 1.5;
}

.card-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* --- Card Link --- */
.card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link:hover {
  color: var(--accent-hover);
}

/* --- Stats Grid (4-col, inside stats-row container) --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

/* Fix stats-row when it wraps a container+stats-grid */
.stats-row {
  padding: 80px 0;
}

.stats-row .container {
  max-width: 1200px;
}

/* --- Footer Grid (alias for .footer-inner) --- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid .footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

/* --- Footer Container alias (Manvis, Asireon, Company use this) --- */
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

/* --- Footer Content alias (Asireon, Company) --- */
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* --- Footer Column / Section aliases --- */
.footer-column h4,
.footer-section h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-column a,
.footer-section a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
}

.footer-column a:hover,
.footer-section a:hover {
  color: var(--accent);
}

.footer-column ul,
.footer-section ul {
  list-style: none;
  padding: 0;
}

/* --- Button Large variant --- */
.btn-lg,
.btn.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* --- Eyebrow class (solution pages use .eyebrow instead of .hero-eyebrow) --- */
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(249, 76, 0, 0.3);
  border-radius: 100px;
}

/* --- Subtitle class (EmpowerOps uses .subtitle) --- */
.subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

/* --- Hero Title (Manvis uses .hero-title on h1) --- */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-title .highlight {
  color: var(--accent);
}

/* --- Hero Dashboard Preview (EmpowerOps hero visual) --- */
.hero-dashboard-preview {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.dashboard-icon {
  font-size: 1.5rem;
}

.dashboard-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
}

.dashboard-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.dashboard-metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.dashboard-metric .metric-value,
.dashboard-metric h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.dashboard-metric p,
.dashboard-metric .metric-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* --- Visual Placeholder (Manvis hero) --- */
.visual-placeholder {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* --- Placeholder Content (Asireon hero) --- */
.placeholder-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* --- Glass Grid (EmpowerOps, Manvis) --- */
.glass-grid {
  display: grid;
  gap: 24px;
}

.glass-grid-3,
.glass-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* --- Grid base class (company page uses .grid.grid-2) --- */
.grid {
  display: grid;
  gap: 24px;
}

/* --- Grid 4 (Manvis modules) --- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Module Grid (Manvis) --- */
.module-grid {
  display: grid;
  gap: 24px;
}

.module-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* --- Modules Grid (EmpowerOps) --- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* --- Module Stat --- */
.module-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* --- Feature Card (Asireon, Company) --- */
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-card .card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

/* --- FAQ extras (icon, list, container) --- */
.faq-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

/* --- FAQ Section --- */
.faq-section,
.faq {
  padding: 100px 0;
  position: relative;
}

/* --- Pillars Section --- */
.pillars-section {
  padding: 100px 0;
  position: relative;
}

/* --- CTA Card refinements --- */
.cta-card {
  text-align: center;
  padding: 60px 40px;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================================
   27. COMPANY PAGE STYLES
   ============================================================================ */

.company-hero .hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.mission-section {
  padding: 100px 0;
  position: relative;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.mission-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.mission-left p,
.mission-right p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.values-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}

.value-item:last-child {
  border-bottom: none;
}

.why-us-section {
  padding: 100px 0;
  position: relative;
}

/* --- Team Section --- */
.team-section {
  padding: 100px 0;
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.team-card.featured {
  border-color: var(--accent);
  background: rgba(249, 76, 0, 0.05);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

.team-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Journey / Timeline --- */
.journey-section {
  padding: 100px 0;
  position: relative;
}

/* --- Products Overview --- */
.products-overview-section {
  padding: 100px 0;
  position: relative;
}

.product-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.product-accent {
  height: 3px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.orange-accent { background: #f94c00; }
.teal-accent { background: #17a2b8; }
.green-accent { background: #2ecc71; }

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

.product-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s var(--ease);
}

.product-link:hover {
  color: var(--accent-hover);
}

/* --- Contact Section --- */
.contact-section {
  padding: 100px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-details {
  margin-top: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-detail:last-child {
  border-bottom: none;
}

/* --- Hero without container wrapper (Manvis) --- */
.hero > .hero-content {
  position: relative;
  z-index: 2;
}

.hero:not(:has(.hero-container)):not(:has(> .container)) {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 0;
  min-height: 100vh;
}

/* --- Sections without .container wrapper (solution pages) --- */
.platform-overview,
.core-modules,
.system-capabilities,
.integrations,
.capabilities,
.faq-section,
.faq {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* When they DO have a .container, undo the max-width */
.platform-overview:has(> .container),
.core-modules:has(> .container),
.system-capabilities:has(> .container),
.integrations:has(> .container),
.capabilities:has(> .container),
.faq-section:has(> .container),
.faq:has(> .container) {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* ============================================================================
   28. SOLUTION PAGE ACCENT OVERRIDES
   ============================================================================ */

/* EmpowerOps page */
body.empowerops-page {
  --accent: #f94c00;
  --accent-hover: #ff6a2a;
  --accent-glow: rgba(249, 76, 0, 0.3);
  --accent-subtle: rgba(249, 76, 0, 0.1);
}

/* Manvis page */
body.manvis-page {
  --accent: #17a2b8;
  --accent-hover: #1fbdd4;
  --accent-glow: rgba(23, 162, 184, 0.3);
  --accent-subtle: rgba(23, 162, 184, 0.1);
}

/* Asireon page */
body.asireon-page {
  --accent: #2ecc71;
  --accent-hover: #3ddc84;
  --accent-glow: rgba(46, 204, 113, 0.3);
  --accent-subtle: rgba(46, 204, 113, 0.1);
}

/* ============================================================================
   29. RESPONSIVE PATCHES
   ============================================================================ */

@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .problem-cards,
  .platform-cards,
  .glass-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

  .footer-container,
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-outline,
  .btn.btn-outline {
    width: 100%;
    justify-content: center;
  }

  .problem-cards,
  .platform-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-container,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .modules-grid,
  .glass-grid-3 {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-container {
    gap: 20px;
  }

  .footer-grid,
  .footer-container,
  .footer-content {
    gap: 20px;
  }

  .glass-card,
  .feature-card,
  .team-card,
  .product-card,
  .contact-form-card,
  .contact-info-card {
    padding: 20px;
  }
}

/* ============================================================================
   SECTION 30 — Logo Image & SVG Icon Styles
   ============================================================================ */

/* Navbar logo image — brand SVG designed for dark backgrounds (no filter needed) */
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.nav-logo:hover img {
  opacity: 0.85;
}

/* Footer logo image — brand SVG designed for dark backgrounds */
.footer-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Product logo in hero sections */
.hero-product-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-product-logo {
    max-height: 48px;
  }
}

@media (max-width: 480px) {
  .hero-product-logo {
    max-height: 40px;
  }
}

/* Footer h3/h4 logo images (manvis, asireon, company pages) */
.footer-column h4 img,
.footer-section h3 img,
.footer-section h4 img {
  height: 32px;
  width: auto;
  display: block;
}

/* SVG icons inside card-icon containers */
.card-icon svg {
  display: block;
}

/* Dashboard icon SVG */
.dashboard-icon svg {
  display: inline-block;
  vertical-align: middle;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .nav-logo img {
    height: 32px;
  }

  .footer-logo img {
    height: 30px;
  }

  .footer-column h4 img,
  .footer-section h3 img,
  .footer-section h4 img {
    height: 28px;
  }
}

@media (max-width: 480px) {
  .nav-logo img {
    height: 28px;
  }
}

/* ============================================================================
   31. TRUST BAR
   ============================================================================ */

.trust-bar {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
}

.trust-bar-inner {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.trust-bar-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

@media (max-width: 768px) {
  .trust-bar-inner {
    gap: 16px;
  }

  .trust-bar-item {
    font-size: 0.72rem;
  }
}

/* ============================================================================
   32. HOW IT WORKS — 3-STEP SECTION
   ============================================================================ */

.steps-section {
  padding: 100px 0;
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(249, 76, 0, 0.25) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

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

.step-connector {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, rgba(249, 76, 0, 0.5), transparent);
  z-index: 2;
}

@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
    margin: 0 auto;
  }

  .step-connector {
    display: none;
  }
}

/* ============================================================================
   33. INTEGRATION ECOSYSTEM
   ============================================================================ */

.integration-section {
  padding: 80px 0;
  position: relative;
}

.integration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.integration-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  cursor: default;
}

.integration-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

.integration-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================================
   34. TESTIMONIAL / RESULTS CALLOUT
   ============================================================================ */

.testimonial-section {
  padding: 100px 0;
  position: relative;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(249, 76, 0, 0.3), transparent);
}

.testimonial-quote-icon {
  font-size: 6rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.25;
  font-family: Georgia, 'Times New Roman', serif;
  display: block;
  margin-bottom: 8px;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto 28px;
}

.testimonial-attribution {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.testimonial-attribution strong {
  color: var(--accent);
  font-weight: 600;
}

.result-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.result-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.result-stat {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
  display: block;
}

.result-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

  .testimonial-card {
    padding: 36px 24px;
  }

  .testimonial-quote {
    font-size: 1.05rem;
  }
}

/* ============================================================================
   35. SCROLL REVEAL ANIMATION
   ============================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================================================
   36. PRODUCT STAT BADGE (homepage platform cards)
   ============================================================================ */

.product-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ============================================================================
   37. PROBLEM CARD RESULT CALLOUT
   ============================================================================ */

.problem-result {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* ============================================================================
   38. FORM SUCCESS MESSAGE
   ============================================================================ */

.form-success {
  display: none;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  color: #2ecc71;
  font-weight: 600;
  margin-top: 16px;
}

.form-success.visible {
  display: block;
}

/* ============================================================================
   39. NAV PRODUCT PILL INDICATORS
   ============================================================================ */

.nav-links .nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links .nav-pill::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-pill.pill-orange::before { background: #f94c00; }
.nav-pill.pill-teal::before   { background: #17a2b8; }
.nav-pill.pill-green::before  { background: #2ecc71; }

/* ============================================================================
   40. HERO ANIMATED BADGE
   ============================================================================ */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 76, 0, 0.08);
  border: 1px solid rgba(249, 76, 0, 0.25);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 76, 0, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(249, 76, 0, 0); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* ============================================================================
   END OF STYLESHEET
   ============================================================================ */
