/* ===================================================
   NEXA AI — DESIGN SYSTEM & STYLESHEET
   =================================================== */

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

/* ---------- TOKENS ---------- */
:root {
  --void:      #01040a;
  --cyan:      #00d9ff;
  --azure:     #0080ff;
  --white:     #ffffff;
  --slate:     #8b97b1;
  --muted:     #a0aabf;
  --glass-bg:  rgba(255,255,255,0.02);
  --glass-bd:  rgba(255,255,255,0.06);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 48px;
  --ease-out:  cubic-bezier(0.16,1,0.3,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--void);
  color: var(--slate);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

.grad-text {
  background: linear-gradient(135deg, var(--cyan), var(--azure));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section { padding: 8rem 0; }

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 1.5rem;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--cyan);
  opacity: 0.5;
}
.eyebrow::before { right: 100%; margin-right: -1.3rem; }
.eyebrow::after  { left: 100%;  margin-left: -1.3rem; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan);
  color: #0a0f1c;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 20px rgba(0,217,255,0.35), 0 4px 16px rgba(0,217,255,0.2); }
  50%      { box-shadow: 0 0 40px rgba(0,217,255,0.6),  0 8px 24px rgba(0,217,255,0.35); }
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); }

/* Shimmer overlay */
.shimmer-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: none;
}
.shimmer-btn:hover::before {
  animation: shimmerSlide 0.6s ease forwards;
}
@keyframes shimmerSlide {
  to { left: 200%; }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  border: 1px solid var(--glass-bd);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.btn-ghost:hover {
  background: var(--glass-bg);
  border-color: rgba(0,217,255,0.3);
  transform: translateY(-2px);
}
.btn-ghost svg { transition: transform 0.3s ease; }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-talk {
  background: var(--white);
  color: var(--void);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.btn-talk:hover { background: var(--cyan); color: var(--void); transform: translateY(-2px); }

.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.05rem; }

.btn-price-outline {
  width: 100%;
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem;
  border-radius: 9999px;
  border: 1px solid var(--glass-bd);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.btn-price-outline:hover {
  border-color: rgba(0,217,255,0.4);
  color: var(--cyan);
  background: rgba(0,217,255,0.05);
}
.price-card .btn-primary { width: 100%; justify-content: center; }

/* ===================================================
   HEADER
   =================================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  background: rgba(1,4,10,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-bd);
  transition: border-color 0.3s ease;
}
#header.scrolled { border-color: rgba(0,217,255,0.1); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo strong { font-weight: 800; color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--white);
  display: block;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(1,4,10,0.98);
  border-top: 1px solid var(--glass-bd);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.1rem; color: var(--white); font-weight: 600; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background-image: url('images/photo-1506399558188-acca6f8cbf41.avif');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-blend-mode: overlay;
  background-color: rgba(6, 11, 25, 0.75);
}

/* Particle Canvas */
#particleCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Organic Blobs */
.blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobMorph 20s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,217,255,0.15), transparent 70%);
  top: -15%;  left: -10%;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation-delay: 0s;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,128,255,0.12), transparent 70%);
  bottom: 5%; right: -5%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation-delay: -7s;
}
.blob-3 {
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(0,128,255,0.1), transparent 70%);
  bottom: -10%; left: 20%;
  border-radius: 30% 70% 50% 50% / 50% 40% 60% 50%;
  animation-delay: -12s;
}
@keyframes blobMorph {
  0%,100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: scale(1) rotate(0deg); }
  25%  { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1.05) rotate(3deg); }
  50%  { border-radius: 30% 70% 60% 40% / 50% 60% 40% 60%; transform: scale(0.95) rotate(-3deg); }
  75%  { border-radius: 70% 30% 40% 60% / 40% 70% 30% 60%; transform: scale(1.02) rotate(2deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.hero-tag.visible { opacity: 1; transform: translateY(0); }
.tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: tagBlink 2s ease-in-out infinite;
}
@keyframes tagBlink {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out) 0.1s, transform 0.9s var(--ease-out) 0.1s;
}
.hero-title.visible { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-size: 1.15rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out) 0.3s, transform 0.9s var(--ease-out) 0.3s;
}
.hero-sub.visible { opacity: 1; transform: translateY(0); }
.hero-sub strong {
  color: var(--white);
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out) 0.45s, transform 0.9s var(--ease-out) 0.45s;
}
.hero-ctas.visible { opacity: 1; transform: translateY(0); }

