/* =====================================================
   BOOKSOLUT - LANDING PAGE V2 CSS
   Premium Design System — "Modern Confidence"
   Typography: Plus Jakarta Sans + DM Sans
   Palette: Navy/Teal/Orange — distinctive, not generic
   ===================================================== */

/* ----- CSS Variables & Design Tokens ----- */
:root {
  /* Primary — Deep Midnight Blue (trust, professionalism) */
  --primary: #1e3a5f;
  --primary-hover: #16304f;
  --primary-light: rgba(30, 58, 95, 0.08);
  --primary-glow: rgba(30, 58, 95, 0.25);
  --primary-gradient: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 50%, #3b82c4 100%);

  /* Accent — Vivid Teal (energy, innovation) */
  --accent: #0ea5e9;
  --accent-light: rgba(14, 165, 233, 0.1);
  --accent-warm: #14b8a6;

  /* CTA — Warm Orange (action, urgency) */
  --cta-color: #f97316;
  --cta-hover: #ea580c;
  --cta-light: rgba(249, 115, 22, 0.1);
  --cta-glow: rgba(249, 115, 22, 0.35);
  --cta-gradient: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fdba74 100%);

  /* Signals */
  --success: #22c55e;
  --warning: #f59e0b;
  --whatsapp: #25d366;

  /* Neutral Palette — Warm tones, not cold grays */
  --text-main: #1a1d23;
  --text-muted: #5c6370;
  --text-light: #8b919a;
  --bg-body: #ffffff;
  --bg-surface: #fafaf8;
  --bg-alt: #f3f2ef;
  --bg-dark: #111827;
  --border-color: #e5e4e0;
  --border-light: rgba(148, 148, 140, 0.15);

  /* Shadows — Warmer */
  --shadow-sm: 0 1px 3px rgba(26, 29, 35, 0.04);
  --shadow-md: 0 4px 14px rgba(26, 29, 35, 0.07);
  --shadow-lg: 0 12px 40px rgba(26, 29, 35, 0.10);
  --shadow-xl: 0 25px 60px rgba(26, 29, 35, 0.14);
  --shadow-glow: 0 0 60px rgba(30, 58, 95, 0.20);

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out-expo);
  --transition-base: 0.4s var(--ease-out-expo);
  --transition-slow: 0.6s var(--ease-out-expo);
  --transition-slower: 0.8s var(--ease-out-expo);

  /* Typography — Plus Jakarta Sans (display) + DM Sans (body) */
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Z-index scale */
  --z-nav: 100;
  --z-modal: 200;
  --z-toast: 300;
}

/* ----- Base Reset ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/*
 * Fallback: if IntersectionObserver never fires (element already in viewport
 * at load, JS error, race condition), reveal the element after 3s.
 * The .visible class set by JS removes the animation via higher specificity.
 */
[data-animate]:not(.visible) {
  animation: dataAnimateFallback 0.6s ease-out 3s forwards;
}

[data-animate].visible {
  animation: none;
}

@keyframes dataAnimateFallback {
  to {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

/* =====================================================
   SCROLL ANIMATION SYSTEM
   ===================================================== */

/* Base state for all animated elements */
[data-animate] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Direction variants */
[data-animate="fade-up"] {
  transform: translateY(60px);
}

[data-animate="fade-down"] {
  transform: translateY(-60px);
}

[data-animate="fade-left"] {
  transform: translateX(-80px);
}

[data-animate="fade-right"] {
  transform: translateX(80px);
}

[data-animate="zoom-in"] {
  transform: scale(0.85);
}

[data-animate="zoom-out"] {
  transform: scale(1.15);
}

[data-animate="flip-up"] {
  transform: perspective(1000px) rotateX(20deg) translateY(40px);
}

[data-animate="blur-in"] {
  filter: blur(12px);
  transform: translateY(30px);
}

[data-animate="fade-left"].visible,
[data-animate="fade-right"].visible {
  transform: translateX(0);
}

[data-animate="zoom-in"].visible,
[data-animate="zoom-out"].visible {
  transform: scale(1);
}

[data-animate="flip-up"].visible {
  transform: perspective(1000px) rotateX(0) translateY(0);
}

[data-animate="blur-in"].visible {
  filter: blur(0);
  transform: translateY(0);
}

/* Stagger delays for children */
[data-animate-delay="1"] {
  transition-delay: 0.1s;
}

[data-animate-delay="2"] {
  transition-delay: 0.2s;
}

[data-animate-delay="3"] {
  transition-delay: 0.3s;
}

[data-animate-delay="4"] {
  transition-delay: 0.4s;
}

[data-animate-delay="5"] {
  transition-delay: 0.5s;
}

[data-animate-delay="6"] {
  transition-delay: 0.6s;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar-v2 {
  position: fixed;
  top: 12px;
  left: 16px;
  right: 16px;
  z-index: var(--z-nav, 1050);
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 24px rgba(26, 29, 35, 0.06), 0 1px 3px rgba(26, 29, 35, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-v2.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 32px rgba(26, 29, 35, 0.08), 0 1px 4px rgba(26, 29, 35, 0.04);
  border-color: rgba(229, 228, 224, 0.6);
  top: 8px;
}

.navbar-v2 .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.navbar-v2 .navbar-brand span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-v2 .navbar-brand .brand-logo {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(30, 58, 95, 0.2));
}

.navbar-v2 .nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-decoration: none;
  font-size: 0.9375rem;
}

.navbar-v2 .nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.navbar-v2 .btn-cta {
  font-family: var(--font-display);
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  background: var(--cta-gradient);
  border: none;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 16px var(--cta-glow);
  transition: all var(--transition-base);
}

.navbar-v2 .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--cta-glow);
  filter: brightness(1.05);
}

