/* ═══════════════════════════════════════════════
 DESIGN TOKENS
  ═══════════════════════════════════════════════ */
:root {
  --neon-lime: #89eb34;
  --lime-dark: #366B00;
  --deep-emerald: #051A14;
  --surface: #FFFFFF;
  --surface-low: #F3F4F6;
  --surface-mid: #EBF0EC;
  --outline-ghost: rgba(5, 26, 20, 0.08);
  --outline-strong: rgba(5, 26, 20, 0.14);
  --shadow-sm: 0px 4px 16px -4px rgba(5, 26, 20, 0.06);
  --shadow-md: 0px 24px 48px -12px rgba(5, 26, 20, 0.08);
  --shadow-lg: 0px 40px 80px -20px rgba(5, 26, 20, 0.12);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-xl: 1.5rem;
  --radius-pill: 999px;
}

/* ═══════════════════════════════════════════════
 RESET & BASE
  ═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--deep-emerald);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════
 NAV
  ═══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1200px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.75rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-pill);
  outline: 1px solid var(--outline-ghost);
  box-shadow: var(--shadow-md);
  animation: navDrop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-1rem);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--deep-emerald);
  letter-spacing: -0.02em;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  /* SVG is dark (#051A14) — fits naturally on the light nav background */
  filter: brightness(0) saturate(100%);
}

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

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(5, 26, 20, 0.65);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--neon-lime);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.nav-links a:hover::after {
  transform: translateX(-50%) scale(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-ghost {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--deep-emerald);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  outline: 1px solid var(--outline-ghost);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-ghost:hover {
  background: var(--surface-low);
}

.btn-primary {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--deep-emerald);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, var(--neon-lime) 0%, #6fc820 100%);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 20px -4px rgba(137, 235, 52, 0.5), 0 0 15px rgba(137, 235, 52, 0.2);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px -4px rgba(137, 235, 52, 0.6);
}

/* ═══════════════════════════════════════════════
 HERO SECTION
  ═══════════════════════════════════════════════ */
.hero-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(137, 235, 52, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 20% 30%, rgba(5, 26, 20, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

/* Left */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-low);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  width: fit-content;
  animation: fadeUp 0.6s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.badge-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-lime), #6fc820);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.badge-dot-inner {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--deep-emerald);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.badge-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(5, 26, 20, 0.65);
  letter-spacing: 0.01em;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--deep-emerald);
  animation: fadeUp 0.6s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-headline em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--deep-emerald);
  opacity: 0.35;
}

.hero-headline .accent {
  position: relative;
  white-space: nowrap;
}

.hero-headline .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--neon-lime), transparent);
  border-radius: 2px;
  opacity: 0.7;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(5, 26, 20, 0.55);
  max-width: 420px;
  animation: fadeUp 0.6s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 0.6s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-emerald);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, var(--neon-lime) 0%, #7ad62a 100%);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  text-decoration: none;
  box-shadow: 0 6px 28px -6px rgba(137, 235, 52, 0.55);
}

.btn-hero-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px -6px rgba(137, 235, 52, 0.65);
}

