/* ==========================================================================
   Auto Wieser — shared stylesheet (originalgetreu an Canva-Design angepasst)
   ========================================================================== */

:root {
  --navy: #214563;        /* Karten-Header, Nav-Text auf hell, Footer-Akzente */
  --navy-dark: #182f43;
  --blue: #3f6593;        /* Bänder, Leistungs-Sektion, Karten-Header hell */
  --blue-light: #5c7fa8;
  --red: #fe3340;
  --red-dark: #d81f2b;
  --yellow: #ffde59;
  --gray-bg: #e4e4e4;     /* helle Sektionen / Kopfzeile Unterseiten */
  --gray-line: #c9cdd2;
  --dark: #2c2f32;        /* Zertifizierungen + Footer */
  --dark2: #24272a;
  --text: #14191f;
  --text-muted: #5a6b7d;
  --white: #ffffff;
  --off-white: #fdfdfd;

  /* Canva-Design nutzt eine neutrale Grotesk (Canva Sans ~ Helvetica/Arial) */
  --font-head: Arial, "Helvetica Neue", Helvetica, "Segoe UI", sans-serif;
  --font-body: Arial, "Helvetica Neue", Helvetica, "Segoe UI", sans-serif;

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); margin: 0 0 .5em; line-height: 1.15; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 30px; }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; text-align: center;
  transition: background .18s, color .18s, border-color .18s;
}
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* ==========================================================================
   KOPFZEILE  (Bosch links · Auto-Wieser-Logo mittig · Hotline rechts)
   ========================================================================== */
