/* ============================================================
   AlienHoster — Styles
   A futuristic, premium hosting website
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --space-black: #070B14;
  --cosmic-indigo: #111827;
  --electric-violet: #7C3AED;
  --electric-violet-glow: rgba(124, 58, 237, 0.4);
  --neon-blue: #38BDF8;
  --neon-blue-glow: rgba(56, 189, 248, 0.4);
  --soft-white: #F8FAFC;
  --muted: #94a3b8;
  --glass-bg: rgba(17, 24, 39, 0.55);
  --glass-border: rgba(124, 58, 237, 0.18);
  --glass-border-hover: rgba(56, 189, 248, 0.5);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --transition-fast: 0.25s ease;
  --transition-med: 0.4s cubic-bezier(.4,0,.2,1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--space-black);
  color: var(--soft-white);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

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

ul {
  list-style: none;
}

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

/* ── Custom Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--space-black);
}
::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.35);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--electric-violet);
}

/* ── Scroll Progress Bar ──────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--electric-violet), var(--neon-blue));
  z-index: 10001;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Loading Screen ───────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--space-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-ring {
  width: 64px;
  height: 64px;
  border: 3px solid transparent;
  border-top-color: var(--neon-blue);
  border-bottom-color: var(--electric-violet);
  border-radius: 50%;
  animation: loaderSpin 0.9s linear infinite;
  box-shadow: 0 0 24px var(--electric-violet-glow);
}
.loader-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── Canvas Background ────────────────────────────────────── */
#star-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

/* Nebula glow */
.nebula {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.25;
}
.nebula--violet {
  width: 55vw;
  height: 55vh;
  top: -10%;
  right: -15%;
  background: radial-gradient(circle, var(--electric-violet-glow) 0%, transparent 70%);
}
.nebula--blue {
  width: 45vw;
  height: 50vh;
  bottom: -5%;
  left: -10%;
  background: radial-gradient(circle, var(--neon-blue-glow) 0%, transparent 70%);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric-violet), #5b21b6);
  color: var(--soft-white);
  box-shadow: 0 4px 20px var(--electric-violet-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--soft-white);
  border: 1px solid var(--glass-border-hover);
}
.btn-outline:hover {
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 0 20px var(--neon-blue-glow);
  transform: translateY(-3px);
}

.btn-glow {
  background: linear-gradient(135deg, var(--electric-violet), var(--neon-blue));
  color: var(--soft-white);
  font-size: 1.05rem;
  padding: 16px 42px;
  box-shadow: 0 4px 30px var(--electric-violet-glow);
}
.btn-glow:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 40px rgba(56, 189, 248, 0.45);
}

/* ── Section Utilities ────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neon-blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}
.section-title .gradient-text {
  background: linear-gradient(135deg, var(--soft-white), #a5b4fc, var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Scroll Reveal Animation ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 9000;
  transition: all var(--transition-med);
}
.navbar.scrolled {
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 0 8px var(--neon-blue-glow));
  transition: filter var(--transition-fast);
}
.logo:hover .logo-img {
  filter: drop-shadow(0 0 14px var(--neon-blue-glow));
}
.logo-text {
  background: linear-gradient(135deg, var(--soft-white), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color var(--transition-fast);
}
.nav-links a:hover {
  color: var(--soft-white);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-blue);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 9999;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--soft-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.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);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(7, 11, 20, 0.97);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
  z-index: 9998;
  padding: 100px 30px 30px;
  transition: right 0.4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition-fast);
}
.mobile-nav a:hover {
  color: var(--neon-blue);
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hero-content {
  flex: 1;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neon-blue);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  margin-bottom: 22px;
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 70%, var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual — server hologram */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hologram-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
}

/* Central server */
.holo-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 150px;
  background: linear-gradient(180deg, rgba(17,24,39,0.9), rgba(7,11,20,1));
  border: 1.5px solid var(--neon-blue);
  border-radius: 10px;
  box-shadow:
    0 0 30px var(--neon-blue-glow),
    inset 0 0 20px rgba(56,189,248,0.08);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 12px;
  animation: coreFloat 4s ease-in-out infinite;
}
@keyframes coreFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}
.rack-line {
  width: 100%;
  height: 6px;
  background: rgba(7, 11, 20, 0.8);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.rack-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: var(--neon-blue);
  box-shadow: 0 0 8px var(--neon-blue);
  border-radius: 3px;
  animation: rackScan 2.5s ease-in-out infinite;
}
.rack-line:nth-child(2)::after { animation-delay: 0.4s; }
.rack-line:nth-child(3)::after { animation-delay: 0.8s; }
.rack-line:nth-child(4)::after { animation-delay: 1.2s; }
.rack-line:nth-child(5)::after { animation-delay: 1.6s; }
@keyframes rackScan {
  0% { left: -100%; }
  50% { left: 110%; }
  100% { left: 110%; }
}
.rack-led {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  right: 10px;
}
.rack-led.led-1 { top: 20px; background: #22c55e; box-shadow: 0 0 6px #22c55e; animation: ledBlink 2s infinite; }
.rack-led.led-2 { top: 36px; background: var(--neon-blue); box-shadow: 0 0 6px var(--neon-blue); animation: ledBlink 3s infinite 0.5s; }
.rack-led.led-3 { bottom: 20px; background: var(--electric-violet); box-shadow: 0 0 6px var(--electric-violet); animation: ledBlink 2.5s infinite 1s; }
@keyframes ledBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Orbital rings */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.15);
}
.orbit-ring-1 {
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%) rotateX(65deg);
  animation: orbitSpin 12s linear infinite;
}
.orbit-ring-2 {
  width: 320px;
  height: 320px;
  border-color: rgba(124, 58, 237, 0.15);
  transform: translate(-50%, -50%) rotateX(65deg) rotateZ(60deg);
  animation: orbitSpin 20s linear infinite reverse;
}
.orbit-ring-3 {
  width: 400px;
  height: 400px;
  border-style: dashed;
  border-color: rgba(124, 58, 237, 0.08);
  transform: translate(-50%, -50%) rotateX(65deg) rotateZ(-30deg);
  animation: orbitSpin 30s linear infinite;
}
@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotateX(65deg) rotate(360deg); }
}

