/* ===== ZEKITO STYLES ===== */

/* ===== CSS VARIABLES ===== */
:root {
  --brand-blue: #1A56FF;
  --brand-dark: #0B1120;
  --brand-gray: #F3F4F6;
  --brand-success: #10B981;
  --brand-danger: #EF4444;
  
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  --blue-50: #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  
  --green-100: #D1FAE5;
  --green-500: #10B981;
  --green-600: #059669;
  --green-700: #047857;
  
  --yellow-100: #FEF3C7;
  --yellow-400: #FBBF24;
  --yellow-700: #B45309;
  
  --red-50: #FEF2F2;
  --red-100: #FEE2E2;
  --red-400: #F87171;
  --red-500: #EF4444;
  --red-600: #DC2626;
  
  --orange-400: #FB923C;
  
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-saas: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.05);
  --shadow-saas-hover: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.05);
  --shadow-blue: 0 10px 15px -3px rgba(26,86,255,0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: white;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

/* ===== 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;
  }
}

/* ===== LAYOUT ===== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-wide {
  max-width: 85rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container, .container-narrow, .container-wide {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container, .container-narrow, .container-wide {
    padding: 0 2rem;
  }
}

/* ===== GRID SYSTEM ===== */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* ===== FLEXBOX ===== */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }

/* Spacing utilities for flex/grid */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }

/* ===== TYPOGRAPHY ===== */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.font-display { font-family: var(--font-display); }
.font-sans { font-family: var(--font-sans); }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }

.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }

.uppercase { text-transform: uppercase; }

/* Text colors */
.text-white { color: white; }
.text-brand-blue { color: var(--brand-blue); }
.text-brand-dark { color: var(--brand-dark); }
.text-brand-success { color: var(--brand-success); }
.text-brand-danger { color: var(--brand-danger); }

.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }
.text-gray-900 { color: var(--gray-900); }

.text-blue-100 { color: var(--blue-100); }
.text-blue-200 { color: var(--blue-200); }
.text-blue-500 { color: var(--blue-500); }
.text-blue-600 { color: var(--blue-600); }
.text-blue-700 { color: var(--brand-blue); }

.text-green-600 { color: var(--green-600); }
.text-green-700 { color: var(--green-700); }

.text-yellow-700 { color: var(--yellow-700); }

.text-red-500 { color: var(--red-500); }
.text-red-600 { color: var(--red-600); }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ===== SPACING ===== */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2-5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-16 { padding-top: 4rem; }
.pt-32 { padding-top: 8rem; }

.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }

/* ===== BACKGROUNDS ===== */
.bg-white { background-color: white; }
.bg-brand-blue { background-color: var(--brand-blue); }
.bg-brand-dark { background-color: var(--brand-dark); }
.bg-brand-success { background-color: var(--brand-success); }
.bg-brand-danger { background-color: var(--brand-danger); }

.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-200 { background-color: var(--gray-200); }
.bg-gray-300 { background-color: var(--gray-300); }
.bg-gray-400 { background-color: var(--gray-400); }

.bg-blue-50 { background-color: var(--blue-50); }
.bg-blue-100 { background-color: var(--blue-100); }
.bg-blue-500 { background-color: var(--blue-500); }
.bg-blue-600 { background-color: var(--blue-600); }

.bg-green-100 { background-color: var(--green-100); }
.bg-green-500 { background-color: var(--green-500); }
.bg-green-600 { background-color: var(--green-600); }

.bg-yellow-100 { background-color: var(--yellow-100); }

