/* =====================================================
   BOOKSOLUT - LANDING PAGE V2 CSS
   Advanced Scroll Animation Design System
   ===================================================== */

/* ----- CSS Variables & Design Tokens ----- */
:root {
  /* Primary Colors */
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-light: rgba(99, 102, 241, 0.1);
  --primary-glow: rgba(99, 102, 241, 0.4);
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);

  /* Accent Colors */
  --accent: #0ea5e9;
  --accent-light: rgba(14, 165, 233, 0.1);
  --success: #22c55e;
  --warning: #f59e0b;

  /* Neutral Palette */
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-body: #ffffff;
  --bg-surface: #f8fafc;
  --bg-alt: #f1f5f9;
  --bg-dark: #0f172a;
  --border-color: #e2e8f0;
  --border-light: rgba(148, 163, 184, 0.2);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 25px 60px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);

  /* 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 */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ----- 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;
  }
}

/* =====================================================
   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: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  transition: all 0.3s ease;
}

.navbar-v2.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.navbar-v2 .navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-v2 .nav-link {
  font-weight: 500;
  color: var(--text-main);
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.navbar-v2 .nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.navbar-v2 .btn-cta {
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  border: none;
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: all var(--transition-base);
}

.navbar-v2 .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

/* =====================================================
   HERO SECTION - EPIC ENTRANCE
   ===================================================== */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, rgba(248, 250, 252, 0.45) 100%),
    url('/images/backgraund.png') center center / cover no-repeat;
}

/* 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(99, 102, 241, 0.3) 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, 165, 233, 0.25) 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;
}

/* Badge animation */
.hero-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge-v2 i {
  color: var(--success);
  animation: checkPop 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: var(--shadow-sm), 0 0 0 0 rgba(99, 102, 241, 0);
  }

  50% {
    box-shadow: var(--shadow-sm), 0 0 0 8px rgba(99, 102, 241, 0.1);
  }
}

@keyframes checkPop {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* Title with gradient text */
.hero-title-v2 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title-v2 .gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-subtitle-v2 {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  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 {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  border: none;
  color: white;
  box-shadow: var(--shadow-lg), 0 0 50px var(--primary-glow);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.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.2), transparent);
  transition: left 0.5s;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 80px var(--primary-glow);
}

.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(--border-color);
  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);
}

/* Browser Mockup with parallax feel */
.hero-mockup {
  margin-top: 4rem;
  perspective: 1000px;
  position: relative;
}

.browser-frame {
  background: var(--bg-body);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 100px rgba(99, 102, 241, 0.1);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transform: rotateX(2deg);
  transition: transform var(--transition-slow);
}

.browser-frame:hover {
  transform: rotateX(0) scale(1.01);
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dot.red {
  background: #ef4444;
}

.browser-dot.yellow {
  background: #f59e0b;
}

.browser-dot.green {
  background: #22c55e;
}

.browser-content img {
  width: 100%;
  display: block;
}

/* Browser URL bar */
.browser-url {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-body);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: monospace;
}

/* 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);
}

@media (max-width: 576px) {
  .hero-social-proof {
    flex-direction: column;
    gap: 0.75rem;
  }

  .proof-divider {
    display: none;
  }
}

/* Hero Dashboard Preview (CSS Graphics) */
.hero-dashboard-preview {
  display: grid;
  grid-template-columns: 60px 1fr 140px;
  min-height: 300px;
  background: var(--bg-body);
}

@media (max-width: 768px) {
  .hero-dashboard-preview {
    grid-template-columns: 1fr;
    min-height: 200px;
  }

  .dash-sidebar,
  .dash-sidebar-right {
    display: none;
  }
}

