:root {
  /* Colors */
  --primary: #00e5b0; /* Neon Mint/Cyan */
  --primary-hover: #00c496;
  --bg-dark: #050b10;
  --bg-card: #0a1118;
  --bg-pill: rgba(255, 255, 255, 0.05);
  --bg-pill-hover: rgba(255, 255, 255, 0.1);
  --border-color: rgba(255, 255, 255, 0.1);

  /* Typography */
  --text-main: #ffffff;
  --text-muted: #8b9eb0;
  --font-heading: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', 'DM Sans', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Utilities */
.heading-font {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.spacer-lg { height: 10vh; }
.spacer-xl { height: 20vh; }

.btn-primary {
  background-color: var(--primary);
  color: #000;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline {
  border: 1px solid var(--border-color);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-pill);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

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

.btn-large {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: 1.1rem;
}

/* Layout */
.layout-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

/* Navbar */
.navbar-wrapper {
  position: fixed;
  top: var(--spacing-sm);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 100;
  padding: 0 var(--spacing-sm);
}

.pill-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-pill);
  width: 100%;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  margin-left: var(--spacing-xs);
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

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

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: var(--spacing-xl);
}

.hero-bg-wrapper {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.sci-fi-grid {
  position: absolute;
  bottom: -50%; left: -50%; width: 200%; height: 150%;
  background-image: 
    linear-gradient(rgba(0, 229, 176, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 176, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: perspective(600px) rotateX(75deg);
  transform-origin: center top;
  animation: gridMove 10s linear infinite;
  mask-image: linear-gradient(to bottom, transparent, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 40%, transparent 100%);
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 30px; }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.orb-1 {
  width: 50vw;
  height: 50vw;
  background: rgba(0, 229, 176, 0.3);
  top: -20%;
  left: -10%;
  animation: float1 15s ease-in-out infinite alternate;
}

.orb-2 {
  width: 40vw;
  height: 40vw;
  background: rgba(0, 100, 255, 0.2);
  bottom: -10%;
  right: -10%;
  animation: float2 18s ease-in-out infinite alternate;
}

@keyframes float1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10vw, 10vh) scale(1.2); }
}

@keyframes float2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-10vw, -10vh) scale(0.8); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin-bottom: 250px; /* Offset for the absolute marquee at the bottom */
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.title-left .premium-geo {
  font-size: 2.3em;
  line-height: 0.85;
  font-family: var(--font-heading);
  font-weight: 400; /* Bebas Neue standard */
  margin-right: 0;
  letter-spacing: 2px;
}

.title-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 229, 176, 0.1);
  border: 1px solid rgba(0, 229, 176, 0.3);
  border-radius: 100px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(0, 229, 176, 0.1);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 176, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 229, 176, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 176, 0); }
}

/* Premium Title Text Effects */
.premium-geo {
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-right: 5px;
  filter: drop-shadow(0 0 20px rgba(0, 229, 176, 0.4));
}