.bg-red-50 { background-color: var(--red-50); }
.bg-red-100 { background-color: var(--red-100); }
.bg-red-400 { background-color: #F87171; }
.bg-red-500 { background-color: var(--red-500); }

.bg-yellow-400 { background-color: var(--yellow-400); }
.bg-green-400 { background-color: var(--green-400); }

/* ===== BORDERS ===== */
.border { border: 1px solid var(--gray-200); }
.border-0 { border: 0; }
.border-2 { border-width: 2px; }

.border-t { border-top: 1px solid var(--gray-200); }
.border-b { border-bottom: 1px solid var(--gray-200); }
.border-r { border-right: 1px solid var(--gray-100); }

.border-gray-100 { border-color: var(--gray-100); }
.border-gray-200 { border-color: var(--gray-200); }
.border-gray-300 { border-color: var(--gray-300); }
.border-blue-100 { border-color: var(--blue-100); }
.border-blue-200 { border-color: var(--blue-200); }
.border-green-200 { border-color: #A7F3D0; }
.border-red-200 { border-color: var(--red-100); }

.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ===== SHADOWS ===== */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-saas { box-shadow: var(--shadow-saas); }
.shadow-saas-hover:hover { box-shadow: var(--shadow-saas-hover); }

/* ===== SIZING ===== */
.w-full { width: 100%; }
.w-1 { width: 0.25rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-56 { width: 14rem; }
.w-500 { width: 500px; }

.h-full { height: 100%; }
.h-1 { height: 0.25rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-500 { height: 500px; }
.h-px { height: 1px; }

.min-h-screen { min-height: 100vh; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* ===== POSITION ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-12 { top: 3rem; }
.top-1-2 { top: 50%; }
.left-0 { left: 0; }
.left-1-2 { left: 50%; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* ===== TRANSFORMS ===== */
.transform { transform: translateZ(0); }
.-translate-x-1-2 { transform: translateX(-50%); }
.-translate-y-1-2 { transform: translateY(-50%); }
.rotate-45 { transform: rotate(45deg); }
.scale-98 { transform: scale(0.98); }
.scale-102 { transform: scale(1.02); }
.scale-110 { transform: scale(1.1); }

/* ===== TRANSITIONS ===== */
.transition { transition: all 0.2s ease; }
.transition-all { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
.transition-transform { transition: transform 0.2s; }

.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* ===== DISPLAY ===== */
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
}

/* ===== OVERFLOW ===== */
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }

/* ===== OPACITY & EFFECTS ===== */
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }

.blur-100 { filter: blur(100px); }

.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ===== COMPONENTS ===== */

/* Navigation */
.nav {
  position: fixed;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--brand-blue);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--brand-dark);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links-cta {
  gap: 1rem;
}

.nav-mobile-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-mobile-divider {
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}

.nav-mobile-cta {
  display: block;
  text-align: center;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.2s;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand-blue);
  background: var(--gray-100);
  outline: none;
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  background: var(--brand-blue);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(26, 86, 255, 0.3);
  transition: all 0.2s;
  display: inline-block;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue-600);
  transform: scale(1.02);
  outline: none;
}

.nav-cta:active {
  transform: scale(0.98);
}

.nav-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--gray-600);
  border-radius: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .nav-mobile-btn {
    display: none;
  }
}

.nav-mobile-btn:hover,
.nav-mobile-btn:focus-visible {
  color: var(--gray-900);
  background: var(--gray-100);
  outline: none;
}

.nav-mobile-menu {
  display: none;
  background: white;
  border-bottom: 1px solid var(--gray-100);
}

.nav-mobile-menu:not(.hidden) {
  display: block;
}

.nav-mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-mobile-link:hover,
.nav-mobile-link:focus-visible {
  color: var(--brand-blue);
  outline: none;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 18rem;
  padding-bottom: 5rem;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 18rem;
    padding-bottom: 6rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #f8fafc;
  background-image: 
    radial-gradient(#1a56ff 0.5px, transparent 0.5px),
    radial-gradient(#1a56ff 0.5px, #f8fafc 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  background-repeat: repeat;
  opacity: 0.6;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.hero-gradient-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-gradient-mesh::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(26, 86, 255, 0.15) 0%, transparent 70%);
  animation: float-slow 20s ease-in-out infinite;
}

.hero-gradient-mesh::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: 100px;
  left: -100px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  animation: float-slow 25s ease-in-out infinite reverse;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.5;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(26, 86, 255, 0.3), rgba(59, 130, 246, 0.2));
  top: 10%;
  left: 10%;
  animation: float-orb 15s ease-in-out infinite;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(52, 211, 153, 0.15));
  top: 30%;
  right: 15%;
  animation: float-orb 18s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -20px) rotate(5deg); }
  66% { transform: translate(-10px, 15px) rotate(-3deg); }
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.hero-content {
  text-align: left;
  max-width: none;
}

@media (max-width: 1023px) {
  .hero-content {
    text-align: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: linear-gradient(135deg, rgba(26, 86, 255, 0.05), rgba(59, 130, 246, 0.02));
  border: 1px solid rgba(26, 86, 255, 0.15);
  border-radius: 9999px;
  color: var(--brand-blue);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(26, 86, 255, 0.08), rgba(59, 130, 246, 0.05));
  border-color: rgba(26, 86, 255, 0.25);
}

