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

:root {
  --bg-primary: #120B24;
  --bg-secondary: #1C1236;
  --text-primary: #F5F3FF;
  --text-secondary: #8B85A6;
  --text-muted: #5B507A;
  --action-primary: #D946EF;
  --action-primary-glow: rgba(217, 70, 239, 0.4);
  --action-secondary: #3B82F6;
  --action-secondary-glow: rgba(59, 130, 246, 0.4);
  --border-glow: rgba(139, 92, 246, 0.2);
  --border-glow-active: rgba(217, 70, 239, 0.6);
  --glass-bg: rgba(28, 18, 54, 0.6);
  --glass-border: rgba(245, 243, 255, 0.05);
  
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow selection inside form fields */
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Disable user interaction on images to protect them */
img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border-radius: 4px;
  border: 1px solid var(--text-muted);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--action-secondary);
}

/* Background Particle Canvas & Glows */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 0;
  pointer-events: none;
}

.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(217, 70, 239, 0.03) 50%, rgba(0,0,0,0) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.glow-top-left {
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0,0,0,0) 70%);
}

.glow-bottom-right {
  bottom: -10%;
  right: -10%;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.08) 0%, rgba(0,0,0,0) 70%);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #FFF 20%, #E879F9 50%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-accent {
  background: linear-gradient(135deg, var(--action-primary) 0%, var(--action-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Layout Utilities */
section {
  position: relative;
  width: 100%;
  padding: 8rem 2rem;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* Button & CTA Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  gap: 0.5rem;
  border: none;
  outline: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--action-primary) 0%, #B5179E 100%);
  color: var(--text-primary);
  box-shadow: 0 0 20px var(--action-primary-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::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: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.6);
}

.btn-secondary {
  background: rgba(28, 18, 54, 0.8);
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.btn-secondary:hover {
  border-color: var(--action-secondary);
  box-shadow: 0 0 25px var(--action-secondary-glow);
  transform: translateY(-3px);
  color: #FFF;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  z-index: 100;
  background: rgba(18, 11, 36, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}

.logo-image {
  width: 36px;
  height: 36px;
  background-image: url('assets/NEOGEN IA ICON.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 8px var(--action-secondary-glow));
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: var(--transition-fast);
}

nav ul a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
}

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

/* Section 1: Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8rem;
  gap: 4rem;
}

.hero-content {
  flex: 1.2;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero-tag {
  align-self: flex-start;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #60A5FA;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--action-secondary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--action-secondary);
  animation: pulse 1.5s infinite;
}

.hero-content h1 {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
}

.hero-trust {
  margin-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.trust-item h4 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFF, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.hero-visual {
  flex: 0.8;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.core-container {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 50px rgba(139, 92, 246, 0.3));
}

/* Electric conic rays rotating on hover */
.core-container::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    #3B82F6 8%,
    transparent 20%,
    transparent 45%,
    #D946EF 55%,
    transparent 70%,
    transparent 100%
  );
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.core-container::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: conic-gradient(
    from 120deg,
    transparent 0%,
    #D946EF 10%,
    transparent 22%,
    transparent 50%,
    #3B82F6 60%,
    transparent 72%,
    transparent 100%
  );
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.core-container:hover::before {
  opacity: 1;
  animation: rotate 0.7s linear infinite;
}

.core-container:hover::after {
  opacity: 0.95;
  animation: rotate-reverse 1.1s linear infinite;
}

.core-image {
  width: 280px;
  height: 280px;
  background-image: url('assets/NEOGEN IA ICON.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.core-container:hover .core-image {
  animation: float 3s ease-in-out infinite, electric-shake 0.15s linear infinite;
  filter: drop-shadow(0 0 20px #3B82F6) drop-shadow(0 0 35px #D946EF) brightness(1.3);
}

.orbital-ring {
  position: absolute;
  border: 1px dashed rgba(139, 92, 246, 0.25);
  border-radius: 50%;
  animation: rotate infinite linear;
}

.ring-inner {
  width: 320px;
  height: 320px;
  animation-duration: 15s;
  border-color: rgba(59, 130, 246, 0.3);
}

.ring-outer {
  width: 380px;
  height: 380px;
  animation-duration: 25s;
  animation-direction: reverse;
  border-color: rgba(217, 70, 239, 0.25);
}

.particle-pulse {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.15) 0%, rgba(59, 130, 246, 0) 70%);
  animation: pulse-core 3s ease-out infinite;
}

.pulse-1 {
  width: 300px;
  height: 300px;
  animation-delay: 0s;
}

.pulse-2 {
  width: 350px;
  height: 350px;
  animation-delay: 1.5s;
}

/* Section 2: Trust and Authority */
#trust {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 6rem 2rem;
  background: linear-gradient(180deg, rgba(28, 18, 54, 0.1) 0%, rgba(18, 11, 36, 0.3) 100%);
  position: relative;
}

.trust-subtitle {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.trust-item-capsule {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 3rem 1.5rem;
  border-right: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.trust-item-capsule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.trust-item-capsule:last-child {
  border-right: none;
}

.trust-item-capsule i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-item-capsule span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover highlights with specific glows */
.trust-item-capsule:hover {
  background: rgba(255, 255, 255, 0.02);
}

.trust-item-capsule:hover::before {
  opacity: 1;
}

.trust-item-capsule:hover i {
  transform: translateY(-5px) scale(1.1);
}

.trust-item-capsule:hover span {
  color: #FFF;
}

.trust-item-capsule.startup:hover i {
  color: #60a5fa;
  filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.6));
}

.trust-item-capsule.smb:hover i {
  color: #c084fc;
  filter: drop-shadow(0 0 12px rgba(192, 132, 252, 0.6));
}

.trust-item-capsule.medium:hover i {
  color: #34d399;
  filter: drop-shadow(0 0 12px rgba(52, 211, 153, 0.6));
}

.trust-item-capsule.saas:hover i {
  color: #fbbf24;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6));
}

.trust-item-capsule.ecommerce:hover i {
  color: #f43f5e;
  filter: drop-shadow(0 0 12px rgba(244, 63, 94, 0.6));
}

@media (max-width: 1024px) {
  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 12px;
  }
  .trust-item-capsule:nth-child(3) {
    border-right: none;
  }
  .trust-item-capsule:nth-child(4), .trust-item-capsule:nth-child(5) {
    border-top: 1px solid var(--glass-border);
  }
  .trust-item-capsule:nth-child(5) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .trust-logos {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item-capsule {
    border-right: 1px solid var(--glass-border);
  }
  .trust-item-capsule:nth-child(2n) {
    border-right: none;
  }
  .trust-item-capsule:nth-child(3), .trust-item-capsule:nth-child(4), .trust-item-capsule:nth-child(5) {
    border-top: 1px solid var(--glass-border);
  }
  .trust-item-capsule:nth-child(5) {
    grid-column: span 2;
    border-right: none;
  }
}

/* Section 3: Services Ecosystem */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.2rem;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow-active);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--action-primary);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--action-primary);
  color: var(--text-primary);
  box-shadow: 0 0 15px var(--action-primary-glow);
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features li::before {
  content: "✓";
  color: var(--action-secondary);
  font-weight: bold;
}

