:root {
  --navy: #0a0a0a;
  --lime: #d7f15f;
  --ice: #f0f0f0;
  --dark: #111111;
  --navy-light: #161616;
  --navy-dark: #050505;
  --lime-hover: #c5e040;
  --gray-600: #6b7280;
  --gray-400: #9ca3af;
  --white: #ffffff;
  --whatsapp: #25D366;
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --noise-bg: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--ice);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  padding: 10px 20px; background: var(--lime); color: var(--navy);
  font-weight: 700; border-radius: 8px; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ===== UTILITIES ===== */
/* Anchor scroll offset — prevents content hiding behind fixed header */
[id] {
  scroll-margin-top: 100px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 12px; font-weight: 700;
  font-size: 16px; text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer; border: none; font-family: inherit;
}
.btn:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 8px;
}
.btn-primary {
  background: var(--lime); color: var(--navy);
}
.btn-primary:hover {
  background: var(--lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(215,241,95,0.35);
}
.btn-secondary {
  background: transparent; color: var(--ice);
  border: 2px solid rgba(240,240,240,0.25);
}
.btn-secondary:hover { border-color: var(--lime); color: var(--lime); }
.btn-sm { padding: 11px 22px; font-size: 14px; }

.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  background: rgba(215,241,95,0.1); color: var(--lime); margin-bottom: 18px;
  border: 1px solid rgba(215,241,95,0.2);
}
.section-title {
  font-size: clamp(34px, 4.5vw, 56px); font-weight: 800; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 18px; color: rgba(240,240,240,0.68);
  max-width: 640px; line-height: 1.75;
}
.highlight { color: var(--lime); }

/* Gradient divider */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(215,241,95,0.4) 50%, transparent 100%);
  margin: 0;
}
/* ===== GLOBAL KEYFRAMES ===== */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-120px) translateX(40px) scale(0); opacity: 0; }
}

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

@keyframes countGlow {
  0%, 100% { text-shadow: 0 0 0px transparent; }
  50% { text-shadow: 0 0 24px rgba(215,241,95,0.6), 0 0 48px rgba(215,241,95,0.3); }
}

@keyframes borderRotate {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

@keyframes waveMove {
  0% { d: path("M0,32 C40,48 80,16 120,32 C160,48 200,16 240,32 L240,64 L0,64 Z"); }
  50% { d: path("M0,32 C40,16 80,48 120,32 C160,16 200,48 240,32 L240,64 L0,64 Z"); }
  100% { d: path("M0,32 C40,48 80,16 120,32 C160,48 200,16 240,32 L240,64 L0,64 Z"); }
}

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

@keyframes meshMove {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(2%, 1%); }
}

/* ===== PARTICLES ===== */
.particles-container {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  background: var(--lime); opacity: 0;
  animation: floatParticle var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,241,95,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
}
.cursor-glow.hidden { opacity: 0; }

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 64px;
}

/* ===== DIAGONAL DIVIDER ===== */
.diagonal-divider {
  position: relative;
  overflow: hidden;
}
.diagonal-divider::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--navy);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Staggered children */
.stagger-children > * {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.stagger-children.revealed > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.stagger-children.revealed > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 120ms; }
.stagger-children.revealed > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 240ms; }
.stagger-children.revealed > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 360ms; }
.stagger-children.revealed > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 480ms; }
.stagger-children.revealed > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 600ms; }
.stagger-children.revealed > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 720ms; }
.stagger-children.revealed > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 840ms; }
.stagger-children.revealed > *:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 960ms; }
.stagger-children.revealed > *:nth-child(n+10) { opacity: 1; transform: translateY(0); transition-delay: 1080ms; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .stagger-children > * {
    opacity: 1; transform: none;
  }
  .pipeline-rail::after { transition: none; }
  .mini-bar { transition: none; }
  .floating-card { animation: none; }
  .hero::before { animation: none; }
  .cursor-glow { display: none; }
  .marquee-track { animation: none; }
  .orbit-ring { animation: none; }
  .testimonial-carousel { transition: none; }
  .particles-container { display: none; }
  .hero-mesh { animation: none; }
  .hero-orb-glow { animation: none; }
}
/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  z-index: 50;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(240,240,240,0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(5,5,5,0.95);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo svg { height: 88px; width: auto; }
.logo:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 8px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: rgba(240,240,240,0.65); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}
.nav a:hover { color: var(--lime); }
.nav a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 4px;
}
.header-cta { display: flex; gap: 10px; align-items: center; }

/* Mobile menu button */
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px; transition: background 0.2s;
}
.mobile-menu-btn:hover { background: rgba(240,240,240,0.08); }
.mobile-menu-btn:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}
.mobile-menu-btn svg { width: 26px; height: 26px; color: var(--ice); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 40;
  background: rgba(5,5,5,0.97);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0; transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
  display: flex; opacity: 1;
}
.mobile-nav-overlay a {
  font-size: 24px; font-weight: 700; color: var(--ice);
  text-decoration: none; transition: color 0.2s;
}
.mobile-nav-overlay a:hover { color: var(--lime); }
.mobile-nav-overlay a.btn-primary { color: var(--navy); font-size: 18px; }
.mobile-nav-overlay a.btn-primary:hover { color: var(--navy); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; cursor: pointer;
  color: var(--ice); font-size: 28px; line-height: 1;
}

/* ===== FOOTER ===== */
.footer { padding: 64px 0 32px; border-top: 1px solid rgba(240,240,240,0.06); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-brand {
  display: flex; flex-direction: column; align-items: flex-start;
}
.footer-brand p {
  font-size: 14px; color: rgba(240,240,240,0.45); margin-top: 20px;
  max-width: 340px; line-height: 1.7;
}
.footer-brand .logo { display: inline-block; }
.footer-brand .logo svg { height: 88px; }
.footer-col h4 {
  font-size: 13px; font-weight: 700; margin-bottom: 16px;
  color: var(--lime); letter-spacing: 0.5px; text-transform: uppercase;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(240,240,240,0.45);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--ice); }