/* ---------- SPHERE ---------- */
.sphere-wrap {
  position: relative;
  width: 450px; height: 450px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 1s var(--ease-out) 0.2s, transform 1s var(--ease-out) 0.2s;
}
.sphere-wrap.visible { opacity: 1; transform: translateY(0) scale(1); }

.sphere {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 220px; height: 220px;
  border-radius: 50%;
  animation: sphereFloat 6s ease-in-out infinite;
}
@keyframes sphereFloat {
  0%,100% { transform: translate(-50%,-50%) translateY(0); }
  50% { transform: translate(-50%,-50%) translateY(-18px); }
}

.sphere-inner {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,217,255,0.8), rgba(0,128,255,0.4) 50%, rgba(0,0,0,0) 70%),
    radial-gradient(circle at 70% 70%, rgba(0,128,255,0.7), rgba(0,0,50,0.5));
  box-shadow:
    inset 15px 15px 40px rgba(255,255,255,0.25),
    inset -10px -10px 30px rgba(0,0,0,0.5),
    0 0 80px rgba(0,217,255,0.4),
    0 0 140px rgba(0,128,255,0.2);
  animation: sphereRotate1 15s linear infinite;
  overflow: hidden;
}
.sphere-inner::before {
  content: '';
  position: absolute; inset: -50%;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0,217,255,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0,128,255,0.5) 0%, transparent 50%);
  animation: sphereRotate2 20s linear infinite reverse;
  mix-blend-mode: screen;
}
.sphere-inner::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    repeating-conic-gradient(rgba(255,255,255,0.03) 0deg 10deg, transparent 10deg 20deg);
  animation: sphereRotate1 8s linear infinite;
  mix-blend-mode: overlay;
}

@keyframes sphereRotate1 { to { transform: rotate(360deg); } }
@keyframes sphereRotate2 { to { transform: rotate(-360deg); } }

.sphere-glow {
  position: absolute; inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,217,255,0.12) 0%, transparent 70%);
  animation: sphereFloat 6s ease-in-out infinite;
  filter: blur(20px);
}
.sphere-rim {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0,217,255,0.3);
  animation: sphereFloat 6s ease-in-out infinite;
}

/* ---------- PILLS ---------- */
.pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-bd);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
}
.pill strong { color: var(--white); font-weight: 700; }
.pill::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  animation: pillShimmer 3s ease-in-out infinite;
}
@keyframes pillShimmer { to { left: 160%; } }

.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  animation: tagBlink 2s ease-in-out infinite;
}
.pill-dot.green { background: #00e676; }
.pill-dot.blue  { background: var(--azure); }

.pill-1 { top: 8%; left: -10%; animation: pillFloat1 5s ease-in-out infinite; }
.pill-2 { bottom: 18%; right: -12%; animation: pillFloat2 6s ease-in-out infinite 1s; }
.pill-3 { top: 72%; left: -15%; animation: pillFloat3 4.5s ease-in-out infinite 2s; }

@keyframes pillFloat1 {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
@keyframes pillFloat2 {
  0%,100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-15px) rotate(-1deg); }
}
@keyframes pillFloat3 {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

/* ---------- COUNTER ---------- */
.hero-counter {
  position: absolute;
  bottom: 5%; right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  text-align: center;
}
.counter-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan);
}
.hero-counter p {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-top: 0.2rem;
}

/* ===================================================
   FEATURES
   =================================================== */