.premium-white {
  color: #f8f9fa;
  font-weight: 800;
  display: inline-block;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.premium-sweep {
  font-weight: 800;
  background: linear-gradient(to right, #00e5b0 0%, #00e5b0 30%, #00b8ff 45%, #00b8ff 65%, #ffea00 72%, #ff00ea 78%, #00e5b0 85%, #00e5b0 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none !important;
  animation: shinePremium 6s linear infinite;
  display: inline-block;
  filter: drop-shadow(0 0 12px rgba(0, 229, 176, 0.4));
}

@keyframes shinePremium {
  to { background-position: 200% center; }
}

.reveal-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Search Bar */
.hero-search-bar {
  display: flex;
  align-items: center;
  background: rgba(10, 17, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 0.8rem 1.5rem;
  max-width: 650px;
  margin: 2rem auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-search-bar:hover {
  border-color: rgba(0, 229, 176, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(0, 229, 176, 0.1);
}

.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: var(--primary);
  flex-shrink: 0;
}

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

.search-text-wrapper {
  flex-grow: 1;
  text-align: left;
  font-size: 1.1rem;
  color: #ffffff;
  white-space: normal;
  line-height: 1.6;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background-color: var(--primary);
  margin-left: 4px;
  vertical-align: middle;
  transform: translateY(-2px);
  animation: blinkCursor 1s step-end infinite;
}

.search-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-dark);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.search-action:hover {
  transform: scale(1.1);
}

.search-action svg {
  width: 16px;
  height: 16px;
}

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

/* Marquee Ribbon */
.marquee-container {
  position: absolute;
  bottom: -125px; /* Center exactly on the boundary between sections */
  left: 0;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.marquee-wrapper {
  position: absolute;
  width: 120vw;
  left: -10vw;
  padding: 1rem 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

.is-tilted-right {
  transform: rotate(4deg);
  background-color: var(--primary);
  color: #000;
  z-index: 11;
}

.is-tilted-left {
  transform: rotate(-4deg);
  background-color: #ffffff;
  color: #000;
  z-index: 10;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.marquee-track.reverse {
  animation: scroll-reverse 25s linear infinite;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
}

.marquee-item {
  font-size: 1.5rem;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  font-weight: bold;
  letter-spacing: 1px;
}

.separator {
  margin-left: var(--spacing-md);
  opacity: 0.8;
}

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

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

/* New Comparison Table Design */
.comparison-section {
  padding-top: 14rem;
  padding-bottom: 4rem;
}

.comparison-table {
  position: relative;
  background: transparent;
  border-radius: var(--radius-lg);
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  z-index: 1;
}

.comparison-table::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 3000px; height: 3000px; /* Force perfect square to prevent conic-gradient distortion */
  background: conic-gradient(
    transparent, 
    rgba(0, 229, 176, 0.1) 20%, 
    var(--primary) 50%, 
    transparent 55%
  );
  animation: spin-border 4s linear infinite;
  z-index: -2;
  will-change: transform; /* Hint to browser for GPU acceleration */
}

.comparison-table::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--bg-card);
  border-radius: calc(var(--radius-lg) - 2px);
  z-index: -1;
}

@keyframes spin-border {
  0% { transform: translate3d(-50%, -50%, 0) rotate(0deg); }
  100% { transform: translate3d(-50%, -50%, 0) rotate(360deg); }
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.comp-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-col {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.1rem;
}

.comp-seo {
  color: rgba(255, 255, 255, 0.6);
}

.comp-center-label {
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  letter-spacing: 1px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-geo {
  color: var(--primary);
  font-weight: 500;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 176, 0.05));
  position: relative;
}

.comp-header-row {
  background: rgba(0, 0, 0, 0.3);
}

.comp-header-row .comp-col {
  padding: 2.5rem 2rem;
  font-size: 1.5rem;
}

.comp-header-row .comp-center-label {
  font-size: 1.2rem;
}

.comp-header-row .comp-geo {
  font-size: 1.8rem;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 176, 0.1));
}

@media (max-width: 768px) {
  .comp-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
      "label label"
      "seo geo";
    border-bottom: 2px solid rgba(0,0,0,0.5);
    padding: 0;
  }
  
  .comp-header-row {
    grid-template-areas: "seo geo";
    background: rgba(0, 0, 0, 0.4);
  }
  
  .comp-col {
    padding: 1.2rem 0.5rem;
    font-size: 0.95rem;
  }

  .comp-center-label {
    grid-area: label;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.6rem;
    background: rgba(255,255,255,0.05);
    font-size: 0.85rem;
  }

  .comp-header-row .comp-center-label {
    display: none; /* Hide VS on mobile */
  }

  .comp-seo {
    grid-area: seo;
    border-bottom: none;
    border-right: 1px dashed rgba(255,255,255,0.1);
  }

  .comp-geo {
    grid-area: geo;
  }

  .comp-header-row .comp-seo {
    font-size: 1.1rem;
    padding: 1.5rem 0.5rem;
  }

  .comp-header-row .comp-geo {
    font-size: 1.2rem;
    padding: 1.5rem 0.5rem;
  }
}

/* Advantages Section */
.advantages-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 229, 176, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0, 229, 176, 0.1);
}

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

.adv-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 229, 176, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.advantage-card:hover .adv-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(0, 229, 176, 0.2);
}

.adv-icon svg {
  width: 30px;
  height: 30px;
}

.adv-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.adv-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.adv-desc strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Global Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .hero-title > div {
    gap: 8px !important;
  }

  .premium-geo, .premium-white, .premium-sweep {
    font-size: 0.9em;
  }
  
  .hero-content {
    margin-bottom: 80px; 
  }

  .hero-search-bar {
    padding: 0.6rem 1rem;
    margin-top: 1.5rem;
    border-radius: 20px;
  }

  .search-text-wrapper {
    font-size: 0.9rem;
    white-space: normal;
  }

  .marquee-container {
    height: 120px;
    bottom: -60px; /* Center over the seam */
  }

  .marquee-item {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .marquee-wrapper {
    padding: 0.5rem 0;
  }
  .comparison-section {
    padding-top: 10rem;
    padding-bottom: 2rem;
  }
  .advantages-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cases-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .case-card {
    width: 280px !important;
  }
  .process-grid {
    flex-direction: column;
    gap: 3rem;
  }
  .process-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .step-connector {
    display: none;
  }
}