.footer-col a:focus-visible {
  outline: 2px solid var(--lime); outline-offset: 2px; border-radius: 4px;
}
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(240,240,240,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(240,240,240,0.28); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(240,240,240,0.05); display: flex;
  align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.2s; text-decoration: none;
}
.footer-social a:hover { background: rgba(215,241,95,0.15); transform: translateY(-2px); }
.footer-social a:focus-visible {
  outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 10px;
}
.footer-social a svg { width: 17px; height: 17px; color: var(--ice); }

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown {
  position: relative; margin: 0 8px;
}
.lang-current {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 10px;
  border: 1px solid rgba(215,241,95,0.25);
  background: rgba(215,241,95,0.08);
  color: var(--lime); font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit; line-height: 1;
  transition: all 0.2s;
}
.lang-current:hover { background: rgba(215,241,95,0.15); }
.lang-current:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; }
.lang-current .lang-arrow {
  font-size: 10px; transition: transform 0.2s;
}
.lang-dropdown.open .lang-arrow { transform: rotate(180deg); }
.lang-list {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(5,5,5,0.96); backdrop-filter: blur(20px);
  border: 1px solid rgba(240,240,240,0.1); border-radius: 12px;
  padding: 6px; min-width: 140px; z-index: 60;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.lang-dropdown.open .lang-list { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 14px; border-radius: 8px; border: none;
  background: transparent; color: rgba(240,240,240,0.65);
  font-size: 14px; font-weight: 500; cursor: pointer;
  font-family: inherit; transition: all 0.15s; text-align: left;
}
.lang-option:hover { background: rgba(215,241,95,0.08); color: var(--ice); }
.lang-option.active { color: var(--lime); background: rgba(215,241,95,0.1); }
.lang-option .lang-flag { font-size: 18px; }
.lang-option .lang-label { flex: 1; }
.lang-option .lang-check { font-size: 14px; color: var(--lime); }

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 30;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: floatBtn 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.whatsapp-float:focus-visible {
  outline: 2px solid var(--lime); outline-offset: 4px; border-radius: 50%;
}
.whatsapp-float svg { width: 30px; height: 30px; color: white; }
@keyframes floatBtn {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.whatsapp-float:hover { animation: none; }

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
  padding: 14px 20px 22px; background: rgba(5,5,5,0.96);
  border-top: 1px solid rgba(215,241,95,0.2);
  backdrop-filter: blur(20px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-sticky-cta.visible { transform: translateY(0); }
.mobile-sticky-cta .btn { width: 100%; justify-content: center; }
/* ===== HERO ===== */
.hero {
  padding: 200px 0 120px;
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
}

/* Animated grid background */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(215,241,95,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215,241,95,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 80%);
}

/* Mesh gradient overlay */
.hero-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 50%, rgba(215,241,95,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 20%, rgba(240,240,240,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 50% 90%, rgba(215,241,95,0.05) 0%, transparent 50%);
  animation: meshBreathe 10s ease-in-out infinite alternate;
}
@keyframes meshBreathe {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

/* Bottom fade */
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; z-index: 0;
  height: 220px; background: linear-gradient(to top, var(--navy), transparent);
}

/* Parallax orb */
.hero-orb-glow {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(215,241,95,0.10) 0%, rgba(215,241,95,0.03) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
  top: 50%; right: 5%; transform: translateY(-50%);
  filter: blur(1px);
  transition: transform 0.12s ease-out;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-inner {
  display: grid; grid-template-columns: 55fr 45fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(215,241,95,0.1); border: 1px solid rgba(215,241,95,0.25);
  font-size: 13px; font-weight: 600; color: var(--lime); margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero h1 {
  font-size: clamp(38px, 5vw, 62px); font-weight: 800; line-height: 1.08;
  margin-bottom: 24px; letter-spacing: -1.5px;
  max-width: 16ch;
}
/* Animated gradient highlight text */
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--lime) 0%, #a8f040 40%, #e8ff7a 70%, var(--lime) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s linear infinite;
}
/* Text-reveal words */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--transition-smooth), transform 0.5s var(--transition-smooth);
}
.hero-word.visible {
  opacity: 1; transform: translateY(0);
}
.hero p {
  font-size: 18px; color: rgba(240,240,240,0.72); line-height: 1.8;
  margin-bottom: 36px; max-width: 52ch;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Shimmer CTA */
.btn-primary.shimmer {
  position: relative; overflow: hidden;
}
.btn-primary.shimmer::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
/* Glow CTA */
.btn-glow {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Trust badges */
.trust-badges {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px;
}
.trust-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(240,240,240,0.5); font-weight: 500;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.trust-badge.visible { opacity: 1; transform: translateY(0); }
.trust-badge svg { width: 16px; height: 16px; color: var(--lime); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-mockup {
  width: 100%; max-width: 500px; border-radius: 24px;
  background: rgba(18,18,18,0.9);
  border: 1px solid rgba(240,240,240,0.1);
  padding: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(215,241,95,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  position: relative; z-index: 1;
}
.mockup-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(240,240,240,0.08);
}
.mockup-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), #a8d922);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--navy); font-size: 13px;
  box-shadow: 0 0 0 3px rgba(215,241,95,0.2);
}
.mockup-name {
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 6px;
}
.verified-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--whatsapp); flex-shrink: 0;
}
.verified-badge svg { width: 10px; height: 10px; color: white; }
.mockup-status {
  font-size: 12px; color: var(--whatsapp); font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.mockup-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--whatsapp); display: inline-block;
}
/* Chat messages with .visible transition */
.chat-messages { display: flex; flex-direction: column; gap: 10px; min-height: 180px; }
.chat-msg {
  padding: 12px 16px; border-radius: 16px; font-size: 14px; line-height: 1.55;
  max-width: 85%; opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-msg.visible { opacity: 1; transform: translateY(0); }
.chat-msg.bot {
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.15);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: rgba(240,240,240,0.08);
  align-self: flex-end; border-bottom-right-radius: 4px;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Typing cursor blink */
.typing-cursor {
  display: inline-block; width: 2px; height: 1em;
  background: var(--lime); margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.8s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; } 50% { opacity: 0; }
}