.btn-hero-primary .arrow-icon {
  width: 20px;
  height: 20px;
  background: var(--deep-emerald);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(5, 26, 20, 0.65);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  outline: 1.5px solid rgba(5, 26, 20, 0.12);
  cursor: pointer;
  transition: color 0.2s, outline-color 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-hero-ghost:hover {
  color: var(--deep-emerald);
  outline-color: rgba(5, 26, 20, 0.22);
  background: var(--surface-low);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 0.6s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid var(--surface);
  display: block;
  margin-left: -7px;
  flex-shrink: 0;
}

.trust-avatars span:first-child {
  margin-left: 0;
}

.av1 {
  background: linear-gradient(135deg, #b8f5a0, #7ad62a);
}

.av2 {
  background: linear-gradient(135deg, #a0d4f5, #4a9de0);
}

.av3 {
  background: linear-gradient(135deg, #f5c0a0, #e07a4a);
}

.av4 {
  background: linear-gradient(135deg, #d4a0f5, #9a4ae0);
}

.trust-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(5, 26, 20, 0.5);
  line-height: 1.4;
}

.trust-text strong {
  color: var(--deep-emerald);
  font-weight: 600;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

/* Right — Voice Visualizer */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.voice-orb-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

.orb-ambient {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 235, 52, 0.08) 0%, transparent 70%);
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

#waveCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.call-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--deep-emerald);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow:
    0 0 0 12px rgba(137, 235, 52, 0.10),
    0 0 0 24px rgba(137, 235, 52, 0.05),
    0 20px 48px -8px rgba(5, 26, 20, 0.35);
  z-index: 2;
  animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {

  0%,
  100% {
    box-shadow: 0 0 0 10px rgba(137, 235, 52, 0.08), 0 0 0 20px rgba(137, 235, 52, 0.04), 0 20px 48px -8px rgba(5, 26, 20, 0.35);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(137, 235, 52, 0.1), 0 0 0 28px rgba(137, 235, 52, 0.05), 0 20px 48px -8px rgba(5, 26, 20, 0.35);
  }
}

.call-orb-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.call-orb-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--neon-lime);
}

.call-orb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-lime);
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.orb-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.orb-bar {
  width: 3px;
  border-radius: 2px;
  background: var(--neon-lime);
  transform-origin: bottom;
  animation: barAnim var(--d) ease-in-out infinite alternate;
}

@keyframes barAnim {
  from {
    height: var(--min-h);
  }

  to {
    height: var(--max-h);
  }
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--surface);
  border-radius: 1rem;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  outline: 1px solid var(--outline-ghost);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.float-card-text {
  line-height: 1.3;
}

.float-card-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(5, 26, 20, 0.45);
}

.float-card-value {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep-emerald);
}

.card-meeting {
  top: 14%;
  right: -6%;
}

.card-leads {
  bottom: 22%;
  left: -8%;
}

.card-live {
  bottom: 8%;
  right: 0%;
}

.card-meeting {
  animation: cardIn 0.6s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both, floatA 5s 1.3s ease-in-out infinite;
}

.card-leads {
  animation: cardIn 0.6s 0.9s cubic-bezier(0.22, 1, 0.36, 1) both, floatB 5.5s 1.5s ease-in-out infinite;
}

.card-live {
  animation: cardIn 0.6s 1.1s cubic-bezier(0.22, 1, 0.36, 1) both, floatA 4.5s 1.6s ease-in-out infinite;
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(8px) rotate(-0.5deg);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.icon-green {
  background: rgba(137, 235, 52, 0.15);
}

.icon-blue {
  background: rgba(74, 157, 224, 0.12);
}

.icon-orange {
  background: rgba(255, 145, 77, 0.12);
}

/* ═══════════════════════════════════════════════
 LOGO STRIP
  ═══════════════════════════════════════════════ */
.logo-strip {
  background: var(--surface-low);
  padding: 2.5rem 0;
  overflow: hidden;
}

.logo-strip-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(5, 26, 20, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.logo-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scrollLogos 28s linear infinite;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.32;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.logo-item:hover {
  opacity: 0.65;
}

.logo-item span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-emerald);
  letter-spacing: -0.02em;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--deep-emerald);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
 PROBLEM / SOLUTION SECTION
  ═══════════════════════════════════════════════ */
.ps-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.ps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(5, 26, 20, 0.08) 30%, rgba(5, 26, 20, 0.08) 70%, transparent);
}

.ps-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 10% 60%, rgba(137, 235, 52, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 30%, rgba(5, 26, 20, 0.025) 0%, transparent 70%);
  pointer-events: none;
}

.ps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* PS Left */
.ps-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 7rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.ps-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(5, 26, 20, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label-line {
  width: 24px;
  height: 1.5px;
  background: var(--neon-lime);
  border-radius: 2px;
}

.ps-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.ps-headline .strike {
  position: relative;
  display: inline-block;
  color: rgba(5, 26, 20, 0.25);
}

.ps-headline .strike::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(5, 26, 20, 0.2);
  transform: translateY(-50%);
}

.ps-headline .punch {
  position: relative;
}

.ps-headline .punch .lime-underline {
  display: block;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--neon-lime) 0%, rgba(137, 235, 52, 0) 100%);
  border-radius: 3px;
  opacity: 0.55;
}

