@media (max-width: 900px) {
  .container {
    width: calc(100% - 24px);
  }

  .projects-shell {
    padding: 28px 18px;
  }

  .test-section {
    width: calc(100% - 16px);
  }

  .card {
    padding: 16px;
  }

  .mini-card {
    min-height: auto;
  }

  .hero-grid,
  .test-grid,
  .community {
    grid-template-columns: 1fr;
  }

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

  .project-card.highlight {
    transform: none;
  }

  .project-card.highlight:hover {
    transform: translateY(-6px);
  }

  .audience-grid,
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rating-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .score {
    font-size: 3rem;
    margin-bottom: 6px;
  }

  .bars {
    margin-top: 0;
  }

  .rating-card h3,
  .rating-card p {
    max-width: 100%;
  }

  .rating-image {
    width: 250px;
    height: 250px;
    top: -70px;
    right: -76px;
    margin: 16px 0;
  }

  /* Mobile Navi */
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
  }

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--blue-dark);
    color: white;
    font-size: 2rem;
    font-weight: 900;
  }

  .nav-links.is-open a {
    color: white;
  }

  /* Praxistests Beurteilungskarte */
  .rating-card {
    padding: 24px;
  }

  .rating-card h3,
  .rating-card p {
    max-width: 100%;
  }

  .rating-image {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .rating-image img {
    width: 100%;
    height: auto;
    transform: none;
  }

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

  .voice-card {
    padding: 22px;
  }
}

@media (max-width: 620px) {
  .logo {
    transform: scale(.8)
  }

  .audience-grid,
  .content-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero .badge {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .projects-shell {
    padding: 28px 18px;
    border-radius: 34px;
  }

  .project-card {
    min-height: auto;
    padding: 24px;
  }

  .project-cta {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stats>div:last-child {
    grid-column: span 2;
  }

  section {
    padding: 32px 0;
  }

  .project-card {
    position: relative;
  }

  /* Fix: Badge ueberlappt auf kleinen Handybildschirmen sonst den Titel der Box */
  .project-badge {
    position: static;
    width: fit-content;
    margin-bottom: 16px;
    font-size: 11px;
  }

  .project-header {
    margin-top: 0;
  }
}