/* =======================================
   Tablet (≤ 1200px)
======================================= */

@media (max-width: 1200px) {
  .hero {
    padding: 150px 0 90px;
  }

  .hero-container {
    grid-template-columns: 1fr;

    gap: 80px;

    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-badge,
  .hero-tags,
  .hero-buttons,
  .hero-features {
    justify-content: center;
  }

  .hero-right {
    height: 620px;
    display: none;
  }

  .hero-stats {
    max-width: 700px;

    margin: auto;
  }
}

/* =======================================
   Tablet (≤ 992px)
======================================= */

@media (max-width: 992px) {
  .hero h1 {
    font-size: 54px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-right {
    height: 520px;

    transform: scale(0.88);
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
  }
}

/* =======================================
   Mobile (≤ 768px)
======================================= */

@media (max-width: 768px) {
  .hero {
    padding: 130px 0 70px;
  }

  .hero-container {
    width: 94%;
  }

  .hero h1 {
    font-size: 42px;

    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;

    line-height: 1.8;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tags span {
    font-size: 13px;

    padding: 8px 14px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;

    gap: 12px;

    align-items: flex-start;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    text-align: center;
  }

  .hero-right {
    height: 450px;

    transform: scale(0.75);
  }
}

/* =======================================
   Small Mobile (≤ 576px)
======================================= */

@media (max-width: 576px) {
  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-right {
    height: 350px;

    transform: scale(0.6);
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .floating-card {
    min-width: 160px;

    padding: 12px;
  }

  .floating-card strong {
    font-size: 14px;
  }

  .floating-card small {
    font-size: 11px;
  }
}