.ps-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ps-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(5, 26, 20, 0.55);
  max-width: 400px;
}

.ps-body p strong {
  color: var(--deep-emerald);
  font-weight: 600;
}

.ps-quote {
  padding: 1.2rem 1.4rem;
  background: var(--surface-low);
  border-radius: 1rem;
  border-left: 3px solid var(--neon-lime);
  position: relative;
}

.ps-quote p {
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(5, 26, 20, 0.6);
  line-height: 1.6;
  max-width: none;
}

.ps-quote-marks {
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--neon-lime);
  font-family: Georgia, serif;
  opacity: 0.6;
}

.ps-solution-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(137, 235, 52, 0.12), rgba(137, 235, 52, 0.06));
  border: 1px solid rgba(137, 235, 52, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  width: fit-content;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-lime);
  animation: pillPulse 2s ease-in-out infinite;
}

@keyframes pillPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.25);
  }
}

.pill-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lime-dark);
}

/* PS Right — stat cards */
.ps-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  outline: 1px solid var(--outline-ghost);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0 1.5rem;
  align-items: center;
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    outline-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  outline-color: rgba(137, 235, 52, 0.4);
  box-shadow: 0 20px 40px -10px rgba(5, 26, 20, 0.08), 0 0 0 1px rgba(137, 235, 52, 0.2);
  transform: translateY(-4px) !important;
  background: #fff;
}

.stat-card.accent {
  background: linear-gradient(135deg, var(--deep-emerald) 0%, #0a2a20 100%);
  outline: 1px solid rgba(137, 235, 52, 0.2);
  box-shadow: var(--shadow-sm), inset 0 0 20px rgba(137, 235, 52, 0.05);
}

.stat-card.accent::before {
  content: 'HIGH PRIORITY';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--neon-lime);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.stat-card.accent:hover {
  outline-color: rgba(137, 235, 52, 0.6);
  box-shadow: 0 30px 60px -12px rgba(5, 26, 20, 0.5), 0 0 0 1px rgba(137, 235, 52, 0.3);
}

/* Solution Variant */
.stat-card.solution {
  background: linear-gradient(135deg, #ffffff 0%, rgba(137, 235, 52, 0.03) 100%);
  outline: 1px solid rgba(137, 235, 52, 0.3);
  box-shadow: 0 10px 30px -10px rgba(137, 235, 52, 0.1);
}

.stat-card.solution:hover {
  outline-color: var(--neon-lime);
  box-shadow: 0 20px 40px -10px rgba(137, 235, 52, 0.15);
  background: #ffffff;
}

.stat-card.solution .stat-num-main {
  color: #4da600;
  /* Darker, more positive green */
  text-shadow: 0 0 15px rgba(137, 235, 52, 0.2);
}

.stat-card.solution .stat-label-small {
  color: #4da600;
  opacity: 0.7;
}

.stat-card.solution .stat-title {
  color: var(--deep-emerald);
}

.stat-card.solution .stat-bar-fill {
  background: linear-gradient(90deg, var(--neon-lime), #4da600);
}

.stat-number-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 90px;
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
}

.stat-num-main {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--neon-lime);
}

.stat-num-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-lime);
  opacity: 0.75;
  margin-left: 2px;
}

.stat-card:not(.accent) .stat-num-main {
  color: var(--deep-emerald);
}

.stat-card:not(.accent) .stat-num-suffix {
  color: var(--neon-lime);
  opacity: 1;
}

.stat-label-small {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(5, 26, 20, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-card.accent .stat-label-small {
  color: rgba(255, 255, 255, 0.35);
}

.stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--outline-ghost);
}