.dash-sidebar {
  background: var(--bg-surface);
  border-right: 1px solid var(--border-color);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dash-nav-item {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.dash-nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

.dash-main {
  padding: 1.25rem;
}

.dash-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.dash-title {
  font-weight: 700;
  color: var(--text-main);
  font-size: 1rem;
}

.dash-badge {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.dash-calendar-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dash-slot {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 0.75rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
}

.slot-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  min-width: 40px;
}

.slot-client {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
}

.slot-client.booked {
  color: var(--primary);
  font-weight: 500;
}

.slot-client.booked.accent {
  color: var(--accent);
}

.slot-client.available {
  color: var(--success);
  font-style: italic;
}

.dash-slot:has(.slot-client.booked) {
  border-left-color: var(--primary);
}

.dash-slot:has(.slot-client.booked.accent) {
  border-left-color: var(--accent);
}

.dash-sidebar-right {
  background: var(--bg-surface);
  border-left: 1px solid var(--border-color);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dash-stat-card {
  background: var(--bg-body);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border-color);
}

.dash-stat-card .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.dash-stat-card.green .stat-value {
  color: var(--success);
}

.dash-stat-card .stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Floating Notification */
.hero-notification {
  position: absolute;
  bottom: -20px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  animation: notificationSlide 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes notificationSlide {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.notification-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.notification-content {
  display: flex;
  flex-direction: column;
}

.notification-content strong {
  font-size: 0.875rem;
  color: var(--text-main);
}

.notification-content span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero-notification {
    display: none;
  }
}

/* =====================================================
   ANIMATED STATS COUNTER SECTION
   ===================================================== */
.stats-section-v2 {
  padding: 5rem 0;
  background: var(--bg-body);
  position: relative;
}

.stats-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .stats-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item-v2 {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.stat-icon-v2 {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-base);
}

.stat-item-v2:hover .stat-icon-v2 {
  background: var(--primary-gradient);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.stat-number-v2 {
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number-v2 .counter {
  display: inline-block;
}

.stat-label-v2 {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =====================================================
   FEATURE SHOWCASE WITH SCROLL REVEAL
   ===================================================== */
.features-section-v2 {
  padding: 6rem 0;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.85) 0%, rgba(241, 245, 249, 0.75) 100%),
    url('/images/background2.png') center center / cover no-repeat;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-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;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Features Grid */
.features-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .features-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid-v2 {
    grid-template-columns: 1fr;
  }
}

.feature-card-v2 {
  padding: 2rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.feature-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card-v2:hover::before {
  transform: scaleX(1);
}

.feature-icon-v2 {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.feature-card-v2:hover .feature-icon-v2 {
  background: var(--primary-gradient);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.feature-card-v2 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.feature-card-v2 p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* =====================================================
   SPLIT FEATURE SHOWCASE (Alternating)
   ===================================================== */
.showcase-section {
  padding: 6rem 0;
  overflow: hidden;
}

.showcase-section.alt-bg {
  background: var(--bg-alt);
}

.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-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.showcase-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  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: var(--text-main);
  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);
  }
}

/* =====================================================
   INTERACTIVE WORKFLOW / HOW IT WORKS
   ===================================================== */
.workflow-section {
  padding: 6rem 0;
  background: var(--bg-body);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

@media (max-width: 992px) {
  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .workflow-steps {
    grid-template-columns: 1fr;
  }
}

/* Connecting line */
.workflow-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.3;
}

@media (max-width: 992px) {
  .workflow-steps::before {
    display: none;
  }
}

.workflow-step {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px var(--primary-glow);
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
}

.workflow-step:hover .step-number {
  transform: scale(1.15);
  box-shadow: 0 12px 40px var(--primary-glow);
}

.step-icon {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-body);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.workflow-step h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.workflow-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* =====================================================
   INDUSTRY CARDS WITH HOVER EFFECTS
   ===================================================== */
.industries-section {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card-v2 {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.industry-card-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.industry-card-v2>* {
  position: relative;
  z-index: 1;
}

.industry-card-v2:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.industry-card-v2:hover::after {
  opacity: 0.05;
}

.industry-icon-v2 {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all var(--transition-base);
}

.industry-card-v2:hover .industry-icon-v2 {
  background: var(--primary-gradient);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.industry-card-v2 h5 {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.industry-card-v2 p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing-section-v2 {
  padding: 8rem 0;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%),
    url('/images/background1.png') center center / cover no-repeat;
  position: relative;
}

.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.active {
  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 {
  transform: translateX(28px);
}

/* Pricing Cards */
.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;
}

.pricing-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-v2.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 0 50px var(--primary-glow);
  transform: scale(1.05);
}

.pricing-card-v2.featured:hover {
  transform: scale(1.07) translateY(-5px);
}

.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: 1rem 0;
}

.pricing-price-v2 .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.pricing-price-v2 .amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.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.5rem 0;
}

.pricing-card-v2 .description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.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: var(--text-light);
}

.pricing-btn {
  width: 100%;
  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-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);
}

/* =====================================================
   TESTIMONIALS CAROUSEL
   ===================================================== */
.testimonials-section-v2 {
  padding: 8rem 0;
  background:
    linear-gradient(180deg, rgba(241, 245, 249, 0.85) 0%, rgba(241, 245, 249, 0.75) 100%),
    url('/images/background3.png') center center / cover no-repeat;
  position: relative;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .testimonials-carousel {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

.testimonial-card-v2 {
  padding: 2rem;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.testimonial-card-v2:hover {
  transform: translateY(-5px);
  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;
}

.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:
    linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%),
    url('/images/background5.png') center center / cover no-repeat;
  position: relative;
}

.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%;
  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 i {
  color: var(--primary);
  transition: transform var(--transition-fast);
}

.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 var(--transition-base);
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* =====================================================
   FINAL CTA SECTION
   ===================================================== */
.cta-section-v2 {
  padding: 8rem 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.70) 0%, rgba(15, 23, 42, 0.65) 100%),
    url('/images/background4.png') 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(99, 102, 241, 0.2) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  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 {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: white;
  border: none;
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.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);
}

/* =====================================================
   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 i {
  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 {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-column h6 {
  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);
}

/* =====================================================
   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
   ===================================================== */
.scroll-showcase-wrapper {
  position: relative;
  height: 350vh;
  /* Reduced from 500vh - 70vh per panel (5 panels) for faster transitions */
  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;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Morphing Background Blobs */
.showcase-bg-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.showcase-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, border-radius, opacity;
}

/* Blob 1 - Primary purple */
.showcase-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: blobMorph1 8s ease-in-out infinite;
}