/* Looping typing indicator */
.typing-indicator {
  display: none; gap: 4px; padding: 12px 16px; align-self: flex-start;
}
.typing-indicator.active { display: flex; }
.typing-indicator span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  animation: typingDots 1.4s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDots {
  0%,60%,100% { opacity: 0.3; transform: translateY(0); }
  30%          { opacity: 1;   transform: translateY(-5px); }
}

/* Floating cards */
.floating-card {
  position: absolute; padding: 14px 18px; border-radius: 14px;
  background: rgba(5,5,5,0.92); border: 1px solid rgba(215,241,95,0.25);
  backdrop-filter: blur(16px); font-size: 13px; font-weight: 600;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 60px rgba(215,241,95,0.08);
  white-space: nowrap; z-index: 10;
}
.floating-card.card-1 {
  top: -16px; right: -24px;
  animation: floatY 4s ease-in-out infinite;
}
.floating-card.card-2 {
  bottom: 24px; left: -32px;
  animation: floatY 4s ease-in-out 2s infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
.floating-card .metric { font-size: 22px; color: var(--lime); display: block; line-height: 1.2; }
/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(215,241,95,0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: socialPulse 6s ease-in-out infinite;
}
@keyframes socialPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}
.social-proof-inner { text-align: center; position: relative; }
.social-proof h3 {
  font-size: 15px; font-weight: 500; color: rgba(240,240,240,0.45);
  margin-bottom: 40px; letter-spacing: 0.5px;
}
.proof-stats {
  display: flex; justify-content: center; gap: clamp(32px, 6vw, 80px); flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-stat .number {
  font-size: clamp(36px, 5vw, 52px); font-weight: 800; color: var(--lime);
  display: block; line-height: 1;
  animation: countGlow 3s ease-in-out infinite;
}
.proof-stat .label {
  font-size: 14px; color: rgba(240,240,240,0.55); margin-top: 10px;
  font-weight: 500;
}

/* ===== LOGO MARQUEE ===== */
.logo-marquee {
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(48px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-track img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.3;
  transition: opacity 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}
.marquee-track img:hover {
  opacity: 0.75;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(30deg);
}
.marquee-track svg {
  width: 44px; height: 44px;
  flex-shrink: 0;
  opacity: 0.3;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}
.marquee-track svg:hover { opacity: 0.75; }

/* ===== HOW IT WORKS (Pipeline Style) ===== */
.how-it-works {
  padding: 120px 0;
}
.how-it-works .section-header {
  text-align: center; margin-bottom: 80px;
}
.how-it-works .section-subtitle { margin: 0 auto; }

.pipeline {
  position: relative; max-width: 900px; margin: 0 auto;
}

/* Vertical rail */
.pipeline-rail {
  position: absolute; left: 50%; top: 40px; bottom: 40px;
  width: 4px; transform: translateX(-50%);
  background: rgba(240,240,240,0.06);
  border-radius: 4px; z-index: 0;
  overflow: hidden;
}
.pipeline-rail::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: var(--rail-progress, 0%);
  background: linear-gradient(to bottom, var(--lime), rgba(215,241,95,0.3));
  box-shadow: 0 0 15px rgba(215,241,95,0.5);
  transition: height 0.4s ease;
}

/* Active node highlight */
.pipeline-row.active .pipeline-node-outer {
  border-color: var(--lime);
  box-shadow: 0 0 30px rgba(215,241,95,0.4), 0 0 60px rgba(215,241,95,0.15), inset 0 1px 6px rgba(0,0,0,0.4);
  transform: scale(1.1);
}

/* Mini-demo block inside step cards */
.step-mini-demo {
  padding: 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(240,240,240,0.07);
  margin-top: 12px;
}

/* Mini bar — scales in when row becomes active */
.mini-bar {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.pipeline-row.active .mini-bar {
  transform: scaleX(1);
}

/* Diagonal divider between How It Works and Features */
.how-to-features-divider {
  margin-top: -2px;
}

/* Pipeline row */
.pipeline-row {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 0;
  margin-bottom: 64px;
}
.pipeline-row:last-child { margin-bottom: 0; }

/* Left and right panels */
.pipeline-left {
  width: calc(50% - 32px); padding-right: 40px; text-align: right;
}
.pipeline-right {
  width: calc(50% - 32px); padding-left: 40px; text-align: left;
}

/* Center node */
.pipeline-node {
  width: 64px; height: 64px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.pipeline-node-outer {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(215,241,95,0.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.5), inset 0 1px 6px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}
.pipeline-row:hover .pipeline-node-outer {
  border-color: rgba(215,241,95,0.5);
  box-shadow: 0 0 30px rgba(215,241,95,0.15), inset 0 1px 6px rgba(0,0,0,0.4);
  transform: scale(1.08);
}
.pipeline-node-inner {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(215,241,95,0.7);
  border: 2px solid rgba(215,241,95,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--navy);
}

/* Step tag */
.step-tag {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 100px; padding: 4px 12px;
  border: 1px solid rgba(215,241,95,0.15);
  background: rgba(215,241,95,0.06);
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--lime);
  margin-bottom: 12px;
}
.step-title {
  font-size: 20px; font-weight: 700; color: var(--ice);
  margin-bottom: 8px; line-height: 1.3;
}
.step-desc {
  font-size: 14px; color: rgba(240,240,240,0.55); line-height: 1.7;
  max-width: 320px;
}
.pipeline-left .step-desc { margin-left: auto; }
.pipeline-right .step-desc { margin-right: auto; }

/* Step card (feature box) */
.step-card {
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  padding: 20px 24px; border-radius: 16px;
  border: 1px solid rgba(240,240,240,0.06);
  box-shadow: inset 0 1px 8px rgba(0,0,0,0.6);
  transition: all 0.3s ease;
}
.pipeline-row:hover .step-card {
  border-color: rgba(215,241,95,0.2);
  background: rgba(18,18,18,0.7);
}
.step-card-inner {
  display: flex; align-items: center; gap: 16px;
}
.pipeline-left .step-card-inner {
  flex-direction: row-reverse;
}
.step-card-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: rgba(215,241,95,0.08);
  border: 1px solid rgba(215,241,95,0.15);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 12px rgba(215,241,95,0.08);
}
.step-card-icon svg { width: 24px; height: 24px; color: var(--lime); }
.step-card-list {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.step-card-list li {
  font-size: 13px; color: rgba(240,240,240,0.65); font-weight: 400;
  display: flex; align-items: center; gap: 8px;
}
.pipeline-left .step-card-list li { justify-content: flex-end; }
.step-card-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(215,241,95,0.5); flex-shrink: 0;
}
.pipeline-left .step-card-list li::before { order: 2; }

/* Pipeline footer */
.pipeline-footer {
  text-align: center; margin-top: 48px;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(240,240,240,0.3); font-weight: 400;
}

/* ===== FEATURES OVERVIEW ===== */
.features-overview { padding: 120px 0; }
.features-overview .section-header {
  text-align: center; margin-bottom: 72px;
}
.features-overview .section-subtitle { margin: 0 auto; }

/* Bento grid */
@property --border-angle {
  syntax: '<angle>'; inherits: true; initial-value: 0deg;
}
@keyframes bentoBorderRotate {
  to { --border-angle: 360deg; }
}
.bento-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.bento-card {
  padding: 28px; border-radius: 20px;
  background: rgba(240,240,240,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(240,240,240,0.07);
  position: relative; overflow: hidden; cursor: default;
  transform-style: preserve-3d; perspective: 1000px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.bento-card::before {
  content: '';
  position: absolute; inset: -1px; border-radius: 21px;
  background: conic-gradient(from var(--border-angle), transparent 60%, rgba(215,241,95,0.35) 80%, transparent 100%);
  opacity: 0; pointer-events: none; z-index: 0;
  transition: opacity 0.35s ease;
  animation: bentoBorderRotate 3s linear infinite paused;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1.5px;
}
.bento-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}
.bento-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(215,241,95,0.08);
}
.bento-card > * { position: relative; z-index: 1; }
.bento-card.large { grid-column: span 2; min-height: 200px; }
.bento-demo {
  margin-top: 20px; border-radius: 14px;
  background: rgba(20,20,20,0.7);
  border: 1px solid rgba(240,240,240,0.06);
  overflow: hidden;
}
.bento-demo-chat { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.bento-chat-msg {
  padding: 8px 12px; border-radius: 10px; font-size: 12px; line-height: 1.5;
  max-width: 80%;
}
.bento-chat-msg.bot { background: rgba(240,240,240,0.06); align-self: flex-start; border-top-left-radius: 2px; }
.bento-chat-msg.user { background: rgba(215,241,95,0.12); align-self: flex-end; border-top-right-radius: 2px; color: rgba(215,241,95,0.9); }
.bento-wp-demo { padding: 12px; display: flex; flex-direction: column; gap: 7px; }
.bento-wp-msg {
  padding: 7px 11px; border-radius: 10px; font-size: 12px; line-height: 1.5;
  max-width: 82%;
}
.bento-wp-msg.received { background: rgba(240,240,240,0.06); align-self: flex-start; border-top-left-radius: 2px; }
.bento-wp-msg.sent { background: rgba(37,211,102,0.15); align-self: flex-end; border-top-right-radius: 2px; }
.bento-wp-status { font-size: 10px; color: var(--whatsapp); padding: 4px 12px 8px; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(215,241,95,0.1); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--lime); }
.bento-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.bento-card p { font-size: 14px; color: rgba(240,240,240,0.58); line-height: 1.65; }

/* ===== AI SECTION ===== */
.ai-section {
  padding: 140px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.ai-section::before {
  content: ''; position: absolute; inset: 0;
  background: var(--noise-bg); background-size: 256px 256px;
  opacity: 0.4; pointer-events: none; z-index: 0;
}
.ai-section::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(215,241,95,0.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.ai-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1; gap: 64px;
}
.ai-header { max-width: 680px; }

/* Orbit Container — FIX: use flex centering */
.orbit-container {
  width: 500px; height: 500px; position: relative;
  margin: 0 auto; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Orbit Rings — properly centered with translate */
.orbit-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(215,241,95,0.18);
}
.orbit-ring:nth-child(1) {
  width: 300px; height: 300px;
  animation: orbitSpin 60s linear infinite;
}
.orbit-ring:nth-child(2) {
  width: 420px; height: 420px;
  animation: orbitSpin 90s linear infinite reverse;
}
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Agent Core — normal flex child, container is already centered */
.agent-core {
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8f85f, var(--lime), #9db820);
  border: 2px solid rgba(215,241,95,0.5);
  display: flex; align-items: center; justify-content: center;
  animation: glowPulse 3s ease-in-out infinite;
  z-index: 2; cursor: default;
  position: relative;
}
.agent-core-inner {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--lime); display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(215,241,95,0.6), 0 0 60px rgba(215,241,95,0.2);
}
.agent-core-inner svg { width: 34px; height: 34px; color: var(--navy); }

/* Orbit Badges */
.orbit-badges { position: absolute; inset: 0; pointer-events: none; }
.orbit-badge {
  position: absolute; pointer-events: auto;
  padding: 8px 14px; border-radius: 100px;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(215,241,95,0.22);
  backdrop-filter: blur(12px);
  font-size: 12px; font-weight: 600; color: var(--ice);
  white-space: nowrap; cursor: default;
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.4s var(--transition-smooth), transform 0.4s var(--transition-smooth);
}
.orbit-badge.visible { opacity: 1; transform: scale(1); }
/* Position each badge around the orbit */
.orbit-badge:nth-child(1) { top: 0;    left: 50%; transform: translate(-50%, 0) scale(0.8); }
.orbit-badge:nth-child(1).visible { transform: translate(-50%, 0) scale(1); }
.orbit-badge:nth-child(2) { top: 20%;  right: 0;  transform: translate(0, 0) scale(0.8); }
.orbit-badge:nth-child(2).visible { transform: translate(0, 0) scale(1); }
.orbit-badge:nth-child(3) { bottom: 20%; right: 0; transform: translate(0, 0) scale(0.8); }
.orbit-badge:nth-child(3).visible { transform: translate(0, 0) scale(1); }
.orbit-badge:nth-child(4) { bottom: 0; left: 50%; transform: translate(-50%, 0) scale(0.8); }
.orbit-badge:nth-child(4).visible { transform: translate(-50%, 0) scale(1); }
.orbit-badge:nth-child(5) { bottom: 20%; left: 0; transform: translate(0, 0) scale(0.8); }
.orbit-badge:nth-child(5).visible { transform: translate(0, 0) scale(1); }
.orbit-badge:nth-child(6) { top: 20%;  left: 0;  transform: translate(0, 0) scale(0.8); }
.orbit-badge:nth-child(6).visible { transform: translate(0, 0) scale(1); }

/* AI Stats */
.ai-stats {
  display: flex; flex-direction: row; align-items: center;
  gap: 0; background: rgba(240,240,240,0.03);
  border: 1px solid rgba(240,240,240,0.07);
  border-radius: 20px; overflow: hidden;
}
.ai-stat {
  flex: 1; padding: 28px 32px; text-align: center;
  position: relative;
}
.ai-stat + .ai-stat::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(240,240,240,0.1);
}
.ai-stat .value {
  display: block; font-size: 36px; font-weight: 800;
  color: var(--lime); line-height: 1;
  animation: countGlow 3s ease-in-out infinite;
}
.ai-stat .label {
  display: block; font-size: 13px; color: rgba(240,240,240,0.5);
  margin-top: 6px; font-weight: 500;
}

