/* ════════════════════════════════════════════
   PROFIX – RESPONSIVE DESIGN (Handy & Tablet)
   responsive.css
════════════════════════════════════════════ */

/* ── TABLET & KLEINE LAPTOPS (max-width: 992px) ── */
@media (max-width: 992px) {
  .svc-grid, .team-grid, .bewertungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content, .hero-right {
    width: 100%;
  }
}

/* ── HANDY (max-width: 768px) ── */
@media (max-width: 768px) {
  :root {
    --section-pad: 50px 5%; 
  }

  /* Navigation: PC-Links verstecken */
  .nav-links, .nav-right .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex; 
  }

  /* Typografie anpassen */
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: 1.1;
  }

  /* Grids auf 1 Spalte zwingen */
  .svc-grid, .team-grid, .bewertungen-grid, .standort-grid {
    grid-template-columns: 1fr;
  }

  /* Formular-Optimierung */
  .form-row {
    flex-direction: column;
    gap: 1.2rem;
  }

  .profix-form input, 
  .profix-form select, 
  .profix-form textarea {
    font-size: 16px !important; /* Verhindert Auto-Zoom bei iOS */
    padding: 14px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns a {
    width: 100%;
    text-align: center;
  }

  .hero-logo-mobile {
    display: block;
    margin: 2rem auto;
  }
  
  .hero-right {
    display: none; /* Platz sparen auf dem Handy */
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}