/* Blob 2 - Accent blue */
.showcase-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.4) 0%, transparent 70%);
  bottom: -5%;
  right: -5%;
  animation: blobMorph2 10s ease-in-out infinite;
}

/* Blob 3 - Purple accent */
.showcase-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobMorph3 12s ease-in-out infinite;
}

/* Base morph animations */
@keyframes blobMorph1 {

  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(0, 0) scale(1);
  }

  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate(20px, -30px) scale(1.1);
  }

  50% {
    border-radius: 50% 60% 30% 60% / 40% 50% 60% 50%;
    transform: translate(-10px, 20px) scale(0.95);
  }

  75% {
    border-radius: 40% 60% 50% 70% / 60% 40% 60% 30%;
    transform: translate(15px, 10px) scale(1.05);
  }
}

@keyframes blobMorph2 {

  0%,
  100% {
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    transform: translate(0, 0) scale(1);
  }

  33% {
    border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
    transform: translate(-30px, 20px) scale(1.15);
  }

  66% {
    border-radius: 50% 50% 60% 40% / 50% 50% 40% 60%;
    transform: translate(20px, -15px) scale(0.9);
  }
}

@keyframes blobMorph3 {

  0%,
  100% {
    border-radius: 50% 50% 50% 50%;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  25% {
    border-radius: 60% 40% 60% 40%;
    transform: translate(-40%, -60%) scale(1.2) rotate(45deg);
  }

  50% {
    border-radius: 40% 60% 40% 60%;
    transform: translate(-60%, -40%) scale(0.8) rotate(90deg);
  }

  75% {
    border-radius: 70% 30% 50% 50%;
    transform: translate(-50%, -50%) scale(1.1) rotate(135deg);
  }
}

/* Panel-specific blob states - morph on panel change */
/* Panel 0 - Agenda */
.scroll-showcase-wrapper[data-active-panel="0"] .showcase-blob-1 {
  top: -15%;
  left: -10%;
  opacity: 0.5;
}

.scroll-showcase-wrapper[data-active-panel="0"] .showcase-blob-2 {
  bottom: 10%;
  right: -10%;
}

/* Panel 1 - Reglas */
.scroll-showcase-wrapper[data-active-panel="1"] .showcase-blob-1 {
  top: 20%;
  left: -15%;
  opacity: 0.45;
  transform: scale(1.2);
}

.scroll-showcase-wrapper[data-active-panel="1"] .showcase-blob-2 {
  bottom: -15%;
  right: 20%;
  transform: scale(0.9);
}

.scroll-showcase-wrapper[data-active-panel="1"] .showcase-blob-3 {
  top: 30%;
  left: 70%;
}

/* Panel 2 - Analytics */
.scroll-showcase-wrapper[data-active-panel="2"] .showcase-blob-1 {
  top: -5%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
}

.scroll-showcase-wrapper[data-active-panel="2"] .showcase-blob-2 {
  bottom: 30%;
  right: -20%;
  opacity: 0.5;
}

.scroll-showcase-wrapper[data-active-panel="2"] .showcase-blob-3 {
  top: 70%;
  left: 20%;
  transform: scale(1.3);
}

/* Panel 3 - Pasos */
.scroll-showcase-wrapper[data-active-panel="3"] .showcase-blob-1 {
  top: 50%;
  left: -20%;
  transform: translateY(-50%) scale(1.1);
}

.scroll-showcase-wrapper[data-active-panel="3"] .showcase-blob-2 {
  bottom: -10%;
  right: 50%;
  transform: translateX(50%);
}

.scroll-showcase-wrapper[data-active-panel="3"] .showcase-blob-3 {
  top: 10%;
  left: 80%;
  opacity: 0.6;
}

/* Panel 4 - Negocios */
.scroll-showcase-wrapper[data-active-panel="4"] .showcase-blob-1 {
  top: 30%;
  left: 60%;
  transform: scale(0.7);
  opacity: 0.35;
}

.scroll-showcase-wrapper[data-active-panel="4"] .showcase-blob-2 {
  bottom: 20%;
  right: -15%;
  transform: scale(1.3);
  opacity: 0.5;
}

.scroll-showcase-wrapper[data-active-panel="4"] .showcase-blob-3 {
  top: -10%;
  left: 10%;
  transform: scale(1.5);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .showcase-blob {
    filter: blur(60px);
    opacity: 0.3;
  }

  .showcase-blob-1 {
    width: 300px;
    height: 300px;
  }

  .showcase-blob-2 {
    width: 250px;
    height: 250px;
  }

  .showcase-blob-3 {
    width: 200px;
    height: 200px;
  }
}

/* Progress indicator */
.showcase-progress {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 10;
}

@media (max-width: 992px) {
  .showcase-progress {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
  }
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  transition: all var(--transition-base);
  position: relative;
}

.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: var(--text-muted);
  transition: color var(--transition-base);
  white-space: nowrap;
}