/* Section Headers (Used globally) */

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, var(--spacing-lg));
}

.section-header p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.section-title {
  font-size: clamp(1.8rem, 6vw, 3rem);
  margin-bottom: var(--spacing-xs);
}

/* Cases Section */
.cases-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.cases-marquee-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  margin-top: 3rem;
}

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

.cases-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.cases-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.cases-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding-right: 1.5rem;
  animation: scrollCases 45s linear infinite;
}

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

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

.case-card {
  width: calc((min(100vw - 2rem, 1200px - 2rem) - 3rem) / 3);
  flex-shrink: 0;
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 176, 0.3);
  box-shadow: 0 10px 30px rgba(0, 229, 176, 0.1);
}

.case-industry {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(0, 229, 176, 0.3);
  background: rgba(0, 229, 176, 0.1);
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.case-content {
  padding: 2rem;
}

.case-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}

.case-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Process Section */
.process-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.process-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  position: relative;
  gap: 1rem;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 2px solid rgba(0, 229, 176, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin: 0 auto 1.5rem auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 229, 176, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 176, 0.1);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

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

.step-connector {
  position: absolute;
  top: 39px;
  left: calc(50% + 50px);
  width: calc(100% - 100px);
  height: 2px;
  background-image: linear-gradient(90deg, rgba(0, 229, 176, 0.4) 50%, transparent 50%);
  background-size: 10px 2px;
  z-index: 1;
}

.step-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
  border-left: 8px solid rgba(0, 229, 176, 0.8);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* Footer */
.app-footer {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
}

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

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* Ambient Neon Glow behind Sections */
.advantages-section, .cases-section, .process-section {
  position: relative;
}

.advantages-section::before,
.cases-section::before,
.process-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  filter: blur(160px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.08;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.advantages-section::before {
  background: radial-gradient(circle, var(--primary) 0%, #b200ff 70%);
  animation-duration: 10s;
}

.cases-section::before {
  background: radial-gradient(circle, #00b8ff 0%, var(--primary) 70%);
  animation-duration: 12s;
  animation-delay: -2s;
}

.process-section::before {
  background: radial-gradient(circle, #b200ff 0%, #00b8ff 70%);
  animation-duration: 9s;
  animation-delay: -4s;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.05;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.12;
  }
}

/* Mobile background glow adjustments */
@media (max-width: 768px) {
  /* Hero Section Orbs */
  .orb-1 {
    width: 85vw;
    height: 85vw;
    filter: blur(60px);
    opacity: 0.6;
  }
  
  .orb-2 {
    width: 75vw;
    height: 75vw;
    filter: blur(50px);
    opacity: 0.4;
  }

  /* Comparison Section Rotating Glow */
  .comparison-table::before {
    width: 1500px;
    height: 1500px;
    filter: none;
    opacity: 1;
  }

  /* Section Background Glows */
  .advantages-section::before,
  .cases-section::before,
  .process-section::before {
    width: 95vw;
    height: 95vw;
    filter: blur(70px);
    opacity: 0.14;
    animation: pulseGlowMobile 8s ease-in-out infinite alternate;
  }
  
  .advantages-section::before {
    animation-duration: 10s;
  }
  
  .cases-section::before {
    animation-duration: 12s;
    animation-delay: -2s;
  }
  
  .process-section::before {
    animation-duration: 9s;
    animation-delay: -4s;
  }
}

@keyframes pulseGlowMobile {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.10;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.20;
  }
}

/* Scroll Reveal Animations */
.js-enabled .scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

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

/* Stagger delay utilities */
.js-enabled .scroll-reveal.delay-1 { transition-delay: 0.1s; }
.js-enabled .scroll-reveal.delay-2 { transition-delay: 0.2s; }
.js-enabled .scroll-reveal.delay-3 { transition-delay: 0.3s; }
.js-enabled .scroll-reveal.delay-4 { transition-delay: 0.4s; }
.js-enabled .scroll-reveal.delay-5 { transition-delay: 0.5s; }
.js-enabled .scroll-reveal.delay-6 { transition-delay: 0.6s; }