@media (max-width: 1023px) {
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--brand-blue);
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-eyebrow {
  font-size: 0.875rem;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  display: block;
  border: none;
  background: none;
}

@media (max-width: 1023px) {
  .hero-eyebrow {
    text-align: center;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--gray-800) 50%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 1023px) {
  .hero-title {
    text-align: center;
  }
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.625;
  max-width: 100%;
  margin: 0 0 2rem 0;
  font-weight: 400;
}

@media (max-width: 1023px) {
  .hero-description {
    max-width: 42rem;
    margin: 0 auto 2rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 1023px) {
  .hero-actions {
    align-items: center;
    justify-content: center;
  }
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #3b82f6 50%, #2563eb 100%);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(26, 86, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-btn-primary {
    width: auto;
  }
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, var(--brand-blue) 50%, #1d4ed8 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(26, 86, 255, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-btn-secondary {
    width: auto;
  }
}

.hero-btn-secondary:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(26, 86, 255, 0.05);
}

.hero-checklist {
  font-size: 0.8125rem;
  color: var(--gray-600);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 1023px) {
  .hero-checklist {
    justify-content: center;
  }
}

.hero-checklist span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(241, 245, 249, 0.5);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-weight: 500;
}

.hero-checklist span::before {
  content: '✓';
  color: var(--green-600);
  font-weight: 700;
}

/* Dashboard Mockup */
.dashboard-mockup {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .dashboard-mockup {
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.3s ease;
  }
  
  .dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
  }
}

.dashboard-mockup::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(26, 86, 255, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.02); }
}

.dashboard-window {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.dashboard-window:hover {
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  background: rgba(249, 250, 251, 0.5);
}

.dashboard-dots {
  display: flex;
  gap: 0.5rem;
}

.dashboard-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
}

.dashboard-dot-red { background: var(--red-400); }
.dashboard-dot-yellow { background: var(--yellow-400); }
.dashboard-dot-green { background: var(--green-400); }

.dashboard-url {
  font-size: 0.75rem;
  color: var(--gray-400);
  background: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid var(--gray-200);
}

.dashboard-content {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .dashboard-content {
    grid-template-columns: 1fr 3fr;
  }
}

.dashboard-sidebar {
  display: none;
  padding: 1rem;
  background: rgba(249, 250, 251, 0.3);
  border-right: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
  .dashboard-sidebar {
    display: block;
  }
}

.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-menu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.2s;
}

.dashboard-menu-item:hover {
  background: var(--gray-100);
}

.dashboard-menu-item.active {
  background: var(--blue-50);
  color: var(--brand-blue);
  font-weight: 500;
}

.dashboard-main {
  padding: 1.5rem;
}

.dashboard-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.dashboard-title {
  font-weight: 700;
  color: var(--gray-900);
}

.dashboard-date {
  font-size: 0.75rem;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dashboard-stat {
  background: var(--gray-50);
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--gray-100);
}

.dashboard-stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.dashboard-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.dashboard-stat-change {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.dashboard-stat-change.positive {
  color: var(--green-600);
}

.dashboard-table {
  width: 100%;
  font-size: 0.875rem;
}

.dashboard-table th {
  text-align: left;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray-100);
}

.dashboard-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-50);
}

.dashboard-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dashboard-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #60A5FA, #2563EB);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.dashboard-status {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.dashboard-status.paid {
  background: var(--green-100);
  color: var(--green-700);
}

.dashboard-status.pending {
  background: var(--yellow-100);
  color: var(--yellow-700);
}

/* Notification Toast */
.notification-toast {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  width: 14rem;
  display: none;
  z-index: 20;
}

@media (min-width: 1024px) {
  .notification-toast {
    display: block;
    right: -2rem;
  }
}

/* Stats Bar */
.stats-bar {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, white 50%, var(--gray-50) 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
  position: relative;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  
  .stats-grid > div {
    position: relative;
    padding: 0 1.5rem;
  }
  
  .stats-grid > div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--gray-300), transparent);
  }
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats-grid > div {
  transition: transform 0.2s ease;
}

.stats-grid > div:hover {
  transform: translateY(-2px);
}

