@media (max-width: 920px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 650px;
    background-position: 62% center;
  }

  .steps,
  .testimonials,
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta .section-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 24px, var(--max-width));
  }

  .brand span {
    font-size: 1rem;
  }

  .nav-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .language-switcher {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

  .lang-button {
    min-width: 40px;
    font-size: 0.78rem;
  }

  .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .nav-actions > .button {
    width: 100%;
    flex: none;
    min-width: 0;
    padding: 0 10px;
    font-size: 0.9rem;
    white-space: normal;
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(32, 16, 20, 0.9) 0%, rgba(75, 14, 35, 0.72) 58%, rgba(32, 16, 20, 0.5) 100%),
      url("../assets/hero-bg.svg") center/cover;
  }

  .hero-inner {
    width: min(100% - 24px, var(--max-width));
    padding: 72px 0 42px;
  }

  .hero h1 {
    max-width: calc(100vw - 24px);
    font-size: 1.74rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

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

  .section {
    padding: 54px 0;
  }

  .section-inner,
  .footer-inner {
    width: min(100% - 24px, var(--max-width));
  }

  .steps,
  .testimonials,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }

  .cookie-actions {
    flex-direction: column;
    justify-content: stretch;
  }

  .cookie-notice {
    right: 12px;
    left: 12px;
    width: auto;
  }

  .step p,
  .cookie-notice p {
    overflow-wrap: anywhere;
  }

  .cookie-actions .button {
    flex: 1;
  }
}