.stat-card.accent .stat-divider {
  background: rgba(255, 255, 255, 0.08);
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.stat-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.stat-card.accent .stat-title {
  color: #fff;
}

.stat-desc {
  font-size: 0.83rem;
  line-height: 1.55;
  color: rgba(5, 26, 20, 0.5);
}

.stat-card.accent .stat-desc {
  color: rgba(255, 255, 255, 0.45);
}

.stat-desc strong {
  color: var(--deep-emerald);
  font-weight: 600;
}

.stat-card.accent .stat-desc strong {
  color: #fff;
}

.stat-bar-wrap {
  margin-top: 0.4rem;
  background: rgba(5, 26, 20, 0.06);
  border-radius: var(--radius-pill);
  height: 5px;
  overflow: hidden;
}

.stat-card.accent .stat-bar-wrap {
  background: rgba(255, 255, 255, 0.08);
}

.stat-bar-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--neon-lime);
  width: 0%;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-bar-fill.danger {
  background: rgba(255, 90, 60, 0.75);
}

.stat-bar-fill.warn {
  background: rgba(255, 176, 59, 0.85);
}

.stat-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.67rem;
  font-weight: 600;
  width: fit-content;
  margin-top: 0.15rem;
}

.tag-danger {
  background: rgba(255, 71, 71, 0.08);
  color: #ff4747;
  border: 1px solid rgba(255, 71, 71, 0.1);
}

.tag-warn {
  background: rgba(255, 171, 0, 0.08);
  color: #ffab00;
  border: 1px solid rgba(255, 171, 0, 0.1);
}

.tag-lime {
  background: rgba(137, 235, 52, 0.1);
  color: #5bb300;
  border: 1px solid rgba(137, 235, 52, 0.2);
}

.ps-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.6rem;
  background: var(--surface-low);
  border-radius: 1.25rem;
  outline: 1px solid var(--outline-ghost);
  gap: 1rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.6s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}

.ps-cta-strip.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-strip-copy {
  font-size: 0.83rem;
  color: rgba(5, 26, 20, 0.55);
  line-height: 1.45;
}

.cta-strip-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep-emerald);
  margin-bottom: 1px;
}

.btn-cta-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--deep-emerald);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, var(--neon-lime) 0%, #7ad62a 100%);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 20px -4px rgba(137, 235, 52, 0.5);
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-cta-strip:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px -4px rgba(137, 235, 52, 0.6);
}

/* ═══════════════════════════════════════════════
 HOW IT WORKS SECTION
  ═══════════════════════════════════════════════ */
.hiw-section {
  padding: 7rem 0 8rem;
  background: var(--deep-emerald);
  position: relative;
  overflow: hidden;
}

/* Ambient texture */
.hiw-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(137, 235, 52, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(137, 235, 52, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid dot pattern overlay */
.hiw-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(137, 235, 52, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hiw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Section header */
.hiw-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hiw-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.hiw-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(137, 235, 52, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hiw-overline-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon-lime);
  opacity: 0.7;
}

.hiw-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hiw-title .lime {
  color: var(--neon-lime);
}

.hiw-subtitle {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Steps track */
.hiw-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

/* Connector between cards */
.hiw-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3.6rem;
  /* align with icon center */
  gap: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hiw-connector.visible {
  opacity: 1;
}

.connector-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(137, 235, 52, 0.3) 0%, var(--neon-lime) 50%, rgba(137, 235, 52, 0.3) 100%);
  position: relative;
  overflow: visible;
}

.connector-line::before,
.connector-line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-lime);
}

.connector-line::before {
  left: 0;
  opacity: 0.5;
}

.connector-line::after {
  right: 0;
  opacity: 0.5;
}

/* Animated flow dot */
.connector-dot {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-lime);
  box-shadow: 0 0 12px var(--neon-lime);
  opacity: 0;
}

.hiw-connector.visible .connector-dot {
  animation: glideDot 3s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes glideDot {
  0% {
    left: 0;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }

  80% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    left: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
}

.connector-arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(137, 235, 52, 0.6);
  margin-left: -2px;
  flex-shrink: 0;
  align-self: center;
}

/* Step card */
.hiw-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  cursor: default;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.hiw-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.hiw-step:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(137, 235, 52, 0.25);
  box-shadow: 0 0 0 1px rgba(137, 235, 52, 0.12), 0 24px 48px -12px rgba(0, 0, 0, 0.4);
}

/* Active/featured step */
.hiw-step.featured {
  background: rgba(137, 235, 52, 0.07);
  border-color: rgba(137, 235, 52, 0.3);
}