.features { background: var(--void); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.3s ease, background 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  cursor: default;
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,217,255,0.2);
  background: rgba(0,217,255,0.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,217,255,0.08);
}
.feat-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(0,217,255,0.06);
  border: 1px solid rgba(0,217,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  animation: iconPulse 3s ease-in-out infinite;
}
.feature-card:hover .feat-icon { animation-play-state: paused; }
@keyframes iconPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,217,255,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(0,217,255,0); }
}
.feat-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.88rem; line-height: 1.6; }

/* ===================================================
   PROCESS / HOW IT WORKS
   =================================================== */
.process { background: rgba(255,255,255,0.01); }
.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 56px;
  left: calc(50% / 3 + 2rem);
  right: calc(50% / 3 + 2rem);
  height: 1px;
  background: linear-gradient(to right, var(--cyan), var(--azure));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-out);
}
.process-line.drawn { transform: scaleX(1); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.process-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: border-color 0.3s ease, transform 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.process-card.visible { opacity: 1; transform: translateY(0); }
.process-card:hover {
  border-color: rgba(0,217,255,0.2);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0,217,255,0.4);
  line-height: 1;
  margin-bottom: 1rem;
  display: inline-block;
  transition: color 0.3s ease;
}
.process-card:hover .step-num {
  color: rgba(0,217,255,0.8);
  animation: stepSpin 0.6s var(--ease-out);
}
@keyframes stepSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.process-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.process-card p  { font-size: 0.9rem; margin-bottom: 1.2rem; }
.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.step-list li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.step-list li::before {
  content: '→';
  color: var(--cyan);
  font-size: 0.75rem;
}

/* ===================================================
   PRICING
   =================================================== */
.pricing { background: var(--void); position: relative; overflow: hidden; }

/* Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.billing-toggle.visible { opacity: 1; transform: translateY(0); }
.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
  transition: color 0.3s ease;
  cursor: pointer;
}
.toggle-label.active { color: var(--white); }
.toggle-label em { font-style: normal; font-size: 0.75rem; color: var(--cyan); margin-left: 0.3rem; }
.toggle-track {
  width: 52px; height: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-bd);
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.toggle-track:hover { border-color: rgba(0,217,255,0.3); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0,217,255,0.5);
  transition: transform 0.35s var(--ease-out);
}
.toggle-track.annual .toggle-thumb { transform: translateX(24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(30px);
}
.price-card.visible { opacity: 1; transform: translateY(0); }
.price-card:hover { transform: translateY(-4px); }
.price-card.pro {
  border-color: rgba(0,217,255,0.3);
  background: rgba(0,217,255,0.04);
  box-shadow: 0 0 40px rgba(0,217,255,0.3), 0 0 80px rgba(0,128,255,0.1);
}
.price-card.pro:hover { transform: translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--azure));
  color: var(--void);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 9999px;
  white-space: nowrap;
  overflow: hidden;
}
.popular-badge span { position: relative; z-index: 1; }
.popular-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: pillShimmer 2.5s ease-in-out infinite;
}

.price-tier {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 0.1rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.currency {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  align-self: flex-start;
  padding-top: 0.4rem;
}
.price-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  transition: opacity 0.2s ease;
}
.price-per {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 0.6rem;
  padding-left: 0.2rem;
}
.price-desc { font-size: 0.88rem; margin-bottom: 2rem; }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
}
.price-features li.dim { opacity: 0.35; }
.chk {
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ===================================================
   TESTIMONIALS / MARQUEE
   =================================================== */