.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(30, 58, 95, 0.18);
}

@media (max-width: 991px) {
  .navbar-v2 {
    top: 8px;
    left: 12px;
    right: 12px;
    padding: 0.625rem 1rem;
    border-radius: 14px;
  }
}

/* =====================================================
   HERO SECTION - EPIC ENTRANCE
   ===================================================== */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.92) 100%),
    url('../images/background-hero.webp') top center / cover no-repeat;
  padding: 140px 0 80px;
  overflow: hidden;
}

/* Animated gradient orbs */
.hero-v2::before,
.hero-v2::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-v2::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.15) 0%, transparent 70%);
  top: -20%;
  left: -10%;
  animation: floatOrb1 20s ease-in-out infinite;
}

.hero-v2::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 184, 166, 0.18) 0%, transparent 70%);
  bottom: -10%;
  right: -10%;
  animation: floatOrb2 25s ease-in-out infinite;
}

@keyframes floatOrb1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, 30px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 50px) scale(0.95);
  }
}

@keyframes floatOrb2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-40px, -40px) scale(1.15);
  }
}

.hero-v2 .container {
  position: relative;
  z-index: 1;
}

/* Title with gradient text */
.hero-title-v2 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title-v2 .gradient-text {
  background: linear-gradient(135deg, #1e3a5f 0%, #0ea5e9 60%, #14b8a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-subtitle-v2 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  font-family: var(--font-display);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--cta-gradient);
  border: none;
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow-lg), 0 0 40px var(--cta-glow);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-hero-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 60px var(--cta-glow);
  filter: brightness(1.05);
  color: white;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-secondary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid var(--text-muted);
  background: var(--bg-body);
  color: var(--text-main);
  transition: all var(--transition-base);
}

.btn-hero-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Social Proof Strip */
.hero-social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.proof-item i {
  font-size: 1rem;
}

.proof-item strong {
  color: var(--text-main);
  font-weight: 700;
}

.proof-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
}

/* Hero microcopy ("Sin tarjeta de crédito · Configurá en 2 minutos") */
.hero-microcopy {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.hero-trust-chips i {
  color: var(--primary);
}

@media (max-width: 576px) {
  .hero-social-proof {
    flex-direction: column;
    gap: 0.75rem;
  }

  .proof-divider {
    display: none;
  }

  .hero-microcopy {
    font-size: 0.825rem;
  }

  .hero-trust-chips {
    gap: 0.4rem;
    margin-top: 0.85rem;
  }

  .hero-trust-chips span {
    min-height: 34px;
    padding: 0.4rem 0.7rem;
    font-size: 0.78rem;
  }
}

/* Hero mobile polish — legible text, CTA above the fold */
@media (max-width: 768px) {
  .hero-v2 {
    min-height: auto;
    padding: 5.75rem 0 3rem;
    background-position: top center;
  }

  .hero-title-v2 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    margin-bottom: 1rem;
    line-height: 1.15;
  }

  .hero-subtitle-v2 {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    min-height: 52px;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-v2::before,
  .hero-v2::after {
    display: none;
  }
}

/* =====================================================
   FEATURES SECTION - REBUILT
   ===================================================== */
.features-section-v2 {
  padding: 6rem 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%),
    url('../images/background1.webp') center center / cover no-repeat;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Hero Feature Cards (top 3) --- */
.ft-hero-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .ft-hero-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.ft-hero-card {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), box-shadow 0.35s cubic-bezier(.4, 0, .2, 1);
}

.ft-hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(30, 58, 95, 0.14);
}

.ft-hero-card--accent {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.03) 0%, rgba(45, 90, 142, 0.05) 100%);
  border-color: rgba(30, 58, 95, 0.15);
}

.ft-hero-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  background: var(--primary-light);
  color: var(--primary);
}

.ft-hero-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  transition: transform 0.3s ease;
}

.ft-hero-card:hover .ft-hero-card__icon {
  transform: scale(1.1) rotate(-3deg);
}

.ft-hero-card__icon--indigo {
  background: #eef2ff;
  color: #6366f1;
}

.ft-hero-card__icon--sky {
  background: #e0f2fe;
  color: #0284c7;
}

.ft-hero-card__icon--emerald {
  background: #d1fae5;
  color: #059669;
}

.ft-hero-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  line-height: 1.35;
}

.ft-hero-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Secondary Feature Mini-Cards (3x2 grid) --- */
.ft-grid-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  .ft-grid-secondary {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ft-grid-secondary {
    grid-template-columns: 1fr;
  }
}

.ft-mini {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ft-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px rgba(30, 58, 95, 0.10);
  border-color: rgba(30, 58, 95, 0.15);
}

.ft-mini__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ft-mini__icon--violet {
  background: #ede9fe;
  color: #7c3aed;
}

.ft-mini__icon--amber {
  background: #fef3c7;
  color: #d97706;
}

.ft-mini__icon--rose {
  background: #ffe4e6;
  color: #e11d48;
}

.ft-mini__icon--teal {
  background: #ccfbf1;
  color: #0d9488;
}

.ft-mini__icon--orange {
  background: #ffedd5;
  color: #ea580c;
}

.ft-mini__icon--indigo {
  background: #eef2ff;
  color: #6366f1;
}

.ft-mini__text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 0.25rem;
}

.ft-mini__text p {
  color: var(--text-muted);
  font-size: 0.825rem;
  line-height: 1.55;
  margin: 0;
}

