/* ============================================
   SALES RANKING - CSS Styles
   ============================================ */

/* CSS Variables - Design System */
:root {
  /* Background - Deep dark with purple tint */
  --background: hsl(250, 25%, 6%);
  --foreground: hsl(0, 0%, 98%);

  /* Cards */
  --card: hsl(250, 20%, 12%);
  --card-foreground: hsl(0, 0%, 98%);

  /* Primary - Golden/Orange Accent */
  --primary: hsl(35, 100%, 55%);
  --primary-foreground: hsl(250, 25%, 6%);

  /* Secondary - Vivid Purple */
  --secondary: hsl(280, 85%, 55%);
  --secondary-foreground: hsl(0, 0%, 98%);

  /* Muted */
  --muted: hsl(250, 15%, 18%);
  --muted-foreground: hsl(250, 10%, 55%);

  /* Accent - Hot Orange/Coral */
  --accent: hsl(15, 95%, 55%);
  --accent-foreground: hsl(0, 0%, 98%);

  /* Border */
  --border: hsl(280, 30%, 25%);

  /* Specific colors */
  --violet: hsl(270, 76%, 55%);
  --cyan: hsl(190, 90%, 50%);
  --orange: hsl(30, 100%, 55%);
  --green: hsl(150, 70%, 45%);
  --pink: hsl(340, 80%, 60%);
  --indigo: hsl(230, 70%, 55%);
  --amber: hsl(40, 95%, 50%);

  --radius: 1rem;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, hsl(280 70% 25% / 0.5), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, hsl(280 80% 40% / 0.4), transparent),
    radial-gradient(ellipse 50% 50% at 0% 100%, hsl(15 80% 35% / 0.3), transparent);
  background-attachment: fixed;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body.gate-lock {
  overflow: hidden;
}

/* ============================================
   ENIGMA GATE
   ============================================ */
.gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(700px 500px at 50% 35%, hsla(280, 80%, 60%, 0.2), transparent 60%),
    radial-gradient(500px 400px at 60% 60%, hsla(35, 100%, 55%, 0.2), transparent 60%),
    #050505;
  transition: opacity 0.4s ease;
}

.gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 0, 60, 0.16);
  opacity: 0;
  pointer-events: none;
}

.gate.error::before {
  animation: gateFlash 0.35s ease;
}
.gate.hidden {
  opacity: 0;
  pointer-events: none;
}
.gate-card {
  width: min(92vw, 560px);
  padding: 28px 32px;
  border-radius: 16px;
  background: rgba(8, 10, 16, 0.9);
  border: 1px solid hsla(280, 40%, 40%, 0.25);
  box-shadow: 0 0 40px hsla(280, 70%, 60%, 0.25), inset 0 0 24px rgba(0,0,0,0.6);
  text-align: center;
}
.gate-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.gate-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.2rem, 3.2vw, 1.8rem);
  letter-spacing: 4px;
  color: var(--foreground);
  text-shadow: 0 0 12px hsla(280, 80%, 60%, 0.4);
}
.gate-lock {
  color: var(--primary);
  font-size: 0.7rem;
  letter-spacing: 6px;
}
.gate-subtitle {
  margin-top: 6px;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}
.gate-seq {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 22px);
  margin: 18px 0 10px;
}
.gate-symbol {
  width: clamp(56px, 18vw, 84px);
  height: clamp(56px, 18vw, 84px);
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, hsla(280, 40%, 50%, 0.2), transparent 60%), #0a0a0a;
  border: 1px solid hsla(280, 35%, 35%, 0.6);
  color: #2a2a2a;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.8);
}
.gate-symbol:hover {
  transform: translateY(-2px);
  border-color: hsla(35, 100%, 55%, 0.6);
}
.gate-symbol.lit {
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 16px hsla(35, 100%, 55%, 0.55), inset 0 0 16px hsla(35, 100%, 55%, 0.25);
}
.gate-symbol.ok {
  border-color: var(--green);
  box-shadow: 0 0 12px hsla(150, 70%, 45%, 0.5);
}
.gate-hint {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.gate-skip {
  margin-top: 12px;
  background: transparent;
  color: var(--muted-foreground);
  border: 1px solid #222;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: none;
  cursor: pointer;
  transition: 0.2s ease;
}
.gate-skip:hover {
  color: var(--foreground);
  border-color: var(--primary);
  box-shadow: 0 0 10px hsla(35, 100%, 55%, 0.35);
}
.gate.show-skip .gate-skip {
  display: inline-flex;
}
.gate-loading {
  width: min(80vw, 520px);
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid hsla(280, 30%, 30%, 0.5);
  display: none;
  margin: 18px auto 8px;
}
.gate-loading-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 0 12px hsla(35, 100%, 55%, 0.45);
  transition: width 0.2s linear;
}
.gate-progress {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: none;
}
.gate.loading .gate-loading,
.gate.loading .gate-progress {
  display: block;
}
.gate.loading .gate-seq,
.gate.loading .gate-hint,
.gate.loading .gate-skip {
  display: none;
}

