:root {
  --color-primary: #1938ff;
  --color-primary-dark: #0f1d80;
  --color-accent: #ff375f;
  --color-accent-dark: #c1203f;
  --color-bg: #070815;
  --color-surface: rgba(10, 14, 44, 0.8);
  --color-text: #f5f7ff;
  --color-muted: #9aa2c7;
  --color-border: rgba(255, 255, 255, 0.1);
  --gradient-hero: linear-gradient(135deg, #1a1e4b, #27123d 45%, #081b5b);
  --gradient-accent: linear-gradient(135deg, #ff4d6d, #1938ff);
  --font-heading: "Poppins", "Inter", sans-serif;
  --font-body: "Inter", "Poppins", sans-serif;
  --shadow-soft: 0 20px 60px rgba(10, 9, 57, 0.6);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.35);
  --max-width: 1200px;
  --section-padding: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--color-accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(5, 8, 28, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-tagline {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--color-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--color-text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease;
}

.btn {
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 999px;
  padding: 14px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 15px 40px rgba(255, 71, 112, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 10px 22px;
}

.btn-ghost {
  background: transparent;
  color: var(--color-muted);
  padding-inline: 0;
}

.btn-light {
  background: #fff;
  color: #0c0d1c;
  padding: 16px 40px;
}

.btn-link {
  background: transparent;
  color: var(--color-accent);
  font-weight: 600;
  padding: 0;
}

.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 120px;
  background: radial-gradient(circle at 20% 20%, rgba(25, 56, 255, 0.4), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(255, 55, 95, 0.4), transparent 45%),
    var(--gradient-hero);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity: 0.2;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
  z-index: 1;
}

.eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-family: var(--font-heading);
  margin-bottom: 16px;
}

.hero-copy h1 span {
  color: var(--color-accent);
}

.hero-subtitle {
  color: var(--color-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-card {
  background: rgba(10, 15, 45, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  position: relative;
  transform-style: preserve-3d;
}

.hero-card-header,
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.hero-card pre {
  margin: 16px 0;
  padding: 18px;
  background: rgba(2, 6, 23, 0.8);
  border-radius: 16px;
  font-family: "JetBrains Mono", Consolas, monospace;
  color: #8ddcff;
  font-size: 0.85rem;
  overflow-x: auto;
}

.status.success {
  color: #4ade80;
}

.stack {
  color: #60a5fa;
}

.hero-spheres {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sphere {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(6px);
}

.sphere-red {
  background: rgba(255, 71, 112, 0.3);
  top: -20px;
  right: 30px;
}

.sphere-blue {
  background: rgba(25, 56, 255, 0.25);
  bottom: 0;
  left: -40px;
}

.sphere-purple {
  background: rgba(163, 80, 255, 0.35);
  bottom: -20px;
  right: -20px;
}

.hero-badge {
  margin-top: 24px;
  padding: 18px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  text-align: center;
}

.section {
  padding: var(--section-padding) 0;
}

.intro {
  background: #0b0f2a;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.checklist li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  padding-left: 28px;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.services {
  background: #050716;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--color-muted);
  max-width: 640px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: rgba(11, 12, 36, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.card-top h3 {
  margin-top: 0;
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

.card ul li {
  color: var(--color-muted);
  margin-bottom: 8px;
}

.program-grid {
  gap: 32px;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding-bottom: 32px;
}

.card-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  margin-bottom: 16px;
}

.card-chip.accent {
  background: rgba(255, 55, 95, 0.15);
  color: var(--color-accent);
}

.card-chip.neutral {
  background: rgba(154, 162, 199, 0.15);
  color: var(--color-muted);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  margin: 0 0 20px;
}

.card-list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-muted);
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.card-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-meta {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.btn-card {
  width: 100%;
  justify-content: space-between;
  background: rgba(25, 56, 255, 0.15);
  border: 1px solid rgba(25, 56, 255, 0.3);
  color: var(--color-text);
  padding: 14px 22px;
}

.btn-card span {
  font-size: 1.2rem;
}

.btn-card:hover {
  border-color: var(--color-accent);
  color: #fff;
}

.timeline {
  background: #080a24;
}

.timeline-steps {
  position: relative;
  margin-top: 48px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  top: 111px;
  bottom: 111px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 55, 95, 0.4), rgba(25, 56, 255, 0.5));
  transform: translateX(-50%);
  opacity: 0.8;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: rgba(9, 11, 34, 0.85);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.timeline-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.timeline-item.left .timeline-content {
  grid-column: 1 / 2;
  text-align: right;
}

.timeline-item.right .timeline-content {
  grid-column: 3 / 4;
  text-align: left;
}

.timeline-item .step {
  grid-column: 2 / 3;
  justify-self: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid transparent;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  background: radial-gradient(circle at top, #2b1b53, #080a24 65%, #050716);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}


.mentor {
  background: #030411;
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.mentor-photo {
  position: relative;
}

.mentor-photo img {
  width: 100%;
  border-radius: 24px;
  border: 2px solid var(--color-border);
  object-fit: cover;
  max-height: 520px;
}

.mentor-quote {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(3, 5, 23, 0.85);
  padding: 16px 24px;
  border-radius: 16px;
  font-style: italic;
  border: 1px solid var(--color-border);
}

.mentor-content p {
  color: var(--color-muted);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.badges li {
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.mentor-links {
  margin-top: 24px;
}

.mentor-links .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.mentor-links .btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-linkedin {
  background: linear-gradient(135deg, #0a66c2, #0f7fed);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 30px rgba(15, 127, 237, 0.35);
}

.btn-linkedin:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 127, 237, 0.45);
}

.btn-linkedin span {
  font-size: 1rem;
}

.testimonials {
  background: #06071c;
}

.testimonials-swiper {
  margin-top: 32px;
  padding-bottom: 56px;
}

.testimonial {
  background: linear-gradient(145deg, rgba(11, 12, 34, 0.95), rgba(20, 22, 52, 0.9));
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.testimonial.owner {
  border-color: rgba(255, 55, 95, 0.4);
  background: linear-gradient(135deg, rgba(255, 55, 95, 0.15), rgba(25, 56, 255, 0.08));
}

.testimonial p {
  color: #d8dcff;
  font-size: 1rem;
}

.testimonial .author h3 {
  margin: 16px 0 4px;
  font-size: 1.1rem;
}

.testimonial .author span {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.testimonial-chip {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 55, 95, 0.18);
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ffffff !important;
  opacity: 0.5;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent);
  opacity: 1;
  transform: scale(1.15);
}

.faq {
  background: #080a24;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.faq-list article {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 22px;
  background: rgba(9, 12, 40, 0.85);
}

.cta-accent {
  background: var(--gradient-accent);
}

.cta-accent-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-accent .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.cta-accent h2 {
  margin: 8px 0;
}

.contact {
  background: #050716;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.contact-list li {
  margin-bottom: 12px;
}

.map-placeholder {
  margin-top: 24px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 32px;
  background: linear-gradient(120deg, rgba(25, 56, 255, 0.1), rgba(255, 55, 95, 0.15));
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-form {
  display: grid;
  gap: 12px;
  background: rgba(10, 12, 35, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(5, 7, 20, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px;
  color: var(--color-text);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-accent);
}

.form-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.form-info {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.form-message {
  height: 24px;
  font-size: 0.9rem;
}

.site-footer {
  background: #030411;
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    background: rgba(5, 8, 28, 0.95);
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 72px 0;
  }

  .timeline-steps {
    padding: 0;
    gap: 28px;
  }

  .timeline-steps::before {
    left: 32px;
    top: 28px;
    bottom: 28px;
  }

  .timeline-item {
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }

  .timeline-item.left,
  .timeline-item.right {
    grid-template-columns: 72px 1fr;
  }

  .timeline-item .step {
    width: 54px;
    height: 54px;
    grid-column: 1 / 2;
  }

  .timeline-item .timeline-content,
  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    grid-column: 2 / 3;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