/* --- Reveal animation for feature cards (Legacy - ft-hero-card/ft-mini) ---
 * NOTE: These selectors are kept visible by default since the landing now
 * uses .ft-card-bento instead. The opacity:0 default was removed to prevent
 * accidental invisible elements.
 */
.ft-hero-card.revealed,
.ft-mini.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(.4, 0, .2, 1), transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

/* =====================================================
   LIVE STATS COUNTER
   ===================================================== */
.stats-counter-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #111827 0%, #1e3a5f 50%, #0c4a6e 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-top: -2rem;
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  text-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.stat-prefix, .stat-suffix {
  font-size: 0.6em;
  color: var(--primary);
  font-weight: 700;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.stat-label strong {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

/* =====================================================
   SPLIT FEATURE SHOWCASE (Alternating) - kept for reuse
   ===================================================== */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.showcase-row.reverse .showcase-content {
  order: 2;
}

.showcase-row.reverse .showcase-visual {
  order: 1;
}

@media (max-width: 992px) {

  .showcase-row.reverse .showcase-content,
  .showcase-row.reverse .showcase-visual {
    order: unset;
  }
}

.showcase-content h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: white; /* Forced white due to dark canvas bg */
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.showcase-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9); /* Forced white due to dark canvas bg */
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: white; /* Forced white due to dark canvas bg */
  font-weight: 500;
}

.feature-checklist li i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Showcase Visual */
.showcase-visual {
  position: relative;
}

.showcase-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.showcase-image img {
  width: 100%;
  display: block;
}

/* Floating elements for depth */
.floating-card {
  position: absolute;
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  animation: floatY 4s ease-in-out infinite;
}

.floating-card.top-right {
  top: -20px;
  right: -20px;
}

.floating-card.bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: -2s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing-section-v2 {
  padding: 8rem 0;
  background: linear-gradient(160deg, #f6f4ff 0%, #eeefff 45%, #eef6ff 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pricing-section-v2::before {
  content: "";
  position: absolute;
  inset: -18% -12%;
  background:
    radial-gradient(60% 40% at 18% 24%, rgba(142, 132, 255, 0.22) 0%, rgba(142, 132, 255, 0) 70%),
    radial-gradient(56% 38% at 82% 78%, rgba(126, 210, 255, 0.2) 0%, rgba(126, 210, 255, 0) 72%),
    radial-gradient(48% 30% at 65% 20%, rgba(196, 176, 255, 0.24) 0%, rgba(196, 176, 255, 0) 72%);
  filter: blur(2px);
  opacity: 0.95;
  transform: translate3d(0, 0, 0);
  animation: pricingAuroraDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.pricing-section-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.2px) 0 0 / 18px 18px,
    radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.2px) 0 0 / 20px 20px,
    repeating-radial-gradient(circle at -12% -18%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 22px),
    repeating-radial-gradient(circle at 112% 118%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 20px);
  opacity: 0.55;
  mix-blend-mode: soft-light;
  animation: pricingContourFlow 24s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.pricing-section-v2 .container {
  position: relative;
  z-index: 2;
}

@keyframes pricingAuroraDrift {
  0% {
    transform: translate3d(-2%, -1.5%, 0) scale(1);
  }

  50% {
    transform: translate3d(1.8%, 1.2%, 0) scale(1.04);
  }

  100% {
    transform: translate3d(-1.2%, 2.4%, 0) scale(1.06);
  }
}

