/* =========================================================
   AKBARI REINIGUNGSSERVICE — Stylesheet
   Design-Tokens: Weiß / mattes Silber-Grau / kräftiges Blau
   Signatur-Element: "Wischkante" – ein diagonaler Reveal,
   der die Bewegung eines Abziehers/Wischers beim Reinigen
   nachempfindet.
   ========================================================= */

:root{
  /* Farben */
  --white:        #ffffff;
  --mist:         #f4f6f8;
  --mist-dark:    #e8ecf0;
  --silver:       #aab0ba;
  --silver-dark:  #7d8894;
  --silver-line:  #dde1e6;
  --navy:         #0c2f4d;
  --navy-deep:    #081f34;
  --blue:         #1f6bab;
  --blue-mid:     #2c7fc4;
  --blue-light:   #5aa0dc;
  --blue-pale:    #eaf3fb;
  --ink:          #16232f;
  --ink-soft:     #4c5967;

  /* Typografie
     Bewusst KEINE externen Web-Fonts (z. B. Google Fonts): dadurch baut der
     Browser beim Seitenaufruf keinerlei Verbindung zu Drittanbieter-Servern
     auf. Stattdessen hochwertige, auf allen gängigen Betriebssystemen
     bereits vorinstallierte Schriftarten. */
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Noto Serif", serif;
  --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Sonstiges */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(12, 47, 77, 0.06);
  --shadow-md: 0 12px 32px rgba(12, 47, 77, 0.10);
  --shadow-lg: 0 24px 60px rgba(12, 47, 77, 0.16);
  --ease: cubic-bezier(.22,.68,0,1);
  --header-h: 84px;
}

/* ---------- Reset & Basics ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; overflow-wrap: break-word; }
ul{ list-style: none; margin:0; padding:0; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select, button{ font-family: inherit; font-size: 1rem; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; font-weight: 600; line-height: 1.15; }
p{ margin:0; }

.container{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Schutz gegen CSS-Grid-Overflow: Grid-Kinder dürfen nie breiter werden
   als ihre Spalte, auch wenn sie z. B. einen nowrap-Button enthalten. */
.service-grid > *,
.gallery-grid > *,
.about-grid > *,
.contact-grid > *,
.form-grid > *,
.trust-grid > *,
.footer-inner > *{
  min-width: 0;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--navy); color:#fff;
  padding:12px 20px; z-index:2000; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline: 2px solid var(--blue-mid); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-large{ padding: 18px 36px; font-size: 1.02rem; }
.btn-small{ padding: 11px 22px; font-size: 0.88rem; }

