/* ================================================
   NOXIRA — style-enhanced.css v4.0 | Premium + Futuristic FX
   ================================================ */

:root {
  --dark1: #0F1419;
  --dark2: #1a1f2e;
  --dark3: #242d3f;
  --text-primary: #f0f4ff;
  --text-muted: #a0aac0;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);

  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dark: #5b21b6;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --cyan: #06b6d4;
  --green: #10b981;
  --amber: #f59e0b;
  --pink: #ec4899;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: #0d1117;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =============================================
   ENHANCED BACKGROUND — MESH GRADIENT + ORBS
   ============================================= */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.08) 0%,
      rgba(59, 130, 246, 0.04) 25%,
      rgba(6, 182, 212, 0.06) 50%,
      rgba(236, 72, 153, 0.04) 75%,
      transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: meshShift 20s ease-in-out infinite;
}

@keyframes meshShift {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Enhanced orbs — más fluidos */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.bg-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.45) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation: orbFloat1 25s ease-in-out infinite;
}

.bg-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: orbFloat2 30s ease-in-out infinite;
}

.bg-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
  top: 40%;
  left: 45%;
  animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(60px, 80px) scale(1.1);
  }

  50% {
    transform: translate(-40px, 120px) scale(0.9);
  }

  75% {
    transform: translate(80px, 40px) scale(1.05);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-80px, -60px) scale(1.12);
  }

  66% {
    transform: translate(60px, -100px) scale(0.9);
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-80px, 60px) scale(1.08);
  }
}

body>* {
  position: relative;
  z-index: 2;
}

.bg-orb {
  z-index: 1;
}

/* Enhanced cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: left 0.08s ease, top 0.08s ease;
  filter: blur(40px);
  box-shadow: 0 0 120px rgba(124, 58, 237, 0.2);
}

/* =============================================
   SCROLL REVEAL CON 3D PERSPECTIVE
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(60px) rotateX(15deg);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  perspective: 1200px;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.3s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.4s;
}

.reveal[data-delay="5"] {
  transition-delay: 0.5s;
}

.reveal[data-delay="6"] {
  transition-delay: 0.6s;
}

.reveal[data-delay="7"] {
  transition-delay: 0.7s;
}

/* =============================================
   FOCUS VISIBLE
   ============================================= */

:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================
   HEADER CON GLASSMORPHISM MEJORADO
   ============================================= */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(1, 3, 20, 0.95) 0%, rgba(1, 3, 20, 0.8) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 1.2rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(124, 58, 237, 0);
}

header:hover {
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(124, 58, 237, 0.2);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 8px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo:hover::before {
  opacity: 1;
}

.logo:hover {
  filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.8));
  transform: scale(1.05);
}

.logo img {
  display: block;
  position: relative;
  z-index: 1;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

nav a:hover {
  color: var(--text-primary);
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* =============================================
   HERO CON EFECTOS MEJORADOS
   ============================================= */

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 3rem;
  text-align: center;
  perspective: 1000px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 30%, rgba(240, 244, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both,
    textGlow 3s ease-in-out infinite;
  position: relative;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px) rotateX(20deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes textGlow {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
  }

  50% {
    text-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
  }
}

.hero h1 span {
  background: linear-gradient(90deg,
      var(--purple-light) 0%,
      var(--cyan) 25%,
      var(--pink) 50%,
      var(--purple-light) 75%,
      var(--cyan) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 2.5rem;
  animation: fadeSlideDown 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeSlideDown 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.btn-primary,
.btn-secondary {
  padding: 0.85rem 2.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}

.btn-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: var(--purple-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.btn-secondary:hover::after {
  opacity: 1;
}

/* =============================================
   BROWSER MOCKUP MEJORADO
   ============================================= */

.browser-mockup {
  max-width: 1000px;
  margin: 4rem auto 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid var(--border-light);
  animation: slideUp 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2),
    0 0 1px rgba(255, 255, 255, 0.1) inset;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95) rotateX(10deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

.browser-header {
  background: var(--dark3);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.browser-dots {
  display: flex;
  gap: 0.6rem;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.dot-r {
  background: #ff5f56;
}

.dot-y {
  background: #ffbd2e;
}

.dot-g {
  background: #27c93f;
}

.browser-address {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'Monaco', monospace;
}

.browser-content {
  padding: 2rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  min-height: 280px;
  background: var(--dark1);
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mock-side-item {
  height: 12px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.2) 0%, transparent 100%);
  border-radius: 6px;
  animation: shimmer 3s infinite;
}

.mock-side-item.active {
  background: linear-gradient(90deg, var(--purple) 0%, rgba(124, 58, 237, 0.2) 100%);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
}

.mock-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mock-card {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mock-card-h {
  height: 8px;
  background: var(--purple);
  border-radius: 4px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.mock-card-b {
  height: 6px;
  background: var(--text-muted);
  border-radius: 3px;
  opacity: 0.5;
}

.mock-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  margin-top: 1rem;
}

.mock-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  flex: 1;
  height: 100px;
}

.mock-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--purple) 100%);
  border-radius: 4px 4px 0 0;
  animation: barGrow 2s ease-out infinite;
  transform-origin: bottom;
}

@keyframes barGrow {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* =============================================
   STATS STRIP MEJORADO
   ============================================= */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.08) 0%,
      rgba(59, 130, 246, 0.04) 50%,
      rgba(6, 182, 212, 0.04) 100%);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
  }

  50% {
    text-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
  }
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================================
   FEATURES SECTION
   ============================================= */

.features-section {
  max-width: 1200px;
  margin: 6rem auto 0;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.feature-card {
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.08) 0%,
      rgba(59, 130, 246, 0.04) 100%);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(124, 58, 237, 0.15) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-12px) translateZ(0);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15),
    0 0 1px rgba(255, 255, 255, 0.2) inset;
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.12) 0%,
      rgba(59, 130, 246, 0.06) 100%);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: rotate(12deg) scale(1.1);
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.5);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   PRICING SECTION
   ============================================= */

