/* VARIABLES: Cyberpunk / Glassmorphism */
:root {
  --bg: #0b0c15; /* Deep Space */
  --bg-sec: #131522;
  --text: #e0e0e0;
  --primary: #7b2cbf; /* Electric Purple */
  --secondary: #4cc9f0; /* Neon Cyan */
  --accent: #b5179e; /* Deep Pink */

  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --blur: 10px;

  --font-head: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(123, 44, 191, 0.15) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(76, 201, 240, 0.15) 0%,
      transparent 20%
    );
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(123, 44, 191, 0.5);
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #aaa;
}
.lead {
  font-size: 1.3rem;
  color: #fff;
}
.gradient-text {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* UTILS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.narrow {
  max-width: 800px;
  margin: 0 auto;
}
.section {
  padding: 100px 0;
}
.center {
  text-align: center;
}
.bg-darker {
  background: var(--bg-sec);
}
.bg-gradient {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-sec) 100%);
}

/* NEON BAR */
.neon-bar {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  text-align: center;
  padding: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 12, 21, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
}
.head-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-anim {
  animation: pulse 3s infinite;
}
@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 0 var(--primary));
  }
  50% {
    filter: drop-shadow(0 0 10px var(--primary));
  }
  100% {
    filter: drop-shadow(0 0 0 var(--primary));
  }
}
.logo-txt {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
}
.logo-txt small {
  font-size: 0.6rem;
  color: var(--secondary);
  letter-spacing: 2px;
}

.glass-nav {
  display: flex;
  gap: 25px;
  background: var(--glass);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
}
.glass-nav a {
  font-weight: 500;
  font-size: 0.9rem;
  color: #ccc;
}
.glass-nav a:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--secondary);
}

.head-act {
  display: flex;
  align-items: center;
  gap: 15px;
}
.loc-badge {
  font-size: 0.7rem;
  border: 1px solid var(--primary);
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--primary);
}
#menuTrigger {
  display: none;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 10px;
  font-family: var(--font-head);
}

/* BUTTONS */
.cyber-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-head);
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(123, 44, 191, 0.4);
  transition: 0.3s;
}
.cyber-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(123, 44, 191, 0.6);
}

.cyber-btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-head);
  transition: 0.3s;
}
.cyber-btn-outline:hover {
  background: var(--secondary);
  color: #000;
  box-shadow: 0 0 20px var(--secondary);
}

.cyber-link {
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.status-pill {
  display: inline-block;
  color: #0f0;
  font-size: 0.8rem;
  margin-bottom: 20px;
  font-family: var(--font-head);
}
.hero-sub {
  margin-bottom: 40px;
  font-size: 1.2rem;
}
.hero-btns {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-viz {
  position: relative;
  height: 400px;
}
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  width: 200px;
  position: absolute;
}
.gc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 0.8rem;
}
.gc-val {
  font-size: 2.5rem;
  font-family: var(--font-head);
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.gc-sub {
  font-size: 0.8rem;
  color: #aaa;
}
.float {
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}
.delay {
  top: 50%;
  right: 10%;
  animation: float 6s ease-in-out infinite 3s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* TICKER */
.cyber-ticker {
  background: #000;
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
  padding: 10px 0;
  overflow: hidden;
  transform: rotate(-2deg);
  margin: -40px 0 40px;
  position: relative;
  z-index: 3;
}
.ct-track {
  white-space: nowrap;
  color: var(--secondary);
  font-family: var(--font-head);
  font-size: 1.2rem;
  animation: scroll 30s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* VISION */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.holo-frame {
  padding: 10px;
  border: 1px solid var(--primary);
  box-shadow: 0 0 20px rgba(123, 44, 191, 0.3);
  position: relative;
}
.holo-frame::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 50px;
  height: 50px;
  border-top: 2px solid var(--secondary);
  border-left: 2px solid var(--secondary);
}
.neon-list {
  margin-top: 30px;
}
.neon-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  color: #fff;
}
.neon-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* TECH CARDS */
.cards-3d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  perspective: 1000px;
}
.c3d-item {
  background: var(--bg-sec);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 10px;
  transition: 0.5s;
  transform-style: preserve-3d;
}
.c3d-item:hover {
  transform: rotateY(10deg) translateZ(20px);
  border-color: var(--secondary);
  box-shadow: 0 0 30px rgba(76, 201, 240, 0.2);
}
.c3d-icon {
  color: var(--primary);
  margin-bottom: 20px;
}
.sm-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--secondary);
  text-decoration: underline;
}