.btn-primary{
  background: linear-gradient(135deg, var(--blue-mid), var(--navy));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.btn-primary:hover::before{ transform: translateX(120%); }
.btn-primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline-light{
  border-color: rgba(255,255,255,.55);
  color:#fff;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover{ background: rgba(255,255,255,.16); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 1500;
  height: var(--header-h);
  display:flex; align-items:center;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.site-header.scrolled{
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 4px 24px rgba(12,47,77,.08);
  height: 74px;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; width:100%;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{ width:48px; height:48px; object-fit:contain; transition:width .4s var(--ease), height .4s var(--ease); }
.site-header.scrolled .brand-logo{ width:42px; height:42px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{
  font-family: var(--font-display); font-weight:600; font-size:1.28rem; letter-spacing:.02em;
  color: var(--navy);
}
.site-header:not(.scrolled) .brand-name{ color:#fff; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.brand-sub{ font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color: var(--silver-dark); font-weight:700; }
.site-header:not(.scrolled) .brand-sub{ color: rgba(255,255,255,.8); }

.main-nav{ display:flex; align-items:center; gap:36px; }
.main-nav ul{ display:flex; align-items:center; gap:30px; }
.nav-link{
  font-size:.94rem; font-weight:600; color: var(--navy); position:relative; padding:6px 0;
}
.site-header:not(.scrolled) .nav-link{ color:#fff; text-shadow: 0 1px 8px rgba(0,0,0,.2); }
.nav-link::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0%;
  background: currentColor; transition: width .35s var(--ease);
}
.nav-link:hover::after, .nav-link.active-link::after{ width:100%; }

.menu-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; background: rgba(255,255,255,.14); border:none; border-radius:10px;
  z-index: 1300; position:relative;
}
.site-header.scrolled .menu-toggle{ background: var(--mist); }
.menu-toggle span{
  display:block; width:20px; height:2px; margin:0 auto; background:#fff; transition: all .35s var(--ease);
}
.site-header.scrolled .menu-toggle span{ background: var(--navy); }
.menu-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay{
  position:fixed; inset:0; background: rgba(8,31,52,.55); backdrop-filter: blur(2px);
  opacity:0; pointer-events:none; transition: opacity .4s var(--ease); z-index:1100;
}
.mobile-nav-overlay.visible{ opacity:1; pointer-events:auto; }

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height: 100svh; display:flex; align-items:center;
  overflow:hidden; padding-top: var(--header-h);
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg-img{
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(8,31,52,.35), rgba(8,31,52,.55)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1600" height="1000" viewBox="0 0 1600 1000"><rect width="1600" height="1000" fill="%230c2f4d"/></svg>');
  background-size: cover; background-position:center;
  transform: scale(1.06);
  animation: heroPan 22s ease-in-out infinite alternate;
}
@keyframes heroPan{ from{ transform: scale(1.06) translateX(0);} to{ transform: scale(1.12) translateX(-1.5%);} }
.hero-bg-gradient{
  position:absolute; inset:0;
  background: radial-gradient(120% 90% at 15% 15%, rgba(31,107,171,.55), transparent 60%),
              linear-gradient(180deg, rgba(8,31,52,.55) 0%, rgba(8,31,52,.78) 100%);
}
.hero-inner{ position:relative; z-index:2; padding: 90px 24px 140px; }
.hero-content{ max-width: 680px; }
.eyebrow{
  display:flex; align-items:center; gap:12px;
  font-size:.78rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase;
  color: var(--blue-mid); margin-bottom:18px;
}
.eyebrow-light{ color: rgba(255,255,255,.85); }
.eyebrow-line{ width:34px; height:2px; background: currentColor; display:inline-block; }

.hero-title{
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color:#fff; letter-spacing:-.01em; margin-bottom:26px;
  text-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.hero-title em{ font-style: italic; font-weight:500; color: #bcdcf7; }
.hero-subtitle{
  font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: rgba(255,255,255,.86);
  max-width: 540px; margin-bottom:44px; line-height:1.65;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:18px; }

.hero-wipe{
  position:absolute; left:0; right:0; bottom:-2px; height:120px; z-index:3;
  background: var(--white);
  clip-path: polygon(0 55%, 100% 5%, 100% 100%, 0% 100%);
}

/* ---------- Reveal Animations ---------- */
.reveal-up{
  opacity:0; transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-up.in-view{ opacity:1; transform:none; }
.hero-content.reveal-up{ transition-delay:.1s; }

/* Signature "Wischkante" reveal for media / cards */
.wipe-reveal{
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: clip-path 1s var(--ease);
}
.wipe-reveal.in-view{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* ---------- Trust bar ---------- */
.trust-bar{
  background: var(--white);
  padding: 46px 0;
  border-bottom: 1px solid var(--silver-line);
  position:relative; z-index:4;
}
.trust-grid{
  display:grid; grid-template-columns: repeat(5, 1fr); gap:20px;
}
.trust-item{ display:flex; flex-direction:column; align-items:center; gap:12px; text-align:center; }
.trust-icon{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: var(--blue-pale); color: var(--blue); flex-shrink:0;
}
.trust-icon svg{ width:26px; height:26px; }
.trust-label{ font-weight:700; font-size:.92rem; color: var(--navy); }

/* ---------- Section basics ---------- */
.section{ padding: 120px 0; position:relative; }
.section-head{ max-width: 640px; margin-bottom: 64px; }
.section-head.light .section-desc{ color: rgba(255,255,255,.78); }
.section-head.light .section-title{ color:#fff; }
.section-title{ font-size: clamp(2rem, 3.6vw, 2.9rem); color: var(--navy); margin-bottom:20px; }
.section-title em{ font-style: italic; font-weight:500; color: var(--blue-mid); }
.section-desc{ font-size:1.08rem; color: var(--ink-soft); line-height:1.7; }

/* ---------- Services ---------- */
.services{ background: var(--mist); }
.service-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:28px;
}
.service-card{
  background:#fff; border-radius: var(--radius-lg); padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--silver-line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  display:flex; flex-direction:column; gap:16px;
}
.service-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon{
  width:60px; height:60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-mid), var(--navy));
  color:#fff; display:flex; align-items:center; justify-content:center;
}
.service-icon svg{ width:28px; height:28px; }
.service-card h3{ font-size:1.28rem; color: var(--navy); }
.service-card p{ color: var(--ink-soft); line-height:1.65; flex-grow:1; }
.service-link{
  font-weight:700; font-size:.92rem; color: var(--blue); display:inline-flex; align-items:center; gap:6px;
}
.service-link span{ transition: transform .3s var(--ease); }
.service-link:hover span{ transform: translateX(5px); }

/* ---------- About ---------- */
.about{ background: var(--white); }
.about-grid{
  display:grid; grid-template-columns: 0.85fr 1.15fr; gap:80px; align-items:center;
}
.about-media{ position:relative; }
.about-media-frame{
  border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-media-frame img{ width:100%; height:100%; object-fit:cover; }
.about-badge{
  position:absolute; bottom:-28px; right:-28px;
  background: linear-gradient(135deg, var(--blue-mid), var(--navy));
  color:#fff; border-radius: var(--radius-md); padding: 24px 26px;
  box-shadow: var(--shadow-lg);
  width: 168px; text-align:center;
}
.about-badge-number{ display:block; font-family: var(--font-display); font-size:2.1rem; font-weight:600; }
.about-badge-label{ font-size:.76rem; line-height:1.4; opacity:.9; }

.about-text{ color: var(--ink-soft); line-height:1.75; margin-bottom:18px; font-size:1.03rem; }
.about-list{ margin: 26px 0 34px; display:flex; flex-direction:column; gap:14px; }
.about-list li{ display:flex; align-items:flex-start; gap:12px; color: var(--navy); font-weight:600; }
.check{
  width:22px; height:22px; border-radius:50%; background: var(--blue-pale); color: var(--blue);
  display:flex; align-items:center; justify-content:center; font-size:.72rem; flex-shrink:0; margin-top:2px;
}

/* ---------- Gallery ---------- */
.gallery-section{ background: var(--mist); }
.gallery-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:22px;
}
.gallery-item{
  position:relative; border:none; padding:0; background:none; border-radius: var(--radius-md);
  overflow:hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.gallery-item:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item-label{
  position:absolute; left:0; right:0; bottom:0; padding: 18px 20px;
  background: linear-gradient(0deg, rgba(8,31,52,.82), transparent);
  color:#fff; font-weight:700; text-align:left; font-size:.96rem;
}
.gallery-item-placeholder{
  display:flex; align-items:center; justify-content:center; text-align:center;
  background: repeating-linear-gradient(135deg, var(--mist-dark), var(--mist-dark) 12px, #fff 12px, #fff 24px);
  border: 1.5px dashed var(--silver);
  color: var(--silver-dark); font-weight:700; font-size:.9rem; padding: 20px;
}
.gallery-note{ margin-top: 26px; font-size:.85rem; color: var(--silver-dark); font-style: italic; }

/* ---------- Request / Angebot Formular ---------- */
.request-section{ position:relative; overflow:hidden; }
.request-bg{
  position:absolute; inset:0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 55%, #061726 100%);
}
.request-bg::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(60% 50% at 85% 0%, rgba(90,160,220,.25), transparent 60%);
}
.request-section .container{ position:relative; z-index:2; }

.request-form{
  background: rgba(255,255,255,.98);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 22px 26px;
}
.form-field{ display:flex; flex-direction:column; gap:8px; min-width:0; }
.form-field-full{ grid-column: 1 / -1; }
.form-field label{ font-weight:700; font-size:.88rem; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea{
  width: 100%;
  min-width: 0;
  border: 1.5px solid var(--silver-line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  background: var(--mist);
  color: var(--ink);
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline:none; border-color: var(--blue-mid); background:#fff;
  box-shadow: 0 0 0 4px var(--blue-pale);
}
.field-hint{ font-size:.78rem; color: var(--silver-dark); }
.form-field-hp{ position:absolute; left:-9999px; top:-9999px; }

.checkbox-label{ display:flex; align-items:flex-start; gap:10px; font-size:.88rem; color: var(--ink-soft); font-weight:500; cursor:pointer; }
.checkbox-label input{ margin-top:3px; accent-color: var(--blue-mid); width:16px; height:16px; flex-shrink:0; }
.checkbox-label a{ color: var(--blue); font-weight:700; text-decoration:underline; }

.form-submit{ margin-top: 34px; display:flex; flex-direction:column; align-items:flex-start; gap:14px; }
.btn-spinner{
  display:none; width:16px; height:16px; border-radius:50%;
  border: 2px solid rgba(255,255,255,.4); border-top-color:#fff;
  animation: spin .7s linear infinite;
}
.btn[data-loading="true"] .btn-spinner{ display:inline-block; }
.btn[data-loading="true"] .btn-label{ opacity:.7; }
@keyframes spin{ to{ transform: rotate(360deg); } }
.form-status{ font-weight:700; font-size:.94rem; min-height:1.4em; }
.form-status.success{ color:#3fbf7f; }
.form-status.error{ color:#e2685a; }

/* ---------- Kontakt ---------- */
.contact-section{ background: var(--white); }
.contact-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap:70px; align-items:center; }
.contact-list{ display:flex; flex-direction:column; gap:18px; margin: 34px 0 40px; }
.contact-item{
  display:flex; align-items:center; gap:16px; padding: 16px 18px;
  border: 1.5px solid var(--silver-line); border-radius: var(--radius-md);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
a.contact-item:hover{ border-color: var(--blue-mid); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact-icon{
  width:46px; height:46px; border-radius:50%; background: var(--blue-pale); color: var(--blue);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-icon svg{ width:20px; height:20px; }
.contact-item > span{ min-width:0; overflow-wrap: break-word; word-break: break-word; }
.contact-item strong{ display:block; font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color: var(--silver-dark); margin-bottom:2px; }
.contact-item span span{ font-weight:700; color: var(--navy); }

.contact-media-frame{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/6; }
.contact-media-frame img{ width:100%; height:100%; object-fit:cover; }

/* ---------- Footer ---------- */
.site-footer{ position:relative; background: var(--navy-deep); color: rgba(255,255,255,.82); padding-top: 90px; }
.footer-wipe{
  position:absolute; top:-1px; left:0; right:0; height:90px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}
.footer-inner{
  display:grid; grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand{ display:flex; gap:14px; align-items:flex-start; }
.footer-logo{ width:52px; height:52px; object-fit:contain; }
.footer-brand-name{ font-family: var(--font-display); font-weight:600; font-size:1.15rem; color:#fff; margin-bottom:6px; }
.footer-tagline{ font-style:italic; font-family: var(--font-display); color: var(--blue-light); font-size:.98rem; }
.site-footer h4{ color:#fff; font-family: var(--font-body); font-size:.82rem; text-transform:uppercase; letter-spacing:.12em; margin-bottom:18px; font-weight:800; }
.footer-nav ul{ display:flex; flex-direction:column; gap:11px; }
.footer-nav a, .footer-legal a{ font-size:.92rem; transition: color .25s var(--ease); }
.footer-nav a:hover, .footer-legal a:hover, .footer-contact a:hover{ color:#fff; }
.footer-contact p{ font-size:.92rem; line-height:1.7; margin-bottom:8px; overflow-wrap: break-word; word-break: break-word; }
.footer-legal ul{ display:flex; flex-direction:column; gap:11px; }
.footer-bottom{ padding: 26px 0 34px; }
.footer-bottom p{ font-size:.82rem; color: rgba(255,255,255,.5); text-align:center; }

/* ---------- Lightbox ---------- */
.lightbox{
  position:fixed; inset:0; background: rgba(6,20,34,.92); z-index:2000;
  display:flex; align-items:center; justify-content:center; padding: 40px;
  opacity:0; pointer-events:none; transition: opacity .35s var(--ease);
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox-figure{ max-width: 900px; width:100%; text-align:center; }
.lightbox-figure img{ width:100%; max-height:76vh; object-fit:contain; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-figure figcaption{ color:#fff; margin-top:18px; font-weight:600; }
.lightbox-close{
  position:absolute; top:26px; right:30px; background: rgba(255,255,255,.1); color:#fff; border:none;
  width:46px; height:46px; border-radius:50%; font-size:1.6rem; line-height:1;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.lightbox-close:hover{ background: rgba(255,255,255,.22); transform: rotate(90deg); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .about-grid{ grid-template-columns: 1fr; gap:60px; }
  .about-media{ max-width: 420px; margin: 0 auto; }
  .contact-grid{ grid-template-columns: 1fr; gap: 50px; }
  .contact-media{ order:-1; max-width: 420px; margin:0 auto; }
  .footer-inner{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 860px){
  .main-nav{ display:none; }
  .menu-toggle{ display:flex; }

  .main-nav.mobile-open{
    display:flex; position:fixed; top:0; right:0; height:100vh; width: min(340px, 84vw);
    background: var(--white); flex-direction:column; align-items:flex-start; justify-content:flex-start;
    padding: 110px 34px 40px; gap: 36px; z-index:1200;
    box-shadow: -20px 0 60px rgba(0,0,0,.2);
    transform: translateX(0);
    animation: navSlide .45s var(--ease);
  }
  @keyframes navSlide{ from{ transform: translateX(100%); } to{ transform: translateX(0); } }
  .main-nav.mobile-open ul{ flex-direction:column; align-items:flex-start; gap:26px; width:100%; }
  .main-nav.mobile-open .nav-link{ color: var(--navy); font-size:1.15rem; }
  .main-nav.mobile-open .nav-cta{ width:100%; text-align:center; }

  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
  .service-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .section{ padding: 84px 0; }
  .form-grid{ grid-template-columns: 1fr; }
  .request-form{ padding: 30px 22px; }
  .footer-inner{ grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 520px){
  .hero-inner{ padding: 70px 20px 120px; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; }
  .trust-grid{ grid-template-columns: 1fr 1fr; }
  .about-badge{ right: 0; bottom:-20px; }
}

@media (max-width: 400px){
  .container{ padding-left:16px; padding-right:16px; }
  .btn{ white-space: normal; text-align: center; line-height: 1.3; }
  .request-form{ padding:24px 16px; }
  .hero-inner{ padding-left:16px; padding-right:16px; }
  .brand-sub{ font-size:.68rem; }
}

/* =========================================================
   RECHTSTEXT-SEITEN (Impressum, Datenschutz)
   Zuvor als Inline-<style> in den jeweiligen HTML-Dateien —
   hierher verschoben, damit eine strikte Content-Security-Policy
   (style-src 'self', ohne 'unsafe-inline') möglich ist.
   ========================================================= */
.legal-page{ padding: 160px 0 100px; max-width: 820px; margin:0 auto; }
.legal-page h1{
  font-size: clamp(1.7rem, 7vw, 2.4rem); color: var(--navy); margin-bottom: 30px;
  overflow-wrap: break-word; hyphens: auto;
}
.legal-page h2{ font-size: 1.3rem; color: var(--navy); margin: 40px 0 14px; }
.legal-page p, .legal-page li{ color: var(--ink-soft); line-height: 1.75; margin-bottom: 10px; }
.legal-page a{ color: var(--blue); text-decoration: underline; }
.legal-placeholder{ background: var(--blue-pale); border-left: 3px solid var(--blue-mid); padding: 14px 18px; border-radius: 8px; font-size: .92rem; }
.back-link{ display:inline-block; margin-bottom: 30px; font-weight:700; color: var(--blue); }
.legal-footer-spacer{ padding-top: 40px; }