.hiw-step.featured:hover {
  background: rgba(137, 235, 52, 0.10);
  border-color: rgba(137, 235, 52, 0.45);
}

/* Step number badge */
.step-num {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(137, 235, 52, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hiw-step.featured .step-num {
  color: var(--neon-lime);
}

/* Icon container */
.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hiw-step:hover .step-icon-wrap {
  transform: scale(1.08);
}

.hiw-step.featured .step-icon-wrap {
  background: rgba(137, 235, 52, 0.15);
  border-color: rgba(137, 235, 52, 0.3);
}

/* Step copy */
.step-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

.step-desc strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* Detail chips at bottom of card */
.step-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.step-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.hiw-step.featured .step-chip {
  background: rgba(137, 235, 52, 0.08);
  border-color: rgba(137, 235, 52, 0.18);
  color: rgba(137, 235, 52, 0.7);
}

/* Bottom CTA row */
.hiw-cta {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.hiw-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.hiw-cta-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
}

.btn-hiw-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep-emerald);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, var(--neon-lime) 0%, #7ad62a 100%);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  text-decoration: none;
  box-shadow: 0 6px 28px -6px rgba(137, 235, 52, 0.5);
}

.btn-hiw-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px -6px rgba(137, 235, 52, 0.65);
}

.btn-hiw-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-hiw-ghost:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════
 FEATURES GRID SECTION
  ═══════════════════════════════════════════════ */
.features-section {
  padding: 8rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.features-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--deep-emerald);
  margin-bottom: 1rem;
}

.features-title .accent {
  color: var(--neon-lime);
  text-shadow: 0 0 20px rgba(137, 235, 52, 0.2);
}

.features-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(5, 26, 20, 0.5);
  max-width: 540px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--outline-ghost);
  border-radius: 1.75rem;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(25px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(5, 26, 20, 0.1), 0 0 0 1px rgba(137, 235, 52, 0.2);
  border-color: rgba(137, 235, 52, 0.3);
  background: #ffffff;
}

/* Masonry variations */
.feature-card.large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 3rem;
}

.feature-card.wide {
  grid-column: span 2;
}

.feature-card.high {
  grid-row: span 2;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--surface-low);
  color: var(--deep-emerald);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  background: var(--neon-lime);
  transform: scale(1.1) rotate(5deg);
}

.feature-card.large .feature-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.feature-card.large .feature-icon-box svg {
  width: 32px;
  height: 32px;
}

.feature-content {
  flex: 1;
}