/* ===== BREAK STATS ===== */
.break-stats {
  padding: 100px 0;
  position: relative; overflow: hidden;
  background: var(--navy-dark);
}
.break-stats::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(215,241,95,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
}
.break-stats-header {
  text-align: center; margin-bottom: 48px;
  position: relative; z-index: 1;
}
.break-stats-header .section-tag { margin-bottom: 0; }
.break-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  background: rgba(240,240,240,0.02);
  border: 1px solid rgba(240,240,240,0.07);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.break-stat {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  transition: background 0.3s ease;
}
.break-stat:hover {
  background: rgba(215,241,95,0.03);
}
/* Vertical dividers between stats */
.break-stat + .break-stat::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(215,241,95,0.2), transparent);
}
.break-stat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(215,241,95,0.08);
  border: 1px solid rgba(215,241,95,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.break-stat-icon svg { width: 22px; height: 22px; color: var(--lime); }
.break-stat .big-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800; color: var(--lime);
  line-height: 1; display: block;
  text-shadow: 0 0 30px rgba(215,241,95,0.2);
}
.break-stat .big-label {
  font-size: 14px; color: rgba(240,240,240,0.5);
  margin-top: 8px; font-weight: 500;
}

/* ===== WHATSAPP SECTION ===== */
.whatsapp-section {
  padding: 120px 0; position: relative;
  background: var(--navy-dark);
}
.whatsapp-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(37,211,102,0.06) 0%, transparent 65%);
}
.whatsapp-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1;
}
/* Chat card */
.wa-chat-wrap {
  position: sticky; top: calc(50vh - 280px);
}
.wa-chat-outer {
  position: relative; max-width: 420px; margin: 0 auto;
}
.wa-chat-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(215,241,95,0.15), rgba(37,211,102,0.1), rgba(215,241,95,0.08));
  border-radius: 20px; filter: blur(24px); opacity: 0.4;
}
.wa-chat-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(18,18,18,0.9), rgba(10,10,10,0.95));
  border: 1px solid rgba(240,240,240,0.12);
  border-radius: 20px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
  transition: border-color 0.5s;
}
.wa-chat-card:hover { border-color: rgba(215,241,95,0.25); }
/* Inner glow blobs */
.wa-chat-card::before {
  content: ''; position: absolute; bottom: -48px; right: -48px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(215,241,95,0.12), rgba(37,211,102,0.06), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.wa-chat-card::after {
  content: ''; position: absolute; top: -24px; left: -24px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(215,241,95,0.08), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.wa-chat-inner { padding: 24px; position: relative; z-index: 1; }
/* Header row */
.wa-chat-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px;
}
.wa-chat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 8px;
  background: rgba(215,241,95,0.1);
  border: 1px solid rgba(215,241,95,0.2);
  font-size: 12px; font-weight: 600; color: var(--lime);
}
.wa-chat-badge .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); animation: pulse 2s infinite;
}
.wa-chat-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(240,240,240,0.4);
}
.wa-chat-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--whatsapp); animation: pulse 2s infinite;
}
/* Title */
.wa-chat-title {
  font-size: 18px; font-weight: 700; color: var(--ice);
  margin-bottom: 8px;
}
.wa-chat-desc {
  font-size: 14px; color: rgba(240,240,240,0.55); line-height: 1.6;
  margin-bottom: 20px;
}
/* Messages area */
.wa-chat-messages-area {
  background: rgba(10,10,10,0.6);
  border-radius: 14px; padding: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(240,240,240,0.06);
  min-height: 200px;
}
.wa-chat-messages-area .wp-messages {
  display: flex; flex-direction: column; gap: 8px;
  min-height: 180px; max-height: 260px;
  overflow-y: auto; scroll-behavior: smooth;
}
.wa-chat-messages-area .wp-messages::-webkit-scrollbar { width: 3px; }
.wa-chat-messages-area .wp-messages::-webkit-scrollbar-thumb { background: rgba(215,241,95,0.15); border-radius: 3px; }
.wp-msg {
  padding: 8px 12px; border-radius: 10px; font-size: 13px; line-height: 1.5;
  max-width: 80%; position: relative;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.wp-msg.visible { opacity: 1; transform: translateY(0); }
.wp-msg.received {
  background: rgba(240,240,240,0.06); align-self: flex-start;
  border-bottom-left-radius: 4px; color: rgba(240,240,240,0.8);
}
.wp-msg.sent {
  background: linear-gradient(135deg, rgba(215,241,95,0.15), rgba(37,211,102,0.2));
  align-self: flex-end; border-bottom-right-radius: 4px;
  color: var(--ice);
}
/* AI avatar for received */
.wp-msg-row { display: flex; gap: 8px; align-items: flex-start; }
.wp-msg-avatar {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--lime), #a8d922);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: var(--navy);
}
/* Typing indicator */
.typing-dots {
  display: flex; gap: 4px; padding: 4px 0;
}
.typing-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(215,241,95,0.5);
  animation: typingDots 1.4s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Input area */
