* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #091a2d;
  background: #f7fbff;
  line-height: 1.45;
}

img { max-width: 100%; display: block; }

.container {
  width: 92%;
  max-width: 1220px;
  margin: auto;
}

.topbar {
  background: rgba(3, 18, 35, 0.96);
  border-bottom: 1px solid rgba(21, 146, 255, .25);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  min-height: 136px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.logo-img {
  flex: 0 0 auto;
}

.logo-img img {
  width: 236px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .4px;
}

nav a:hover { color: #1592ff; }

.header-phone {
  color: #1592ff;
  font-weight: 900;
  text-decoration: none;
  font-size: 22px;
  white-space: nowrap;
}

.menu-btn {
  display: none;
  background: #0d3157;
  color: white;
  border: 1px solid rgba(255,255,255,.2);
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  min-height: 610px;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 12, 26, .95) 0%, rgba(2, 22, 45, .78) 44%, rgba(2, 22, 45, .15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.subline {
  color: #1592ff;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 13px;
}

.lead {
  font-size: 17px;
  color: #e5edf7;
}

.hero-actions {
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  margin-right: 12px;
}

.btn-primary {
  background: #1592ff;
  color: white;
}

.btn-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,.65);
}

.benefits {
  background: #f2f8fc;
  border-bottom: 1px solid #d6e5ef;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-grid div {
  padding: 24px 22px;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: center;
  border-right: 1px solid #c8dbe7;
}

.benefit-grid div:last-child { border-right: 0; }

.benefit-grid span {
  grid-row: span 2;
  color: #0759b5;
  font-size: 36px;
}

.benefit-grid strong {
  text-transform: uppercase;
  font-size: 15px;
}

.benefit-grid p {
  font-size: 13px;
  color: #31495f;
}

.section {
  padding: 58px 0;
}

.section-head.center {
  text-align: center;
  margin: 0 auto 26px;
}

.eyebrow {
  color: #0759b5;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .7px;
}

.section h2,
.contact h2 {
  font-size: clamp(27px, 3vw, 37px);
  line-height: 1.15;
  color: #071a2d;
}

.services {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid #d8e2ea;
  border-radius: 9px;
  padding: 22px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 122px;
  box-shadow: 0 8px 28px rgba(6, 34, 65, .05);
}

.icon {
  color: #0759b5;
  font-size: 36px;
  line-height: 1;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 7px;
}

.service-card p {
  font-size: 14px;
  color: #25394d;
}

.ice-info {
  background: #f2f8fc;
  border-top: 1px solid #d6e5ef;
  border-bottom: 1px solid #d6e5ef;
}

.ice-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 26px;
  align-items: start;
}

.ice-info-text,
.ice-process {
  background: #fff;
  border: 1px solid #d8e2ea;
  border-radius: 9px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(6, 34, 65, .05);
}

.ice-info p {
  color: #25394d;
  font-size: 15px;
  margin-bottom: 13px;
}

.ice-info p:last-child {
  margin-bottom: 0;
}

.ice-process h3 {
  color: #071a2d;
  font-size: 22px;
  margin-bottom: 12px;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.process-list article {
  border-left: 4px solid #1592ff;
  background: #f8fcff;
  padding: 14px 16px;
}

.process-list h4 {
  color: #0759b5;
  font-size: 16px;
  margin-bottom: 5px;
}

.results {
  padding-top: 20px;
  background: #fff;
}

.slider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.result-card {
  text-align: center;
}

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 2.65;
  overflow: hidden;
  background: #cad8e2;
  border-radius: 6px;
  cursor: ew-resize;
  box-shadow: 0 12px 30px rgba(6,34,65,.12);
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid rgba(255,255,255,.94);
}

.label {
  position: absolute;
  bottom: 12px;
  z-index: 5;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  background: rgba(0, 12, 24, .7);
  border-radius: 3px;
}

.before-label { left: 10px; }
.after-label { right: 10px; }

.range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.handle {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: white;
  color: #071a2d;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  pointer-events: none;
}