.feature-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--deep-emerald);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.feature-card.large .feature-name {
  font-size: 1.85rem;
  background: linear-gradient(135deg, var(--deep-emerald) 0%, rgba(5, 26, 20, 0.7) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(5, 26, 20, 0.55);
}

.feature-card.large .feature-desc {
  font-size: 1.1rem;
  max-width: 400px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(137, 235, 52, 0.1);
  color: var(--lime-dark);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: auto;
  width: fit-content;
}

/* Special visual elements for large card */
.feature-visual-wrap {
  margin-top: 1.5rem;
  background: var(--surface-low);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--outline-ghost);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visual-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(5, 26, 20, 0.05);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.visual-line-fill {
  height: 100%;
  background: var(--neon-lime);
  width: 0%;
  transition: width 1.5s ease-out 0.5s;
}

/* ═══════════════════════════════════════════════
 RESPONSIVE
  ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

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

  .hero-right {
    margin: 0 auto;
  }

  .voice-orb-wrap {
    width: 320px;
    height: 320px;
  }

  .call-orb {
    width: 90px;
    height: 90px;
  }

  nav {
    top: 0.75rem;
    width: calc(100% - 2rem);
  }

  .nav-links {
    display: none;
  }

  .card-meeting {
    right: -2%;
  }

  .card-leads {
    left: -2%;
  }

  .ps-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ps-left {
    position: static;
  }

  .stat-card {
    padding: 1.3rem 1.4rem;
  }

  .stat-num-main {
    font-size: 2.5rem;
  }

  .hiw-track {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hiw-connector {
    display: none;
  }

  .hiw-step {
    padding: 1.75rem 1.5rem;
  }

  .hiw-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .feature-card.large,
  .feature-card.wide,
  .feature-card.high {
    grid-column: span 1;
    grid-row: span 1;
    padding: 2rem;
  }
}

/* ═══════════════════════════════════════════════
 COMPARISON SECTION (Old vs Binate)
  ═══════════════════════════════════════════════ */
.comp-section {
  padding: 8rem 0;
  background: #ffffff;
  position: relative;
}

.comp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.comp-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.comp-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.comp-grid-wrap {
  position: relative;
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.comp-card {
  border-radius: 2.5rem;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.comp-card.left {
  background: #08120f;
  color: rgba(255, 255, 255, 0.4);
  transform: translateX(-40px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-card.right {
  background: linear-gradient(135deg, #ffffff 0%, #f7f9f7 100%);
  color: var(--deep-emerald);
  border: 1px solid rgba(137, 235, 52, 0.25);
  transform: translateX(40px);
  box-shadow: 0 40px 100px -20px rgba(137, 235, 52, 0.15), 0 20px 40px -10px rgba(5, 26, 20, 0.05);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.comp-card.right:hover {
  transform: translateX(0) scale(1.02);
  box-shadow: 0 50px 120px -20px rgba(137, 235, 52, 0.25);
}

.comp-card.right .comp-card-title {
  color: var(--deep-emerald);
  background: linear-gradient(135deg, var(--deep-emerald) 0%, #1a4a3a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.comp-card.right::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2.5rem;
  padding: 1px;
  background: linear-gradient(135deg, var(--neon-lime), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.comp-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.comp-card-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  display: block;
}

.comp-card.left .comp-card-label {
  color: rgba(255, 255, 255, 0.3);
}

.comp-card.right .comp-card-label {
  color: var(--lime-dark);
}

.comp-card-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
}

.comp-card.right .comp-card-title {
  color: var(--deep-emerald);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
}

.comp-item-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.75rem;
  font-weight: 800;
}

.comp-card.left .comp-item-icon {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
}

.comp-card.right .comp-item-icon {
  background: var(--neon-lime);
  color: var(--deep-emerald);
}

.comp-item-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.85);
}

.comp-card.right .comp-item-text strong {
  color: var(--deep-emerald);
}

.comp-item-text p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.comp-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: #fff;
  border: 8px solid #fff;
  outline: 1px solid var(--outline-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--deep-emerald);
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

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

  .comp-card {
    padding: 2.5rem 2rem;
  }

  .comp-vs {
    display: none;
  }

  .comp-card.left,
  .comp-card.right {
    transform: translateY(20px);
  }
}

/* ═══════════════════════════════════════════════
 OUTCOMES SECTION — enhanced
  ═══════════════════════════════════════════════ */
.outcomes-section {
  padding: 9rem 0 8rem;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid texture */
.outcomes-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(5, 26, 20, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Lime glow top-right */
.outcomes-section::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 235, 52, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.outcomes-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.outcomes-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.outcomes-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--deep-emerald);
}

.outcomes-headline .lime {
  color: var(--neon-lime);
}

.outcomes-right-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 0.25rem;
}

.outcomes-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(5, 26, 20, 0.5);
}

.outcomes-cta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Main outcomes grid */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.outcome-card {
  background: var(--surface-low);
  border-radius: 1.75rem;
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s, background 0.3s;
}

.outcome-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.outcome-card:hover {
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) !important;
}

/* Featured wide card spans full 3 columns */
.outcome-card.featured-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  background: var(--deep-emerald);
  padding: 3rem 3.5rem;
}

.outcome-card.featured-wide:hover {
  background: #0a2a20;
  box-shadow: 0 40px 80px -20px rgba(5, 26, 20, 0.25);
}

.outcome-card.featured-wide .outcome-body {
  flex: 1;
}

/* Stat big number */
.outcome-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex-shrink: 0;
}

.outcome-stat-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--neon-lime);
}

.outcome-stat-unit {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(137, 235, 52, 0.6);
  margin-left: 2px;
}