.card-expand-btn {
  background: none;
  border: none;
  color: var(--action-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.card-expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(245, 243, 255, 0.05);
  padding-top: 0;
}

.card-expand-content.active {
  max-height: 200px;
  padding-top: 1rem;
}

/* Section 4: How NeoGen Works */
.journey-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.journey-container::before {
  content: '';
  position: absolute;
  top: 120px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.2), var(--action-secondary) 50%, rgba(16, 185, 129, 0.2));
  z-index: 0;
}

.journey-step {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.journey-step:hover {
  transform: translateY(-8px);
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--bg-primary);
  border: 2px solid var(--border-glow);
}

.step-chaos .step-num {
  border-color: #EF4444;
  color: #EF4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.step-neogen .step-num {
  border-color: var(--action-secondary);
  color: var(--action-secondary);
  box-shadow: 0 0 20px var(--action-secondary-glow);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.step-scale .step-num {
  border-color: #10B981;
  color: #10B981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.step-chaos {
  border-color: rgba(239, 68, 68, 0.15);
}

.step-chaos h3 {
  color: #EF4444;
  margin-bottom: 1rem;
}

.step-neogen {
  border-color: var(--action-secondary);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.1);
}

.step-neogen h3 {
  color: var(--action-secondary);
  margin-bottom: 1rem;
}

.step-scale {
  border-color: rgba(16, 185, 129, 0.15);
}

.step-scale h3 {
  color: #10B981;
  margin-bottom: 1rem;
}