.wa-chat-input {
  display: flex; align-items: center; gap: 8px;
  background: rgba(10,10,10,0.4);
  border-radius: 14px; padding: 8px;
  border: 1px solid rgba(240,240,240,0.06);
}
.wa-chat-input input {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: 13px; color: var(--ice); padding: 6px 8px;
  font-family: inherit; cursor: text;
}
.wa-chat-input input::placeholder { color: rgba(240,240,240,0.3); }
.wa-chat-input button {
  width: 32px; height: 32px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--lime), #a8d922);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.2s, opacity 0.2s;
}
.wa-chat-input button:hover { transform: scale(1.1); }
.wa-chat-input button svg { width: 14px; height: 14px; color: var(--navy); }

/* Scenario content area */
.wa-scenarios { display: flex; flex-direction: column; }
.wa-scenario {
  min-height: 70vh; padding: 80px 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0.3; transition: opacity 0.5s ease;
}
.wa-scenario.active { opacity: 1; }
.wa-scenario-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(215,241,95,0.1); border: 1px solid rgba(215,241,95,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.wa-scenario-icon svg { width: 28px; height: 28px; color: var(--lime); }
.wa-scenario-title {
  font-size: clamp(22px, 3.5vw, 32px); font-weight: 800;
  color: var(--ice); margin-bottom: 16px; line-height: 1.2;
}
.wa-scenario-desc {
  font-size: 16px; color: rgba(240,240,240,0.65);
  line-height: 1.7; margin-bottom: 28px; max-width: 480px;
}
.wa-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.wa-checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: rgba(240,240,240,0.85);
}
.wa-checklist li svg { width: 20px; height: 20px; color: var(--lime); flex-shrink: 0; }