/* Problem Section */
.section-problem {
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, #fef9f9 0%, #fff5f5 30%, white 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--red-100);
}

.section-problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-400), transparent);
  opacity: 0.4;
}

.section-problem::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(239, 68, 68, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-problem .section-header {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red-500);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.03));
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.section-eyebrow [data-lucide] {
  color: var(--red-500);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-problem .section-title {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--gray-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.section-problem .section-description {
  color: var(--gray-500);
  font-weight: 400;
}

.alert-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 0.75rem;
  color: var(--red-600);
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 4px 15px -5px rgba(239, 68, 68, 0.2);
  animation: pulse-attention 2s ease-in-out infinite;
}

@keyframes pulse-attention {
  0%, 100% { box-shadow: 0 4px 15px -5px rgba(239, 68, 68, 0.2); }
  50% { box-shadow: 0 6px 25px -3px rgba(239, 68, 68, 0.35); }
}

@media (prefers-reduced-motion: reduce) {
  .alert-box {
    animation: none;
  }
}

/* Cards */
.cards-grid {
  display: grid;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cards-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cards-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-saas);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-400), var(--orange-400), var(--yellow-400));
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: translateY(-6px);
  border-color: rgba(239, 68, 68, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--red-50) 0%, rgba(239, 68, 68, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-500);
  margin-bottom: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(239, 68, 68, 0.15);
  box-shadow: 0 4px 12px -4px rgba(239, 68, 68, 0.2);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-3deg);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
  box-shadow: 0 6px 20px -4px rgba(239, 68, 68, 0.3);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.card-text {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--red-600);
  font-weight: 600;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.02));
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(239, 68, 68, 0.15);
  margin-top: auto;
}

.card-metric::before {
  content: '→';
  font-weight: 700;
  color: var(--red-400);
}

/* How It Works */
.section-how {
  padding: 7rem 0;
  background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
  position: relative;
  border-top: 3px solid var(--brand-blue);
}

.section-how::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-blue), #3b82f6);
  border-radius: 3px;
}