@keyframes pricingContourFlow {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 28px 16px, -24px -18px, 40px 26px, -32px -24px;
  }
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-toggle span {
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.pricing-toggle span.active {
  color: var(--text-main);
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: var(--border-color);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle-switch:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.toggle-switch.active,
input[type="checkbox"]:checked+.toggle-switch {
  background: var(--primary);
}

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.toggle-switch.active::after,
input[type="checkbox"]:checked+.toggle-switch::after {
  transform: translateX(28px);
}

.pricing-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .pricing-grid-v2 {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.pricing-card-v2 {
  padding: 2.5rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
}

.pricing-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(30, 58, 95, 0.12);
  border-color: rgba(30, 58, 95, 0.25);
}

.pricing-card-v2:hover h3 {
  color: var(--primary);
  transition: color var(--transition-fast);
}

.pricing-card-v2:hover .pricing-btn {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.pricing-card-v2:nth-child(1) { transition-delay: 0s; }
.pricing-card-v2:nth-child(2) { transition-delay: 0.1s; }
.pricing-card-v2:nth-child(3) { transition-delay: 0.2s; }

.pricing-card-v2.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 0 50px var(--primary-glow);
  transform: scale(1.05);
  background: linear-gradient(180deg, rgba(30, 58, 95, 0.03) 0%, var(--bg-body) 100%);
}

.pricing-card-v2.featured:hover {
  transform: scale(1.07) translateY(-5px);
  box-shadow: var(--shadow-xl), 0 0 60px var(--primary-glow);
}

.pricing-card-v2.featured:hover .pricing-btn {
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card-v2 h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.pricing-price-v2 {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0.5rem 0;
  min-height: 60px;
}

.pricing-price-v2 .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.pricing-price-v2 .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  transition: opacity 0.3s ease;
  min-width: 140px;
  text-align: left;
}

.pricing-price-v2 .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.free-trial-badge {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.25rem 0;
}

.pricing-card-v2 .description {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.pricing-features-v2 {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.pricing-features-v2 li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-features-v2 li i {
  color: var(--primary);
  font-size: 1rem;
}

.pricing-features-v2 li i.fa-times {
  color: #cbd5e1;
}

.pricing-features-v2 li:has(i.fa-times) {
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #e2e8f0;
}

.pricing-btn {
  width: 100%;
  min-height: 52px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-color);
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pricing-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.pricing-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

@media (max-width: 992px) {
  .pricing-card-v2,
  .pricing-card-v2.featured,
  .pricing-card-v2.featured:hover {
    min-height: auto;
    transform: none;
  }

  .pricing-card-v2 {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .pricing-section-v2 {
    padding: 4.5rem 0;
  }

  .pricing-toggle {
    gap: 0.65rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .pricing-card-v2 {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
  }

  .pricing-price-v2 .amount {
    font-size: 2.35rem;
    min-width: 112px;
  }
}

.pricing-card-v2.featured .pricing-btn {
  background: var(--primary-gradient);
  border: none;
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.pricing-card-v2.featured .pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

/* =====================================================
   COMPARISON SECTION
   ===================================================== */
.comparison-section-v2 {
  padding: 6rem 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(241, 245, 249, 0.92) 100%),
    url('../images/background5.webp') center center / cover no-repeat;
}

.comparison-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: 100%;
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.comparison-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.comparison-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =====================================================
   TESTIMONIALS CAROUSEL
   ===================================================== */
.testimonials-section-v2 {
  padding: 6rem 0;
  background:
    linear-gradient(180deg, rgba(241, 245, 249, 0.85) 0%, rgba(241, 245, 249, 0.75) 100%),
    url('../images/background3.webp') center center / cover no-repeat;
  position: relative;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 992px) {
  .testimonials-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonials-carousel {
    grid-template-columns: 1fr;
  }
}

.testimonial-card-v2 {
  padding: 1.5rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--warning);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1; /* Pushes author section down */
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.author-info h6 {
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 0.25rem;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-section-v2 {
  padding: 8rem 0;
  background:
    radial-gradient(120% 90% at 10% 100%, rgba(145, 177, 255, 0.34) 0%, rgba(145, 177, 255, 0) 62%),
    radial-gradient(88% 64% at 90% 14%, rgba(178, 154, 255, 0.28) 0%, rgba(178, 154, 255, 0) 66%),
    linear-gradient(160deg, #f7f6ff 0%, #eff1ff 46%, #e9f2ff 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.faq-section-v2::before {
  content: "";
  position: absolute;
  inset: -28% -20%;
  background:
    linear-gradient(144deg, rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 0.54) 24%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(154deg, rgba(175, 164, 255, 0) 14%, rgba(175, 164, 255, 0.26) 33%, rgba(175, 164, 255, 0) 56%),
    linear-gradient(166deg, rgba(156, 194, 255, 0) 24%, rgba(156, 194, 255, 0.25) 45%, rgba(156, 194, 255, 0) 66%),
    radial-gradient(60% 42% at 84% 78%, rgba(173, 158, 255, 0.24) 0%, rgba(173, 158, 255, 0) 72%);
  filter: blur(1px);
  opacity: 0.94;
  transform: translate3d(0, 0, 0) rotate(-4deg) scale(1.03);
  animation: faqRibbonSweep 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.faq-section-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 10% 16%, rgba(255, 255, 255, 0.24) 0 1.2px, transparent 1.2px 20px),
    repeating-radial-gradient(circle at 92% 84%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 18px),
    linear-gradient(132deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.34) 49%, rgba(255, 255, 255, 0) 63%),
    linear-gradient(150deg, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, 0.28) 66%, rgba(255, 255, 255, 0) 80%);
  opacity: 0.68;
  mix-blend-mode: screen;
  animation: faqContourDrift 30s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.faq-section-v2 .container {
  position: relative;
  z-index: 2;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  min-height: 56px;
  padding: 1.25rem 1.5rem;
  background: var(--bg-body);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg-surface);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -4px;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question {
  background: var(--primary-light);
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: max-height;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 576px) {
  .faq-section-v2 {
    padding: 4.5rem 0;
  }

  .faq-grid {
    max-width: 100%;
  }

  .faq-question {
    min-height: 60px;
    padding: 1rem;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .faq-answer-content {
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
  }
}

/* =====================================================
   COMPARISON SECTION
   ===================================================== */
.comparison-section-v2 {
  padding: 6rem 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(241, 245, 249, 0.92) 100%),
    url('../images/background5.webp') center center / cover no-repeat;
}

.comparison-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--bg-body);
  border: 1px solid var(--border-color);
}

/* =====================================================
   FINAL CTA SECTION
   ===================================================== */
.cta-section-v2 {
  padding: 6rem 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.70) 0%, rgba(15, 23, 42, 0.65) 100%),
    url('../images/background4.webp') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.cta-section-v2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(30, 58, 95, 0.2) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  font-family: var(--font-display);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--cta-gradient);
  border: none;
  color: white;
  box-shadow: 0 4px 20px var(--cta-glow);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px var(--cta-glow);
  filter: brightness(1.05);
}

.btn-cta-secondary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-cta-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.cta-trust-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-trust-strip span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.cta-trust-strip span i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-v2 {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-logo {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
}

.footer-brand span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  color: white;
  transform: translateY(-3px);
}

.footer-social a[aria-label="Facebook"]:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.footer-social a[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  border-color: #dd2a7b;
}

.footer-social a[aria-label="Twitter"]:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.footer-social a[aria-label="LinkedIn"]:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.footer-column h6,
.footer-column .footer-heading {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--primary);
}

