@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #07060e;
  --bg-darker: #040307;
  --bg-card: rgba(13, 12, 29, 0.45);
  --bg-card-hover: rgba(20, 18, 44, 0.65);
  --bg-input: rgba(7, 6, 14, 0.8);
  --border: rgba(124, 92, 255, 0.15);
  --border-hover: rgba(124, 92, 255, 0.35);
  --border-active: rgba(36, 139, 218, 0.6);
  
  --text: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  
  --blue: #248bda;
  --purple: #7c5cff;
  --green: #00e676;
  --red: #ff1744;
  --yellow: #ffd600;
  --gold: #ffb800;
  
  --gradient: linear-gradient(135deg, #248bda 0%, #7c5cff 50%, #903aff 100%);
  --gradient-gold: linear-gradient(135deg, #ffb800 0%, #ff5500 100%);
  --gradient-card: linear-gradient(135deg, rgba(36, 139, 218, 0.05) 0%, rgba(124, 92, 255, 0.05) 100%);
  
  --glow-blue: 0 0 30px rgba(36, 139, 218, 0.25);
  --glow-purple: 0 0 30px rgba(124, 92, 255, 0.25);
  --glow-green: 0 0 25px rgba(0, 230, 118, 0.35);
  --shadow-main: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-display: 'Outfit', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--purple);
  text-shadow: 0 0 10px rgba(124, 92, 255, 0.4);
}

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 6, 14, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.navbar-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}
.navbar-links a:hover {
  color: var(--text);
}
.navbar-cta {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  background: var(--gradient);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--glow-blue);
}
.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(124, 92, 255, 0.5);
  opacity: 0.95;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  background: 
    radial-gradient(circle at 10% 20%, rgba(36, 139, 218, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(124, 92, 255, 0.08) 0%, transparent 40%),
    var(--bg-darker);
  position: relative;
  overflow: hidden;
}
.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
}
.hero-text {
  text-align: left;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(124, 92, 255, 0.08);
  border: 1px solid rgba(124, 92, 255, 0.2);
  color: #c0b3ff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff 40%, #a5adb7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff !important;
  box-shadow: 0 4px 25px rgba(124, 92, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(124, 92, 255, 0.55);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text) !important;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* INTERACTIVE POWER BLOCKS SIMULATOR */
.hero-simulator {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-main), inset 0 0 20px rgba(124, 92, 255, 0.05);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.hero-simulator::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 92, 255, 0.4), transparent);
}
.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.sim-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sim-badge-live {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  background: rgba(36, 139, 218, 0.12);
  color: var(--blue);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(36, 139, 218, 0.2);
}
.sim-stats-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 4px;
}
.sim-stat-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
}
.sim-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.sim-stat-value {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
}
.sim-stat-value.green {
  color: var(--green);
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.2);
}
.sim-grid-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sim-board {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  width: 100%;
  aspect-ratio: 1;
  max-width: 320px;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.sim-cell {
  background: rgba(124, 92, 255, 0.04);
  border: 1px solid rgba(124, 92, 255, 0.1);
  border-radius: 6px;
  aspect-ratio: 1;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
}
.sim-cell:hover {
  background: rgba(36, 139, 218, 0.15);
  border-color: rgba(36, 139, 218, 0.4);
}
.sim-cell.win-cell {
  border-color: rgba(255, 184, 0, 0.5);
  background: radial-gradient(circle, rgba(255, 184, 0, 0.15) 0%, transparent 80%);
}
.sim-cell.win-cell::after {
  content: '🎯';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.sim-cell.filled {
  background: var(--blue);
  border-color: #5ab1ff;
  box-shadow: 0 0 10px rgba(36, 139, 218, 0.4);
  transform: scale(0.95);
}
.sim-cell.filled-bot {
  background: var(--purple);
  border-color: #a48eff;
  box-shadow: var(--glow-purple);
  transform: scale(0.95);
  animation: cellSpawn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes cellSpawn {
  from { transform: scale(0) rotate(15deg); filter: brightness(2); }
  to { transform: scale(0.95) rotate(0); filter: brightness(1); }
}
.sim-laser-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple), 0 0 4px var(--purple);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}
.sim-laser-line.scanning {
  animation: laserScan 1.2s ease-in-out infinite;
  opacity: 1;
}
@keyframes laserScan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}
.sim-controls-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sim-toggle-wrapper {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
}
.sim-toggle-btn {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sim-toggle-btn.active {
  background: var(--purple);
  color: #fff;
  box-shadow: var(--glow-purple);
}
.sim-toggle-btn.active.mode-manual {
  background: var(--blue);
  box-shadow: var(--glow-blue);
}
.sim-console {
  background: #040307;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  height: 60px;
  overflow-y: hidden;
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
}
.sim-console-line {
  line-height: 1.4;
}
.sim-console-line.success { color: var(--green); }
.sim-console-line.info { color: var(--blue); }
.sim-console-line.warn { color: var(--gold); }

/* SECTIONS COMMON */
section {
  padding: 100px 0;
  position: relative;
}
.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #fff;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* FEATURES GRID & CARD */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-main), 0 10px 30px rgba(124, 92, 255, 0.08);
}
.feature-card:hover::after {
  opacity: 1;
}
.feature-card > * {
  position: relative;
  z-index: 5;
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(124, 92, 255, 0.08);
  border: 1px solid rgba(124, 92, 255, 0.18);
  color: var(--purple);
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  color: #fff;
  background: var(--purple);
  box-shadow: var(--glow-purple);
  border-color: transparent;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* STEPS GRID & CARD */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.step-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.step-item:hover {
  border-color: rgba(36, 139, 218, 0.3);
  background: rgba(36, 139, 218, 0.02);
}
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  background: var(--gradient);
  box-shadow: var(--glow-blue);
}
.step-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.step-item p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* PRICING GRID & CARD (4 COLUMNS RESPONSIVE) */
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-main), 0 20px 40px rgba(124, 92, 255, 0.1);
}
.price-card.featured {
  border: 2px solid var(--purple);
  box-shadow: var(--glow-purple), 0 20px 45px rgba(124, 92, 255, 0.2);
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.08) 0%, rgba(13, 12, 29, 0.6) 100%);
  transform: scale(1.02);
}
.price-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}
.plan-badge-top {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.plan-badge-popular {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: var(--gradient);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(124, 92, 255, 0.5);
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.price-desc {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 34px;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 12px 0;
  color: #fff;
  line-height: 1;
}
.price-card .price span {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.price-card ul {
  list-style: none;
  margin: 24px 0 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.price-card ul li {
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-card ul li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}
.price-card .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
}
.menu-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 8px;
  cursor: pointer;
}
@media (max-width: 1080px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .price-card.featured {
    transform: none;
  }
  .price-card.featured:hover {
    transform: translateY(-6px);
  }
}
@media (max-width: 680px) {
  .pricing-grid-4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .menu-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* FAQ SECTION */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}
.faq-item:hover {
  border-color: var(--border-hover);
}
.faq-item summary {
  padding: 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: all 0.25s ease;
  margin-right: 4px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
.faq-item p {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid rgba(124, 92, 255, 0.05);
}

/* DOWNLOAD SECTION */
.download-section {
  text-align: center;
  background: radial-gradient(circle, rgba(36, 139, 218, 0.04) 0%, transparent 60%);
}
.download-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 64px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 30px auto;
  max-width: 580px;
  backdrop-filter: blur(10px);
}
.download-box p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.download-box .btn {
  font-size: 17px;
  padding: 16px 44px;
}
.download-subtext {
  color: var(--text-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  margin-top: 16px;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: all;
}
.download-subtext:hover {
  color: var(--green);
  border-color: rgba(0, 230, 118, 0.2);
}

/* STATS */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}
.stat-item {
  min-width: 140px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TESTIMONIALS */
.testimonial-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 12px;
}
.testimonial-quote {
  font-style: italic;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  box-shadow: 0 0 10px rgba(124, 92, 255, 0.3);
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.testimonial-meta {
  font-size: 11px;
  color: var(--text-dark);
}

/* FOOTER */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 60px 24px;
  text-align: center;
}
footer p {
  color: var(--text-dark);
  font-size: 13px;
  margin-top: 10px;
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
footer .footer-links a {
  color: var(--text-muted);
  font-size: 13px;
}
footer .footer-links a:hover {
  color: #fff;
}

/* CHECKOUT & DASHBOARD SPECIFIC STYLES */
.checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
  padding: 0 10px;
}
.checkout-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--border);
  z-index: 1;
}
.checkout-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.checkout-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-darker);
  border: 2px solid var(--border);
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.checkout-step.active .checkout-step-num {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: var(--glow-blue);
}
.checkout-step.completed .checkout-step-num {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: var(--glow-green);
}
.checkout-step-label {
  font-size: 12px;
  color: var(--text-dark);
  font-weight: 600;
}
.checkout-step.active .checkout-step-label {
  color: var(--text);
}
.checkout-step.completed .checkout-step-label {
  color: var(--green);
}