.result-card h3 {
  font-size: 15px;
  margin-top: 10px;
}

.photo-cta {
  background:
    linear-gradient(90deg, rgba(0, 20, 43, .96), rgba(0, 41, 78, .90)),
    url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 38px 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.dark-mini {
  color: #1592ff;
}

.photo-cta h2 {
  font-size: 34px;
  line-height: 1.05;
}

.photo-cta p {
  color: #e6edf5;
}

.photo-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-button {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 7px;
  padding: 19px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-button span {
  font-size: 36px;
}

.contact {
  background: #f2f8fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-info p {
  color: #31495f;
}

.contact-details,
.contact-form {
  background: white;
  border: 1px solid #d8e2ea;
  border-radius: 9px;
  box-shadow: 0 8px 28px rgba(6, 34, 65, .05);
}

.contact-details {
  margin-top: 22px;
  padding: 22px;
}

.contact-details a {
  color: #0759b5;
  text-decoration: none;
  font-weight: 900;
}

.contact-form {
  padding: 26px;
}

.contact-form h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.contact-form label {
  display: block;
  font-weight: 900;
  margin: 13px 0 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #c8dbe7;
  border-radius: 6px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1592ff;
  box-shadow: 0 0 0 4px rgba(21,146,255,.11);
}

.form-note {
  margin-top: 10px;
  font-size: 13px;
  color: #44596b;
}

.info-strip {
  margin-top: 42px;
  background: white;
  border: 1px solid #d8e2ea;
  border-radius: 9px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.info-strip > div {
  padding: 24px;
  border-right: 1px solid #d8e2ea;
}

.info-strip > div:last-child { border-right: 0; }

.info-strip h3 {
  color: #0759b5;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.info-strip p {
  font-size: 14px;
  margin-bottom: 6px;
}

.footer {
  background: #031223;
  color: white;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 330px 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand img {
  width: 310px;
  height: auto;
  object-fit: contain;
}

.footer p {
  font-size: 13px;
  color: #bfd1df;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.page-hero {
  padding: 95px 0 55px;
  background: linear-gradient(135deg, #031223, #0d3157);
  color: white;
}

.page-content {
  background: #fff;
  padding: 55px 0 80px;
}

.legal-box {
  background: #f8fcff;
  border: 1px solid #d8e2ea;
  border-radius: 9px;
  padding: 34px;
  max-width: 900px;
}

.legal-box h2 {
  margin: 25px 0 10px;
  font-size: 24px;
}

.legal-box p {
  margin-bottom: 10px;
}

@media (max-width: 1050px) {
  .service-grid,
  .slider-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 800px) {
  .nav { min-height: 96px; }

  .logo-img img {
    width: 165px;
    height: auto;
  }

  .menu-btn { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 96px;
    left: 4%;
    right: 4%;
    background: #031223;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 12px;
  }

  nav.open { display: block; }

  nav a {
    display: block;
    padding: 13px 10px;
  }

  .hero {
    min-height: 620px;
    background-position: center right;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(1,12,26,.96), rgba(2,22,45,.74));
  }

  .benefit-grid,
  .service-grid,
  .ice-info-grid,
  .slider-grid,
  .photo-grid,
  .photo-buttons,
  .contact-grid,
  .info-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid div,
  .info-strip > div {
    border-right: 0;
    border-bottom: 1px solid #d8e2ea;
  }

  .service-card {
    grid-template-columns: 48px 1fr;
  }

  .footer p {
    text-align: left;
  }

  .footer-brand img {
    width: 240px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .btn {
    width: 100%;
    text-align: center;
    margin: 0 0 12px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .photo-cta h2 {
    font-size: 28px;
  }
}

/* Drei Hauptseiten + neue Verfahrensbereiche */
.services-note {
  margin: 24px auto 0;
  text-align: center;
  color: #31495f;
  font-size: 15px;
  font-weight: 700;
}

.procedures {
  background: #f2f8fc;
  border-top: 1px solid #d6e5ef;
  border-bottom: 1px solid #d6e5ef;
}

.procedures-intro {
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
  color: #25394d;
  font-size: 16px;
}

.procedures-intro p + p {
  margin-top: 10px;
}

.procedure-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 34px;
  flex-wrap: wrap;
}

.btn-dark {
  background: #0d3157;
  color: #fff;
}

.btn-dark:hover,
.btn-primary:hover {
  filter: brightness(.94);
}

.procedure-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

.procedure-feature {
  background: #fff;
  border: 1px solid #d8e2ea;
  border-radius: 9px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(6, 34, 65, .05);
}

.procedure-feature h3 {
  font-size: 22px;
  color: #071a2d;
  margin-bottom: 12px;
}

.procedure-feature p {
  color: #25394d;
  font-size: 15px;
}

.procedure-feature p + p {
  margin-top: 10px;
}

.mobile-feature {
  background: linear-gradient(135deg, #071a2d, #0d3157);
}

.mobile-feature h3,
.mobile-feature p {
  color: #fff;
}

.procedure-page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
}

.vacuum-info {
  background: #f2f8fc;
}

.vacuum-intro-card,
.vacuum-process-card {
  background: #fff;
  border: 1px solid #d8e2ea;
  border-radius: 9px;
  padding: 30px;
  box-shadow: 0 8px 28px rgba(6, 34, 65, .05);
  max-width: 1000px;
  margin: 0 auto;
}

.vacuum-intro-card p,
.vacuum-process-card p {
  color: #25394d;
  font-size: 15px;
}

.vacuum-intro-card p + p {
  margin-top: 13px;
}

.vacuum-process-card {
  margin-top: 22px;
}

.vacuum-process-card h3 {
  color: #071a2d;
  font-size: 24px;
  margin-bottom: 10px;
}

.whatsapp-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: block;
}

.contact-button.whatsapp:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, .10);
}

.info-strip.info-strip-two {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 800px) {
  .procedure-feature-grid,
  .info-strip.info-strip-two {
    grid-template-columns: 1fr;
  }

  .procedure-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .procedure-buttons .btn {
    margin: 0;
    text-align: center;
  }

  .vacuum-intro-card,
  .vacuum-process-card,
  .procedure-feature {
    padding: 22px;
  }
}

/* ==========================================================
   Layout-Reparatur 2026-08
   Eigene Stylesheet-Datei verhindert alte Browser-/Server-Caches.
   ========================================================== */

/* Verfahrensbereich auf der Startseite */
.procedures .section-head {
  max-width: 900px;
}

.procedures-intro {
  line-height: 1.65;
}

.procedure-buttons .btn {
  min-width: 190px;
  margin-right: 0;
  text-align: center;
}

.procedure-feature-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.procedure-feature {
  height: 100%;
}

/* Vakuumstrahlen: klar getrennte Inhaltskarten */
.vacuum-info .section-head {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.vacuum-info .section-head h2 {
  margin-top: 4px;
}

.vacuum-intro-card,
.vacuum-process-card {
  width: 100%;
  line-height: 1.65;
}

.vacuum-process-card .process-list {
  margin-bottom: 0;
}

/* WhatsApp/E-Mail-Bereich: feste Icon-Größe und kein Überlaufen */
.photo-grid,
.photo-buttons {
  min-width: 0;
}

.photo-buttons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-button {
  min-width: 0;
  min-height: 92px;
}

.contact-button > div {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-button .whatsapp-icon {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  min-width: 42px;
  object-fit: contain;
  flex: 0 0 42px;
}

.contact-button.mail span {
  width: 42px;
  min-width: 42px;
  text-align: center;
  line-height: 1;
}

@media (max-width: 950px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-buttons {
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .photo-buttons {
    grid-template-columns: 1fr;
  }

  .vacuum-intro-card,
  .vacuum-process-card,
  .procedure-feature {
    padding: 20px;
  }

  .procedure-page-hero {
    padding-top: 65px;
    padding-bottom: 45px;
  }
}