.header-bar {
  position: sticky; top: 0; z-index: 45;
  background: rgba(17,30,44,.62); backdrop-filter: blur(6px) saturate(140%);
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 30px 14px;
  gap: 20px;
}
.header-row .logo-bosch { justify-self: start; height: 92px; width: auto; }
.header-row .logo-main  { justify-self: center; height: 76px; width: auto; background:#fff; border-radius:8px; padding:6px 12px; }
.header-row .hotline {
  justify-self: end;
  background: var(--red); color: #fff; border-radius: 30px;
  padding: 9px 20px 9px 14px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.header-row .hotline img { width: 40px; height: 40px; filter: brightness(0) invert(1); }
.header-row .hotline .label { font-size: .78rem; opacity: .95; line-height: 1.1; }
.header-row .hotline .num   { font-size: 1.12rem; font-weight: 700; }

/* Navigationsreihe */
.nav-row {
  display: flex; align-items: center; gap: 22px; flex-wrap: nowrap;
  padding: 6px 30px 18px;
}
.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.nav-row a:not(.btn) { font-weight: 700; font-size: 1.02rem; text-decoration: underline; text-underline-offset: 4px; white-space: nowrap; }
.nav-row .btn { margin-left: auto; padding: 10px 20px; font-size: .96rem; white-space: nowrap; }

.nav-toggle {
  display: none; margin-left: auto; order: 2;
  width: 42px; height: 42px; padding: 0; border: none; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 3px; border-radius: 2px; background: currentColor; }

/* Kopfzeile auf Unterseiten (grauer Hintergrund, dunkle Navi) — bleibt beim Scrollen sichtbar */
.site-header { background: var(--gray-bg); position: sticky; top: 0; z-index: 45; box-shadow: 0 2px 14px rgba(20,34,49,.08); }
.site-header .nav-row a:not(.btn) { color: var(--navy); }
.site-header .nav-row .btn { color: var(--navy); border-color: var(--navy); background:#fff; }
.site-header .nav-row .btn:hover { background: var(--navy); color:#fff; }
.site-header .nav-toggle { color: var(--navy); }

/* Mobile Navigation: Links klappen hinter einem Menü-Button ein, statt umzubrechen */
@media (max-width: 760px) {
  .nav-row { flex-wrap: wrap; gap: 12px; padding: 12px 20px 16px; }
  .nav-toggle { display: flex; }
  .nav-row .btn { margin-left: 0; order: 1; }
  .nav-links {
    order: 3; width: 100%; display: none; flex-direction: column; align-items: flex-start; gap: 0;
  }
  .nav-links.open { display: flex; margin-top: 6px; }
  .nav-links a { width: 100%; padding: 12px 2px; font-size: 1.05rem; border-bottom: 1px solid rgba(33,69,99,.12); }
  .hero .nav-links a { border-bottom-color: rgba(255,255,255,.2); }
}

/* ==========================================================================
   HERO  (Startseite, Video-Hintergrund)
   ========================================================================== */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero video, .hero .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(20,34,49,.35), rgba(20,34,49,.62));
}
/* Navi über Hero: weißer Text */
.hero .nav-row a:not(.btn) { color: #fff; }
.hero .nav-row .btn { color:#fff; border-color: rgba(255,255,255,.9); }
.hero .nav-row .btn:hover { background: rgba(255,255,255,.15); }
.hero .nav-toggle { color: #fff; }

.hero-content { position: relative; z-index: 3; text-align: center; padding: 40px 30px 70px; }
.hero-content .eyebrow { font-size: 1.7rem; font-weight: 400; margin-bottom: 14px; opacity: .97; }
.hero-content h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 700;
  max-width: 1000px; margin: 0 auto 16px; text-wrap: balance;
}
.hero-content .lead { max-width: 760px; margin: 0 auto 28px; font-size: 1.2rem; opacity: .96; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn { padding: 14px 28px; font-size: 1.08rem; }

/* ==========================================================================
   BANNER  (blaues Sektions-Band mit großer Rundung unten)
   ========================================================================== */
.banner {
  background: var(--blue); color: #fff; text-align: center;
  padding: 46px 24px; border-radius: 0 0 46px 46px;
  scroll-margin-top: 100px;
}
.banner.flat { border-radius: 0; }
.banner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin: 0; }
.banner p { margin: 8px 0 0; font-size: 1.2rem; opacity: .95; }

/* ---------- Sektionen ---------- */
.section { padding: 58px 0; }
.bg-gray { background: var(--gray-bg); }

/* ==========================================================================
   STANDORTE
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.location-card {
  background: var(--off-white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 6px 22px rgba(30,50,75,.10); display:flex; flex-direction:column;
}
.location-card .card-head { background: var(--navy); color: #fff; padding: 22px 26px; }
.location-card .card-head h3 { font-size: 1.45rem; font-weight: 700; margin-bottom: 8px; }
.location-card .card-head p { margin: 0; font-size: 1rem; opacity: .95; line-height: 1.5; }
.location-card .card-body { padding: 24px 26px 26px; display:flex; flex-direction:column; gap:16px; flex:1; }
.location-card .card-body > p { margin: 0; color: var(--blue); font-size: 1.05rem; }
.location-card ul { list-style: none; margin: 0; padding: 0; display:flex; flex-direction:column; gap:10px; }
.location-card li { position: relative; padding-left: 28px; font-weight: 700; color: var(--navy); }
.location-card li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 15px; height: 15px; border-radius: 50%; background: var(--navy);
}
.location-card .map { border-radius: 8px; overflow: hidden; margin-top: 4px; }
.location-card .map img, .location-card .map iframe { width: 100%; height: 200px; object-fit: cover; border:0; display:block; }
.location-card .card-actions { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.location-card .card-actions .btn { width: 100%; }
.route-btn { background: var(--navy); color: #fff; border-color: var(--navy); }
.route-btn:hover { background: var(--navy-dark); }

/* ==========================================================================
   LEISTUNGEN (Karten über Foto/Video mit Blau-Overlay)
   ========================================================================== */
.leistungen { position: relative; background: var(--blue); color: #fff; padding: 56px 0 60px; overflow: hidden; }
.leistungen video, .leistungen .lst-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.leistungen::after { content:""; position:absolute; inset:0; background: rgba(63,101,147,.86); z-index:1; }
.leistungen .container { position: relative; z-index: 2; }
.leistungen h2, .leistungen .sec-h2 {
  text-align: center; font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 400; margin-bottom: 38px;
  position: relative; z-index: 2;
}
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: rgba(84,120,166,.34); border: 1px solid rgba(255,255,255,.20);
  border-radius: 14px; padding: 30px 24px 26px; text-align: center;
}
.service-card .icon-circle {
  width: 116px; height: 116px; border-radius: 50%;
  margin: 0 auto 16px; overflow: hidden;
}
.service-card .icon-circle img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: .98rem; opacity: .95; }
.location-tags { display: flex; gap: 10px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.location-tag { padding: 7px 18px; border-radius: 999px; font-size: .9rem; font-weight: 700; background: var(--navy); color: #fff; }
.location-tag.active-yellow { background: var(--yellow); color: var(--navy); }

/* CTA-Reihe */
.cta-row { text-align: center; padding: 42px 24px; background: var(--gray-bg); }
.cta-row p { font-weight: 700; color: var(--navy); margin-bottom: 20px; font-size: 1.5rem; }
.cta-row .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-row .btn-group .btn { font-size: 1.2rem; padding: 15px 28px; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team-bg { position: relative; background-size: cover; background-position: center; padding: 30px 0 60px; color: #fff; }
.team-bg::before { content:""; position:absolute; inset:0; background: rgba(15,16,21,.45); }
.team-bg .container { position: relative; z-index: 1; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-top: 26px; }
.team-card { background: #fff; border-radius: 16px; padding: 26px 20px 22px; text-align: center; color: var(--text); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.team-card .avatar { width: 128px; height: 128px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 4px solid #eef2f7; }
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card .avatar.logo-avatar { display:flex; align-items:center; justify-content:center; background:#fff; }
.team-card .avatar.logo-avatar img { object-fit: contain; width: 82%; height: 82%; }
.team-card h3 { font-size: 1.3rem; font-weight: 700; margin: 0; color: var(--navy); }

/* ==========================================================================
   ZERTIFIZIERUNGEN + FOOTER
   ========================================================================== */
.certs { background: var(--dark); color: #fff; text-align: center; padding: 44px 24px 34px; }
.certs h2 { font-size: 1.7rem; font-weight: 400; margin-bottom: 30px; }
.certs .cert-row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.certs .cert-row img { height: 58px; width: auto; }

.site-footer { background: var(--dark); color: rgba(255,255,255,.85); }
.footer-grid { border-top: 1px solid rgba(255,255,255,.14); padding: 40px 0; display: grid; grid-template-columns: 1.1fr 1.2fr 1.3fr .7fr; gap: 34px; }
.footer-grid h4 { color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; }
.footer-grid p, .footer-grid a { font-size: .96rem; line-height: 1.7; }
.footer-grid a { display: inline-flex; align-items: center; gap: 10px; }
.footer-grid a:hover { text-decoration: underline; }
.footer-grid .contact-icon { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-grid .social-icons { display: flex; gap: 18px; margin-top: 10px; }
.footer-grid .social-icons a { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; opacity: .9; }
.footer-grid .social-icons a:hover { opacity: 1; color: var(--blue-light); }
.footer-grid .social-icons svg { width: 100%; height: 100%; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 16px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .85rem; opacity: .8; }
.footer-bottom .legal-links { display: flex; gap: 20px; }

/* ==========================================================================
   INNENSEITEN
   ========================================================================== */
/* Blaues Seiten-Banner (Leistungen-Detailseiten) */
.page-banner { background: var(--blue); color: #fff; text-align:center; padding: 34px 24px; border-radius: 0 0 30px 30px; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 400; margin-bottom: 8px; }
.page-banner p { max-width: 800px; margin: 0 auto; opacity:.95; }

.detail-standort { background: var(--off-white); border-radius: 8px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding: 20px 26px; margin: 34px 0 26px; box-shadow: 0 4px 16px rgba(0,0,0,.10); }
.detail-standort .label { color: var(--text-muted); font-size: .82rem; margin-bottom: 4px; }
.detail-standort .address { font-size: 1.05rem; font-weight: 700; }

.standort-photo { border-radius: 10px; overflow: hidden; margin-bottom: 30px; }
.standort-photo img { width: 100%; height: 360px; object-fit: cover; }
.standort-photo .caption { text-align:center; color: var(--text-muted); font-size:.92rem; margin-top:10px; }

/* Aufklapp-Leistungskarten (dunkelblaue Blöcke) */
.service-block { background: var(--blue); color: #fff; border-radius: 12px; padding: 24px 28px; margin-bottom: 20px; }
.service-block > .head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.service-block .head img, .service-block .head svg { width: 34px; height: 34px; }
.service-block h3 { font-size: 1.3rem; font-weight: 700; margin: 0; }
.service-block .intro { opacity: .95; margin: 4px 0 14px; }
.service-block .detail-title { font-weight: 700; margin: 0 0 8px; }
.service-block ul { margin: 0; padding-left: 20px; }
.service-block li { margin-bottom: 8px; }

.interest-cta { text-align: center; background: var(--blue); color:#fff; border-radius: 12px; padding: 40px 24px; margin: 46px 0; }
.interest-cta h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; }
.interest-cta .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

/* Warum Auto Wieser */
.usp-title { text-align:center; color: var(--navy); font-weight:700; font-size: 1.6rem; margin: 6px 0 26px; }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 10px; }
.usp-card { text-align:center; }
.usp-card .icon-circle { width: 92px; height: 92px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; }
.usp-card .icon-circle img { width: 100%; height: 100%; object-fit: cover; }
.usp-card h3 { color: var(--navy); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.usp-card p { margin: 0; color: var(--text-muted); font-size: .95rem; }

/* ---------- Öffnungszeiten ---------- */
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.hours-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 22px rgba(30,50,75,.10); }
.hours-card .hours-head { background: var(--navy); color: #fff; padding: 22px 22px; text-align: center; font-size: 1.2rem; font-weight: 700; }
.hours-card .hours-photo img { width: 100%; height: 180px; object-fit: cover; display:block; }
.hours-card .hours-body { padding: 22px 24px 26px; }
.hours-card .hours-body h4 { color: var(--navy); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.hours-card .hours-body p { margin: 0 0 4px; color:#33475b; }
.hours-card .hours-body .btn { margin-top: 16px; width: 100%; }

/* ---------- Kontakt ---------- */
.emergency-banner { background: var(--red); color: #fff; border-radius: 16px; padding: 30px 28px; margin: 34px 0; text-align:center; }
.emergency-banner .icon { width: 64px; height:64px; margin: 0 auto 10px; filter: brightness(0) invert(1); }
.emergency-banner h2 { font-size: 1.7rem; font-weight: 700; margin-bottom: 6px; }
.emergency-banner p { margin: 0 0 16px; opacity:.96; }

.contact-hero { position: relative; background-size: cover; background-position: center; color:#fff; padding: 56px 0; }
.contact-hero::before { content:""; position:absolute; inset:0; background: rgba(20,34,49,.5); }
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; margin-bottom: 24px; }

.address-card { background: #fff; color: var(--text); border-radius: 16px; padding: 24px; margin-bottom: 24px; display: flex; gap: 20px; flex-wrap: wrap; }
.address-card .info { flex: 1; min-width: 200px; }
.address-card .info h3 { color: var(--navy); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.address-card .info p { margin: 0 0 4px; font-size: .96rem; }
.address-card .map { flex: 1; min-width: 220px; border-radius: 8px; overflow: hidden; }
.address-card .map img, .address-card .map iframe { width: 100%; height: 150px; object-fit: cover; border:0; display:block; }
.address-card .actions { width: 100%; }

.contact-form { background: #fff; color: var(--text); border-radius: 16px; padding: 30px; }
.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--gray-line); border-radius: 8px;
  font-family: var(--font-body); font-size: .96rem;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .checkbox-row { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-form .checkbox-row label { display: flex; align-items: center; gap: 8px; background: var(--gray-bg); padding: 12px 16px; border-radius: 8px; font-weight: 500; color: var(--text); flex: 1; min-width: 150px; }
.contact-form .btn { width: 100%; }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ---------- Rechtstexte ---------- */
.legal-wrap { background: var(--navy); padding: 46px 0; }
.legal-box { background: #fff; border-radius: 14px; overflow: hidden; max-width: 1000px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.legal-box .legal-head { background: var(--blue); color: #fff; padding: 22px 30px; font-size: 1.5rem; font-weight: 700; }
.legal-box .legal-body { padding: 30px 34px; color: #33475b; }
.legal-box .legal-body h3 { color: var(--navy); font-weight: 700; margin: 22px 0 8px; }
.legal-box .legal-body p { margin: 0 0 12px; }
.legal-box .legal-body strong { color: var(--navy); }

/* ---------- Reifenwechsel / Bookings ---------- */
.booking-wrap { padding: 50px 0; }
.booking-intro { text-align:center; margin-bottom: 30px; scroll-margin-top: 100px; }
.booking-intro h1 { color: var(--navy); font-size: clamp(1.9rem,4vw,2.5rem); font-weight:700; margin-bottom: 10px; }
.booking-intro p { color: var(--text-muted); font-size: 1.1rem; max-width: 60ch; margin: 0 auto; }
.booking-frame { max-width: 900px; margin: 0 auto; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 34px rgba(30,50,75,.12); background:#f4f7fa; }
.booking-frame iframe { width: 100%; height: 900px; border: 0; display: block; }

/* Zwei Wege zum Termin: anrufen (Standard) oder Reifenwechsel online buchen */
.termin-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 46px; }
.termin-card { border-radius: 16px; padding: 32px 28px; text-align: center; }
.termin-card .termin-icon { width: 56px; height: 56px; margin: 0 auto 16px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.termin-card h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.termin-card p { font-size: 1rem; margin-bottom: 20px; }
.termin-card.termin-call { background: var(--gray-bg); color: var(--text); border: 1px solid var(--gray-line); }
.termin-card.termin-call .btn { background: var(--red); color: #fff; border-color: var(--red); }
.termin-card.termin-call .btn:hover { background: var(--red-dark); border-color: var(--red-dark); }
.termin-card.termin-tire { background: var(--navy); color: #fff; }
.termin-card.termin-tire .btn { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.termin-card.termin-tire .btn:hover { filter: brightness(1.05); }
@media (max-width: 760px) { .termin-choice { grid-template-columns: 1fr; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 940px) {
  .grid-2, .service-grid, .team-grid, .hours-grid, .usp-grid, .footer-grid, .service-list { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .header-row { grid-template-columns: 1fr auto; }
  .header-row .logo-main { grid-column: 1 / -1; grid-row: 2; justify-self: center; margin-top: 10px; }
  .header-row .hotline { justify-self: end; }
  .nav-row { gap: 18px; }
  .nav-row a:not(.btn) { font-size: 1rem; }
  .nav-row .btn { margin-left: 0; }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-row { grid-template-columns: 1fr; justify-items: center; text-align:center; }
  .header-row .logo-bosch, .header-row .hotline { justify-self: center; }
  .hero-content h1 { font-size: 1.7rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