.outcome-stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(137, 235, 52, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Regular card stat */
.outcome-card:not(.featured-wide) .outcome-stat-num {
  font-size: 3rem;
  color: var(--deep-emerald);
}

.outcome-card:not(.featured-wide) .outcome-stat-unit {
  color: var(--neon-lime);
}

.outcome-card:not(.featured-wide) .outcome-stat-label {
  color: rgba(5, 26, 20, 0.35);
}

.outcome-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}

.outcome-card:not(.featured-wide) .outcome-icon-wrap {
  background: var(--surface);
}

.outcome-card:hover .outcome-icon-wrap {
  transform: scale(1.12) rotate(6deg);
  background: var(--neon-lime);
}

.outcome-card:hover .outcome-icon-wrap svg {
  color: var(--deep-emerald);
}

.outcome-card.featured-wide:hover .outcome-icon-wrap {
  background: rgba(137, 235, 52, 0.25);
}

.outcome-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.outcome-card:not(.featured-wide) .outcome-icon-wrap svg {
  color: rgba(5, 26, 20, 0.55);
}

.outcome-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--deep-emerald);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.outcome-card.featured-wide .outcome-title {
  font-size: 1.6rem;
  color: #fff;
}

.outcome-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(5, 26, 20, 0.5);
}

.outcome-card.featured-wide .outcome-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
}

/* Visual separator line in wide card */
.outcome-wide-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* Ticker bar at bottom of wide card */
.outcome-ticker {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.outcome-ticker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.outcome-ticker-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--neon-lime);
  line-height: 1;
}

.outcome-ticker-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.outcome-ticker-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* Progress bar inside regular cards */
.outcome-bar-wrap {
  margin-top: auto;
  height: 4px;
  background: rgba(5, 26, 20, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.outcome-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--neon-lime);
  width: 0%;
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

  .outcome-card.featured-wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem 2rem;
  }

  .outcome-ticker {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .outcome-wide-divider {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
 CTA BANNER SECTION
  ═══════════════════════════════════════════════ */
.cta-banner-section {
  padding: 0 1.5rem 7rem;
  background: var(--surface);
  position: relative;
  z-index: 1;
}

.cta-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--deep-emerald);
  border-radius: 2.5rem;
  padding: 6rem 5rem;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-banner-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ambient glows inside the banner */
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 235, 52, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: 200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 235, 52, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Dot grid on banner */
.cta-banner-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-banner-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.cta-banner-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(137, 235, 52, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-banner-overline-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon-lime);
  opacity: 0.7;
  animation: blink 1.4s ease-in-out infinite;
}

.cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.cta-banner-headline .lime {
  color: var(--neon-lime);
}

.cta-banner-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
  max-width: 480px;
}

/* Trust chips row */
.cta-banner-chips {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.cta-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-lime);
  opacity: 0.8;
}

.cta-banner-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
  flex-shrink: 0;
}

.btn-cta-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-emerald);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, var(--neon-lime) 0%, #7ad62a 100%);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  text-decoration: none;
  box-shadow: 0 8px 32px -6px rgba(137, 235, 52, 0.55);
  white-space: nowrap;
}

.btn-cta-banner:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 40px -6px rgba(137, 235, 52, 0.7);
}

.btn-cta-banner .arrow-icon {
  width: 24px;
  height: 24px;
  background: var(--deep-emerald);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.btn-cta-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta-ghost-dark:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

/* 48h badge */
.cta-time-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(137, 235, 52, 0.10);
  border: 1px solid rgba(137, 235, 52, 0.2);
  border-radius: 1rem;
  padding: 0.85rem 1.2rem;
}

.cta-time-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--neon-lime);
  line-height: 1;
}

.cta-time-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(137, 235, 52, 0.55);
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .cta-banner-inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 2rem;
  }

  .cta-banner-right {
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════
 FOOTER
  ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
 PRICING SECTION
  ═══════════════════════════════════════════════ */
.pricing-section {
  padding: 8rem 1.5rem;
  background: var(--surface);
  position: relative;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.price-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--outline-ghost);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(30px);
}

.price-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card:hover {
  border-color: rgba(137, 235, 52, 0.3);
  box-shadow: 0 40px 80px -20px rgba(5, 26, 20, 0.08);
  transform: translateY(-10px);
}