/* Mobile tabs — hidden on desktop, shown on mobile */
.wa-tabs {
  display: none; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.wa-tab {
  padding: 10px 20px; border-radius: 100px; border: 1px solid rgba(240,240,240,0.15);
  background: transparent; color: rgba(240,240,240,0.6);
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: inherit; transition: all 0.2s ease;
  min-height: 44px;
}
.wa-tab.active {
  background: var(--lime); color: var(--navy);
  border-color: var(--lime);
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .section-subtitle { margin: 0 auto; }

/* New RD-Station-inspired pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan-card {
  padding: 32px 28px;
  border-radius: 16px;
  background: rgba(240,240,240,0.02);
  border: 1px solid rgba(240,240,240,0.1);
  border-top: 3px solid rgba(240,240,240,0.15);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.plan-card:hover {
  border-color: rgba(240,240,240,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
/* Free card: lime top accent */
.plan-card.plan-basic {
  border-top: 3px solid var(--lime);
}
/* Pro card: lime top accent (recommended) */
.plan-card.plan-pro {
  border-top: 3px solid var(--lime);
  transform: scale(1.05);
  border-color: rgba(215,241,95,0.25);
  box-shadow: 0 0 40px rgba(215,241,95,0.08);
  z-index: 2;
}
.plan-card.plan-pro::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 0%, rgba(215,241,95,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Popular badge */
.plan-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  animation: glowPulse 2.5s ease-in-out infinite;
}

/* Pro CTA shimmer */
.plan-card.plan-pro .btn-plan-primary {
  position: relative;
  overflow: hidden;
}
.plan-card.plan-pro .btn-plan-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  animation: shimmer 2.4s infinite;
}

/* Plan name */
.plan-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ice);
}
.plan-card.plan-free .plan-name { color: var(--lime); }

/* Plan description */
.plan-desc {
  font-size: 14px;
  color: rgba(240,240,240,0.55);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Spacer that flexes to push price to bottom */
.plan-spacer { flex: 1; min-height: 24px; }

/* Features list — no icons, plain text */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0 0;
}
.plan-features-header {
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 10px;
  display: block;
}
.plan-features li {
  font-size: 14px;
  color: rgba(240,240,240,0.68);
  line-height: 1.6;
  padding: 5px 0;
  border-bottom: 1px solid rgba(240,240,240,0.05);
}
.plan-features li:last-child { border-bottom: none; }

/* Price section — pinned to bottom */
.plan-price-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(240,240,240,0.08);
}
.plan-price-label {
  font-size: 12px;
  color: rgba(240,240,240,0.42);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
  font-weight: 600;
}
.plan-price-main {
  font-size: 28px;
  font-weight: 800;
  color: var(--ice);
  line-height: 1.15;
}
.plan-card.plan-free .plan-price-main { color: var(--lime); }
.plan-price-sub {
  font-size: 13px;
  color: rgba(240,240,240,0.42);
  margin-top: 4px;
  line-height: 1.5;
}

/* CTA at the very bottom */
.plan-cta {
  margin-top: 24px;
}
/* Filled button for Free */
.plan-cta .btn-plan-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  background: var(--lime);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.plan-cta .btn-plan-primary:hover {
  background: var(--lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(215,241,95,0.3);
}
.plan-cta .btn-plan-primary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 8px;
}
/* Text-link style for paid plans */
.plan-cta .btn-plan-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: rgba(240,240,240,0.65);
  border: 1px solid rgba(240,240,240,0.15);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, border-color 0.2s;
}
.plan-cta .btn-plan-link:hover {
  color: var(--lime);
  border-color: rgba(215,241,95,0.4);
}
.plan-cta .btn-plan-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 8px;
}

