/* public/landing.css - Cloned 100% from Meta Ads OS with Dual-Theme Dark/Light & Be Vietnam Pro Typography */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #0b0f1a;
  --bg-secondary: #0f172a;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --border-color: rgba(124, 58, 237, 0.15);
  --border-card: rgba(255, 255, 255, 0.08);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-purple: #7c3aed;
  --accent-purple-light: #a78bfa;
  --accent-orange: #f97316;
  --accent-emerald: #10b981;
  --nav-bg: rgba(11, 15, 26, 0.92);
  --nav-border: rgba(124, 58, 237, 0.15);
  --nav-pill-bg: rgba(255, 255, 255, 0.03);
  --nav-pill-border: rgba(255, 255, 255, 0.06);
  --nav-pill-color: #cbd5e1;
}

[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --border-color: rgba(124, 58, 237, 0.1);
  --border-card: rgba(0, 0, 0, 0.08);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --accent-purple: #6d28d9;
  --accent-purple-light: #7c3aed;
  --accent-orange: #ea580c;
  --accent-emerald: #059669;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --nav-border: rgba(124, 58, 237, 0.1);
  --nav-pill-bg: rgba(0, 0, 0, 0.03);
  --nav-pill-border: rgba(0, 0, 0, 0.06);
  --nav-pill-color: #475569;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Be Vietnam Pro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── Shimmer Effects ─── */
.brand-shimmer {
  background: linear-gradient(120deg, #a78bfa 0%, #06b6d4 25%, #ec4899 50%, #7c3aed 75%, #a78bfa 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brandShimmer 4s linear infinite;
}
@keyframes brandShimmer {
  to { background-position: 300% center; }
}

[data-theme="light"] .brand-shimmer {
  background: linear-gradient(120deg, #7c3aed 0%, #0891b2 25%, #db2777 50%, #6d28d9 75%, #7c3aed 100%) !important;
  background-size: 300% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.shimmer-text {
  background: linear-gradient(120deg, #a78bfa 0%, #7c3aed 40%, #c4b5fd 50%, #7c3aed 60%, #a78bfa 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  animation: shimmer 3s linear infinite !important;
}

.shimmer-text-orange {
  background: linear-gradient(120deg, #f97316 0%, #fbbf24 30%, #ea580c 60%, #f97316 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  animation: shimmer 3s linear infinite !important;
}

[data-theme="light"] .shimmer-text-orange {
  background: linear-gradient(120deg, #ea580c 0%, #c2410c 40%, #f97316 50%, #c2410c 60%, #ea580c 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── Navigation Bar ─── */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--nav-border);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

[data-theme="light"] .landing-nav {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(124, 58, 237, 0.08);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.nav-links-pill-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--nav-pill-bg);
  border: 1px solid var(--nav-pill-border);
  border-radius: 16px;
  padding: 5px 8px;
  flex-shrink: 0;
}

.nav-link-pill {
  color: var(--nav-pill-color);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap !important;
}

.nav-link-pill:hover {
  background: rgba(124, 58, 237, 0.15) !important;
  color: #a78bfa !important;
  transform: translateY(-1px);
}

[data-theme="light"] .nav-link-pill:hover {
  background: rgba(124, 58, 237, 0.1) !important;
  color: #7c3aed !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

/* ─── Buttons ─── */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--nav-pill-border);
  background: var(--nav-pill-bg);
  color: #fbbf24;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 17px;
  flex-shrink: 0 !important;
}

.theme-toggle-btn:hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.4);
  transform: scale(1.08) rotate(15deg);
}

.lang-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--nav-pill-border);
  background: var(--nav-pill-bg);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.lang-toggle-btn:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.5);
  color: #c4b5fd;
  transform: scale(1.04);
}

.btn-console {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 12px;
  border: 1px solid var(--nav-pill-border);
  background: var(--nav-pill-bg);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.btn-console:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(124, 58, 237, 0.3);
  color: #fff;
}

[data-theme="light"] .btn-console {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #1e293b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

[data-theme="light"] .btn-console:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #ea580c 100%);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
  transition: all 0.25s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
}

/* ─── Hero Section ─── */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
}