/* QUIZ */
.quiz-glass {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}
.qg-step {
  display: none;
  animation: fade 0.4s;
}
.qg-step.active {
  display: block;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.qg-step h5 {
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.qg-step button {
  display: block;
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: #fff;
  font-family: var(--font-head);
  transition: 0.2s;
}
.qg-step button:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.res-icon {
  color: #0f0;
  margin-bottom: 20px;
}
.full {
  width: 100%;
}

/* STEPS */
.steps-cyber {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 50px;
}
.sc-item {
  text-align: center;
  position: relative;
}
.sc-num {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-head);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.sc-line {
  height: 1px;
  background: var(--glass-border);
  width: 50px;
  margin: 0 auto;
}

/* STATS */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-cyber {
  text-align: center;
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: 10px;
}
.stat-cyber strong {
  display: block;
  font-size: 2.5rem;
  color: var(--secondary);
  font-family: var(--font-head);
  text-shadow: 0 0 10px var(--secondary);
}
.stat-cyber span {
  font-size: 0.9rem;
  color: #aaa;
  text-transform: uppercase;
}

/* REVIEWS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-glass {
  background: var(--glass);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--glass-border);
}
.rg-head {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
}
.bg-p {
  background: var(--primary);
}
.bg-c {
  background: var(--secondary);
}
.bg-l {
  background: var(--accent);
}
.rg-meta {
  font-size: 0.8rem;
  line-height: 1.2;
  color: #fff;
}

/* PRICING */
.pricing-cyber {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pc-card {
  background: var(--bg-sec);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pc-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(123, 44, 191, 0.2);
}
.badge-rec {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 5px 15px;
  font-size: 0.7rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.pc-card .price {
  font-size: 3rem;
  color: #fff;
  font-family: var(--font-head);
  margin: 20px 0;
}
.pc-card ul {
  margin-bottom: 30px;
  text-align: left;
}
.pc-card li {
  margin-bottom: 10px;
  color: #ccc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 5px;
}

/* FAQ */
.accordion-cyber details {
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 15px;
  border: 1px solid var(--glass-border);
  border-radius: 5px;
}
.accordion-cyber summary {
  padding: 20px;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
}
.accordion-cyber p {
  padding: 0 20px 20px;
  margin: 0;
  color: #aaa;
}

/* REGISTRATION */
.reg-console {
  background: var(--bg-sec);
  border: 1px solid var(--secondary);
  box-shadow: 0 0 40px rgba(76, 201, 240, 0.1);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border-radius: 20px;
  overflow: hidden;
}
.rc-left {
  padding: 60px;
  background: rgba(76, 201, 240, 0.05);
  border-right: 1px solid var(--glass-border);
}
.contact-details {
  margin-top: 40px;
}
.contact-details p {
  margin-bottom: 15px;
  color: #fff;
}
.contact-details strong {
  color: var(--secondary);
}

.rc-form {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.inp-field label {
  display: block;
  color: var(--secondary);
  font-size: 0.8rem;
  margin-bottom: 5px;
  font-family: var(--font-head);
}
.inp-field input {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1.1rem;
}
.inp-field input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 10px var(--secondary);
}
.chk-field {
  font-size: 0.9rem;
}
.chk-field a {
  color: var(--secondary);
  text-decoration: underline;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--glass-border);
  background: #000;
  padding: 60px 0 20px;
  font-size: 0.9rem;
}
.footer-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.f-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}
.footer h5 {
  color: var(--primary);
  margin-bottom: 20px;
}
.footer a {
  display: block;
  margin-bottom: 10px;
  color: #888;
}
.footer a:hover {
  color: #fff;
}
.footer-copy {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid #222;
  padding-top: 20px;
  color: #555;
}

/* MOBILE MENU */
.cyber-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 200;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cyber-menu.active {
  transform: translateX(0);
}
.cm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  color: var(--secondary);
  font-family: var(--font-head);
}
#closeMenu {
  background: none;
  color: #fff;
}
.cm-list a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
}
.cm-foot {
  margin-top: 30px;
  color: #555;
  text-align: center;
  font-size: 0.8rem;
}

/* COOKIE */
.cookie-neon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--secondary);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(76, 201, 240, 0.3);
  z-index: 5000;
  display: none;
  align-items: center;
  gap: 15px;
}
.cookie-neon p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--secondary);
}
#acceptCookie {
  background: var(--secondary);
  color: #000;
  padding: 5px 15px;
  border-radius: 3px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .glass-nav,
  .head-act .loc-badge {
    display: none;
  }
  .hero-content {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }
  #menuTrigger {
    display: block;
  }

  h1 {
    font-size: 2.5rem;
  }
  .hero-content,
  .grid-2,
  .reg-console,
  .footer-layout {
    grid-template-columns: 1fr;
  }
  .hero-viz {
    height: 300px;
    order: -1;
  }
  .cards-3d,
  .pricing-cyber,
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .steps-cyber {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sc-line {
    width: 2px;
    height: 30px;
    margin: 0 auto;
  }

  .hero-viz {
    display: none;
  }
  .rc-left {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 40px;
  }
  .rc-form {
    padding: 40px;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    font-size: 28px;
    
  }
}