.section-how::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(26, 86, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-how .section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.section-eyebrow-solution {
  background: linear-gradient(135deg, rgba(26, 86, 255, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-color: rgba(26, 86, 255, 0.2);
  color: var(--brand-blue);
}

.section-eyebrow-solution [data-lucide] {
  color: var(--brand-blue);
}

.section-how .section-title {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 2.75rem;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(to right, 
      transparent 0%, 
      var(--blue-200) 15%, 
      var(--brand-blue) 50%, 
      var(--blue-200) 85%, 
      transparent 100%
    );
    opacity: 0.6;
  }
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, white 0%, var(--blue-50) 100%);
  border: 2px solid var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(26, 86, 255, 0.3), 0 0 0 4px rgba(26, 86, 255, 0.1);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 15px 35px -5px rgba(26, 86, 255, 0.4), 0 0 0 6px rgba(26, 86, 255, 0.15);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.step-text {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* Features Section */
.section-features {
  padding: 5rem 0;
  background: var(--gray-50);
}

.feature-row {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .feature-row.reversed {
    direction: rtl;
  }
  
  .feature-row.reversed > * {
    direction: ltr;
  }
}

.feature-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--blue-50);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .feature-title {
    font-size: 1.875rem;
  }
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.625;
  margin-bottom: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-item-text {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Feature Mockups */
.feature-mockup {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  box-shadow: var(--shadow-saas);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 8rem;
}

.chart-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.25rem;
}

.chart-bar {
  width: 100%;
  border-radius: 0.25rem 0.25rem 0 0;
  transition: all 0.5s;
}

.chart-bar.expected {
  background: var(--blue-100);
}

.chart-bar.actual {
  background: var(--brand-blue);
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-color {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.25rem;
}

/* Player Card Mockup */
.player-card-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.player-avatar-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #60A5FA, #22D3EE);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.player-info h4 {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.player-info p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.player-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.player-stat-box {
  background: var(--gray-50);
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.player-stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.player-stat-value {
  font-weight: 600;
  color: var(--gray-900);
}

.player-stat-value.success {
  color: var(--green-600);
}

/* QR Code Mockup */
.qr-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--blue-50);
  border-radius: 0.5rem;
  border: 1px solid var(--blue-100);
}

.qr-code {
  width: 3.5rem;
  height: 3.5rem;
  background: white;
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.125rem;
}

.qr-pixel {
  border-radius: 0.0625rem;
}

.qr-pixel.filled {
  background: var(--gray-800);
}

.qr-text h5 {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.qr-text p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Testimonials */
.section-testimonials {
  padding: 5rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  box-shadow: var(--shadow-saas);
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-saas-hover);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--yellow-400);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #60A5FA, #22D3EE);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.875rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Pricing Section */
.section-pricing {
  padding: 5rem 0;
  background: var(--gray-50);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  box-shadow: var(--shadow-saas);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: var(--shadow-saas-hover);
  transform: translateY(-4px);
}

.pricing-card {
  transition: all 0.3s;
}

.pricing-card.featured {
  border-color: var(--brand-blue);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand-blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.pricing-tier {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--brand-blue);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 1.5rem;
}

.pricing-btn:hover {
  background: var(--blue-600);
  transform: scale(1.02);
}

.pricing-btn-outline {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
}

.pricing-btn-outline:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(26, 86, 255, 0.05);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.pricing-feature-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* FAQ Section */
.section-faq {
  padding: 5rem 0;
  background: white;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: white;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question-text {
  font-weight: 600;
  color: var(--gray-900);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.faq-item.open .faq-icon,
.faq-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer,
.faq-open .faq-answer {
  max-height: 20rem;
}

.faq-answer-text {
  padding: 0 1.25rem 1rem;
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* CTA Section */
.section-cta {
  padding: 5rem 0;
  background: var(--brand-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: rgba(26, 86, 255, 0.1);
  border-radius: 9999px;
  filter: blur(100px);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, rgba(191, 219, 254, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-title-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.cta-text {
  color: rgba(219, 234, 254, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #3b82f6 50%, #2563eb 100%);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(26, 86, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, var(--brand-blue) 50%, #1d4ed8 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(26, 86, 255, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
}

.cta-checklist {
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cta-checklist span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(191, 219, 254, 0.9);
  font-weight: 500;
}

.cta-checklist span::before {
  content: '✓';
  color: var(--green-400);
  font-weight: 700;
}

.cta-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(191, 219, 254, 0.5);
}

/* Footer */
.footer {
  background: white;
  border-top: 1px solid var(--gray-200);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--brand-blue);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.footer-tagline {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--gray-400);
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--brand-blue);
  background: var(--gray-100);
  outline: none;
}

.footer-column h4 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--gray-500);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  padding: 0.25rem 0;
  display: inline-block;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--brand-blue);
  outline: none;
}

.footer-bottom {
  border-top: 1px solid var(--gray-100);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  color: var(--gray-500);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: var(--brand-blue);
  outline: none;
}

/* ===== ROADMAP SPECIFIC ===== */
.roadmap-section {
  padding: 3rem 0;
  background: white;
}

.roadmap-header {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.roadmap-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.roadmap-card {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.roadmap-card:hover {
  box-shadow: var(--shadow-lg);
}

.roadmap-card.completed {
  border-color: #A7F3D0;
}

.roadmap-card.in-progress {
  border-color: var(--blue-200);
}

.roadmap-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.roadmap-version {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.roadmap-phase {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.roadmap-status {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.roadmap-status.completed {
  background: var(--green-100);
  color: var(--green-700);
}

.roadmap-status.in-progress {
  background: var(--blue-100);
  color: var(--brand-blue);
}

.roadmap-status.planned {
  background: var(--gray-100);
  color: var(--gray-600);
}

.roadmap-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 1rem 0;
}

.roadmap-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.roadmap-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.roadmap-feature-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.roadmap-feature-icon.completed {
  color: var(--green-500);
}

.roadmap-feature-icon.pending {
  color: var(--gray-300);
}

.roadmap-feature-icon.planned {
  color: var(--gray-400);
}

/* ===== ICON UTILITIES ===== */
[data-lucide] {
  display: inline-block;
  flex-shrink: 0;
}

.icon-12 {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.icon-16 {
  width: 16px;
  height: 16px;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-24 {
  width: 24px;
  height: 24px;
}

.icon-32 {
  width: 32px;
  height: 32px;
}

.icon-inline {
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Selection */
::selection {
  background: rgba(26, 86, 255, 0.2);
  color: var(--brand-blue);
}