.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: #a78bfa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

[data-theme="light"] .badge-pill {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.2);
  color: #7c3aed;
}

.hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.8rem) !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.03em !important;
  margin: 0 auto 20px auto !important;
  max-width: 960px !important;
  text-wrap: balance !important;
  color: var(--text-primary);
}

.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.18rem) !important;
  color: var(--text-secondary) !important;
  line-height: 1.65 !important;
  max-width: 780px !important;
  margin: 0 auto 36px auto !important;
  text-wrap: balance !important;
}

.hero-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-btn-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  color: #f97316;
  border: 1px solid #f97316;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.15);
  transition: 0.3s;
}

[data-theme="light"] .hero-btn-trial {
  background: #ffffff;
  color: #c2410c;
  border: 2px solid #ea580c;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.18);
}

.hero-btn-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.4);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

[data-theme="light"] .hero-btn-consult {
  background: #ffffff;
  color: #c2410c;
  border: 2px solid rgba(234, 88, 12, 0.5);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.10);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  border: 1px solid var(--border-card);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

[data-theme="light"] .hero-btn-secondary {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #cbd5e1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.stat-item {
  min-width: max-content;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  font-family: 'Inter', monospace;
  color: #34d399;
}

[data-theme="light"] .stat-num {
  color: #059669;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

[data-theme="light"] .stat-label {
  color: #475569;
}

/* ─── Glow Pulse & Video Card ─── */
.glow-pulse {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(249, 115, 22, 0.6);
  background: #000;
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

[data-theme="light"] .glow-pulse {
  border-color: rgba(234, 88, 12, 0.7);
  box-shadow: 0 12px 36px rgba(234, 88, 12, 0.2);
}

/* ─── Cards & Grids ─── */
.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.feature-card {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(124, 58, 237, 0.5) !important;
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.2) !important;
  transform: translateY(-3px);
}

[data-theme="light"] .feature-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .feature-card:hover {
  border-color: rgba(124, 58, 237, 0.35) !important;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12) !important;
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

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

.feature-card-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── Process Sequence (Horizontal Steps) ─── */
.process-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed 0%, #ea580c 100%);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  width: 200px;
}

.process-step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.35);
  transition: all 0.3s ease;
}

[data-theme="light"] .process-step-circle {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2);
}

.process-step-num {
  margin-top: 20px;
  color: #f97316;
  font-weight: 900;
  font-family: 'Inter', monospace;
  font-size: 18px;
  letter-spacing: 2px;
}

[data-theme="light"] .process-step-num {
  color: #ea580c;
}

.process-step-title {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
}

.process-step-desc {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}

/* ─── Comparison Table ─── */
.table-scroll-wrapper {
  border-radius: 20px;
  border: 1px solid var(--border-card);
  overflow: hidden;
  background: var(--bg-card);
}

[data-theme="light"] .table-scroll-wrapper {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05) !important;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comp-table th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 800;
  border-bottom: 1px solid var(--border-card);
  background: rgba(124, 58, 237, 0.08);
  color: var(--text-primary);
}

.comp-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-card);
  color: var(--text-secondary);
}

.comp-highlight {
  background: rgba(124, 58, 237, 0.05);
  font-weight: 700;
  color: #34d399 !important;
}

[data-theme="light"] .comp-highlight {
  color: #059669 !important;
  background: rgba(124, 58, 237, 0.04);
}

/* ─── Pricing Grid ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  padding: 36px 32px;
  border-radius: 24px;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

[data-theme="light"] .pricing-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05) !important;
}

.pricing-pro-card {
  position: relative;
  border: 2px solid #7c3aed !important;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.25);
  transform: scale(1.03);
}

[data-theme="light"] .pricing-pro-card {
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.18) !important;
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #7c3aed;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ─── FAQ Accordion ─── */
.faq-item {
  margin-bottom: 12px;
  border-radius: 16px;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  overflow: hidden;
  transition: all 0.3s;
}