.pricing-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.price-card {
  background: linear-gradient(135deg,
      rgba(15, 20, 25, 0.8) 0%,
      rgba(26, 31, 46, 0.5) 100%);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(124, 58, 237, 0.4),
      rgba(6, 182, 212, 0.4),
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.price-card:hover::before {
  opacity: 1;
}

.price-card:hover {
  transform: translateY(-16px) scale(1.02) translateZ(0);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.2),
    0 0 1px rgba(255, 255, 255, 0.1) inset;
  background: linear-gradient(135deg,
      rgba(15, 20, 25, 0.95) 0%,
      rgba(26, 31, 46, 0.6) 100%);
}

.price-card.featured {
  border: 2px solid var(--purple);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.2);
}

.price-card.featured:hover {
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.4),
    0 20px 60px rgba(124, 58, 237, 0.25);
}

.badge-featured {
  display: inline-block;
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.2) 0%,
      rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--purple-light);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-more-info {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.15) 0%,
      rgba(59, 130, 246, 0.08) 100%);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-more-info:hover {
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.25) 0%,
      rgba(59, 130, 246, 0.15) 100%);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

/* =============================================
   INCLUDES SECTION
   ============================================= */

.includes-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.includes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--pink));
  animation: shimmer 3s infinite;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0 3.5rem;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.include-item:hover {
  color: var(--text-primary);
  background: rgba(124, 58, 237, 0.1);
  transform: translateX(6px);
}

.include-item i {
  color: var(--green);
  animation: checkmark 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes checkmark {
  0% {
    transform: scale(0) rotate(-45deg);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

.tech-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tech-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.tech-badge:hover {
  border-color: var(--purple-light);
  background: rgba(124, 58, 237, 0.12);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
  transform: translateY(-3px) scale(1.05);
}

/* =============================================
   FAQs
   ============================================= */

.faq-section {
  max-width: 800px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq-item {
  background: linear-gradient(135deg,
      rgba(20, 25, 35, 0.8) 0%,
      rgba(26, 31, 46, 0.5) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
  transform: translateX(4px);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  text-align: left;
  padding: 1.2rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--purple-light);
}

.faq-question i {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.faq-question:hover i {
  color: var(--purple-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.2);
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.5) 0%, rgba(10, 13, 18, 0.8) 100%);
  backdrop-filter: blur(10px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.payment-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.payment-icons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 0 0.5rem;
  border-radius: 8px;
  height: 36px;
  min-width: 56px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.payment-icons span:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--purple-light);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.payment-icons img {
  max-height: 26px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--purple-light);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* =============================================
   SCROLL TO TOP
   ============================================= */

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 5rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.1) 0%,
      rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 98;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-shadow: 0 0 0 rgba(124, 58, 237, 0);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  color: white;
  border-color: var(--purple);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.6);
  transform: translateY(-4px) scale(1.1);
}

/* =============================================
   SELECTION & SCROLLBAR
   ============================================= */

::selection {
  background: rgba(124, 58, 237, 0.4);
  color: white;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0d1117;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple), var(--blue));
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--purple-light), var(--blue-light));
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.5);
}

/* =============================================
   PREFERS-REDUCED-MOTION
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
  .browser-mockup {
    display: none;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .menu-toggle {
    display: block;
  }

  #navMenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 200;
  }

  #navMenu.nav-open {
    display: flex;
  }

  #navMenu a {
    font-size: 1.4rem;
    color: var(--text-primary);
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
  }
}