.testimonials { background: rgba(255,255,255,0.01); overflow: hidden; }
.marquee-outer { width: 100%; overflow: hidden; position: relative; }
.marquee-outer::before,
.marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.marquee-outer::before { left: 0; background: linear-gradient(to right, var(--void), transparent); }
.marquee-outer::after  { right: 0; background: linear-gradient(to left, var(--void), transparent); }

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.testi-card:hover {
  border-color: rgba(0,217,255,0.15);
  transform: translateY(-3px);
}
.testi-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.star {
  font-size: 0.9rem;
  color: rgba(255,200,0,0.15);
  transition: color 0.3s ease;
}
.star.lit { color: #fbbf24; }
.testi-quote {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: var(--muted);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--void);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}
.author-role {
  font-size: 0.78rem;
  color: var(--slate);
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section { background: var(--void); }
.cta-box {
  position: relative;
  background-image: url('images/premium_photo-1740363268539-cd9093c3b5d1.avif');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  background-color: rgba(6, 11, 25, 0.75);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-lg);
  padding: 6rem 3rem;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.cta-box.visible { opacity: 1; transform: translateY(0); }
.cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-glow-cyan {
  background: rgba(0,217,255,0.15);
  top: -20%; left: -10%;
}
.cta-glow-blue {
  background: rgba(0,128,255,0.12);
  bottom: -20%; right: -10%;
}
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.cta-inner p  { font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; }
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.btn-demo { color: var(--muted); }
.btn-demo:hover  { color: var(--white); }
.demo-icon { flex-shrink: 0; transition: transform 0.4s var(--ease-out); }
.btn-demo:hover .demo-icon { transform: rotate(90deg); }

.cta-note { font-size: 0.78rem; color: var(--slate); }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  border-top: 1px solid var(--glass-bd);
  padding: 4rem 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand { max-width: 320px; }
.footer-brand p { font-size: 0.9rem; color: var(--slate); margin-top: 1rem; line-height: 1.7; }
.footer-links-group { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 0.7rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-col a:hover { color: var(--white); padding-left: 3px; }
.footer-bottom {
  border-top: 1px solid var(--glass-bd);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--slate);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--slate); transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--white); }

/* ===================================================
   ABOUT SECTION
   =================================================== */
.about { background: var(--void); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.about-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--cyan);
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-md) 0 0 0;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 5px 20px rgba(0,162,204,0.3);
  text-align: center;
  line-height: 1.2;
}
.about-badge strong { font-size: 2.5rem; font-weight: 800; color: #fff; }
.about-content h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
.about-content p { font-size: 1.05rem; margin-bottom: 2rem; color: var(--slate); }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.about-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 1rem; color: var(--white); font-weight: 500; }
.about-list i { font-size: 1.2rem; }

/* ===================================================
   PARALLAX BANNER
   =================================================== */
.parallax-banner {
  position: relative;
  padding: 8rem 2rem;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,4,10,0.8), rgba(0,128,255,0.6));
}
.parallax-content {
  position: relative;
  z-index: 2;
}

/* ===================================================
   REVEAL ANIMATIONS
   =================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .process-grid  { grid-template-columns: 1fr; }
  .process-line  { display: none; }
  .footer-top    { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links-group { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .sphere-wrap { width: 320px; height: 320px; }
  .sphere { width: 160px; height: 160px; }
  .pill-1 { left: 0; }
  .pill-2 { right: 0; }
  .pill-3 { left: 0; }
  .hero-counter { right: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .cta-box { padding: 4rem 1.5rem; border-radius: var(--radius-md); }
}
@media (max-width: 480px) {
  .footer-links-group { grid-template-columns: 1fr 1fr; }
  .sphere-wrap { width: 280px; height: 280px; }
  .section-header h2 { font-size: 2rem; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 80px;
  background: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* ===================================================
   MARKETS BLOCKS
   =================================================== */
.markets-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.market-block {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.market-block.visible { opacity: 1; transform: translateY(0); }
.market-block:hover { 
  transform: translateY(-4px); 
  border-color: rgba(0,217,255,0.2);
}
.market-block.pro {
  border-color: rgba(0,217,255,0.3);
  background: rgba(0,217,255,0.04);
  box-shadow: 0 0 40px rgba(0,217,255,0.1), inset 0 0 20px rgba(0,128,255,0.05);
}
.market-block.pro:hover { transform: translateY(-6px); }

.market-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.market-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
}
.market-desc {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 2rem;
}

.market-right {
  flex: 1.2;
}
.market-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.market-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--white);
}

@media (max-width: 768px) {
  .market-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }
  .market-features {
    grid-template-columns: 1fr;
  }
}
