:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --text: #0f172a;
  --text-muted: #64748b;
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --border: #e2e8f0;
  --container: 1200px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
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;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.max-800 {
  max-width: 800px;
  margin: 0 auto;
}
.max-600 {
  max-width: 600px;
  margin: 0 auto;
}
.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.bg-soft {
  background: var(--bg-soft);
}
.bg-dark {
  background: #0f172a;
  color: #f8fafc;
}
.center {
  text-align: center;
}

h1,
h2,
h3,
h4 {
  color: #0f172a;
  line-height: 1.1;
  font-weight: 800;
}
h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -3px;
}
h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -2px;
}
.text-outline {
  -webkit-text-stroke: 1px var(--primary);
  color: transparent;
}
.label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}
p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Header */
.header {
  height: 90px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  transition: 0.4s;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 900;
  font-size: 1.2rem;
}
.logo span span {
  color: var(--primary);
}

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

.desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}
.nav-link:hover {
  color: var(--primary);
}
.nav-btn {
  background: #0f172a;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger-btn span {
  width: 25px;
  height: 2px;
  background: #0f172a;
}

/* Hero Monolith */
.hero-monolith {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  background-image: url("/images/business-concept-with-wooden-sticks\ \(1\).jpg");
  background-position: bottom;
  background-size: auto;
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}
.hero__badge {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
  border-radius: 4px;
}
.hero__description {
  max-width: 700px;
  margin-top: 3rem;
}

.cur-text h2,
.practice-box h2,
.section-text h2,
.center h2 {
  margin-bottom: 30px;
}

.hero__description p {
  font-weight: 700;
  color: #000;
}
.hero__actions {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 20px 40px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 4px;
  transition: 0.3s;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}
.hero__stats {
  display: flex;
  gap: 40px;
}
.stat-item strong {
  display: block;
  font-size: 1.5rem;
  color: #0f172a;
}
.stat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__bg-mesh {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(37, 99, 235, 0.05) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

/* Grid Sections */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 12px;
}
.glass i {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.uk-context {
  max-width: 900px;
}
.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.skills-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.skill-box {
  padding: 40px;
  border: 1px solid var(--border);
  transition: 0.4s;
  border-radius: 8px;
}
.skill-box:hover {
  border-color: var(--primary);
  background: var(--bg-soft);
  transform: translateY(-5px);
}
.skill-box i {
  color: var(--primary);
  margin-bottom: 20px;
}

.curriculum-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cur-list {
  list-style: none;
  margin-top: 30px;
}
.cur-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.cur-list strong {
  color: var(--text);
}
.cur-image img {
  width: 100%;
  border-radius: 12px;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.network-animation {
  width: 100%;
  height: 300px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.1;
  animation: pulse 6s infinite alternate;
  border-radius: 50%;
}

@keyframes pulse {
  from {
    transform: scale(0.8);
    opacity: 0.05;
  }
  to {
    transform: scale(1.2);
    opacity: 0.15;
  }
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  text-align: left;
}
.outcome h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* FAQ */
.faq-list {
  margin-top: 50px;
}
.faq-item {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.faq-q {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0f172a;
}

/* Form */
.contact-card {
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}
.vertical-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.f-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.f-group label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
}
.f-group input {
  padding: 16px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
  transition: 0.3s;
}
.f-group input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.captcha-wrap {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.captcha-wrap input {
  width: 100px;
}
.f-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 8px 0;
}
.f-check input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}
.f-check label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.f-check a {
  text-decoration: underline;
  color: var(--primary);
}

.btn-submit {
  padding: 20px;
  background: #0f172a;
  color: #fff;
  border: none;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.btn-submit:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Footer NEW */
.footer {
  padding: 100px 0 40px;
  background: #000;
  color: #fff;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 60px;
}
.footer__brand .logo {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.footer__brand p {
  color: #64748b;
  font-size: 0.9rem;
}
.footer__contacts {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.c-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.c-item a,
.c-item p {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
}
.c-item a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 0.8rem;
  color: #475569;
  text-decoration: none;
}
.footer__legal a:hover {
  color: #fff;
}
.footer__copy {
  font-size: 0.8rem;
  color: #475569;
}

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

.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 400px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border);
  z-index: 5000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: none;
  border-radius: 8px;
}
.btn-cookie {
  padding: 12px 24px;
  background: #0f172a;
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  margin-top: 15px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .grid-2,
  .uk-context,
  .skills-matrix,
  .curriculum-path,
  .community-grid,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .desktop-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .hero__actions {
    gap: 20px;
  }
  .hero__stats {
    gap: 20px;
  }
  .footer__top {
    flex-direction: column;
    gap: 40px;
  }
}

@media (min-width: 1025px) {
  .desktop-nowrap {
    white-space: nowrap;
  }
}

.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 {
    font-size: 28px;
  }
}