.price-card.featured {
  background: linear-gradient(145deg, #08120f 0%, #051A14 100%);
  color: #ffffff;
  border: 1px solid rgba(137, 235, 52, 0.2);
  box-shadow: 0 40px 100px -20px rgba(5, 26, 20, 0.4), 0 0 0 1px rgba(137, 235, 52, 0.1);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 50px 120px -20px rgba(5, 26, 20, 0.5), 0 0 0 1px rgba(137, 235, 52, 0.3);
}

.price-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--neon-lime);
  color: var(--deep-emerald);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-header {
  margin-bottom: 2rem;
}

.price-tier {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--lime-dark);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.85rem;
  background: rgba(137, 235, 52, 0.1);
  border-radius: var(--radius-pill);
}

.price-card.featured .price-tier {
  color: var(--neon-lime);
  background: rgba(137, 235, 52, 0.08);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--deep-emerald);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-card.featured .price-amount {
  color: #ffffff;
}

.price-amount .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(5, 26, 20, 0.35);
}

.price-card.featured .price-amount .currency {
  color: rgba(255, 255, 255, 0.35);
}

.price-amount .period {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(5, 26, 20, 0.35);
}

.price-card.featured .price-amount .period {
  color: rgba(255, 255, 255, 0.35);
}

.price-target {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(5, 26, 20, 0.5);
}

.price-card.featured .price-target {
  color: rgba(255, 255, 255, 0.5);
}

.price-divider {
  height: 1px;
  background: var(--outline-ghost);
  margin-bottom: 2.5rem;
}

.price-card.featured .price-divider {
  background: rgba(255, 255, 255, 0.1);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-grow: 1;
}

.price-features li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--deep-emerald);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-card.featured .price-features li {
  color: #ffffff;
}

.price-features .check {
  color: var(--neon-lime);
  font-weight: 800;
}

.btn-price-ghost {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--outline-strong);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-emerald);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-price-ghost:hover {
  background: var(--surface-low);
  border-color: var(--deep-emerald);
}

.btn-price-primary {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--neon-lime) 0%, #7ad62a 100%);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-emerald);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  box-shadow: 0 8px 32px -6px rgba(137, 235, 52, 0.5);
}

.btn-price-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px -6px rgba(137, 235, 52, 0.65);
}

@media (max-width: 1100px) {
  .price-card.featured {
    transform: scale(1);
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }
}

.footer {

  background: var(--deep-emerald);
  padding: 5rem 1.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(137, 235, 52, 0.25) 30%, rgba(137, 235, 52, 0.25) 70%, transparent 100%);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.footer-logo-mark {
  width: 34px;
  height: 34px;
  background: rgba(137, 235, 52, 0.12);
  border: 1px solid rgba(137, 235, 52, 0.2);
  border-radius: 9px;
  display: grid;
  place-items: center;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  /* Invert dark SVG to white for the dark footer background */
  filter: brightness(0) saturate(100%) invert(1);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.35);
  max-width: 280px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: rgba(255, 255, 255, 0.4);
}

.social-btn:hover {
  background: rgba(137, 235, 52, 0.12);
  border-color: rgba(137, 235, 52, 0.25);
  color: var(--neon-lime);
  transform: translateY(-2px) scale(1.05);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-col-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
  position: relative;
  width: fit-content;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-lime);
  transition: width 0.25s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links a:hover::after {
  width: 100%;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.55);
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(137, 235, 52, 0.08);
  border: 1px solid rgba(137, 235, 52, 0.15);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(137, 235, 52, 0.55);
}

.footer-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon-lime);
  opacity: 0.7;
  animation: blink 1.6s ease-in-out infinite;
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

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

/* ═══════════════════════════════════════════════
 FORM COMPONENTS
  ═══════════════════════════════════════════════ */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

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

.form-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--deep-emerald);
  opacity: 0.8;
  margin-left: 0.25rem;
}

.form-input,
.form-select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--deep-emerald);
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1.5px solid var(--outline-ghost);
  border-radius: 0.85rem;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  outline: none;
}

.form-input::placeholder {
  color: rgba(5, 26, 20, 0.3);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--neon-lime);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(137, 235, 52, 0.12);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23051A14' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}