.footer-made-in {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-made-in i {
  color: #ef4444;
  font-size: 0.75rem;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bg-surface {
  background: var(--bg-surface);
}

.bg-alt {
  background: var(--bg-alt);
}

/* =====================================================
   SCROLL-DRIVEN SHOWCASE SECTION - REDESIGNED
   ===================================================== */
.scroll-showcase-wrapper {
  position: relative;
  height: 400vh;
  --showcase-scroll-progress: 0;
  --showcase-bg-opacity: 0.10;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-alt) 50%, var(--bg-surface) 100%);
}

.scroll-showcase-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 992px) {
  .scroll-showcase-wrapper {
    height: 450vh;
  }

  .scroll-showcase-sticky {
    padding: 70px 0 40px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .scroll-showcase-wrapper {
    height: 500vh;
  }

  .scroll-showcase-sticky {
    padding: 60px 0 30px;
  }
}

/* Scroll progress bar at the top of sticky area */
.showcase-scroll-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-color);
  z-index: 20;
}

.showcase-scroll-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--primary-gradient);
  border-radius: 0 2px 2px 0;
  transition: width 0.15s linear;
}

/* Scroll-drawn background layer */
.showcase-bg-canvas-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: var(--showcase-bg-opacity, 1);
  transition: opacity 0.18s linear;
}

.showcase-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.9;
}

.showcase-bg-gradient {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
  opacity: 0.32;
  transition: transform 0.28s ease, opacity 0.28s ease, background 0.35s ease;
}

.showcase-bg-gradient-a {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  left: -10%;
  top: -18%;
  background: radial-gradient(circle, rgba(67, 97, 238, 0.42) 0%, rgba(67, 97, 238, 0) 72%);
  transform: translate3d(calc(var(--showcase-scroll-progress, 0) * 120px),
      calc(var(--showcase-scroll-progress, 0) * 18px),
      0);
}

.showcase-bg-gradient-b {
  width: clamp(260px, 34vw, 520px);
  height: clamp(260px, 34vw, 520px);
  right: -12%;
  bottom: -16%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.34) 0%, rgba(14, 165, 233, 0) 70%);
  transform: translate3d(calc(var(--showcase-scroll-progress, 0) * -90px),
      calc(var(--showcase-scroll-progress, 0) * -26px),
      0);
}

.scroll-showcase-wrapper .container {
  position: relative;
  z-index: 2;
}

/* Panel-specific color mood */
.scroll-showcase-wrapper[data-active-panel="0"] .showcase-bg-gradient-a {
  background: radial-gradient(circle, rgba(67, 97, 238, 0.42) 0%, rgba(67, 97, 238, 0) 72%);
}

.scroll-showcase-wrapper[data-active-panel="0"] .showcase-bg-gradient-b {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.34) 0%, rgba(14, 165, 233, 0) 70%);
}

.scroll-showcase-wrapper[data-active-panel="1"] .showcase-bg-gradient-a {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.42) 0%, rgba(124, 58, 237, 0) 72%);
}

.scroll-showcase-wrapper[data-active-panel="1"] .showcase-bg-gradient-b {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.36) 0%, rgba(6, 182, 212, 0) 70%);
}

.scroll-showcase-wrapper[data-active-panel="2"] .showcase-bg-gradient-a {
  background: radial-gradient(circle, rgba(14, 116, 144, 0.40) 0%, rgba(14, 116, 144, 0) 72%);
}

.scroll-showcase-wrapper[data-active-panel="2"] .showcase-bg-gradient-b {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.34) 0%, rgba(59, 130, 246, 0) 70%);
}

.scroll-showcase-wrapper[data-active-panel="3"] .showcase-bg-gradient-a {
  background: radial-gradient(circle, rgba(79, 70, 229, 0.38) 0%, rgba(79, 70, 229, 0) 72%);
}

.scroll-showcase-wrapper[data-active-panel="3"] .showcase-bg-gradient-b {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, rgba(16, 185, 129, 0) 70%);
}

.scroll-showcase-wrapper[data-active-panel="4"] .showcase-bg-gradient-a {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(37, 99, 235, 0) 72%);
}

.scroll-showcase-wrapper[data-active-panel="4"] .showcase-bg-gradient-b {
  background: radial-gradient(circle, rgba(2, 132, 199, 0.36) 0%, rgba(2, 132, 199, 0) 70%);
}

@media (max-width: 768px) {
  .showcase-bg-canvas {
    opacity: 0.76;
  }

  .showcase-bg-gradient {
    filter: blur(48px);
    opacity: 0.24;
  }
}

/* Progress indicator */
.showcase-progress {
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  z-index: 10;
}

.showcase-progress::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--border-color);
  z-index: -1;
}

@media (max-width: 992px) {
  .showcase-progress {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
  }

  .showcase-progress::before {
    display: none;
  }
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: all var(--transition-base);
}

.progress-step:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: var(--radius-full);
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  transition: all var(--transition-base);
  position: relative;
  flex-shrink: 0;
}

.step-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color var(--transition-base);
}

.progress-step.active .step-dot {
  background: var(--primary);
  transform: scale(1.3);
}

.progress-step.active .step-dot::before {
  border-color: var(--primary-light);
}

.step-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.progress-step.active .step-label {
  color: #ffffff;
}

/* On tablet/mobile: pill-shaped steps with visible labels */
@media (max-width: 992px) {
  .progress-step {
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    gap: 0.4rem;
  }

  .progress-step.active {
    background: var(--primary-light);
    border-color: var(--primary);
  }

  .step-dot {
    width: 8px;
    height: 8px;
  }

  .progress-step.active .step-dot {
    transform: scale(1);
  }

  .step-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-main);
  }
}