.journey-step p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Section 5: AI Growth Ecosystem */
.ecosystem-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 550px;
  overflow: visible;
}

.network-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.network-line {
  stroke: rgba(139, 92, 246, 0.25);
  stroke-width: 2;
  stroke-dasharray: 8 4;
  animation: line-dash 15s linear infinite;
}

.network-line.active {
  stroke: #FFF;
  stroke-width: 3.5px;
  filter: drop-shadow(0 0 8px var(--action-primary)) drop-shadow(0 0 15px var(--action-secondary));
  animation: lightning-strike 0.5s ease-out forwards;
}

.center-core-node {
  position: relative;
  z-index: 10;
  width: 130px;
  height: 130px;
  background: var(--bg-primary);
  border: 3px solid var(--action-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--action-primary-glow);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.center-node-image {
  width: 108px;
  height: 108px;
  background-image: url('assets/NEOGEN IA ICON.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.center-core-node:hover .center-node-image {
  transform: scale(1.1);
}

.center-core-node:hover {
  transform: scale(1.08);
  box-shadow: 0 0 50px rgba(217, 70, 239, 0.8);
}

.ecosystem-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.eco-node {
  position: absolute;
  width: 75px;
  height: 75px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.eco-node i {
  font-size: 1.5rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.eco-node span {
  position: absolute;
  bottom: -25px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  white-space: nowrap;
}

.eco-node:hover {
  transform: scale(1.15);
  border-color: var(--action-secondary);
  box-shadow: 0 0 25px var(--action-secondary-glow);
}

.eco-node:hover i {
  color: var(--action-secondary);
}

.eco-node.active {
  border-color: #FFF;
  box-shadow: 0 0 20px #FFF, 0 0 35px var(--action-secondary-glow);
  animation: node-lightning-flash 0.5s ease-out forwards;
}

.eco-node.active i {
  color: #FFF;
}

.eco-node:hover span {
  color: var(--text-primary);
}

/* Node Positions (centered round 50% 50%) */
.node-crm { top: 12%; left: 30%; }
.node-whatsapp { top: 18%; left: 70%; }
.node-email { top: 45%; left: 82%; }
.node-calendar { top: 76%; left: 72%; }
.node-sales { top: 80%; left: 32%; }
.node-support { top: 48%; left: 16%; }

/* Section 6: Interactive AI Demo */
.chat-demo-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(18, 11, 36, 0.4);
}

.chat-sidebar {
  background: rgba(18, 11, 36, 0.4);
  border-right: 1px solid var(--glass-border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-title h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.sidebar-title p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.chat-presets {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.preset-btn {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.preset-btn:hover, .preset-btn.active {
  border-color: var(--action-secondary);
  color: var(--text-primary);
  background: rgba(59, 130, 246, 0.05);
}

.chat-window {
  display: flex;
  flex-direction: column;
  height: 520px;
}

.chat-header {
  background: rgba(28, 18, 54, 0.8);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agent-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.agent-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--action-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.agent-avatar-image {
  width: 24px;
  height: 24px;
  background-image: url('assets/NEOGEN IA ICON.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  border: 2px solid var(--bg-secondary);
}

.agent-details h4 {
  font-size: 1rem;
}

.agent-details p {
  font-size: 0.75rem;
  color: #10B981;
}

.chat-messages {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: rgba(18, 11, 36, 0.2);
}

.message {
  max-width: 75%;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.message-user {
  align-self: flex-end;
  background: var(--action-secondary);
  color: var(--text-primary);
  border-bottom-right-radius: 4px;
}

.message-agent {
  align-self: flex-start;
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  border-bottom-left-radius: 4px;
}

.typing-indicator {
  display: none;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--text-secondary);
  border-radius: 50%;
  animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

.chat-input-area {
  padding: 1.5rem 2rem;
  background: rgba(18, 11, 36, 0.6);
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 1rem;
}

.chat-input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition-smooth);
}

.chat-input:focus {
  border-color: var(--action-secondary);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
}

.chat-submit {
  width: 50px;
  height: 50px;
  background: var(--action-primary);
  border: none;
  border-radius: 12px;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.chat-submit:hover {
  background: #B5179E;
  box-shadow: 0 0 15px var(--action-primary-glow);
}

/* Section 7: Case Studies Dashboard */
.case-dashboard {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(18, 11, 36, 0.4);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3.5rem;
}

.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.case-tab {
  background: rgba(18, 11, 36, 0.4);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: left;
}

.case-tab h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.case-tab p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.case-tab.active {
  border-color: var(--action-primary);
  box-shadow: 0 0 20px rgba(217, 70, 239, 0.1);
  background: rgba(28, 18, 54, 0.8);
}

.case-tab.active h3 {
  color: var(--action-primary);
}

.case-content {
  display: none;
  flex-direction: column;
  gap: 2rem;
  animation: fadeIn 0.5s ease-out;
}

.case-content.active {
  display: flex;
}

.case-meta {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1.5rem;
}

.case-meta-item h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-meta-item p {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
}

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

.metric-box {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.8rem 1.2rem;
  text-align: center;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--action-secondary);
  text-shadow: 0 0 10px var(--action-secondary-glow);
  margin-bottom: 0.3rem;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.case-chart-mock {
  background: rgba(18, 11, 36, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
}

.chart-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.chart-title span {
  color: #10B981;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 150px;
  padding-top: 1rem;
}

.chart-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.chart-bar {
  width: 30px;
  background: linear-gradient(180deg, var(--action-primary) 0%, rgba(217, 70, 239, 0.1) 100%);
  border-radius: 6px 6px 0 0;
  transition: height 1s ease-out;
  height: 0;
  box-shadow: 0 0 10px rgba(217, 70, 239, 0.2);
}

.chart-bar.secondary {
  background: linear-gradient(180deg, var(--action-secondary) 0%, rgba(59, 130, 246, 0.1) 100%);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.chart-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

/* Section 8: Why NeoGen IA */
.why-comparison {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(18, 11, 36, 0.4);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}

.comp-table th, .comp-table td {
  padding: 1.8rem 2.2rem;
  text-align: left;
}

.comp-table th {
  background: rgba(18, 11, 36, 0.6);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.comp-table td {
  border-bottom: 1px solid var(--glass-border);
}

.col-feature {
  width: 40%;
  font-weight: 500;
}

.col-neogen {
  width: 30%;
  background: rgba(139, 92, 246, 0.05);
  font-weight: 600;
  color: #60A5FA;
}

.col-agency {
  width: 30%;
  color: var(--text-muted);
}

.comp-table tr:hover {
  background: rgba(245, 243, 255, 0.02);
}

.check-green {
  color: #10B981;
  font-weight: bold;
}

.cross-red {
  color: #EF4444;
  font-weight: bold;
}

/* Section 9: Future of Business */
#future {
  text-align: center;
  padding: 10rem 2rem;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.05) 0%, rgba(18, 11, 36, 0) 70%);
}

.future-content {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.future-content h2 {
  font-size: 3.5rem;
}

.future-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Section 10: Final Conversion */
#conversion {
  position: relative;
  overflow: hidden;
  padding-bottom: 10rem;
}

.conversion-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.05) 0%, rgba(59, 130, 246, 0.03) 50%, rgba(0,0,0,0) 100%);
  z-index: 0;
  pointer-events: none;
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.conversion-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conversion-info h2 {
  font-size: 3.2rem;
}

.conversion-info p {
  font-size: 1.15rem;
}

.conv-core-container {
  width: 150px;
  height: 150px;
  position: relative;
  margin-bottom: 1rem;
}

.conv-core-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
}

.conversion-form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(18, 11, 36, 0.4);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

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

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}

.no-website-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.no-website-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.no-website-toggle .custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.no-website-toggle:hover .custom-checkbox {
  border-color: var(--action-secondary);
  box-shadow: 0 0 8px var(--action-secondary-glow);
}

.no-website-toggle input[type="checkbox"]:checked + .custom-checkbox {
  background: linear-gradient(135deg, var(--action-primary) 0%, rgba(217, 70, 239, 0.4) 100%);
  border-color: var(--action-primary);
  box-shadow: 0 0 10px rgba(217, 70, 239, 0.4);
}

.no-website-toggle input[type="checkbox"]:checked + .custom-checkbox::after {
  content: '✓';
  font-size: 0.75rem;
  color: var(--text-primary);
  font-weight: bold;
}

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

.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition-smooth);
}

.form-group select option {
  background: #1C1236;
  color: var(--text-primary);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--action-primary);
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.15);
}

.lead-form .btn {
  margin-top: 1rem;
}

/* Budget options style */
.budget-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.budget-option-btn {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.1rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.budget-option-btn:hover {
  border-color: var(--action-secondary);
  color: var(--text-primary);
  background: rgba(59, 130, 246, 0.05);
}

.budget-option-btn.active {
  background: linear-gradient(135deg, var(--action-primary) 0%, rgba(217, 70, 239, 0.15) 100%);
  border-color: var(--action-primary);
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(217, 70, 239, 0.25);
}

.budget-option-btn:last-child {
  grid-column: span 2;
}

/* Chat Input Simulated Mode Styles */
.chat-input-area.simulated .chat-input {
  background: rgba(18, 11, 36, 0.4);
  border-color: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  cursor: not-allowed;
}

.chat-input-area.simulated .chat-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* Media query responsiveness for Lead form grid */
@media (max-width: 768px) {
  .lead-form-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .budget-options-grid {
    grid-template-columns: 1fr;
  }
  .budget-option-btn:last-child {
    grid-column: span 1;
  }
}

/* Footer */
footer {
  background: rgba(18, 11, 36, 0.9);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 2rem 3rem;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.footer-brand p {
  font-size: 0.95rem;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

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

.footer-links ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links ul a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
}

/* Animation Keyframes */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

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

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

@keyframes electric-shake {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-1.5px, -1px); }
  80% { transform: translate(1px, 1.5px); }
  100% { transform: translate(0, 0); }
}

@keyframes lightning-strike {
  0% {
    stroke-dashoffset: 80;
    opacity: 0.3;
    stroke-width: 1.5px;
  }
  15% {
    stroke-dashoffset: 0;
    opacity: 1;
    stroke-width: 4.5px;
    stroke: #FFF;
  }
  30% {
    opacity: 0.4;
    stroke-width: 2px;
  }
  45% {
    opacity: 1;
    stroke-width: 5px;
    stroke: #FFF;
  }
  65% {
    opacity: 0.7;
    stroke-width: 3px;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
    stroke-width: 3px;
    stroke: var(--action-primary);
  }
}

@keyframes node-lightning-flash {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  20%, 60% {
    transform: scale(1.15);
    filter: brightness(1.8) drop-shadow(0 0 15px var(--action-secondary));
  }
  40% {
    transform: scale(1.05);
    filter: brightness(1.2);
  }
  100% {
    transform: scale(1.15);
    filter: brightness(1.3) drop-shadow(0 0 10px var(--action-secondary-glow));
    border-color: var(--action-secondary);
  }
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes pulse-core {
  0% { transform: scale(0.6); opacity: 0; }
  50% { opacity: 0.4; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes line-dash {
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes typing-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}

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

@media (max-width: 1200px) {
  nav ul {
    gap: 1.2rem;
  }
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.mobile-nav-toggle .hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(1) {
  transform: rotate(45deg) translate(1px, -1px);
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(3) {
  transform: rotate(-45deg) translate(1px, 1px);
}

@media (max-width: 1100px) {
  .nav-cta {
    order: 2;
  }

  .mobile-nav-toggle {
    display: flex;
    order: 3;
    margin-left: 1.5rem;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(18, 11, 36, 0.96);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--glass-border);
    padding: 8rem 3rem 3rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 2.2rem;
  }

  nav ul a {
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
  }

  .nav-cta .btn-secondary {
    display: none;
  }
}

@media (max-width: 1024px) {
  #hero {
    flex-direction: column;
    text-align: center;
    padding-top: 10rem;
    gap: 3rem;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-tag {
    align-self: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .ecosystem-container {
    min-height: 700px;
  }
  
  .node-crm { top: 15%; left: 10%; }
  .node-whatsapp { top: 15%; left: 80%; }
  .node-email { top: 45%; left: 88%; }
  .node-calendar { top: 75%; left: 80%; }
  .node-sales { top: 75%; left: 10%; }
  .node-support { top: 45%; left: 4%; }
  
  .chat-demo-container {
    grid-template-columns: 1fr;
  }
  
  .chat-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .conversion-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .conv-core-container {
    margin: 0 auto 1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  

  
  .journey-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .journey-container::before {
    display: none;
  }
  
  .comp-table th, .comp-table td {
    padding: 1rem;
  }
  
  .col-feature {
    width: 50%;
  }
  
  .col-neogen {
    width: 25%;
  }
  
  .col-agency {
    width: 25%;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}
