@media (min-width: 1440px) {
  :root {
    --container-width: min(1320px, 88vw);
  }

  .hero-title {
    font-size: clamp(4rem, 10vw, 10rem);
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 6rem 0;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-quote {
    min-height: auto;
  }

  .hero-subtitle {
    letter-spacing: 1.4px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    top: 86px;
    right: 4vw;
    width: min(280px, 92vw);
    padding: 0.9rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .nav-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-panel a {
    padding: 0.7rem 0.6rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
  }

  .hero {
    min-height: 92vh;
  }

  .hero-title {
    font-size: clamp(3rem, 20vw, 5.2rem);
  }

  .counters,
  .founders-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-lang {
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    min-height: 72px;
  }

  .logo img {
    width: 150px;
    height: 52px;
  }

  .section {
    padding: 5.2rem 0;
  }

  .hero-title {
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    margin-bottom: 1.4rem;
  }

  .about-quote,
  .about-content,
  .service-card,
  .pricing-card,
  .founder-card,
  .contact-card {
    border-radius: 16px;
    padding: 1.05rem;
  }

  .founder-photo-shell {
    width: 136px;
    height: 136px;
  }

  .floating-whatsapp {
    right: 0.7rem;
    bottom: 0.7rem;
    min-height: 48px;
    padding: 0.7rem 0.95rem;
    font-size: 0.93rem;
  }
}
