/* ============================================
   VYAPRY - Modern Landing Page v2
   Premium Design System
   ============================================ */

/* CSS Variables */
:root {
  /* Primary Colors - Vyapry Green */
  --primary: #16543d;
  --primary-dark: #0f3d2c;
  --primary-light: #1a6b4d;
  --primary-lighter: #22875f;
  --primary-50: rgba(22, 84, 61, 0.05);
  --primary-100: rgba(22, 84, 61, 0.1);
  --primary-200: rgba(22, 84, 61, 0.2);

  /* Accent Colors */
  --accent-purple: #7c3aed;
  --accent-pink: #db2777;
  --accent-cyan: #0891b2;
  --accent-green: #16543d;
  --accent-orange: #ea580c;
  --accent-blue: #2563eb;

  /* Neutral Colors */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --gray-950: #020617;

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #0f172a;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a1f17 0%, #0f2e22 50%, #0a1f17 100%);
  --gradient-primary: linear-gradient(135deg, #16543d 0%, #1a6b4d 100%);
  --gradient-accent: linear-gradient(135deg, #16543d 0%, #22875f 100%);
  --gradient-text: linear-gradient(135deg, #16543d 0%, #22875f 50%, #2da872 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 25px -5px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(22, 84, 61, 0.4);
  --shadow-glow-accent: 0 0 60px rgba(22, 84, 61, 0.5);

  /* Border Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--gray-950);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: var(--gradient-hero);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 84, 61, 0.6) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 107, 77, 0.5) 0%, transparent 70%);
  top: 50%;
  right: -150px;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 135, 95, 0.4) 0%, transparent 70%);
  bottom: -100px;
  left: 30%;
  animation-delay: -10s;
}

.orb-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 168, 114, 0.35) 0%, transparent 70%);
  top: 40%;
  left: 20%;
  animation-delay: -15s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -50px) scale(1.1); }
  50% { transform: translate(100px, 50px) scale(0.95); }
  75% { transform: translate(-50px, 100px) scale(1.05); }
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-gradient {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(22, 84, 61, 0.5);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 84, 61, 0.6);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(22, 84, 61, 0.5);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 84, 61, 0.6);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--gray-600);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-50);
}

.btn-white {
  background: white;
  color: var(--gray-900);
}

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.btn-glass-dark {
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass-dark:hover {
  background: rgba(0, 0, 0, 0.5);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-block { width: 100%; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: var(--transition);
}

.navbar.scrolled::before { opacity: 1; }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: white;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(22, 84, 61, 0.5);
}

/* Nav Links */
.nav-center {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-link:hover { color: white; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-link:hover::after { width: 100%; }

/* Nav End */
.nav-end {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Content */
.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(22, 84, 61, 0.25);
  border: 1px solid rgba(22, 84, 61, 0.5);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: #2da872;
  margin-bottom: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.hero-badge:hover {
  background: rgba(22, 84, 61, 0.35);
  transform: translateX(5px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #2da872;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  margin-bottom: 24px;
  line-height: 1.05;
}

.title-line {
  display: block;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-checklist span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(22, 84, 61, 0.15);
  border: 1px solid rgba(22, 84, 61, 0.35);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: #d1fae5;
  backdrop-filter: blur(6px);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--text-secondary);
}

.stat-avatars {
  display: flex;
}

.stat-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-900);
  margin-left: -10px;
  object-fit: cover;
}

.stat-avatars img:first-child { margin-left: 0; }

.avatar-more {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 50%;
  border: 2px solid var(--gray-900);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

/* ============================================
   HERO VISUAL
   ============================================ */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.visual-container {
  position: relative;
  transform-style: preserve-3d;
}

/* Main Dashboard Card */
.dashboard-card {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  backdrop-filter: blur(20px);
}

.main-card {
  transform: rotateY(-5deg) rotateX(5deg);
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: rotateY(-5deg) rotateX(5deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(5deg) translateY(-10px); }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-dots {
  display: flex;
  gap: 6px;
}

.header-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.header-title {
  font-size: 12px;
  color: var(--text-muted);
}

.card-body {
  display: flex;
  padding: 0;
}

/* Mini Sidebar */
.mini-sidebar {
  width: 60px;
  background: rgba(0, 0, 0, 0.2);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-logo {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 16px;
  opacity: 0.6;
  transition: var(--transition);
}

.nav-icon.active {
  background: var(--primary-100);
  opacity: 1;
}

/* Mini Content */
.mini-content {
  flex: 1;
  padding: 16px;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.content-header h4 {
  font-size: 14px;
  color: white;
  font-weight: 600;
}

.date-badge {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.mini-stat.purple { border-left: 3px solid var(--primary); }
.mini-stat.blue { border-left: 3px solid var(--accent-blue); }
.mini-stat.green { border-left: 3px solid #2da872; }

.stat-icon { font-size: 20px; }

.stat-val {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.stat-lbl {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

/* Mini Chart */
.mini-chart {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 12px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-secondary);
}

.chart-trend {
  color: var(--accent-green);
  font-weight: 600;
}

.chart-visual { height: 60px; }
.area-chart { width: 100%; height: 100%; }

/* Floating Cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  animation: floatCard 5s ease-in-out infinite;
}

.card-revenue {
  top: 20%;
  left: -30px;
  animation-delay: 0s;
}

.card-orders {
  bottom: 30%;
  right: -20px;
  animation-delay: -1.5s;
}

.card-notification {
  bottom: 10%;
  left: 10%;
  animation-delay: -3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-content {
  display: flex;
  flex-direction: column;
}

.float-label {
  font-size: 11px;
  color: var(--text-muted);
}

.float-value {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.float-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.float-badge.up {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
}

.notif-icon {
  font-size: 24px;
}

.notif-content {
  display: flex;
  flex-direction: column;
}

.notif-title {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.notif-text {
  font-size: 11px;
  color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
  animation: bounce 2s infinite;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #16543d;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   TRUSTED SECTION
   ============================================ */
.trusted-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 16px;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: var(--transition);
}

.logo-item:hover { opacity: 1; }

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(22, 84, 61, 0.2);
  border: 1px solid rgba(22, 84, 61, 0.4);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #2da872;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: white;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-card:hover::before { opacity: 1; }

.feature-card.purple-glow::before { background: var(--gradient-primary); }
.feature-card.blue-glow::before { background: linear-gradient(90deg, #3b82f6, #06b6d4); }
.feature-card.green-glow::before { background: linear-gradient(90deg, #10b981, #34d399); }
.feature-card.orange-glow::before { background: linear-gradient(90deg, #f97316, #fbbf24); }
.feature-card.pink-glow::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.feature-card.cyan-glow::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }

.feature-card.large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.grid-item {
  width: 60px;
  height: 60px;
  background: rgba(22, 84, 61, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.payment-icons {
  display: flex;
  gap: 16px;
}

.pay-icon {
  width: 50px;
  height: 50px;
  background: rgba(22, 84, 61, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon.purple { background: rgba(22, 84, 61, 0.2); color: var(--primary-light); }
.feature-icon.blue { background: rgba(37, 99, 235, 0.2); color: var(--accent-blue); }
.feature-icon.green { background: rgba(45, 168, 114, 0.2); color: #2da872; }
.feature-icon.orange { background: rgba(234, 88, 12, 0.2); color: var(--accent-orange); }
.feature-icon.pink { background: rgba(219, 39, 119, 0.2); color: var(--accent-pink); }
.feature-icon.cyan { background: rgba(8, 145, 178, 0.2); color: var(--accent-cyan); }

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: white;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */
.showcase-section {
  padding: 100px 0;
  overflow: hidden;
}

.showcase-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.phones-showcase {
  display: flex;
  justify-content: center;
  gap: 120px;
  position: relative;
}

.phone-wrapper {
  position: relative;
}

.phone-label {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: rgba(22, 84, 61, 0.3);
  border: 1px solid rgba(22, 84, 61, 0.6);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #2da872;
  white-space: nowrap;
}

.phone-device {
  width: 280px;
  height: 580px;
  background: var(--gray-900);
  border-radius: 40px;
  padding: 10px;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(22, 84, 61, 0.3);
  position: relative;
  overflow: hidden;
}

.phone-left .phone-device {
  transform: perspective(1000px) rotateY(10deg);
}

.phone-right .phone-device {
  transform: perspective(1000px) rotateY(-10deg);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: var(--gray-950);
  border-radius: 14px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 100%);
  border-radius: 32px;
  overflow: hidden;
}

.app-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 12px 0;
}

.app-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.status-icons {
  display: flex;
  gap: 6px;
}

/* Customer App Styles */
.app-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.location-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: white;
}

.header-icons {
  display: flex;
  gap: 12px;
  font-size: 16px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.promo-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.gradient-banner {
  background: linear-gradient(135deg, #16543d 0%, #1a6b4d 100%);
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-tag {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

.banner-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.banner-btn {
  padding: 6px 12px;
  background: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  width: fit-content;
  margin-top: 4px;
}

.banner-emoji {
  font-size: 32px;
}

.categories-scroll {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  overflow-x: auto;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 60px;
}

.cat-item span {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cat-item small {
  font-size: 10px;
  color: var(--text-secondary);
}

.products-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.product-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-img {
  height: 80px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.product-name {
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.product-price {
  font-size: 13px;
  font-weight: 700;
  color: #2da872;
}

.app-nav-bar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 20px;
}

.app-nav-bar span {
  opacity: 0.5;
}

.app-nav-bar span.active {
  opacity: 1;
}

/* Seller App Styles */
.seller-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.seller-info {
  display: flex;
  flex-direction: column;
}

.seller-greeting {
  font-size: 12px;
  color: var(--text-muted);
}

.seller-name {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.seller-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #16543d, #22875f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.quick-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.quick-stat {
  flex: 1;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  text-align: center;
}

.qs-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.qs-label {
  font-size: 10px;
  color: var(--text-muted);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: rgba(22, 84, 61, 0.2);
  border-radius: var(--radius);
}

.action-btn span {
  font-size: 20px;
}

.action-btn small {
  font-size: 9px;
  color: var(--text-secondary);
}

.recent-orders {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.see-all {
  font-size: 11px;
  color: #2da872;
  font-weight: 500;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  margin-bottom: 8px;
}

.order-icon {
  font-size: 18px;
}

.order-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.order-id {
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.order-items {
  font-size: 10px;
  color: var(--text-muted);
}

.order-status {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.order-status.pending {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.order-status.delivered {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
}

.seller-nav {
  margin-top: auto;
}

/* App CTA */
.app-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.app-store-btn svg {
  color: white;
}

.app-store-btn div {
  display: flex;
  flex-direction: column;
}

.app-store-btn span {
  font-size: 11px;
  color: var(--text-muted);
}

.app-store-btn strong {
  font-size: 15px;
  color: white;
}

.role-dash-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.role-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.role-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.role-chip {
  padding: 6px 10px;
  border-radius: var(--radius-full);
  background: rgba(22, 84, 61, 0.2);
  border: 1px solid rgba(22, 84, 61, 0.4);
  font-size: 11px;
  font-weight: 700;
  color: #d1fae5;
}

.role-kpi {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}

.role-kpi.up {
  color: #34d399;
}

.role-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.role-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.role-metrics li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
}

.role-metrics strong {
  color: white;
  font-size: 13px;
}

.admin-card { border-color: rgba(76, 29, 149, 0.35); }
.warehouse-card { border-color: rgba(234, 88, 12, 0.35); }
.delivery-card { border-color: rgba(59, 130, 246, 0.35); }
.finance-card { border-color: rgba(34, 197, 94, 0.35); }

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */
.integrations-section {
  padding: 100px 0;
}

.integrations-orbit {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.orbit-center {
  position: relative;
  width: 400px;
  height: 400px;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: white;
  box-shadow: var(--shadow-glow-accent);
  z-index: 2;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.ring-1 {
  width: 220px;
  height: 220px;
  animation: orbit 20s linear infinite;
}

.ring-2 {
  width: 350px;
  height: 350px;
  animation: orbit 30s linear infinite reverse;
}

@keyframes orbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translateX(calc(50% + 50px)) rotate(calc(-1 * var(--angle)));
}

.ring-1 .orbit-item {
  transform: rotate(var(--angle)) translateX(110px) rotate(calc(-1 * var(--angle)));
}

.ring-2 .orbit-item {
  transform: rotate(var(--angle)) translateX(175px) rotate(calc(-1 * var(--angle)));
}

.orbit-item span {
  display: block;
  padding: 10px 18px;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  animation: counter-rotate 20s linear infinite;
}

.ring-2 .orbit-item span {
  animation: counter-rotate-reverse 30s linear infinite;
}

@keyframes counter-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes counter-rotate-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 100px 0;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.toggle-label {
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition);
}

.toggle-label.active {
  color: white;
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  cursor: pointer;
}

.toggle-switch input {
  display: none;
}

.toggle-track {
  display: block;
  width: 48px;
  height: 26px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  position: relative;
  transition: var(--transition);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-track {
  background: #16543d;
}

.toggle-switch input:checked + .toggle-track .toggle-thumb {
  transform: translateX(22px);
}

.save-tag {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-green);
  margin-left: 8px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pricing-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(22, 84, 61, 0.2) 0%, rgba(26, 107, 77, 0.15) 100%);
  border-color: rgba(22, 84, 61, 0.5);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.card-top {
  margin-bottom: 32px;
}

.plan-name {
  font-size: 20px;
  margin-bottom: 8px;
  color: white;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
}

.currency {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.amount {
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-family: var(--font-heading);
}

.period {
  font-size: 15px;
  color: var(--text-muted);
  margin-left: 8px;
}

.plan-features {
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
  border-bottom: none;
}

.check {
  color: #2da872;
  font-weight: 700;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-marquee {
  margin-top: 40px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
  width: fit-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.quote-icon {
  font-size: 48px;
  font-family: Georgia, serif;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: white;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
}

.cta-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  color: white;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-visual {
  position: relative;
  z-index: 1;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cta-stat {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: white;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.cta-stat .stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-links a:hover {
  background: #16543d;
  border-color: #16543d;
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  gap: 24px;
}

.footer-badges span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .phones-showcase {
    gap: 40px;
    flex-wrap: wrap;
  }

  .phone-left .phone-device,
  .phone-right .phone-device {
    transform: none;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .role-dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 40px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .integration-categories {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    flex-wrap: wrap;
  }

  .nav-center,
  .nav-end {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0;
    gap: 4px;
  }

  .nav-center.mobile-active {
    display: flex;
    order: 10;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);
    padding: 16px 0 8px;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-end.mobile-active {
    display: flex;
    order: 11;
    padding: 8px 0 16px;
    gap: 12px;
  }

  .nav-center .nav-link,
  .nav-end .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
  }

  .nav-center .nav-link:hover,
  .nav-end .nav-link:hover {
    color: white;
  }

  .nav-end .btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-checklist {
    justify-content: center;
    gap: 8px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.large {
    grid-column: span 1;
  }

  .phones-showcase {
    padding: 0 20px;
  }

  .phone-device {
    width: 260px;
    height: 520px;
  }

  .orbit-center {
    width: 300px;
    height: 300px;
  }

  .ring-1 { width: 180px; height: 180px; }
  .ring-2 { width: 280px; height: 280px; }

  .ring-1 .orbit-item {
    transform: rotate(var(--angle)) translateX(90px) rotate(calc(-1 * var(--angle)));
  }

  .ring-2 .orbit-item {
    transform: rotate(var(--angle)) translateX(140px) rotate(calc(-1 * var(--angle)));
  }

  .orbit-item span {
    padding: 8px 12px;
    font-size: 11px;
  }

  .center-logo {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .cta-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .integration-categories {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .app-badges {
    gap: 20px !important;
  }

  .role-dash-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    padding: 0 8px;
  }

  .testimonials-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-checklist {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .stat-pill {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-desc {
    font-size: 15px;
    padding: 0 8px;
  }

  .phone-device {
    width: 240px;
    height: 480px;
  }

  .phones-showcase {
    padding: 0 10px;
  }

  .app-cta {
    flex-direction: column;
    align-items: center;
  }

  .app-store-btn {
    width: 100%;
    justify-content: center;
  }

  .app-badges {
    gap: 12px !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .integration-categories {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .pricing-toggle {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .trusted-logos {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-item {
    font-size: 14px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .orbit-center {
    width: 240px;
    height: 240px;
  }

  .ring-1 { width: 140px; height: 140px; }
  .ring-2 { width: 220px; height: 220px; }

  .ring-1 .orbit-item {
    transform: rotate(var(--angle)) translateX(70px) rotate(calc(-1 * var(--angle)));
  }

  .ring-2 .orbit-item {
    transform: rotate(var(--angle)) translateX(110px) rotate(calc(-1 * var(--angle)));
  }

  .orbit-item span {
    padding: 6px 10px;
    font-size: 10px;
  }

  .center-logo {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.hidden { display: none; }

/* Selection */
::selection {
  background: #16543d;
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-900);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-600);
}

/* ========== Lead Capture Modal ========== */
.lead-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lead-modal-overlay.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.lead-modal {
  position: relative;
  width: 90%;
  max-width: 440px;
  background: var(--gray-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px 32px;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.lead-modal-overlay.active .lead-modal {
  transform: translateY(0) scale(1);
}
.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lead-modal-close:hover {
  color: white;
}
.lead-modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.lead-modal-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #16543d, #22875f);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  font-weight: 700;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}
.lead-modal-header h3 {
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.lead-modal-header p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.lead-field {
  margin-bottom: 18px;
}
.lead-field label {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}
.lead-field input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.lead-field input::placeholder {
  color: var(--text-muted);
}
.lead-field input:focus {
  border-color: #16543d;
  box-shadow: 0 0 0 3px rgba(22, 84, 61, 0.25);
}
.lead-submit {
  margin-top: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  width: 100%;
}
.lead-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.lead-submit .spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.lead-thankyou {
  text-align: center;
  padding: 20px 0;
}
.lead-thankyou-icon {
  font-size: 56px;
  margin-bottom: 16px;
}
.lead-thankyou h3 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.lead-thankyou p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .lead-modal {
    padding: 32px 20px 24px;
    max-width: 95%;
  }
}
