:root {
  --bg: #050507;
  --bg-alt: #0a0a0f;
  --accent: #00ffcc;
  --primary: #2d5cf7;
  --secondary: #9d50bb;
  --text: #e0e0e0;
  --text-dim: #94a3b8;
  --glass: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --font: "Inter", sans-serif;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.bg-darker {
  background: var(--bg-alt);
}
.center {
  text-align: center;
}
.max-800 {
  max-width: 800px;
  margin: 0 auto;
}
.max-600 {
  max-width: 600px;
  margin: 0 auto;
}
.narrow {
  max-width: 900px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -2px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -1px;
}
p {
  margin-bottom: 1.25rem;
  color: var(--text-dim);
}

.glitch-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 2rem;
}

/* Header */
.header {
  height: 80px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 7, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.logo span span {
  color: var(--accent);
}

.logo img {
  width: 50px;
  height: 50px;
}

.desktop-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.3s;
}
.nav-link:hover {
  color: #fff;
}
.nav-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
}

.burger-open {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger-open span {
  width: 22px;
  height: 2px;
  background: #fff;
}

/* Hero */
.hero-cyber {
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.hero-essay {
  border-left: 2px solid var(--primary);
  padding-left: 24px;
  margin-bottom: 3rem;
}
.hero-essay p {
  font-size: 1.1rem;
}

.cyber-button {
  display: inline-block;
  padding: 18px 36px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  transition: 0.3s;
}
.cyber-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.orb-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cyber-orb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary), var(--secondary));
  filter: blur(60px);
  opacity: 0.3;
  animation: orbPulse 8s infinite alternate;
}
.orb-ring {
  position: absolute;
  width: 110%;
  height: 110%;
  border: 1px solid var(--accent);
  border-radius: 50%;
  border-style: dashed;
  opacity: 0.2;
  animation: rotate 20s linear infinite;
}

@keyframes orbPulse {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Sections */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.cyber-list {
  list-style: none;
}
.cyber-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.cyber-list strong {
  color: var(--accent);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.path-card {
  padding: 40px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.p-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--border);
  margin-bottom: 1rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.glass {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}
.glass:hover {
  border-color: var(--accent);
}
.glass i {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.outcomes-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

/* Accordion */
.accordion {
  margin-top: 50px;
}
.acc-item {
  border-bottom: 1px solid var(--border);
}
.acc-btn {
  width: 100%;
  padding: 25px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}
.acc-panel p {
  padding-bottom: 25px;
}
.acc-item.active .acc-panel {
  max-height: 200px;
}
.acc-item.active .acc-btn i {
  transform: rotate(180deg);
  color: var(--accent);
}

/* Form FIXED */
.contact-cyber {
  background: radial-gradient(
    circle at bottom right,
    rgba(45, 92, 247, 0.05),
    transparent
  );
}
.contact-box {
  padding: 50px;
  border-radius: 16px;
}
.cyber-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.f-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.f-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
}
.f-group input {
  padding: 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  color: #fff;
  font-family: inherit;
  border-radius: 4px;
  width: 100%;
}
.f-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.captcha-box {
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.captcha-box input {
  width: 100px;
}

.f-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 10px 0;
  width: 100%;
}
.f-check input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--accent);
}
.f-check label {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
  word-wrap: break-word;
  flex: 1;
}

.submit-btn {
  padding: 20px;
  background: var(--accent);
  color: #000;
  border: none;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
}
.submit-btn:hover {
  background: #fff;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: #000;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-info p,
.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
}
.footer-legal a:hover {
  color: #fff;
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: #444;
}

/* Overlay & Cookie */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-overlay.active {
  display: flex;
}
.menu-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}
.menu-links a {
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  padding: 25px;
  z-index: 5000;
  display: none;
}
.btn-sm {
  padding: 10px 20px;
  background: var(--accent);
  color: #000;
  border: none;
  font-weight: 700;
  cursor: pointer;
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid,
  .split-layout,
  .path-grid,
  .bento-grid,
  .outcomes-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-height: 250px;
    transform: scale(0.75);
    margin-top: 20px;
  }
  .desktop-nav {
    display: none;
  }
  .burger-open {
    display: flex;
  }
  .hero-text {
    text-align: center;
  }
  .hero-essay {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .contact-box {
    padding: 24px;
  }
  .hero-visual {
    display: none;
  }
}

.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 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    margin: 80px 0 30px;
    font-size: 28px;
  }
}