/* HOLOGRAPHIC LICENSE CARD */
.license-card-glow {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.25) 0%, rgba(36, 139, 218, 0.25) 100%);
  padding: 1px;
  box-shadow: var(--glow-purple);
  margin-bottom: 24px;
  overflow: hidden;
}
.license-card-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(124, 92, 255, 0.6), transparent 30%, transparent);
  animation: cardRotate 8s linear infinite;
  z-index: 1;
}
@keyframes cardRotate {
  100% { transform: rotate(360deg); }
}
.license-card {
  position: relative;
  z-index: 2;
  background: #0d0c1d;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.license-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.license-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #ffd600 0%, #ffaa00 100%);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(255, 170, 0, 0.25);
  position: relative;
}
.license-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  text-shadow: 0 0 10px rgba(124, 92, 255, 0.5);
}
.license-days-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.license-days-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.license-days {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
}
.license-meta-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}
.license-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.license-meta-label {
  font-size: 10px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.license-meta-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.license-meta-val.mono {
  font-family: var(--font-mono);
  color: var(--green);
}

.input-custom {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  transition: all 0.25s ease;
}
.input-custom:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 15px rgba(124, 92, 255, 0.15);
}
.input-custom.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 992px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-simulator {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  .navbar-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 6, 14, 0.95);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    backdrop-filter: blur(20px);
  }
  .hero {
    padding-top: 120px;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .download-box {
    padding: 32px 24px;
  }
}

/* GRID BACKGROUND ELEMENTS */
.grid-bg-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.grid-bg-overlay::before {
  content: '';
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(124, 92, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 0%, transparent 70%);
}
