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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0c12;
  color: #eef2ff;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* header / nav */
header {
  background: rgba(10, 12, 18, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(100, 116, 139, 0.25);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  gap: 1rem;
  position: relative;
}

.logo {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  z-index: 102;
}

.logo-link {
  color: inherit;
  text-decoration: none;
}

.logo-accent {
  color: #a855f7;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 500;
  transition: 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #c084fc;
}

.nav-cta {
  //background: linear-gradient(135deg, #a855f7, #7c3aed);
  background: linear-gradient(135deg, #a855f7, #483aed);
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
  z-index: 102;
}

.nav-cta:hover {
  transform: scale(1.02);
  background: linear-gradient(135deg, #c084fc, #8b5cf6);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 102;
  color: #cbd5e1;
  font-size: 1.8rem;
  transition: 0.2s;
}

.hamburger:hover {
  color: #c084fc;
}

/* hero */
.hero {
  padding: 4rem 0 5rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(100, 70, 200, 0.15), transparent);
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #c084fc, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
}

.btn-primary {
  background: #7c3aed;
  color: white;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  background: #8b5cf6;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid #334155;
  color: #e2e8f0;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #a855f7;
}

/* section spacing */
section:not(.hero) {
  padding: 4rem 0 2rem;
}

.pricing-section {
  padding-bottom: 4rem !important;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-main {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(to right, #f0f9ff, #cbd5e1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title-sub {
  color: #6b7280;
  margin-top: 0.5rem;
}

/* about content layout */
.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.about-content:last-child {
  margin-bottom: 0;
}

.about-content > div {
  flex: 1;
  min-width: 240px;
}

.about-heading {
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
}

.about-list li {
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.about-list li::before {
  content: "⚡";
  color: #c084fc;
  font-size: 1.2rem;
}

.mock-img {
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(145deg, #1e1f2c, #0f111a);
  box-shadow: 0 20px 35px -12px black;
  border: 1px solid #2d2f3e;
  padding: 0.8rem;
  transition: 0.3s;
}

.badge-lab {
  display: inline-block;
  background: #1e293b;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #a78bfa;
  margin-bottom: 0.75rem;
}

/* services / cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0 0;
}

.service-card {
  background: #11131f;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid #232636;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #7c3aed;
  box-shadow: 0 20px 30px -15px rgba(0,0,0,0.5);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-card h3 i {
  color: #a855f7;
}

.service-description {
  color: #b9c3db;
  margin: 1rem 0;
  line-height: 1.5;
}

.service-path-link {
  margin-top: 1rem;
}

.service-path-link a {
  color: #c084fc;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-path-link a:hover {
  gap: 10px;
  transition: 0.2s;
  color: #e9d5ff;
}

.academy-link-wrapper {
  text-align: center;
  margin-top: 1.8rem;
}

.academy-link {
  color: #c084fc;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.academy-link:hover {
  gap: 10px;
  transition: 0.2s;
  color: #e9d5ff;
}

/* dark section */
.dark-section {
  background: #05070c;
  border-top: 1px solid #1f2230;
  border-bottom: 1px solid #1f2230;
}

/* pricing */
.price {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 1rem 0;
  color: #f0f3ff;
}

.pricing-feature {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin: 0.7rem 0;
  color: #b9c3db;
}

.btn-block {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  background: #2d2f42;
  padding: 0.7rem;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  color: #f1f5f9;
  transition: 0.2s;
}

.btn-accent {
  background: linear-gradient(95deg, #8b5cf6, #6d28d9);
  box-shadow: 0 6px 14px rgba(109, 40, 217, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-disabled {
  opacity: 0.7;
  cursor: default;
  background: #2d2f42;
}

.btn-disabled:hover {
  transform: none;
}

/* footer */
footer {
  background: #02030a;
  padding: 3rem 0 1.5rem;
  margin-top: 0;
  border-top: 1px solid #1e293b;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 0 24px;
}

.footer-section h3 {
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #c084fc;
}

.footer-links-spaced {
  padding-bottom: 1.2rem;
}

.footer-contact-heading {
  margin-top: 1.2rem;
}

.linkedin-item {
  display: flex;
  align-items: center;
}

.linkedin-item i {
  margin-right: 4px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: #4b5563;
}

.glow-text {
  color: #c084fc;
  font-weight: 500;
}

hr {
  border-color: #232636;
  margin: 1rem 0;
}

/* mobile responsive - FIXED SPACING ABOVE PLAYGROUND */
@media (max-width: 860px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 12, 18, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem 2rem;
    gap: 1.8rem;
    transition: right 0.3s ease-in-out;
    z-index: 101;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.6);
    border-left: 1px solid rgba(139, 92, 246, 0.3);
    margin: 0;
    list-style: none;
    overflow-y: auto;
    display: flex;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.6rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(100, 116, 139, 0.3);
  }

  .nav-links a:hover {
    padding-left: 6px;
  }

  nav {
    padding: 0.8rem 1.5rem;
    display: flex;
    flex-wrap: nowrap;
  }

  .logo {
    order: 1;
    margin-right: auto;
  }

  .nav-cta {
    order: 2;
    margin-left: 0;
    margin-right: 0.75rem;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }

  .hamburger {
    order: 3;
    margin-left: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Reduce section padding on mobile */
  section:not(.hero) {
    padding: 2.5rem 0;
  }
  
  /* Keep footer padding consistent */
  footer {
    padding: 1.5rem 0 1.5rem;
  }
  
  /* FIX: Remove the extra margin above Playground/Contact Info heading */
  .footer-contact-heading {
    margin-top: 0;
  }
  
  /* Also remove any large gaps between footer sections */
  .footer-section {
    margin-top: 1rem;
    margin-bottom: 0;
  }
  
  /* Reduce margin-bottom on section titles */
  .section-title {
    margin-bottom: 2rem;
  }
  
  /* Reduce gap between about content rows */
  .about-content {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 861px) {
  .nav-links {
    display: flex !important;
    position: static;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    width: auto;
    height: auto;
    padding: 0;
    box-shadow: none;
    border-left: none;
    transition: none;
    gap: 2rem;
  }

  .menu-overlay {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-content:first-child {
    margin-bottom: 2rem;
  }

  .section-title-main {
    font-size: 1.8rem;
  }
  
  section:not(.hero) {
    padding: 2rem 0;
  }
  
  footer {
    padding: 1.25rem 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .nav-cta {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .hamburger {
    font-size: 1.5rem;
  }
  
  section:not(.hero) {
    padding: 1.5rem 0;
  }
  
  footer {
    padding: 1rem 0 1rem;
  }
  
  .section-title {
    margin-bottom: 1.5rem;
  }
  
  .about-content {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 860px) {
  .footer-section h3:first-child {
    margin-top: -28px !important;
  }
  
  .footer-contact-heading {
    margin-top: 25px !important;
  }

  .footer-margin-bottom {
    margin-bottom: 1rem;
  }
}
#cookiescript_injected {
  background: #000 !important;
}
#cookiescript_copyright {
    display: none !important;
}
#cookiescript_accept {
    background-color: orange !important;
    color: #000 !important;
}