/*
Theme Name: Lunexia Enterprise POS System
Theme URI: https://pos.lunexiait.com
Author: Lunexia IT
Author URI: https://lunexiait.com
Description: Official ultra-premium commercial sales theme for Lunexia Enterprise POS System — High-converting multi-page marketing site for Supermarkets, Pharmacies, Restaurants & Retail Chains in Bangladesh.
Version: 3.0.0
License: Commercial / Proprietary
Text Domain: lunexia-pos
*/

/* ===================================================================
   LUNEXIA POS — ULTRA-PREMIUM DESIGN SYSTEM v3.0
   =================================================================== */

:root {
  --bg-deep:      #040812;
  --bg-dark:      #090F1E;
  --bg-card:      #0E1628;
  --bg-card-hover:#111D34;
  --border:       rgba(99,102,241,0.15);
  --border-bright:rgba(99,102,241,0.4);
  --primary:      #6366F1;
  --primary-dark: #4338CA;
  --primary-glow: rgba(99,102,241,0.35);
  --accent:       #10B981;
  --accent-glow:  rgba(16,185,129,0.3);
  --warning:      #F59E0B;
  --danger:       #EF4444;
  --pink:         #EC4899;
  --text:         #F0F4FF;
  --text-muted:   #8B9DC3;
  --text-dim:     #4A5576;
  --font:         'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 40px var(--primary-glow);
  --transition:   all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: #818CF8; }

img { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 99px; }

/* =====================================================================
   TOP ANNOUNCEMENT BAR
   ===================================================================== */
.topbar {
  background: linear-gradient(90deg, #1E0E59 0%, #4338CA 50%, #1E0E59 100%);
  padding: 9px 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 200px,
    rgba(255,255,255,0.03) 200px,
    rgba(255,255,255,0.03) 201px
  );
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}
.topbar-badge {
  background: rgba(255,255,255,0.15);
  padding: 2px 10px;
  border-radius: 99px;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.topbar a { color: #fff; text-decoration: none; }

/* =====================================================================
   NAVIGATION HEADER
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(4, 8, 18, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, #A855F7 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px var(--primary-glow);
}
.logo-tag {
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.35);
  color: #818CF8;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =====================================================================
   BUTTONS — Premium Grade
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.btn-primary {
  background: linear-gradient(135deg, #6366F1 0%, #4338CA 100%);
  color: #fff;
  box-shadow: 0 6px 20px -4px rgba(99,102,241,0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(99,102,241,0.65);
  color: #fff;
}
.btn-accent {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 6px 20px -4px rgba(16,185,129,0.45);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(16,185,129,0.6);
  color: #fff;
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-lg {
  font-size: 16px;
  padding: 15px 34px;
}

/* =====================================================================
   HERO SECTION
   ===================================================================== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
/* Animated mesh gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(99,102,241,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(168,85,247,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(16,185,129,0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.3);
  color: #818CF8;
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 99px;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.hero-title {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #818CF8 0%, #A855F7 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 28px;
}
.trust-stat { text-align: center; }
.trust-num {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* === FLOATING BADGE (Trusted by ...) === */
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
}
.hero-badge span { color: var(--accent); margin-right: 4px; }

/* =====================================================================
   FLOATING POS DEVICE MOCKUP
   ===================================================================== */
.hero-visual {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}
.pos-mockup {
  background: linear-gradient(145deg, #111D38 0%, #0A1220 100%);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 20px;
  box-shadow:
    0 40px 100px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(99,102,241,0.1),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.pos-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.6), transparent);
}
.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
}
.mockup-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}
.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
}
.mockup-panel {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.mockup-panel-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 10px;
}
.mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
}
.mockup-row:last-child { border-bottom: none; }
.mockup-prod { color: var(--text); font-weight: 600; }
.mockup-price { color: var(--accent); font-weight: 700; font-family: var(--font-mono); }
.mockup-total {
  margin-top: 10px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(99,102,241,0.15) 0%, rgba(99,102,241,0.05) 100%);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 8px;
  text-align: center;
}
.mockup-total-label { font-size: 10px; color: var(--text-muted); }
.mockup-total-amount { font-size: 22px; font-weight: 900; color: #fff; font-family: var(--font-mono); }
.mockup-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: default;
  text-align: center;
}
.mockup-stats { display: flex; flex-direction: column; gap: 10px; }
.mockup-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stat-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.stat-label { font-size: 11px; color: var(--text-muted); }
.stat-value { font-size: 15px; font-weight: 800; color: #fff; font-family: var(--font-mono); }
.stat-change { font-size: 11px; color: var(--accent); font-weight: 700; }

/* =====================================================================
   SECTION COMMONS
   ===================================================================== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 660px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* =====================================================================
   FEATURE CARDS
   ===================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(99,102,241,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.feat-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -12px rgba(0,0,0,0.5), 0 0 0 1px var(--border-bright);
}
.feat-card:hover::after { opacity: 1; }
.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feat-icon.purple { background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.2); }
.feat-icon.green  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); }
.feat-icon.orange { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
.feat-icon.pink   { background: rgba(236,72,153,0.12); border: 1px solid rgba(236,72,153,0.2); }
.feat-icon.blue   { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.2); }
.feat-icon.teal   { background: rgba(20,184,166,0.12); border: 1px solid rgba(20,184,166,0.2); }
.feat-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.feat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =====================================================================
   COMPARISON TABLE
   ===================================================================== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table thead tr {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
}
.compare-table th.winner {
  color: var(--accent);
  background: rgba(16,185,129,0.07);
  border-left: 2px solid var(--accent);
}
.compare-table td {
  padding: 14px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.winner {
  color: var(--accent);
  font-weight: 700;
  background: rgba(16,185,129,0.04);
  border-left: 2px solid rgba(16,185,129,0.2);
}
.compare-table td:first-child { font-weight: 600; color: var(--text); }
.compare-table td.loser { color: var(--text-dim); }
.check { color: var(--accent); margin-right: 6px; }
.cross { color: var(--danger); margin-right: 6px; }

/* =====================================================================
   PRICING CARDS
   ===================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 20px 50px -10px var(--primary-glow);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, #A855F7 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name { font-size: 14px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.pricing-price { font-size: 42px; font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 20px; font-weight: 600; color: var(--text-muted); }
.pricing-unit { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: 14px; color: var(--text); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* =====================================================================
   ROI CALCULATOR
   ===================================================================== */
.roi-section {
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(99,102,241,0.02) 100%);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.roi-result {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.roi-amount {
  font-size: 44px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 8px;
}
.roi-label { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}
.testimonial-stars { color: var(--warning); font-size: 15px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; color: #fff; }
.author-role { font-size: 12px; color: var(--text-dim); }

/* =====================================================================
   MARQUEE TICKER
   ===================================================================== */
.marquee-section {
  padding: 20px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.marquee-item span { color: var(--primary); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #1E1252 0%, #2D1769 50%, #1B0E5C 100%);
  border: 1px solid rgba(99,102,241,0.35);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-desc { font-size: 18px; color: #C4B5FD; max-width: 600px; margin: 0 auto 32px; line-height: 1.65; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   STATS SECTION
   ===================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-box {
  background: var(--bg-card);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}
.stat-box:hover { background: var(--bg-card-hover); }
.stat-box-num {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* =====================================================================
   FORM
   ===================================================================== */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--primary);
  background: rgba(99,102,241,0.06);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.form-control::placeholder { color: var(--text-dim); }

/* =====================================================================
   MODAL
   ===================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 18, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transform: scale(0.95) translateY(10px);
  transition: var(--transition);
}
.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.modal-title { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.modal-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }

/* =====================================================================
   SEO KEYWORD SECTION
   ===================================================================== */
.seo-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.seo-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 5px 13px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.seo-tag:hover {
  border-color: var(--border-bright);
  color: var(--text);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 340px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 16px 0 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); }
.footer-contact-item a { color: var(--accent); font-weight: 700; }
.footer-title { font-size: 13px; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); font-weight: 500; transition: var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--primary); font-weight: 600; }

/* =====================================================================
   STICKY CTA BAR
   ===================================================================== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(4, 8, 18, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-bright);
  padding: 12px 0;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.sticky-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sticky-live {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sticky-live-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 99px;
  animation: pulse-dot 1.5s infinite;
}
.sticky-actions { display: flex; gap: 10px; align-items: center; }

/* =====================================================================
   INDUSTRY LOGOS / PARTNER LOGOS
   ===================================================================== */
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.5;
  filter: grayscale(1);
}
.logo-item {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: -0.02em;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .roi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero-trust { flex-direction: column; gap: 24px; }
  .trust-divider { width: 60px; height: 1px; margin: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mockup-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .roi-section { padding: 28px; }
  .sticky-info .sticky-text { display: none; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-cta .btn-lg { font-size: 14px; padding: 12px 20px; }
}
