/* RWD na telefony */
@media (max-width: 992px) {
  /* Header i burger */
  header {
    padding: 15px 20px;
  }

  .logo {
    max-width: 150px;
  }

  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    padding: 50px 20px;
    transition: right 0.3s ease-in-out;
  }

  nav ul {
    flex-direction: column;
    gap: 25px;
  }

  nav ul li a {
    font-size: 1.4rem;
  }

  .burger {
    display: flex;
  }

  nav.active {
    right: 0;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Hero */
  .hero {
    padding-left: 5%;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h1 span {
    font-size: 3.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero .buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero .buttons a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero .buttons a.outline {
    margin-left: 0px;
    margin-top: 10px;
  }

  /* About */
  .about-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .about-text {
    padding-right: 0;
    text-align: center;
  }

  .about-image {
    margin-top: 30px;
  }

  .stat-box {
  margin: 0 auto;
  }

  /* Features */
  .features {
    flex-direction: column;
    gap: 30px;
  }

  .feature {
    max-width: 100%;
  }

  /* Sentence */
  .sentence {
    height: 60vh;
    padding: 20px;
  }

  .sentence blockquote {
    font-size: 1.2rem;
  }

  /* Services */
  .services {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    text-align: center;
  }

  /* CTA */
  .cta {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  form {
    width: 100%;
    margin-top: 30px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-container a {
    margin: 8px 0;
  }
}
