/* ═══════════════════════════════════════════════════ */
/* vScrean — Cold Corporate Landing Page              */
/* Design System: Same tokens as Admin Dashboard      */
/* ═══════════════════════════════════════════════════ */

/* ─────────────── Design Tokens ─────────────── */
:root {
  /* Core Colors (from admin dashboard) */
  --bg-darker: #0d1117;
  --bg-dark: #161b22;
  --bg-card: #21262d;
  --border-color: #30363d;

  --text-main: #c9d1d9;
  --text-muted: #8b949e;
  --text-bright: #f0f6fc;

  --accent-blue: #58a6ff;
  --accent-green: #2ea043;
  --accent-red: #f85149;
  --accent-purple: #bc8cff;
  --accent-yellow: #e6a800;

  /* Glassmorphism */
  --glass-bg: rgba(22, 27, 34, 0.6);
  --glass-border: rgba(88, 166, 255, 0.12);
  --glass-blur: 20px;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1140px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ─────────────── Reset & Base ─────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg-darker);
  color: var(--text-main);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ─────────────── Utility ─────────────── */
.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text,
.hero-gradient-text {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────── Scroll Animations ─────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════ */
/* NAVBAR                                              */
/* ═══════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition-normal), padding var(--transition-normal), box-shadow var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--border-color);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: 1px;
}

.logo-icon {
  color: var(--accent-blue);
  font-size: 24px;
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 4px rgba(88, 166, 255, 0.3)); }
  50% { opacity: 0.7; filter: drop-shadow(0 0 12px rgba(88, 166, 255, 0.6)); }
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width var(--transition-normal);
  border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-bright);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-cta-secondary {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color var(--transition-fast);
}

.nav-cta-secondary:hover {
  color: var(--text-bright);
}

.nav-cta-primary {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  background: var(--accent-blue);
  padding: 8px 20px;
  border-radius: 8px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta-primary:hover {
  background: #79bbff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(88, 166, 255, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════ */
/* HERO                                                */
/* ═══════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(88, 166, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(188, 140, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(46, 160, 67, 0.03) 0%, transparent 40%);
  animation: heroBgPulse 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroBgPulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(88, 166, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 166, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(88, 166, 255, 0.08);
  border: 1px solid rgba(88, 166, 255, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-bright);
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent-blue);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-family);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  background: #79bbff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 166, 255, 0.3);
}

.btn-primary.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-family);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-bright);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
}

/* ── Hero Mockup ── */
.hero-mockup {
  position: relative;
}

.mockup-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(ellipse at center, rgba(88, 166, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mockup-window {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(88, 166, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(88, 166, 255, 0.05);
  position: relative;
  z-index: 2;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border-color);
}

.titlebar-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #f85149; }
.dot.yellow { background: #e6a800; }
.dot.green { background: #2ea043; }

.titlebar-text {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.mockup-body {
  display: flex;
  min-height: 280px;
}

.mockup-sidebar {
  width: 48px;
  background: var(--bg-darker);
  border-right: 1px solid var(--border-color);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-nav-item {
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  transition: background var(--transition-fast);
}

.mock-nav-item.active {
  background: rgba(88, 166, 255, 0.15);
  border: 1px solid rgba(88, 166, 255, 0.3);
}

.mockup-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
}

.mock-screen {
  background: #0a0e13;
  border: 1px solid rgba(48, 54, 61, 0.5);
  border-radius: 6px;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.mock-screen::before {
  content: '';
  position: absolute;
  inset: 10px;
  background:
    linear-gradient(90deg, rgba(88, 166, 255, 0.03) 0%, rgba(88, 166, 255, 0.06) 50%, rgba(88, 166, 255, 0.03) 100%);
  border-radius: 3px;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.6), transparent);
  animation: scanMove 3s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(88, 166, 255, 0.3);
}

.scan-line.delay-1 { animation-delay: 1s; }
.scan-line.delay-2 { animation-delay: 2s; }

@keyframes scanMove {
  0% { top: 10%; }
  50% { top: 85%; }
  100% { top: 10%; }
}

.screen-label {
  padding: 6px 8px;
  font-size: 9px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
}

.screen-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
}

.screen-dot.online {
  background: var(--accent-green);
  box-shadow: 0 0 6px rgba(46, 160, 67, 0.5);
  animation: dotBlink 2s ease-in-out infinite;
}

.mock-screen.offline {
  opacity: 0.5;
}

.mock-screen.offline::before {
  background: rgba(248, 81, 73, 0.03);
}

/* Floating Badges */
.float-badge {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-1 {
  top: 10%;
  right: -10px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 30%;
  right: -20px;
  animation-delay: 1.5s;
}

.badge-3 {
  bottom: 10%;
  left: -15px;
  animation-delay: 3s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════ */
/* FEATURES                                            */
/* ═══════════════════════════════════════════════════ */

.features {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-blue);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(88, 166, 255, 0.08);
  border: 1px solid rgba(88, 166, 255, 0.15);
  border-radius: 100px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  border-color: rgba(88, 166, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.feature-icon.icon-red {
  background: rgba(248, 81, 73, 0.1);
  border-color: rgba(248, 81, 73, 0.2);
  color: var(--accent-red);
}

.feature-icon.icon-green {
  background: rgba(46, 160, 67, 0.1);
  border-color: rgba(46, 160, 67, 0.2);
  color: var(--accent-green);
}

.feature-icon.icon-purple {
  background: rgba(188, 140, 255, 0.1);
  border-color: rgba(188, 140, 255, 0.2);
  color: var(--accent-purple);
}

.feature-icon.icon-orange {
  background: rgba(255, 166, 43, 0.1);
  border-color: rgba(255, 166, 43, 0.2);
  color: #ffa62b;
}

.feature-icon.icon-cyan {
  background: rgba(0, 210, 211, 0.1);
  border-color: rgba(0, 210, 211, 0.2);
  color: #00d2d3;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.f-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════ */
/* HOW IT WORKS                                        */
/* ═══════════════════════════════════════════════════ */

.how-it-works {
  padding: var(--section-padding);
  background: var(--bg-dark);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.steps-timeline {
  position: relative;
  display: flex;
  gap: 40px;
  justify-content: center;
  padding-top: 40px;
}

.timeline-line {
  position: absolute;
  top: 86px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border-color);
  border-radius: 1px;
}

.timeline-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  border-radius: 1px;
  transition: width 1s ease;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-blue);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.step-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all var(--transition-normal);
}

.step:hover .step-content {
  border-color: rgba(88, 166, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: rgba(88, 166, 255, 0.08);
  border: 1px solid rgba(88, 166, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════ */
/* PRICING                                             */
/* ═══════════════════════════════════════════════════ */

.pricing {
  padding: var(--section-padding);
  position: relative;
}

/* Comparison bar */
.pricing-comparison {
  margin-bottom: 56px;
}

.comparison-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.comp-item {
  flex: 1;
  text-align: center;
  padding: 24px 20px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.comp-item.comp-us {
  border-color: rgba(46, 160, 67, 0.3);
  background: rgba(46, 160, 67, 0.04);
}

.comp-item.comp-others {
  border-color: rgba(248, 81, 73, 0.2);
  background: rgba(248, 81, 73, 0.03);
}

.comp-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
  white-space: nowrap;
}

.comp-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
  line-height: 1.2;
}

.comp-price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.comp-others .comp-price {
  color: var(--accent-red);
}

.comp-us .comp-price {
  color: var(--accent-green);
}

.comp-bar-visual {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

.bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1.5s ease;
}

.others-fill {
  width: 85%;
  background: linear-gradient(90deg, var(--accent-red), rgba(248, 81, 73, 0.5));
}

.us-fill {
  width: 30%;
  background: linear-gradient(90deg, var(--accent-green), rgba(46, 160, 67, 0.6));
}

.comp-vs {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-darker);
  flex-shrink: 0;
  align-self: center;
  letter-spacing: 1px;
}

/* Pricing Card */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(88, 166, 255, 0.2);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(88, 166, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-recommended {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-bright);
  margin-top: 8px;
}

.price {
  font-size: 80px;
  font-weight: 900;
  color: var(--text-bright);
  line-height: 1;
  letter-spacing: -3px;
}

.price-period {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 12px;
}

.price-period span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-main);
  border-bottom: 1px solid rgba(48, 54, 61, 0.4);
}

.pf-item:last-child {
  border-bottom: none;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 16px;
  background: var(--accent-blue);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-family);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  z-index: 1;
}

.pricing-cta:hover {
  background: #79bbff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 166, 255, 0.3);
}

.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.pricing-volume {
  text-align: center;
  margin-top: 40px;
  padding: 20px 28px;
  background: rgba(88, 166, 255, 0.04);
  border: 1px solid rgba(88, 166, 255, 0.1);
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-volume p {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-volume strong {
  color: var(--text-main);
}

/* ═══════════════════════════════════════════════════ */
/* FAQ                                                 */
/* ═══════════════════════════════════════════════════ */

.faq {
  padding: var(--section-padding);
  background: var(--bg-dark);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(88, 166, 255, 0.2);
}

.faq-item.open {
  border-color: rgba(88, 166, 255, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: color var(--transition-fast);
  text-align: left;
}

.faq-question:hover {
  color: var(--text-bright);
}

.faq-chevron {
  color: var(--text-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════ */
/* CTA BANNER                                          */
/* ═══════════════════════════════════════════════════ */

.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(88, 166, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════ */
/* FOOTER                                              */
/* ═══════════════════════════════════════════════════ */

.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 32px;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-tech {
  font-size: 11px !important;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════ */
/* RESPONSIVE                                          */
/* ═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .steps-timeline {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .timeline-line {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  /* Navbar Mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 0;
    transition: right var(--transition-normal);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero Mobile */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-mockup {
    order: -1;
  }

  .float-badge {
    display: none;
  }

  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }

  /* Pricing Mobile */
  .comparison-bar {
    flex-direction: column;
    gap: 16px;
  }

  .comp-vs {
    align-self: center;
  }

  .pricing-card {
    padding: 36px 24px;
  }

  .price {
    font-size: 64px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .stat-number {
    font-size: 18px;
  }

  .step-content {
    padding: 24px 16px;
  }
}

/* ─────────────── Remove Vite defaults ─────────────── */
#app {
  display: none;
}
