/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #0b0f1a;
  color: #fff;
  line-height: 1.6;
}
a {
  color: #00bfff;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
.site-header {
  background: #0e1524;
  padding: 1rem 0;
}
.site-header .logo {
  font-weight: 700;
  font-size: 1.5rem;
}
.site-header .logo span {
  color: #00bfff;
}
.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.main-nav a {
  color: #fff;
  font-weight: 600;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: 4rem 1rem;
  background: linear-gradient(to right, #13233c, #0b0f1a);
  text-align: center;
}
.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-content .btn {
  background: #00bfff;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  transition: background 0.3s;
}
.hero-content .btn:hover {
  background: #007acc;
}

/* Press */
.press {
  text-align: center;
  padding: 2rem 0;
}
.press p {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Icons Row */
.icons-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2rem 0;
  background: #0e1524;
}
.icon-box {
  width: 120px;
  text-align: center;
  margin: 1rem;
}

/* Story */
.story {
  padding: 3rem 1rem;
}
.story-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.story-content img {
  border-radius: 12px;
  max-width: 400px;
}

/* Success */
.success {
  padding: 2rem 1rem;
  background: #101b2f;
  text-align: center;
}
.video-block {
  position: relative;
  display: inline-block;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00bfff;
  color: white;
  padding: 0.7rem 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
}

/* Pricing */
.pricing {
  padding: 4rem 1rem;
}
.plans {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.plan-card {
  background: #1c293b;
  padding: 2rem;
  border-radius: 12px;
}
.plan-card h3 {
  margin-bottom: 1rem;
}
.plan-card ul {
  list-style: disc;
  margin-left: 1.5rem;
}

/* Teaching */
.teaching {
  padding: 3rem 1rem;
  background: #0e1524;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #0e1524;
  padding: 2rem 1rem;
  text-align: center;
}
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-links a {
  color: #00bfff;
}

/* Responsive */
@media screen and (min-width: 768px) {
  .hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  .story-content {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .plans {
    flex-direction: row;
    justify-content: space-between;
  }
}










/* Mobile nav toggle */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: #0e1524;
    position: absolute;
    top: 70px;
    right: 1rem;
    width: 200px;
    border-radius: 8px;
    z-index: 1000;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}










/* Desktop */
.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
}

/* Mobile Overrides */
@media screen and (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 1rem;
    background: #0e1524;
    border-radius: 8px;
    padding: 1rem;
    width: 200px;
    z-index: 1000;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav.active {
    display: flex;
    flex-direction: column;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