@media (max-width: 576px) {
  .showcase-progress {
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding: 0 0.15rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .showcase-progress::-webkit-scrollbar {
    display: none;
  }

  .progress-step {
    padding: 0.25rem 0.45rem;
    gap: 0.25rem;
  }

  .step-dot {
    width: 6px;
    height: 6px;
  }

  .step-label {
    font-size: 0.62rem;
  }
}

@media (max-width: 768px) {
  .scroll-showcase-wrapper {
    height: auto;
    background:
      radial-gradient(circle at 12% 8%, rgba(99, 102, 241, 0.30) 0, rgba(99, 102, 241, 0) 34%),
      radial-gradient(circle at 88% 22%, rgba(14, 165, 233, 0.28) 0, rgba(14, 165, 233, 0) 36%),
      radial-gradient(circle at 22% 86%, rgba(16, 185, 129, 0.22) 0, rgba(16, 185, 129, 0) 34%),
      linear-gradient(145deg, #0f172a 0%, #312e81 46%, #0f766e 100%);
    isolation: isolate;
    overflow: hidden;
  }

  .scroll-showcase-wrapper::before,
  .scroll-showcase-wrapper::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }

  .scroll-showcase-wrapper::before {
    inset: -18% -30%;
    background:
      repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
      radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0) 58%);
    opacity: 0.36;
    transform: rotate(-8deg);
  }

  .scroll-showcase-wrapper::after {
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.34));
  }

  .scroll-showcase-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 4rem 0;
  }

  .showcase-scroll-bar {
    display: none;
  }

  .showcase-bg-canvas-wrap {
    display: block;
    opacity: 0.72;
    mix-blend-mode: screen;
  }

  .showcase-bg-canvas {
    display: none;
  }

  .showcase-bg-gradient {
    opacity: 0.46;
  }

  .showcase-panels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .showcase-panel {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.58);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .showcase-progress {
    position: sticky;
    top: 5.25rem;
    z-index: 12;
    margin-bottom: 1.25rem;
    padding: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .scroll-showcase-wrapper .showcase-content h3,
  .scroll-showcase-wrapper .showcase-centered h3 {
    color: #ffffff;
  }

  .scroll-showcase-wrapper .showcase-content p,
  .scroll-showcase-wrapper .showcase-centered p,
  .scroll-showcase-wrapper .feature-checklist li {
    color: rgba(255, 255, 255, 0.92);
  }
}

.showcase-panels {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  align-items: center;
}

.showcase-panel {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.6s;
}

.showcase-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .showcase-panels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .showcase-panel,
  .showcase-panel.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.58);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}

/* Showcase row layout */
.scroll-showcase-wrapper .showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 4rem;
}

@media (max-width: 992px) {
  .scroll-showcase-wrapper .showcase-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
    text-align: center;
  }

  .scroll-showcase-wrapper .showcase-row.reverse {
    direction: ltr;
  }

  .scroll-showcase-wrapper .feature-checklist {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }
}

.scroll-showcase-wrapper .showcase-row.reverse .showcase-content {
  order: 2;
}

.scroll-showcase-wrapper .showcase-row.reverse .showcase-visual {
  order: 1;
}

@media (max-width: 992px) {

  .scroll-showcase-wrapper .showcase-row.reverse .showcase-content,
  .scroll-showcase-wrapper .showcase-row.reverse .showcase-visual {
    order: unset;
  }
}

@media (max-width: 576px) {
  .scroll-showcase-wrapper .showcase-row {
    padding: 0 0.5rem;
    gap: 1.5rem;
  }

  .scroll-showcase-wrapper .feature-checklist {
    max-width: 100%;
    padding: 0 0.25rem;
  }

  .scroll-showcase-wrapper .feature-checklist li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
}

/* Showcase tag */
.showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.scroll-showcase-wrapper .showcase-content h3 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.scroll-showcase-wrapper .showcase-content p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Showcase visual */
.scroll-showcase-wrapper .showcase-visual {
  position: relative;
}

/* Mockup window */
.showcase-mockup {
  background: var(--bg-body);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(99, 102, 241, 0.1);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
}

.mockup-dots span:first-child {
  background: #ef4444;
}

.mockup-dots span:nth-child(2) {
  background: #f59e0b;
}

.mockup-dots span:last-child {
  background: #22c55e;
}

.mockup-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
}

.mockup-body {
  padding: 1.5rem;
  min-height: 280px;
}