[data-theme="light"] .faq-item {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active {
  background: rgba(124, 58, 237, 0.05);
  border-color: rgba(124, 58, 237, 0.3);
}

/* ─── Bottom Purple CTA ─── */
.cta-purple-banner {
  border-radius: 32px;
  padding: 64px 40px;
  text-align: center;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 60%, #4c1d95 100%);
  color: #ffffff !important;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.cta-purple-banner h2 {
  color: #ffffff !important;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-purple-banner p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 32px auto;
}

/* ─── Modals ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: #0f172a;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 24px;
  padding: 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  color: var(--text-primary);
}

[data-theme="light"] .modal-content {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15) !important;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
}

/* ─── Added Enterprise & Container System ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-py {
  padding: 96px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 56px auto;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #a78bfa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

[data-theme="light"] .badge-glow {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.2);
  color: #7c3aed;
}

.font-display {
  font-family: 'Be Vietnam Pro', 'Inter', -apple-system, sans-serif;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
}

[data-theme="light"] .glass-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .glass-card:hover {
  border-color: rgba(124, 58, 237, 0.35) !important;
  box-shadow: 0 10px 32px rgba(124, 58, 237, 0.12) !important;
}

/* Fallback & pill styling for .nav-links */
.nav-links {
  list-style: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin: 0 !important;
  padding: 6px !important;
  background: var(--nav-pill-bg) !important;
  border: 1px solid var(--nav-pill-border) !important;
  border-radius: 16px !important;
}

.nav-links li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links a {
  text-decoration: none !important;
  color: var(--nav-pill-color) !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  display: block !important;
}

.nav-links a:hover {
  background: rgba(124, 58, 237, 0.15) !important;
  color: #a78bfa !important;
  transform: translateY(-1px);
}

[data-theme="light"] .nav-links a:hover {
  background: rgba(124, 58, 237, 0.1) !important;
  color: #7c3aed !important;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  font-family: 'Inter', monospace;
  margin-bottom: 6px;
  color: #34d399;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #ea580c 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  background: var(--nav-pill-bg);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(124, 58, 237, 0.3);
  color: #ffffff;
}

[data-theme="light"] .btn-secondary {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #1e293b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

[data-theme="light"] .btn-secondary:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.btn-ghost {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

/* Phase Cards */
.phase-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phase-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 36px;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  opacity: 0.12;
  color: var(--text-primary);
}

.phase-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  border: 1px solid;
}

.phase-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  width: max-content;
  letter-spacing: 0.5px;
}

.phase-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.phase-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.phase-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: auto;
}

.phase-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-icon {
  color: #10b981;
  font-weight: 700;
}

/* Table container & Pricing enhancements */
.table-container {
  border-radius: 20px;
  border: 1px solid var(--border-card);
  overflow: hidden;
  background: var(--bg-card);
  max-width: 1050px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

[data-theme="light"] .table-container {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05) !important;
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #7c3aed;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-val {
  font-size: 44px;
  font-weight: 900;
  color: var(--text-primary);
  margin: 16px 0 24px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-sub {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
}

.ambient-glow-1 {
  position: absolute;
  top: 0;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: absolute;
  top: 250px;
  right: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-3 {
  position: absolute;
  top: 800px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Responsive Media Queries ─── */
@media (max-width: 768px) {
  .nav-links-pill-bar, .nav-links { display: none !important; }
  .btn-console { display: none !important; }
  .grid-2-cols { grid-template-columns: 1fr !important; gap: 36px !important; }
  .grid-3-cols, .grid-4-cols, .pricing-grid, .stats-grid { grid-template-columns: 1fr !important; }
  .hero-title { font-size: 30px !important; line-height: 1.2 !important; }
  .hero-buttons { grid-template-columns: 1fr !important; }
  .process-container { flex-direction: column !important; gap: 32px !important; }
  .process-line { display: none !important; }
  .process-step { width: 100% !important; flex-direction: row !important; gap: 20px !important; }
  .process-step-title, .process-step-desc { text-align: left !important; }
  .pricing-pro-card, .pricing-card.popular { transform: none !important; }
}
