:root {
  --bg: #030712;
  --panel: #0f172a;
  --primary: #3b82f6; /* Blue */
  --accent: #22d3ee; /* Cyan */
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: rgba(59, 130, 246, 0.2);
  --font-head: "Syncopate", sans-serif;
  --font-body: "Urbanist", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 25px;
  letter-spacing: -2px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.center {
  text-align: center;
}

/* Buttons */
.btn-main {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-head);
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-main:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.btn-ghost {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  font-family: var(--font-head);
}

.btn-ghost:hover {
  background: rgba(59, 130, 246, 0.1);
}

.btn-main.small {
  padding: 10px 20px;
  font-size: 0.8rem;
}
.btn-main.full {
  width: 100%;
  text-align: center;
}

/* Header */
.cyber-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

.h-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-txt {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 0.9;
  font-size: 1.1rem;
  color: #fff;
}

.d-nav {
  display: flex;
  gap: 30px;
}
.nav-item {
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 700;
}
.nav-item:hover {
  color: var(--primary);
}

.h-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-btn {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

/* BURGER BUTTON - MOBILE ONLY */
.burger {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2001; /* Above overlay */
}

.burger .line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff; /* High contrast */
  transition: 0.3s;
}

/* Mobile Menu Overlay */
.mob-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 2000;
  transform: translateX(100%);
  transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.mob-overlay.active {
  transform: translateX(0);
}

.mo-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.mo-logo {
  font-family: var(--font-head);
  color: var(--primary);
  font-size: 1.2rem;
}
.mo-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mo-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mo-body a {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: #fff;
}
.mo-body a:hover {
  color: var(--primary);
}
.mo-cta {
  color: var(--primary) !important;
  margin-top: 20px;
}

.mo-foot {
  margin-top: auto;
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
}

/* Hero */
.hero-wrap {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--primary);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.blink {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: blink 1s infinite;
}
@keyframes blink {
  50% {
    opacity: 0.4;
  }
}

.hero-acts {
  display: flex;
  gap: 20px;
}

.tech-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 12px;
}

.tc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-family: monospace;
  color: var(--primary);
}
.tc-dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin-left: 4px;
}

.loader-wrap {
  margin-bottom: 30px;
  font-family: monospace;
}
.bar-bg {
  width: 100%;
  height: 4px;
  background: #333;
  margin-top: 10px;
}
.bar-fill {
  width: 85%;
  height: 100%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.stat-row {
  display: flex;
  justify-content: space-between;
}
.stat-row strong {
  font-size: 2rem;
  display: block;
  line-height: 1;
}
.stat-row small {
  color: var(--muted);
  text-transform: uppercase;
}

/* Ticker */
.run-line {
  background: var(--primary);
  padding: 10px 0;
  overflow: hidden;
  margin-bottom: 60px;
}
.track {
  white-space: nowrap;
  animation: scroll 20s linear infinite;
  font-family: var(--font-head);
  font-weight: 700;
  color: #000;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.track span {
  margin: 0 20px;
}
.track i {
  width: 16px;
  height: 16px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Features */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.sec-title {
  margin-bottom: 50px;
}

.features-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feat-item {
  background: var(--panel);
  padding: 40px;
  border: 1px solid var(--border);
  transition: 0.3s;
}
.feat-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}
.feat-item i {
  color: var(--primary);
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

/* Courses Split */
.bg-darker {
  background: #020617;
}

.split-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.checklist {
  margin: 30px 0;
}
.checklist li {
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: var(--font-head);
  font-size: 0.9rem;
}

.note-box {
  display: flex;
  gap: 10px;
  background: rgba(59, 130, 246, 0.1);
  padding: 15px;
  border-left: 3px solid var(--primary);
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.note-box i {
  width: 20px;
  flex-shrink: 0;
  color: var(--primary);
}

.btn-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.ss-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prog-card {
  background: var(--panel);
  padding: 25px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}
.prog-card.highlight {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.1);
}
.pc-idx {
  font-family: var(--font-head);
  font-size: 2rem;
  color: #333;
}
.prog-card h4 {
  margin: 0;
  font-size: 1.1rem;
}
.prog-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Insight Stats */
.insight-box {
  text-align: center;
  background: var(--panel);
  padding: 60px;
  border: 1px solid var(--border);
}

.ib-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.stat .num {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.stat .lbl {
  font-family: var(--font-head);
  color: var(--primary);
  font-size: 0.8rem;
}
.full-width {
  max-width: 400px;
  margin: 0 auto;
}

/* FAQ */
.faq-cont {
  max-width: 800px;
}
.acc-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.acc-item {
  border: 1px solid var(--border);
  background: var(--panel);
}
.acc-btn {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.acc-btn:hover {
  color: var(--primary);
}
.acc-btn::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
}
.acc-btn.active::after {
  content: "-";
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.acc-content p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--muted);
}

/* Form */
.form-sec {
  padding-bottom: 100px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.office-info {
  margin-top: 40px;
  border-left: 2px solid var(--primary);
  padding-left: 20px;
}
.office-info h5 {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.office-info a {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

.fg-form {
  background: var(--panel);
  padding: 40px;
  border: 1px solid var(--border);
}
.inp-box {
  margin-bottom: 20px;
}
.inp-box label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}
.inp-box input {
  width: 100%;
  padding: 12px;
  background: #000;
  border: 1px solid var(--border);
  color: #fff;
  outline: none;
}
.inp-box input:focus {
  border-color: var(--primary);
}

.err {
  color: #ff4d4d;
  font-size: 0.8rem;
  display: none;
  margin-top: 5px;
}
.inp-box.error input {
  border-color: #ff4d4d;
}
.inp-box.error .err {
  display: block;
}

.cap-box input {
  width: 100px;
}
.chk-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.chk-box label {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
}
.chk-box a {
  color: var(--primary);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #000;
  padding: 80px 0 20px;
  border-top: 1px solid var(--border);
}

.f-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.f-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.branding p {
  font-size: 0.9rem;
  color: #666;
}
.soc-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.soc-links a {
  color: #888;
}
.soc-links a:hover {
  color: var(--primary);
}

.f-item h5 {
  color: var(--primary);
  font-size: 0.8rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.f-item a {
  display: block;
  color: #888;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.f-item a:hover {
  color: #fff;
}

.contacts-f p {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: #888;
  font-size: 0.9rem;
}
.contacts-f i {
  color: var(--primary);
  width: 16px;
}

.hl {
  color: var(--primary) !important;
  font-weight: 700;
}
.f-copy {
  text-align: center;
  color: #333;
  border-top: 1px solid #111;
  padding-top: 20px;
  font-size: 0.8rem;
}

/* Cookie */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  color: #000;
  padding: 15px;
  z-index: 9999;
  display: none;
}
.cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cb-inner p {
  margin: 0;
  color: #000;
  font-weight: 700;
}
#acceptCookie {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

/* RESPONSIVE CSS */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-acts {
    justify-content: center;
  }
  .hero-vis {
    margin-top: 50px;
  }
  .split-sec {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .f-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Critical Mobile Styles */
  .d-nav,
  .h-controls .contact-btn,
  .h-controls .btn-main {
    display: none !important;
  }

  .burger {
    display: flex; /* Force visible */
  }

  .h-wrap {
    justify-content: space-between;
  }

  h1 {
    font-size: 2.5rem;
  }
  .features-box {
    grid-template-columns: 1fr;
  }
  .ib-stats {
    gap: 30px;
  }
  .f-row {
    grid-template-columns: 1fr;
  }

  .cb-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .prog-card {
    flex-direction: column;
    text-align: center;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 10px;
  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: 22px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