@media (max-width: 992px) {
  .mockup-body {
    padding: 1rem;
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .mockup-body {
    padding: 0.75rem;
    min-height: 160px;
  }

  .calendar-slot {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .setting-row {
    padding: 0.75rem;
  }

  .setting-label {
    font-size: 0.8rem;
  }

  .setting-value {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Calendar preview mockup */
.calendar-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calendar-header-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.calendar-slot {
  padding: 0.75rem 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
}

.calendar-slot.booked {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 500;
}

.calendar-slot.booked.accent {
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  border-left-color: var(--accent);
}

/* Settings preview mockup */
.settings-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
}

.setting-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

.setting-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
}

.setting-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.setting-toggle.active {
  background: var(--success);
  color: white;
}

/* Reports preview mockup */
.reports-preview {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-mini {
  text-align: center;
}

.stat-mini-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
}

.stat-mini.green .stat-mini-value {
  color: var(--success);
}

.stat-mini-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  height: 80px;
  padding: 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
}

.mini-chart .bar {
  width: 32px;
  background: var(--border-color);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: all var(--transition-base);
}

.mini-chart .bar.active {
  background: var(--primary-gradient);
}

/* Floating badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: var(--text-main);
  z-index: 5;
}

.floating-badge i {
  color: var(--primary);
  font-size: 1rem;
}

.floating-badge.green i {
  color: var(--success);
}

.floating-badge.top-right {
  top: -20px;
  right: 20px;
}

.floating-badge.bottom-left {
  bottom: -20px;
  left: 20px;
}

@media (max-width: 768px) {
  .floating-badge {
    display: none;
  }
}

/* Feature checklist in showcase */
.scroll-showcase-wrapper .feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scroll-showcase-wrapper .feature-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.scroll-showcase-wrapper .feature-checklist li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.scroll-showcase-wrapper .showcase-panel[data-panel="0"] .feature-checklist li i,
.scroll-showcase-wrapper .showcase-panel[data-panel="1"] .feature-checklist li i,
.scroll-showcase-wrapper .showcase-panel[data-panel="2"] .feature-checklist li i {
  color: var(--success);
}

.showcase-subtitle-channels {
  display: block;
  font-size: 0.65em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
  margin-top: 0.3em;
}

/* =====================================================
   CENTERED SHOWCASE LAYOUT (Panels 4 & 5)
   ===================================================== */
.showcase-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.showcase-centered h3 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.showcase-centered p {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.showcase-centered .showcase-tag {
  margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
  .showcase-centered {
    padding: 1rem 0.5rem;
  }

  .showcase-centered h3 {
    margin-bottom: 0.75rem;
  }

  .showcase-centered p {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .scroll-showcase-wrapper .showcase-content h3,
  .scroll-showcase-wrapper .showcase-centered h3 {
    color: #ffffff;
  }

  .scroll-showcase-wrapper .showcase-content p,
  .scroll-showcase-wrapper .showcase-centered p,
  .scroll-showcase-wrapper .feature-checklist li {
    color: rgba(255, 255, 255, 0.92);
  }
}

/* Horizontal Steps */
.steps-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.step-h {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.step-h:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-h.active {
  background: var(--primary-light);
  border-color: var(--primary);
}

.step-h-num {
  width: 40px;
  height: 40px;
  background: var(--bg-body);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.step-h.active .step-h-num {
  background: var(--primary-gradient);
  border-color: var(--primary);
  color: white;
}

.step-h-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.step-h.active .step-h-label {
  color: var(--primary);
}

.step-h-arrow {
  color: var(--border-color);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .step-h-arrow {
    display: none;
  }

  .steps-horizontal {
    gap: 0.75rem;
  }

  .step-h {
    padding: 0.75rem 1rem;
  }
}

/* Showcase Button */
.btn-showcase {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary-gradient);
  color: white;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: all var(--transition-base);
}

.btn-showcase:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--primary-glow);
  color: white;
}

/* Centered Industry Chips */
.industry-chips.centered {
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   ONBOARDING STEPS FLOW (Panel 4 Redesign)
   ===================================================== */
.onboarding-steps-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 3rem 0;
  position: relative;
}

.onboarding-step {
  flex: 0 0 auto;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  transition: all var(--transition-base);
}

.onboarding-step:hover .step-circle {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.step-icon-inner {
  color: white;
  font-size: 2rem;
}

.step-details {
  width: 100%;
  padding: 0 0.5rem;
}

.step-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.step-details p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0;
}

.step-connector {
  flex: 0 0 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  margin-top: 50px;
  border-radius: var(--radius-full);
  position: relative;
}

.step-connector::before {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid var(--accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@media (max-width: 992px) {
  .onboarding-steps-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem auto;
    max-width: 500px;
  }

  .step-connector {
    display: none;
  }

  .onboarding-step {
    width: 100%;
    flex-direction: row;
    text-align: left;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    min-height: 80px;
    align-items: center;
  }

  .step-circle {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
  }

  .step-icon-inner {
    font-size: 1.25rem;
  }

  .step-number {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    top: -4px;
    right: -4px;
  }

  .step-details h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .step-details p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

@media (max-width: 576px) {
  .onboarding-steps-flow {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1rem auto;
    max-width: 600px;
  }

  .onboarding-step {
    padding: 0.75rem;
    flex-direction: column;
    text-align: center;
    min-height: 120px;
    justify-content: center;
  }

  .onboarding-step .step-details {
    text-align: center;
  }

  .step-circle {
    width: 44px;
    height: 44px;
    margin-bottom: 0.5rem;
  }

  .step-icon-inner {
    font-size: 1rem;
  }
}

/* Glass card text colors for onboarding steps on mobile */
@media (max-width: 992px) {
  .onboarding-step .step-details h4 {
    color: #ffffff;
  }

  .onboarding-step .step-details p {
    color: rgba(255, 255, 255, 0.85);
  }
}

/* =====================================================
   PANEL 4: STEPS COMPACT (Onboarding) - Legacy
   ===================================================== */
.steps-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.step-compact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--primary);
  transition: all var(--transition-fast);
}

.step-compact:hover {
  background: var(--primary-light);
  transform: translateX(4px);
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.step-info strong {
  font-size: 0.95rem;
  color: var(--text-main);
}

.step-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Onboarding mockup */
.onboarding-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.onboarding-progress {
  height: 8px;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  transition: width 0.5s ease-out;
}

.onboarding-step-visual {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.onboarding-step-visual i {
  font-size: 1rem;
  color: var(--border-color);
}

.onboarding-step-visual.active {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
}

.onboarding-step-visual.active i {
  color: var(--success);
}

.onboarding-step-visual.current {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.onboarding-step-visual.current i {
  color: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Purple floating badge */
.floating-badge.purple i {
  color: #8b5cf6;
}

/* =====================================================
   PANEL 5: INDUSTRY CHIPS & VISUAL
   ===================================================== */
.industry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.industry-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}

.industry-chip:hover i {
  color: #ffffff;
}

.industry-chip i {
  color: var(--primary);
  font-size: 0.875rem;
}

.industry-cta-text {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 576px) {
  .industry-chips {
    gap: 0.5rem;
    justify-content: center;
  }

  .industry-chip {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    gap: 0.35rem;
  }

  .industry-chip i {
    font-size: 0.75rem;
  }

  .industry-cta-text {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .industry-chips.centered {
    max-width: 100%;
    padding: 0 0.25rem;
  }
}

/* Industries visual mockup */
.industries-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.industry-card-visual {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.industry-card-visual:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.industry-card-visual.accent {
  background: var(--primary-light);
  border-color: var(--primary);
}

.industry-icon-large {
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  color: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.industry-card-visual span {
  font-weight: 600;
  color: var(--text-main);
  flex-grow: 1;
}

.industry-card-visual small {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

/* =====================================================
   MOBILE NAV V2 — Redesigned offcanvas menu
   ===================================================== */
.mobile-nav-v2.offcanvas {
  border-left: none !important;
  box-shadow: -8px 0 40px rgba(0, 0, 0, .12);
  max-width: 320px;
  width: 85vw;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-header .navbar-brand {
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.mobile-nav-header .navbar-brand span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-nav-close {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
}

.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
  background: var(--primary-light);
  color: var(--text-main);
  border-color: rgba(30, 58, 95, 0.18);
  outline: none;
}

.mobile-nav-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 !important;
}

.mobile-nav-links {
  flex: 1;
  padding: 1rem;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 52px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .2s;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-body);
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active,
.mobile-nav-links a:focus-visible {
  background: var(--primary-light, rgba(99, 102, 241, .06));
  color: var(--primary);
  border-color: rgba(30, 58, 95, 0.18);
  outline: none;
}

.mobile-nav-links a i:first-child {
  width: 20px;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color .2s;
}

.mobile-nav-links a:hover i:first-child {
  color: var(--primary);
}

.mobile-nav-arrow {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--border-color);
  transition: transform .2s;
}

.mobile-nav-links a:hover .mobile-nav-arrow {
  transform: translateX(3px);
  color: var(--primary);
}

.mobile-nav-actions {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 1px solid var(--border-color);
}

.mobile-nav-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border: 1.5px solid var(--primary);
  border-radius: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all .2s;
}

.mobile-nav-btn-outline:hover {
  background: var(--primary-light, rgba(99, 102, 241, .06));
}

.mobile-nav-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  background: var(--primary-gradient);
  border: none;
  border-radius: 0.75rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: all .2s;
}

.mobile-nav-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--primary-glow);
  color: #fff;
}

.mobile-nav-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-alt, #f8fafc);
}

.mobile-nav-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #25d366;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  min-height: 44px;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background .2s;
}

.mobile-nav-footer a:hover {
  background: rgba(37, 211, 102, .08);
}

.mobile-nav-footer a i {
  font-size: 1.2rem;
}

/* =====================================================
   SEO CONTENT SECTION
   ===================================================== */
.seo-content-section {
  padding: 4rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-color);
}

.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.seo-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.seo-block h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.seo-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.seo-block strong {
  color: var(--text-main);
}

.seo-block em {
  font-style: italic;
  color: var(--primary);
}

.seo-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-features-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.seo-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.seo-features-list li strong {
  color: var(--text-main);
}

@media (max-width: 768px) {
  .seo-content-section {
    padding: 3rem 0;
  }

  .seo-block h2 {
    font-size: 1.3rem;
  }

  .seo-block h3 {
    font-size: 1.15rem;
  }
}

/* =====================================================
   WHATSAPP FLOATING BUBBLE
   ===================================================== */
.whatsapp-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #25d366;
  color: white;
  border-radius: var(--radius-full);
  padding: 14px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  overflow: hidden;
}