/* ===== TESTIMONIALS — SPLIT LAYOUT ===== */
.testimonials {
  padding: 120px 0;
}
.testimonials-wrapper {
  border: 1px solid rgba(240,240,240,0.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(240,240,240,0.02);
}
/* Top bar */
.testimonials-topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(240,240,240,0.08);
}
.testimonials-topbar h3 {
  font-size: 20px; font-weight: 800; color: var(--ice);
}
.testimonials-topbar .topbar-divider {
  width: 1px; height: 20px; background: rgba(240,240,240,0.15);
}
.testimonials-topbar .topbar-label {
  font-size: 14px; color: rgba(240,240,240,0.4); font-weight: 400;
}
/* Split content */
.testimonials-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
/* Left side */
.testimonials-left {
  padding: 60px 48px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(240,240,240,0.08);
}
.testimonials-left .section-title {
  font-size: clamp(30px, 3.5vw, 44px);
  margin-bottom: 16px;
}
.testimonials-left .section-subtitle {
  margin-bottom: 40px;
}
/* Mini stats row */
.testimonials-mini-stats {
  display: flex; gap: 0; margin-bottom: 36px;
}
.tms-item {
  flex: 1; padding: 16px 20px;
  background: rgba(240,240,240,0.03);
  border: 1px solid rgba(240,240,240,0.07);
  text-align: center;
}
.tms-item:first-child { border-radius: 12px 0 0 12px; }
.tms-item:last-child { border-radius: 0 12px 12px 0; }
.tms-item:not(:first-child) { border-left: none; }
.tms-item .tms-value {
  display: block; font-size: 24px; font-weight: 800; color: var(--ice);
  line-height: 1.1;
}
.tms-item .tms-label {
  display: block; font-size: 12px; color: rgba(240,240,240,0.45);
  margin-top: 4px;
}
.testimonials-left .cta-row {
  display: flex; gap: 12px;
}
/* Right side — stacked cards */
.testimonials-right {
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  overflow-y: auto; max-height: 600px;
}
.testimonials-right::-webkit-scrollbar { width: 4px; }
.testimonials-right::-webkit-scrollbar-track { background: transparent; }
.testimonials-right::-webkit-scrollbar-thumb { background: rgba(215,241,95,0.15); border-radius: 4px; }
/* Testimonial card */
.testimonial-card {
  padding: 28px; border-radius: 16px;
  background: rgba(240,240,240,0.03);
  border: 1px solid rgba(240,240,240,0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.testimonial-card:hover {
  border-color: rgba(215,241,95,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.testimonial-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(240,240,240,0.06);
}
.testimonial-author-info {}
.testimonial-name { font-weight: 700; font-size: 16px; color: var(--ice); }
.testimonial-role { font-size: 13px; color: rgba(240,240,240,0.4); margin-top: 2px; }
.testimonial-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--ice);
}
.testimonial-stars { display: flex; gap: 2px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--lime); }
.testimonial-text {
  font-size: 15px; line-height: 1.7; color: rgba(240,240,240,0.7);
  margin-bottom: 16px;
}
.testimonial-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.testimonial-tag {
  padding: 4px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 600;
  background: rgba(215,241,95,0.08);
  border: 1px solid rgba(215,241,95,0.15);
  color: var(--lime);
}
.testimonial-tag.neutral {
  background: rgba(240,240,240,0.04);
  border-color: rgba(240,240,240,0.1);
  color: rgba(240,240,240,0.5);
}

/* ===== FAQ ===== */
.faq { padding: 120px 0; background: var(--navy-dark); position: relative; overflow: hidden; }
.faq::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--noise-bg); opacity: 0.04; pointer-events: none;
}
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-grid {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  border-radius: 16px; background: rgba(240,240,240,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(240,240,240,0.06);
  overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover { border-color: rgba(215,241,95,0.18); }
.faq-item.open {
  border-color: rgba(215,241,95,0.35);
  box-shadow: 0 0 24px rgba(215,241,95,0.06);
}
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 16px;
  background: none; border: none; color: var(--ice);
  width: 100%; text-align: left; font-family: inherit; line-height: 1.4;
}
.faq-question:focus-visible {
  outline: 2px solid var(--lime); outline-offset: -2px; border-radius: 14px;
}
.faq-question svg {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--lime);
  transition: transform 0.4s var(--transition-spring);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 15px; color: rgba(240,240,240,0.62); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 180px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(215,241,95,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(215,241,95,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(215,241,95,0.05) 0%, transparent 50%);
  animation: meshMove 12s ease-in-out infinite alternate;
}
.cta-final .section-title { margin-bottom: 20px; max-width: 18ch; margin-left: auto; margin-right: auto; }
.cta-final .section-subtitle { margin: 0 auto 40px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-social-proof {
  display: flex; justify-content: center; align-items: center;
  gap: 12px; margin-top: 28px; font-size: 14px;
  color: rgba(240,240,240,0.55);
}
.cta-avatars { display: flex; align-items: center; }
.cta-avatars span {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--lime), rgba(215,241,95,0.5));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--navy); font-size: 12px;
  border: 2px solid var(--navy-dark);
  margin-left: -8px;
}
.cta-avatars span:first-child { margin-left: 0; }
/* ===== RESPONSIVE ===== */

/* ===== TABLET (1024px) ===== */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.large { grid-column: span 2; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pipeline-row { flex-direction: column; gap: 20px; }
  .pipeline-left, .pipeline-right { width: 100%; padding: 0; text-align: left; }
  .pipeline-left .step-desc { margin-left: 0; }
  .pipeline-left .step-card-inner { flex-direction: row; }
  .pipeline-left .step-card-list li { justify-content: flex-start; }
  .pipeline-left .step-card-list li::before { order: 0; }
  .pipeline-node { display: none; }
  .pipeline-rail { display: none; }
  .testimonial-carousel { flex-direction: column; }
  .testimonial-card { min-width: 100%; }
  .testimonial-card.center { transform: none; }
  .testimonial-card:not(.center) { opacity: 1; transform: none; }
}