.progress-step.active .step-label {
  color: var(--primary);
}

@media (max-width: 992px) {
  .step-label {
    display: none;
  }
}

/* Showcase panels */
.showcase-panels {
  position: relative;
  width: 100%;
}

.showcase-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.6s;
}

.showcase-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  filter: blur(0);
  position: relative;
}

/* 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;
  }
}

/* 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: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.scroll-showcase-wrapper .showcase-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  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;
}

/* 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);
  animation: floatBadge 4s ease-in-out infinite;
  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;
  animation-delay: -2s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@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: var(--text-main);
  font-weight: 500;
}

.scroll-showcase-wrapper .feature-checklist li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* =====================================================
   CENTERED SHOWCASE LAYOUT (Panels 4 & 5)
   ===================================================== */
.showcase-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.showcase-centered h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.showcase-centered p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.showcase-centered .showcase-tag {
  margin-bottom: 1.5rem;
}

/* 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: var(--text-muted);
  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 {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .onboarding-step {
    width: 100%;
    max-width: 300px;
  }

  .step-connector {
    width: 4px;
    height: 50px;
    flex: 0 0 50px;
    margin: 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  }

  .step-connector::before {
    right: 50%;
    bottom: -6px;
    top: auto;
    transform: translateX(50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--accent);
  }
}

/* =====================================================
   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: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.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;
}

/* 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 STICKY CTA
   ===================================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: var(--bg-body);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }

  /* Add padding to body to account for sticky CTA */
  body {
    padding-bottom: 70px;
  }
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--primary-gradient);
  color: white;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: all var(--transition-fast);
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--primary-glow);
  color: white;
}

.mobile-cta-btn i {
  font-size: 1.1rem;
}

/* =====================================================
   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;
  }
}