/* Orbit nodes */
.orbit-node {
  position: absolute;
  border-radius: 50%;
}
.orbit-node-1 {
  width: 14px;
  height: 14px;
  background: var(--neon-blue);
  box-shadow: 0 0 12px var(--neon-blue);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-node-2 {
  width: 10px;
  height: 10px;
  background: var(--electric-violet);
  box-shadow: 0 0 12px var(--electric-violet);
  bottom: 0;
  right: 20%;
}
.orbit-node-3 {
  width: 8px;
  height: 8px;
  background: #818cf8;
  box-shadow: 0 0 10px #818cf8;
  top: 30%;
  left: 0;
}

/* Hex-grid subtle bg */
.holo-hexgrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(56, 189, 248, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(56, 189, 248, 0.03) 87.5%),
    linear-gradient(150deg, rgba(56, 189, 248, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(56, 189, 248, 0.03) 87.5%),
    linear-gradient(30deg, rgba(56, 189, 248, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(56, 189, 248, 0.03) 87.5%),
    linear-gradient(150deg, rgba(56, 189, 248, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(56, 189, 248, 0.03) 87.5%);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

/* ── Features Section ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 24px var(--electric-violet-glow);
}
.feature-card:hover::after {
  opacity: 1;
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--neon-blue);
  margin-bottom: 22px;
  transition: all var(--transition-med);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--electric-violet), var(--neon-blue));
  color: white;
  border-color: transparent;
  box-shadow: 0 0 20px var(--electric-violet-glow);
  transform: scale(1.1);
}
.feature-name {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.feature-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Pricing Section ──────────────────────────────────────── */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  background: rgba(17,24,39,0.5);
  border: 1px solid var(--glass-border);
  padding: 5px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pricing-tab {
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.pricing-tab.active {
  background: linear-gradient(135deg, var(--electric-violet), #5b21b6);
  color: var(--soft-white);
  box-shadow: 0 4px 16px var(--electric-violet-glow);
}

.pricing-panel {
  display: none;
}
.pricing-panel.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  animation: plansFadeIn 0.5s ease forwards;
}
@keyframes plansFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.plan-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 20px var(--electric-violet-glow);
}
.plan-card.featured {
  border-color: var(--neon-blue);
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.12);
  z-index: 2;
}
.plan-card.featured:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 32px rgba(56, 189, 248, 0.25);
}
.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: linear-gradient(135deg, var(--electric-violet), var(--neon-blue));
  color: var(--soft-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px var(--neon-blue-glow);
}
.plan-name {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-price .currency {
  font-size: 1.4rem;
}
.plan-period {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.plan-divider {
  width: 100%;
  height: 1px;
  background: var(--glass-border);
  margin-bottom: 24px;
}
.plan-features {
  flex: 1;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #cbd5e1;
  font-size: 0.92rem;
}
.plan-features li i {
  color: var(--neon-blue);
  font-size: 0.8rem;
  width: 18px;
  text-align: center;
}
.plan-card .btn {
  width: 100%;
}

/* ── Stats Section ────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(180deg, rgba(17,24,39,0.3) 0%, rgba(7,11,20,0.6) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--glass-border);
}
.stat-card:last-child::after {
  display: none;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.quote-mark {
  font-size: 2.2rem;
  color: var(--electric-violet);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 28px;
}
.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-violet), var(--neon-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.author-role {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── FAQ Section ──────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}
.faq-item.active {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--soft-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  text-align: left;
}
.faq-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  color: var(--neon-blue);
  font-size: 0.8rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-trigger-icon {
  transform: rotate(180deg);
  background: var(--electric-violet);
  color: white;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-body-inner {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow-1 {
  position: absolute;
  width: 50vw;
  height: 50vh;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-glow-2 {
  position: absolute;
  width: 40vw;
  height: 40vh;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(56,189,248,0.1), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--soft-white), #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #04070c;
  border-top: 1px solid var(--glass-border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 50px;
}
.footer-brand p {
  color: var(--muted);
  margin-top: 18px;
  font-size: 0.92rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--soft-white);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: var(--neon-blue);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  color: #475569;
  font-size: 0.85rem;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  transition: all var(--transition-med);
}
.social-icon:hover {
  background: var(--electric-violet);
  color: var(--soft-white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px var(--electric-violet-glow);
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-panel.active {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-panel.active .plan-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }
}

@media (max-width: 960px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:nth-child(2)::after {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 80px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-panel.active {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-panel.active .plan-card:last-child {
    max-width: 100%;
  }
  .plan-card.featured {
    transform: none;
  }
  .hologram-wrapper {
    width: 300px;
    height: 300px;
  }
  .orbit-ring-3 {
    width: 290px;
    height: 290px;
  }
  .orbit-ring-2 {
    width: 240px;
    height: 240px;
  }
  .orbit-ring-1 {
    width: 170px;
    height: 170px;
  }
  .holo-core {
    width: 80px;
    height: 110px;
    padding: 12px 8px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card::after {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