/* ===== MOBILE (768px) ===== */
@media (max-width: 768px) {
  /* Header */
  .header { top: 8px; left: 8px; right: 8px; border-radius: 14px; }
  .header-inner { padding: 8px 16px; }
  .logo svg { height: 56px; }
  .nav { display: none; }
  .lang-dropdown { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .mobile-sticky-cta { display: block; }

  /* Hero */
  .hero { padding: 130px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero h1 { max-width: none; margin-left: auto; margin-right: auto; font-size: clamp(28px, 7.5vw, 44px); }
  .hero p { margin-left: auto; margin-right: auto; font-size: 16px; }
  .hero-ctas { justify-content: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-visual { order: -1; }
  .hero-mockup { max-width: 100%; padding: 16px; border-radius: 18px; }
  .floating-card { display: none; }
  .hero-orb-glow { width: 260px; height: 260px; right: 50%; transform: translateX(50%) translateY(-40%); top: 0; }
  .trust-badges { justify-content: center; }
  .particles-container { opacity: 0.6; }
  .hero-mesh { opacity: 0.8; }

  /* Sections general */
  .how-it-works, .features-overview, .ai-section,
  .whatsapp-section, .pricing,
  .testimonials, .faq, .cta-final { padding: 80px 0; }
  .section-title { font-size: clamp(26px, 6.5vw, 38px); }
  .section-subtitle { font-size: 16px; }
  .section-tag { font-size: 11px; padding: 5px 12px; }

  /* Social proof */
  .social-proof { padding: 48px 0; }
  .proof-stats { gap: 24px; }
  .proof-stat .number { font-size: clamp(28px, 8vw, 42px); }
  .proof-stat .label { font-size: 12px; }

  /* Logo marquee */
  .marquee-track { gap: 48px; }
  .marquee-track img { height: 32px; }
  .marquee-track svg { width: 36px; height: 36px; }

  /* Pipeline */
  .pipeline-rail { display: none; }
  .pipeline-row {
    flex-direction: column; gap: 20px; margin-bottom: 48px;
  }
  .pipeline-left, .pipeline-right {
    width: 100%; padding: 0; text-align: left;
  }
  .pipeline-left .step-desc { margin-left: 0; }
  .pipeline-left .step-card-inner { flex-direction: row; }
  .pipeline-left .step-card-list li { justify-content: flex-start; }
  .pipeline-left .step-card-list li::before { order: 0; }
  .pipeline-node { display: none; }

  /* Features */
  .bento-grid { grid-template-columns: 1fr; gap: 14px; }
  .bento-card.large { grid-column: span 1; }
  .bento-card { padding: 22px; }

  /* AI section */
  .ai-inner { gap: 40px; }
  .orbit-container { width: 300px; height: 300px; }
  .orbit-ring:nth-child(1) { width: 180px; height: 180px; }
  .orbit-ring:nth-child(2) { display: none; }
  .agent-core { width: 80px; height: 80px; }
  .agent-core-inner { width: 44px; height: 44px; }
  .agent-core-inner svg { width: 24px; height: 24px; }
  .orbit-badge { font-size: 10px; padding: 6px 10px; }
  .ai-stats { flex-direction: column; border-radius: 16px; }
  .ai-stat + .ai-stat::before { top: 0; bottom: auto; left: 10%; right: 10%; width: auto; height: 1px; }
  .ai-stat .value { font-size: 28px; }

  /* Break stats */
  .break-stats { padding: 80px 0; }
  .break-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .break-stat { padding: 28px 16px; }
  .break-stat + .break-stat::before { display: none; }
  .break-stat .big-number { font-size: clamp(28px, 6vw, 36px); }

  /* WhatsApp section sticky showcase */
  .whatsapp-inner { grid-template-columns: 1fr; gap: 40px; }
  .wa-chat-wrap { position: static; }
  .wa-chat-outer { max-width: 100%; }
  .wa-chat-messages-area .wp-messages { min-height: 160px; max-height: 240px; }
  .wa-scenarios { display: none; }
  .wa-tabs { display: flex; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Testimonials */
  .testimonials-split { grid-template-columns: 1fr; }
  .testimonials-left { border-right: none; border-bottom: 1px solid rgba(240,240,240,0.08); padding: 40px 24px; }
  .testimonials-right { max-height: none; padding: 24px; }
  .testimonials-mini-stats { flex-direction: column; }
  .tms-item { border-radius: 12px !important; }
  .tms-item:not(:first-child) { border-left: 1px solid rgba(240,240,240,0.07); margin-top: -1px; }
  .testimonial-header { flex-direction: column; gap: 12px; }
  .testimonial-card { padding: 22px; }

  /* FAQ */
  .faq-grid { gap: 8px; }
  .faq-question { padding: 16px 18px; font-size: 15px; }
  .faq-answer-inner { padding: 0 18px 16px; font-size: 14px; }

  /* CTA final */
  .cta-final { padding: 100px 0; }
  .cta-final .section-title { max-width: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .cta-social-proof { flex-direction: column; gap: 8px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { align-items: center; text-align: center; }
  .footer-brand .logo svg { height: 64px; }
  .footer-brand p { text-align: center; max-width: 100%; }
  .footer-col { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .footer-social { justify-content: center; }

  /* WhatsApp float + mobile CTA spacing */
  .whatsapp-float { bottom: 80px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }

  /* proof stats small */
  .proof-stats { gap: 20px; flex-direction: column; }
}

/* ===== SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
  .break-stats-inner { grid-template-columns: 1fr 1fr; }
  .break-stat { padding: 20px 12px; }
  .break-stat-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .break-stat-icon svg { width: 18px; height: 18px; }
  .header { top: 6px; left: 6px; right: 6px; }
  .header-inner { padding: 6px 12px; }
  .logo svg { height: 48px; }
  .hero { padding: 110px 0 48px; }
  .hero h1 { font-size: clamp(24px, 7vw, 34px); letter-spacing: -0.5px; }
  .hero p { font-size: 15px; }
  .btn { padding: 14px 24px; font-size: 15px; }
  .btn-sm { padding: 10px 18px; font-size: 13px; }
  .pipeline-footer { font-size: 10px; letter-spacing: 2px; }
  .plan-card { padding: 22px; }
  .pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
  }
  .pricing-grid .plan-card {
    min-width: 85vw;
    scroll-snap-align: center;
    flex-shrink: 0;
    transform: none !important;
  }
  .how-it-works, .features-overview, .ai-section,
  .break-stats, .whatsapp-section, .pricing,
  .testimonials, .faq, .cta-final { padding: 64px 0; }
  .footer-brand .logo svg { height: 52px; }
  .mobile-nav-overlay a { font-size: 20px; }
}
