@media (max-width: 1024px) {
  .navbar__menu {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    padding: 24px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: var(--transition);
  }

  .navbar__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .hero {
    padding-top: 136px;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero__dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard__sidebar {
    display: none;
  }

  .hero__phone {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -80px auto 0;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__title {
    letter-spacing: -0.055em;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__notebook {
    border-radius: 26px;
    padding: 10px;
  }

  .hero__dashboard {
    min-height: auto;
    padding: 16px;
  }

  .dashboard__grid {
    grid-template-columns: 1fr;
  }

  .dashboard__chart {
    min-height: 180px;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 76px;
  }

  .navbar__menu {
    top: 76px;
  }

  .navbar__name {
    font-size: 16px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero__badge {
    font-size: 12px;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__phone {
    width: 230px;
    height: 470px;
  }
}