.whatsapp-bubble:hover {
  padding-right: 18px;
  gap: 0.5rem;
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
}

.whatsapp-bubble svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.whatsapp-bubble:hover svg {
  transform: rotate(-10deg) scale(1.1);
}

.whatsapp-bubble-label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  overflow: hidden;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.whatsapp-bubble:hover .whatsapp-bubble-label {
  max-width: 250px;
  opacity: 1;
}

@media (max-width: 768px) {
  .whatsapp-bubble {
    bottom: 16px;
    right: 16px;
    padding: 12px;
  }

  .whatsapp-bubble svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-bubble-label {
    display: none;
  }
}

/* =====================================================
   LIVE STATS COUNTER SECTION (New - Point 9)
   ===================================================== */
.stats-counter-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #111827 0%, #1e3a5f 50%, #0c4a6e 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-top: -2rem;
  z-index: 10;
  position: relative;
  overflow: hidden;
}

/* Noise texture overlay */
.stats-counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Subtle glow orbs */
.stats-counter-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.stats-counter-section .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 1.5rem 1rem;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: -0.03em;
}

.stat-number .stat-prefix {
  color: var(--accent);
  font-weight: 700;
}

.stat-number .stat-suffix {
  font-size: 0.6em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  line-height: 1.4;
}

.stat-label strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Stats section responsive */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .stat-item:nth-child(even)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .stats-counter-section {
    padding: 3.5rem 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2.25rem;
  }
  
  .stat-label {
    font-size: 0.8125rem;
  }
}

/* Count-up animation trigger */
.stat-number[data-count-target] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-number[data-count-target].counted {
  opacity: 1;
  transform: translateY(0);
}