@media (max-width: 480px) {

  body {
    font-size: 14px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-box img {
    max-width: 160px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .card img {
    width: 80px;
    height: 80px;
  }

  .leaderboard li {
    font-size: 0.85rem;
    padding: 10px;
  }

  .mascot {
    font-size: 2.5rem;
  }

  .mascot-msg {
    display: none;
  }
}
@media (max-width: 768px) {

  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--primary);
    width: 100%;
    margin-top: 15px;
    padding: 20px;
    border-radius: 20px;
  }

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

  .hamburger {
    display: flex;
  }

  .hero-section {
    padding: 130px 0 80px;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding: 70px 0;
  }

  .progress {
    height: 22px;
  }

  .progress-fill {
    font-size: 0.85rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .split-grid img {
    max-width: 300px;
  }

  .card img {
    width: 110px;
    height: 110px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1201px) {

  .container {
    max-width: 1300px;
  }

  .hero-text h1 {
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .hero-image-box img {
    max-width: 380px;
  }
}