@keyframes gateFlash {
  0% { opacity: 0; }
  40% { opacity: 0.8; }
  100% { opacity: 0; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: hsl(280 50% 40%);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Text gradient */
.text-gradient,
.section-title,
.hero-title {
  background: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(250 10% 70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(30 100% 55%), hsl(15 95% 50%));
  color: var(--primary-foreground);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px hsla(30, 100%, 55%, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-outline {
  background: hsla(250, 20%, 15%, 0.5);
  border: 1px solid hsla(280, 40%, 35%, 0.6);
  color: var(--foreground);
}

.btn-outline:hover {
  border-color: hsla(35, 100%, 55%, 0.6);
  background: hsla(35, 100%, 55%, 0.1);
}

.btn-ghost {
  background: hsla(250, 20%, 20%, 0.5);
  color: var(--foreground);
}

.btn-ghost:hover {
  background: hsla(250, 20%, 25%, 0.5);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-glow {
  position: relative;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, hsl(30 100% 55%), hsl(15 95% 50%));
  border-radius: inherit;
  filter: blur(12px);
  opacity: 0.5;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
  opacity: 0.8;
}

/* ============================================
   TOP BANNER
   ============================================ */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--primary), hsla(35, 100%, 55%, 0.9), var(--secondary));
  padding: 0.5rem 1rem;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  position: relative;
}

.banner-icon {
  animation: pulse 2s ease-in-out infinite;
}

.banner-text {
  color: var(--primary-foreground);
  font-weight: 500;
}

.banner-close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: hsla(0, 0%, 0%, 0.6);
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s;
}

.banner-close:hover {
  color: var(--primary-foreground);
}

.top-banner.hidden {
  display: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  padding: 1.25rem 1.5rem;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 90;
  background: hsla(250, 25%, 6%, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(280, 30%, 25%, 0.3);
  transition: all 0.3s ease;
}

/* Navbar without banner */
.navbar.no-banner {
  top: 0;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto;
  align-items: center;
  position: relative;
  column-gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--foreground);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  justify-self: start;
}

.logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.nav-pill {
  display: none;
  background: hsla(250, 20%, 15%, 0.8);
  border: 1px solid hsla(280, 30%, 30%, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
}

@media (min-width: 768px) {
  .nav-pill {
    display: flex;
    gap: 0.25rem;
  }
}

.nav-mobile-panel {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .nav-mobile-panel {
    display: contents;
    margin-top: 0;
  }

  .nav-pill {
    grid-column: 2;
    justify-self: center;
  }

  .nav-actions {
    grid-column: 3;
    justify-self: end;
  }
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-item:hover {
  color: var(--foreground);
}

.nav-item.active {
  background: hsla(250, 20%, 20%, 1);
  color: var(--foreground);
}

.nav-icon {
  width: 1rem;
  height: 1rem;
}

.nav-chevron {
  width: 0.75rem;
  height: 0.75rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  display: none;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: hsl(35, 100%, 65%);
}

@media (min-width: 768px) {
  .nav-link {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .top-banner {
    padding: 0.4rem 0.75rem;
  }
  .banner-content {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    padding-right: 1.5rem;
  }
  .banner-text {
    max-width: 60vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .navbar {
    padding: 0.9rem 1rem;
  }
  .nav-actions {
    display: none;
  }
  .navbar.mobile-open .nav-mobile-panel {
    display: flex;
  }
  .navbar.mobile-open .nav-pill {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    padding: 12px;
  }
  .navbar.mobile-open .nav-item {
    width: 100%;
    justify-content: space-between;
  }
  .navbar.mobile-open .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .navbar.mobile-open .nav-actions .btn {
    width: 100%;
  }
  .navbar.mobile-open .nav-link {
    display: inline-flex;
  }
  .hero {
    margin-top: 90px;
    padding: 4rem 1.25rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .preview-section,
  .stats-section,
  .features-section,
  .video-section,
  .testimonials-section,
  .pricing-section,
  .faq-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .preview-card {
    width: 100%;
  }
  .logos-container {
    gap: 1rem;
  }
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  margin-top: 80px;
  overflow: hidden;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    hsl(250 20% 25%) 0%, 
    hsl(250 30% 12%) 50%, 
    hsl(250 25% 6%) 100%);
  box-shadow: 
    inset -20px -20px 40px hsla(0, 0%, 0%, 0.5),
    inset 10px 10px 30px hsla(280, 50%, 30%, 0.3),
    0 0 80px hsla(280, 60%, 40%, 0.3),
    0 0 120px hsla(280, 70%, 50%, 0.2);
  animation: float-orb 12s ease-in-out infinite;
}

.orb::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 30%;
  height: 20%;
  background: radial-gradient(ellipse, hsla(280, 40%, 60%, 0.4), transparent);
  border-radius: 50%;
  filter: blur(8px);
}

.orb-1 {
  width: 16rem;
  height: 16rem;
  left: -5rem;
  top: 5rem;
  opacity: 0.8;
}

.orb-2 {
  width: 10rem;
  height: 10rem;
  right: 2.5rem;
  top: 10rem;
  opacity: 0.6;
  animation-delay: -4s;
}

.orb-3 {
  width: 8rem;
  height: 8rem;
  left: 25%;
  bottom: 5rem;
  opacity: 0.5;
  animation-delay: -8s;
}

@media (min-width: 768px) {
  .orb-1 { width: 20rem; height: 20rem; }
  .orb-2 { width: 14rem; height: 14rem; }
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* Glow spots */
.glow-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-purple { background: hsl(280 80% 50%); }
.glow-orange { background: hsl(25 90% 50%); }
.glow-magenta { background: hsl(320 80% 50%); }

.spot-1 {
  width: 24rem;
  height: 24rem;
  top: -12rem;
  left: 25%;
  opacity: 0.4;
}

.spot-2 {
  width: 20rem;
  height: 20rem;
  top: 33%;
  right: 0;
  opacity: 0.3;
}

.spot-3 {
  width: 16rem;
  height: 16rem;
  bottom: 0;
  left: 2.5rem;
  opacity: 0.25;
}

/* Light streaks */
.light-streak {
  position: absolute;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(280, 80%, 70%, 0.6), transparent);
  filter: blur(1px);
}

.streak-1 {
  top: 33%;
  left: 0;
  transform: rotate(12deg);
}

.streak-2 {
  top: 50%;
  right: 0;
  transform: rotate(-12deg);
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: linear-gradient(145deg, hsla(35, 60%, 20%, 0.95), hsla(25, 40%, 15%, 0.9));
  border: 1px solid hsla(35, 50%, 35%, 0.4);
  border-radius: 1rem;
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.4);
  animation: float-card 8s ease-in-out infinite;
  display: none;
}

@media (min-width: 1024px) {
  .floating-card {
    display: block;
  }
}

.card-purple {
  background: linear-gradient(145deg, hsla(280, 30%, 18%, 0.95), hsla(260, 25%, 12%, 0.9));
  border-color: hsla(280, 50%, 40%, 0.4);
}

.card-left {
  left: 5%;
  top: 35%;
  width: 18rem;
}

.card-right {
  right: 5%;
  top: 30%;
  width: 16rem;
  animation-delay: -3s;
}

.card-bottom-left {
  left: 8%;
  bottom: 15%;
  width: 14rem;
  animation-delay: -6s;
  display: none;
}

.card-bottom-right {
  right: 10%;
  bottom: 20%;
  width: 12rem;
  animation-delay: -2s;
  display: none;
}

@media (min-width: 1280px) {
  .card-bottom-left,
  .card-bottom-right {
    display: block;
  }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.floating-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
}

.floating-card-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsla(35, 100%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card-body {
  background: linear-gradient(135deg, hsla(25, 80%, 15%, 0.4), hsla(25, 60%, 10%, 0.6));
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid hsla(25, 70%, 30%, 0.3);
}

.floating-card-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.avatar-orange {
  background: linear-gradient(135deg, hsl(25, 90%, 55%), hsl(35, 90%, 50%));
}

.avatar-gold {
  background: linear-gradient(135deg, hsl(45, 95%, 55%), hsl(35, 90%, 50%));
}

.avatar-silver {
  background: linear-gradient(135deg, hsl(0, 0%, 70%), hsl(0, 0%, 50%));
}

.user-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.user-info {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.floating-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.floating-card-actions .btn {
  flex: 1;
  padding: 0.625rem;
  font-size: 0.75rem;
}

.floating-card-header-simple {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.live-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: hsl(120, 60%, 50%);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(120, 60%, 50%);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ranking-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: hsla(250, 20%, 20%, 0.3);
}

.ranking-first {
  background: hsla(280, 50%, 40%, 0.1);
  border: 1px solid hsla(280, 50%, 50%, 0.2);
}

.rank {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted-foreground);
}

.ranking-first .rank {
  color: var(--secondary);
}

.ranking-item .avatar {
  width: 1.5rem;
  height: 1.5rem;
}

.rank-name {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
}

.rank-value {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.meta-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-glow {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(35, 100%, 55%, 0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px hsla(35, 100%, 55%, 0.2);
}

.meta-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.meta-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.progress-bar {
  margin-top: 0.75rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--muted);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.update-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.update-time {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.update-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Hero content */
.hero-content {
  max-width: 56rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(250, 20%, 15%, 0.8);
  border: 1px solid hsla(280, 40%, 35%, 0.5);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  animation: fade-in 0.6s ease-out forwards;
}

.badge-icon {
  color: var(--secondary);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fade-in 0.6s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fade-in 0.6s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-content .btn {
  animation: fade-in 0.6s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PREVIEW SECTION
   ============================================ */
.preview-section {
  padding: 4rem 1.5rem;
  position: relative;
}

.logos-title {
  text-align: center;
  font-size: 2.25rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.logos-container {
  max-width: 56rem;
  margin: 0 auto 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .logos-container {
    gap: 4rem;
  }
}

.preview-container {
  max-width: 64rem;
  margin: 0 auto;
}

.glass-card {
  background: linear-gradient(135deg, hsla(250, 20%, 14%, 0.9), hsla(250, 25%, 10%, 0.95));
  border: 1px solid hsla(280, 40%, 30%, 0.4);
  border-radius: 1.25rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, hsla(280, 60%, 50%, 0.1), transparent 50%);
  pointer-events: none;
}

.preview-card {
  position: relative;
}

.preview-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(280 80% 60%), hsl(320 80% 60%), transparent);
  border-radius: 2px;
  box-shadow: 0 0 20px hsla(280, 80%, 60%, 0.5), 0 0 40px hsla(320, 80%, 60%, 0.3);
}

.preview-glow-1,
.preview-glow-2 {
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  filter: blur(60px);
}

.preview-glow-1 {
  top: -5rem;
  left: -5rem;
  background: hsla(280, 85%, 55%, 0.2);
}

.preview-glow-2 {
  bottom: -5rem;
  right: -5rem;
  background: hsla(15, 95%, 55%, 0.15);
}

.preview-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1;
}

@media (min-width: 768px) {
  .preview-content {
    padding: 1.5rem;
  }
}

.preview-image {
  width: 100%;
  height: auto;
  max-height: 640px;
  display: block;
  border-radius: 0.85rem;
  border: 1px solid hsla(280, 35%, 36%, 0.45);
  background: hsl(235 45% 7%);
  box-shadow: 0 16px 40px hsla(235, 100%, 5%, 0.45);
  object-fit: contain;
  object-position: center;
}

.preview-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  background: hsla(250, 15%, 18%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid hsla(280, 30%, 25%, 0.5);
  font-size: 3rem;
}

.preview-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsla(250, 10%, 55%, 0.6);
  margin-bottom: 0.5rem;
}

.preview-content p {
  color: hsla(250, 10%, 55%, 0.4);
  text-align: center;
  max-width: 28rem;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 2rem 1.5rem;
  position: relative;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: 
    linear-gradient(hsla(270, 76%, 55%, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, hsla(270, 76%, 55%, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
}

.stats-glow-1 {
  width: 300px;
  height: 300px;
  left: -8rem;
  top: 0;
  opacity: 0.2;
}

.stats-glow-2 {
  width: 300px;
  height: 300px;
  right: -8rem;
  bottom: 0;
  opacity: 0.2;
}

.stats-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.stat-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsla(250, 25%, 6%, 0.4);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.5s ease;
  animation: fade-in 0.6s ease-out forwards;
  opacity: 0;
}

.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 0.15s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.45s; }

.stat-card:hover {
  transform: scale(1.05);
}

.stat-violet { border: 1px solid hsla(270, 76%, 55%, 0.3); }
.stat-violet:hover { box-shadow: 0 25px 50px hsla(270, 76%, 55%, 0.2); }

.stat-orange { border: 1px solid hsla(30, 100%, 55%, 0.3); }
.stat-orange:hover { box-shadow: 0 25px 50px hsla(30, 100%, 55%, 0.2); }

.stat-cyan { border: 1px solid hsla(190, 90%, 50%, 0.3); }
.stat-cyan:hover { box-shadow: 0 25px 50px hsla(190, 90%, 50%, 0.2); }

.stat-green { border: 1px solid hsla(150, 70%, 45%, 0.3); }
.stat-green:hover { box-shadow: 0 25px 50px hsla(150, 70%, 45%, 0.2); }

.stat-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 2rem;
  height: 2rem;
}

.corner-tl { top: 0; left: 0; border-top: 2px solid; border-left: 2px solid; border-radius: 1rem 0 0 0; }
.corner-tr { top: 0; right: 0; border-top: 2px solid; border-right: 2px solid; border-radius: 0 1rem 0 0; }
.corner-bl { bottom: 0; left: 0; border-bottom: 2px solid; border-left: 2px solid; border-radius: 0 0 0 1rem; }
.corner-br { bottom: 0; right: 0; border-bottom: 2px solid; border-right: 2px solid; border-radius: 0 0 1rem 0; }

.stat-violet .corner { border-color: hsla(270, 76%, 55%, 0.3); }
.stat-orange .corner { border-color: hsla(30, 100%, 55%, 0.3); }
.stat-cyan .corner { border-color: hsla(190, 90%, 50%, 0.3); }
.stat-green .corner { border-color: hsla(150, 70%, 45%, 0.3); }

.scan-line {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0.3;
  animation: pulse 3s ease-in-out infinite;
}

.stat-violet .scan-line { background: linear-gradient(90deg, var(--violet), hsl(290, 80%, 60%)); }
.stat-orange .scan-line { background: linear-gradient(90deg, var(--amber), var(--orange)); }
.stat-cyan .scan-line { background: linear-gradient(90deg, var(--cyan), hsl(210, 90%, 55%)); }
.stat-green .scan-line { background: linear-gradient(90deg, hsl(140, 70%, 50%), var(--green)); }

.stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.stat-icon-violet { background: linear-gradient(135deg, hsla(270, 76%, 55%, 0.3), hsla(290, 80%, 60%, 0.3)); box-shadow: 0 10px 30px hsla(270, 76%, 55%, 0.3); }
.stat-icon-orange { background: linear-gradient(135deg, hsla(40, 95%, 50%, 0.3), hsla(30, 100%, 55%, 0.3)); box-shadow: 0 10px 30px hsla(30, 100%, 55%, 0.3); }
.stat-icon-cyan { background: linear-gradient(135deg, hsla(190, 90%, 50%, 0.3), hsla(210, 90%, 55%, 0.3)); box-shadow: 0 10px 30px hsla(190, 90%, 50%, 0.3); }
.stat-icon-green { background: linear-gradient(135deg, hsla(140, 70%, 50%, 0.3), hsla(150, 70%, 45%, 0.3)); box-shadow: 0 10px 30px hsla(150, 70%, 45%, 0.3); }

.stat-value {
  font-size: 2.25rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.25rem;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-value-violet { background-image: linear-gradient(135deg, var(--violet), hsl(290, 80%, 60%)); }
.stat-value-orange { background-image: linear-gradient(135deg, var(--amber), var(--orange)); }
.stat-value-cyan { background-image: linear-gradient(135deg, var(--cyan), hsl(210, 90%, 55%)); }
.stat-value-green { background-image: linear-gradient(135deg, hsl(140, 70%, 50%), var(--green)); }

.stat-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.stat-bar {
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  opacity: 0.6;
}

.stat-violet .stat-bar { background: linear-gradient(90deg, var(--violet), hsl(290, 80%, 60%)); }
.stat-orange .stat-bar { background: linear-gradient(90deg, var(--amber), var(--orange)); }
.stat-cyan .stat-bar { background: linear-gradient(90deg, var(--cyan), hsl(210, 90%, 55%)); }
.stat-green .stat-bar { background: linear-gradient(90deg, hsl(140, 70%, 50%), var(--green)); }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 2rem 1.5rem;
  position: relative;
}

.features-glow-1 {
  width: 20rem;
  height: 20rem;
  top: 50%;
  left: 0;
  opacity: 0.2;
}

.features-glow-2 {
  width: 16rem;
  height: 16rem;
  bottom: 0;
  right: 25%;
  opacity: 0.15;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.features-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: hsla(250, 25%, 6%, 0.4);
  backdrop-filter: blur(20px);
  transition: all 0.5s ease;
  animation: fade-in 0.6s ease-out forwards;
  opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

.feature-card:hover {
  transform: translateY(-0.5rem);
}

.feature-violet { border: 1px solid hsla(270, 76%, 55%, 0.3); }
.feature-violet:hover { box-shadow: 0 25px 50px hsla(270, 76%, 55%, 0.2); }

.feature-cyan { border: 1px solid hsla(190, 90%, 50%, 0.3); }
.feature-cyan:hover { box-shadow: 0 25px 50px hsla(190, 90%, 50%, 0.2); }

.feature-orange { border: 1px solid hsla(30, 100%, 55%, 0.3); }
.feature-orange:hover { box-shadow: 0 25px 50px hsla(30, 100%, 55%, 0.2); }

.feature-green { border: 1px solid hsla(150, 70%, 45%, 0.3); }
.feature-green:hover { box-shadow: 0 25px 50px hsla(150, 70%, 45%, 0.2); }

.feature-pink { border: 1px solid hsla(340, 80%, 60%, 0.3); }
.feature-pink:hover { box-shadow: 0 25px 50px hsla(340, 80%, 60%, 0.2); }

.feature-indigo { border: 1px solid hsla(230, 70%, 55%, 0.3); }
.feature-indigo:hover { box-shadow: 0 25px 50px hsla(230, 70%, 55%, 0.2); }

.feature-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feature-violet .corner { border-color: hsla(270, 76%, 55%, 0.3); }
.feature-cyan .corner { border-color: hsla(190, 90%, 50%, 0.3); }
.feature-orange .corner { border-color: hsla(30, 100%, 55%, 0.3); }
.feature-green .corner { border-color: hsla(150, 70%, 45%, 0.3); }
.feature-pink .corner { border-color: hsla(340, 80%, 60%, 0.3); }
.feature-indigo .corner { border-color: hsla(230, 70%, 55%, 0.3); }

.feature-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  padding: 1px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.feature-icon-violet { background: linear-gradient(135deg, var(--violet), hsl(290, 80%, 60%)); }
.feature-icon-cyan { background: linear-gradient(135deg, var(--cyan), hsl(210, 90%, 55%)); }
.feature-icon-orange { background: linear-gradient(135deg, var(--amber), var(--orange)); }
.feature-icon-green { background: linear-gradient(135deg, hsl(140, 70%, 50%), var(--green)); }
.feature-icon-pink { background: linear-gradient(135deg, var(--pink), hsl(320, 80%, 55%)); }
.feature-icon-indigo { background: linear-gradient(135deg, var(--indigo), hsl(250, 70%, 60%)); }

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrapper > .feature-icon {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: hsla(250, 25%, 6%, 0.8);
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-title-violet { background-image: linear-gradient(135deg, var(--violet), hsl(290, 80%, 60%)); }
.feature-title-cyan { background-image: linear-gradient(135deg, var(--cyan), hsl(210, 90%, 55%)); }
.feature-title-orange { background-image: linear-gradient(135deg, var(--amber), var(--orange)); }
.feature-title-green { background-image: linear-gradient(135deg, hsl(140, 70%, 50%), var(--green)); }
.feature-title-pink { background-image: linear-gradient(135deg, var(--pink), hsl(320, 80%, 55%)); }
.feature-title-indigo { background-image: linear-gradient(135deg, var(--indigo), hsl(250, 70%, 60%)); }

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.feature-bar {
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-bar {
  opacity: 0.8;
}

.feature-violet .feature-bar { background: linear-gradient(90deg, var(--violet), hsl(290, 80%, 60%)); }
.feature-cyan .feature-bar { background: linear-gradient(90deg, var(--cyan), hsl(210, 90%, 55%)); }
.feature-orange .feature-bar { background: linear-gradient(90deg, var(--amber), var(--orange)); }
.feature-green .feature-bar { background: linear-gradient(90deg, hsl(140, 70%, 50%), var(--green)); }
.feature-pink .feature-bar { background: linear-gradient(90deg, var(--pink), hsl(320, 80%, 55%)); }
.feature-indigo .feature-bar { background: linear-gradient(90deg, var(--indigo), hsl(250, 70%, 60%)); }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  padding: 2rem 1.5rem;
  position: relative;
}

.video-glow {
  width: 600px;
  height: 600px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}

.video-container {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}

.video-card {
  padding: 0.5rem;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  overflow: hidden;
  background: hsla(250, 25%, 6%, 0.5);
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(35, 100%, 55%, 0.2), var(--background), hsla(280, 85%, 55%, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.fake-dashboard {
  position: absolute;
  inset: 1rem;
  border-radius: 0.5rem;
  border: 1px solid hsla(280, 30%, 25%, 0.3);
  background: hsla(250, 25%, 6%, 0.4);
  backdrop-filter: blur(4px);
  padding: 1rem;
}

.dash-header {
  height: 1rem;
  width: 8rem;
  background: hsla(35, 100%, 55%, 0.3);
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dash-box {
  height: 4rem;
  border-radius: 0.5rem;
}

.dash-box-primary {
  background: hsla(35, 100%, 55%, 0.2);
}

.dash-box-secondary {
  background: hsla(280, 85%, 55%, 0.2);
}

.dash-chart {
  height: 8rem;
  background: linear-gradient(90deg, hsla(35, 100%, 55%, 0.1), hsla(280, 85%, 55%, 0.1));
  border-radius: 0.5rem;
}

.play-button {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsla(35, 100%, 55%, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px hsla(35, 100%, 55%, 0.5);
  transition: transform 0.3s ease;
  z-index: 10;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-icon {
  font-size: 1.5rem;
  color: var(--primary-foreground);
  margin-left: 4px;
}

.play-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid hsla(35, 100%, 55%, 0.5);
}

.ring-1 {
  width: 5rem;
  height: 5rem;
  animation: ping 2s ease-in-out infinite;
}

.ring-2 {
  width: 7rem;
  height: 7rem;
  border-width: 1px;
  border-color: hsla(35, 100%, 55%, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
}

.video-glow-bg {
  position: absolute;
  inset: -4px;
  background: linear-gradient(90deg, hsla(35, 100%, 55%, 0.2), transparent, hsla(280, 85%, 55%, 0.2));
  border-radius: 1.5rem;
  filter: blur(20px);
  opacity: 0.5;
  z-index: -1;
}

.video-caption {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 2rem 1.5rem;
  position: relative;
}

.testimonials-glow {
  width: 500px;
  height: 500px;
  right: -12rem;
  top: 0;
  opacity: 0.15;
}

/* Scrolling logos */
.scrolling-logos {
  position: relative;
  margin-bottom: 4rem;
  overflow: hidden;
}

.logo-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 10;
}

.logo-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--background), transparent);
}

.logo-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--background), transparent);
}

.scrolling-logos-track {
  display: flex;
  animation: scroll-logos 20s linear infinite;
}

.scrolling-logos-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.scrolling-logo {
  flex-shrink: 0;
  padding: 0 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: hsla(250, 10%, 55%, 0.6);
  transition: color 0.3s ease;
}

.scrolling-logo:hover {
  color: hsla(35, 100%, 55%, 0.8);
}

@media (min-width: 768px) {
  .scrolling-logo {
    padding: 0 3rem;
    font-size: 1.25rem;
  }
}

/* Testimonials carousel */
.testimonials-carousel {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 0.67rem);
    max-width: calc(33.333% - 0.67rem);
  }
}

.testimonial-card:hover {
  transform: translateY(-0.5rem);
}

.testimonial-card .glass-card {
  padding: 1.5rem;
  height: 100%;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  opacity: 0.3;
  color: var(--primary);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid hsla(35, 100%, 55%, 0.3);
}

.testimonial-info h4 {
  font-weight: 700;
}

.testimonial-info .role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-info .company {
  font-size: 0.75rem;
  color: var(--primary);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.star {
  color: var(--secondary);
}

.testimonial-content {
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.7;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid hsla(35, 100%, 55%, 0.3);
  background: hsla(250, 25%, 6%, 0.6);
  backdrop-filter: blur(4px);
  color: var(--foreground);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: hsla(35, 100%, 55%, 0.2);
  border-color: var(--primary);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 2rem 1.5rem;
  position: relative;
}

.pricing-glow {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

.pricing-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.pricing-card {
  position: relative;
  border-radius: 1rem;
  background: hsla(250, 25%, 6%, 0.4);
  backdrop-filter: blur(20px);
  overflow: visible;
  transition: all 0.4s ease;
  animation: fade-in 0.6s ease-out forwards;
  opacity: 0;
  padding: 2rem;
  padding-top: 2.5rem;
}

.pricing-featured {
  padding-top: 3rem;
}

.pricing-card:nth-child(1) { animation-delay: 0s; }
.pricing-card:nth-child(2) { animation-delay: 0.1s; }
.pricing-card:nth-child(3) { animation-delay: 0.2s; }

.pricing-card:hover {
  transform: translateY(-0.75rem);
}

.pricing-cyan { border: 1px solid hsla(190, 90%, 50%, 0.3); }
.pricing-cyan:hover { box-shadow: 0 25px 50px hsla(190, 90%, 50%, 0.2); }

.pricing-violet { border: 1px solid hsla(270, 76%, 55%, 0.4); }
.pricing-violet:hover { box-shadow: 0 25px 50px hsla(270, 76%, 55%, 0.2); }

.pricing-amber { border: 1px solid hsla(30, 100%, 55%, 0.3); }
.pricing-amber:hover { box-shadow: 0 25px 50px hsla(30, 100%, 55%, 0.2); }

.pricing-featured {
  box-shadow: 0 20px 50px hsla(270, 76%, 55%, 0.2);
}

@media (min-width: 768px) {
  .pricing-featured {
    transform: translateY(-1rem);
  }
  
  .pricing-featured:hover {
    transform: translateY(-1.75rem);
  }
}

.featured-badge {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--violet), hsl(290, 80%, 55%));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px hsla(270, 76%, 55%, 0.4);
  white-space: nowrap;
}

.sparkle {
  font-size: 0.875rem;
}

.pricing-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pricing-cyan .corner { border-color: hsla(190, 90%, 50%, 0.3); }
.pricing-violet .corner { border-color: hsla(270, 76%, 55%, 0.4); }
.pricing-amber .corner { border-color: hsla(30, 100%, 55%, 0.3); }

.pricing-card .scan-line {
  top: 34%;
  z-index: 0;
}

.pricing-cyan .scan-line { background: linear-gradient(90deg, var(--cyan), hsl(210, 90%, 55%)); }
.pricing-violet .scan-line { background: linear-gradient(90deg, var(--violet), hsl(290, 80%, 60%)); }
.pricing-amber .scan-line { background: linear-gradient(90deg, var(--amber), var(--orange)); }

/* Removed conflicting padding selectors - padding is now on .pricing-card directly */

.pricing-name {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-name-cyan { background-image: linear-gradient(135deg, var(--cyan), hsl(210, 90%, 55%)); }
.pricing-name-violet { background-image: linear-gradient(135deg, var(--violet), hsl(290, 80%, 60%)); }
.pricing-name-amber { background-image: linear-gradient(135deg, var(--amber), var(--orange)); }

.pricing-price {
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.pricing-price .price {
  font-size: 2.5rem;
  font-weight: 900;
}

.pricing-price .period {
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.pricing-annual {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.9);
}

.pricing-features .check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsla(270, 76%, 55%, 0.2), hsla(290, 80%, 60%, 0.2));
  color: white;
  font-size: 0.625rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-bar {
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  opacity: 0.6;
}

.pricing-cyan .pricing-bar { background: linear-gradient(90deg, var(--cyan), hsl(210, 90%, 55%)); }
.pricing-violet .pricing-bar { background: linear-gradient(90deg, var(--violet), hsl(290, 80%, 60%)); }
.pricing-amber .pricing-bar { background: linear-gradient(90deg, var(--amber), var(--orange)); }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 2rem 1.5rem;
  position: relative;
}

.faq-glow {
  width: 400px;
  height: 400px;
  left: -12rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.2;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.faq-item {
  position: relative;
  border-radius: 1rem;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  background: hsla(250, 25%, 6%, 0.4);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fade-in 0.6s ease-out forwards;
  opacity: 0;
}

.faq-item:hover {
  border-color: hsla(35, 100%, 55%, 0.3);
}

.faq-item.open {
  border-color: hsla(35, 100%, 55%, 0.4);
}

.faq-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.faq-item .corner {
  width: 1.5rem;
  height: 1.5rem;
  border-color: hsla(270, 76%, 55%, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

.faq-question span {
  font-weight: 600;
  font-size: 0.875rem;
  padding-right: 1rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .faq-question span {
    font-size: 1rem;
  }
}

.faq-question:hover span {
  color: var(--primary);
}

.faq-toggle {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsla(35, 100%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--primary);
}

.faq-item.open .faq-toggle {
  background: hsla(35, 100%, 55%, 0.4);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer-content {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  border-top: 1px solid hsla(0, 0%, 100%, 0.05);
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .faq-answer-content {
    font-size: 1rem;
  }
}

.faq-bar {
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.open .faq-bar {
  opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid hsla(280, 30%, 25%, 0.3);
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer .logo {
  font-size: 1rem;
}

.copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--foreground);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

/* Scroll to Top Button - Left side */
.floating-scroll-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: hsla(250, 25%, 15%, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(280, 40%, 35%, 0.5);
  color: var(--foreground);
  cursor: pointer;
  box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.3);
  transition: all 0.3s ease;
  transform: translateY(5rem);
  opacity: 0;
}

.floating-scroll-top.visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-scroll-top:hover {
  transform: translateY(-4px);
  background: hsla(280, 40%, 25%, 0.9);
  border-color: var(--primary);
  box-shadow: 0 15px 40px hsla(35, 100%, 55%, 0.2);
}

.floating-scroll-top svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Right Side Floating Buttons Container */
.floating-buttons-right {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  transform: translateY(8rem);
  opacity: 0;
  transition: all 0.3s ease;
}

.floating-buttons-right.visible {
  transform: translateY(0);
  opacity: 1;
}

/* WhatsApp Button - Round with icon only */
.floating-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(142 70% 45%), hsl(142 70% 35%));
  color: white;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px hsla(142, 70%, 45%, 0.4);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 10px 30px hsla(142, 70%, 45%, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px hsla(142, 70%, 45%, 0.6), 0 0 0 10px hsla(142, 70%, 45%, 0.1);
  }
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px hsla(142, 70%, 45%, 0.5);
  animation: none;
}

.floating-whatsapp svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Testar Grátis CTA Button */
.floating-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, hsl(30 100% 55%), hsl(15 95% 50%));
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 20px 50px hsla(35, 100%, 55%, 0.3);
  transition: all 0.3s ease;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 60px hsla(35, 100%, 55%, 0.4);
}

.floating-cta svg {
  width: 1.25rem;
  height: 1.25rem;
}

.floating-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, hsl(30 100% 55%), hsl(15 95% 50%));
  border-radius: inherit;
  filter: blur(12px);
  opacity: 0.5;
  z-index: -1;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .floating-scroll-top {
    left: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
  }
  
  .floating-buttons-right {
    right: 1rem;
    bottom: 1rem;
  }
  
  .floating-whatsapp {
    width: 3rem;
    height: 3rem;
  }
  
  .floating-whatsapp svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .floating-cta span {
    display: none;
  }
  
  .floating-cta {
    padding: 1rem;
    border-radius: 50%;
  }
}
