/* Tablet Styles */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-image {
    margin-top: 0px;
    order: -1;
  }

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

  .hero-content h1 {
    font-size: 44px;
    max-width: 650px;
  }

  .hero-content p {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-grid-column-2{
    flex-direction: column;
  }

  .footer-links ul {
    flex-direction: row;
  }

  .footer-links li {
    flex-grow: 1;
  }

  .navbar .nav-links,
  .navbar .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .store-buttons {
    justify-content: center;
  }

  .store-buttons.store-buttons-footer {
    justify-content: start;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .screenshots-swiper .swiper-button-prev,
  .screenshots-swiper .swiper-button-next {
    display: none;
  }

  .hero-content h1 {
    font-size: 36px;
     max-width: 530px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  

  .benefit-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefit-row.reverse .benefit-content {
    order: 0;
  }

  .benefit-row.reverse .benefit-image {
    order: 0;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 42px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card:nth-child(3) {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .navbar .nav-links,
  .navbar .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .store-buttons {
    justify-content: center;
  }

  .store-buttons-footer {
    order: -1;
  }
}
