/* --- 1. CORE VARIABLES & RESET --- */
:root {
  /* Branding Colors */
  /* --primary: var(--primaer_1); */
  --primary-dark: #003366;
  --accent: #00aceb;
  --text-main: #333333;
  /* --text-muted: var(--dunkelgrau); */
  --bg-light: #f2f7fb;
  /* --bg-white: var(--weiss); */
  --whatsapp: #25d366;
  /* UI Config */
  --container: 1600px;
  --radius: 8px;
  --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-stack: "Open Sans", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.headline-box {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 900;
  font-size: 38px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
/* Fließtext & Standard */
body,
p,
a,
li,
button,
input,
label {
  font-family: "Open Sans", sans-serif;
}
h1,
h2,
h3 {
  font-family: "Source Sans 3", sans-serif !important;
  font-weight: 900;
  color: var(--primaer_1);
  line-height: 1.2;
  margin-bottom: 1rem;
}
body {
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--weiss);
  -webkit-font-smoothing: antialiased;
}
/* Typography */
h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
h3 {
  font-size: 1.5rem;
}
p {
  margin-bottom: 1.5rem;
  color: var(--dunkelgrau);
  font-size: 1.05rem;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}
.hero h1 {
  color: var(--weiss);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero p {
  color: var(--weiss);
  font-size: 1.05rem;
  line-height: 1.6;
}
/* Desktop Bilder (16:9) – per CSS-Variable steuerbar */
.slide-1 {
  background-image: var(--slide-desktop-1, url("/all/landingpage/assets/img/pp/hero-desktop-03-16x9.webp"));
}
.slide-2 {
  background-image: var(--slide-desktop-2, url("/all/landingpage/assets/img/pp/hero-desktop-01-16x9.webp"));
}
.slide-3 {
  background-image: var(--slide-desktop-3, url("/all/landingpage/assets/img/pp/hero-desktop-02-16x9.webp"));
}
@media (max-width: 768px) {
  .slide-1 {
    background-image: var(--slide-mobile-1, url("/all/landingpage/assets/img/pp/hero-mobile-03-9x16.webp"));
  }
  .slide-2 {
    background-image: var(--slide-mobile-2, url("/all/landingpage/assets/img/pp/hero-mobile-01-9x16.webp"));
  }
  .slide-3 {
    background-image: var(--slide-mobile-3, url("/all/landingpage/assets/img/pp/hero-mobile-02-9x16.webp"));
  }
}
.text-white {
  color: var(--weiss);
}
.subheadline {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
/* Utilities */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 30;
}
.section-padding {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }
}
.bg-light {
  background-color: var(--bg-light);
}
.bg-primary {
  background-color: var(--primaer_1);
}
.text-center {
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Bullet Lists */
ul.benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
ul.benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: var(--text-main);
}
ul.benefits li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}
/* --- 2. COMPONENTS --- */
/* Buttons */
.btn:not(.cookie-consent-button-margin) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  gap: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .btn {
    padding: 12px 18px;
  }
}
.btn-primary:not(.cookie-consent-button-margin) {
  background-color: var(--whatsapp);
  color: var(--weiss);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-primary:hover:not(.cookie-consent-button-margin){
  background-color: #1ebc57;
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: var(--primaer_1);
  color: var(--weiss);
}
.btn-secondary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primaer_1);
  color: var(--primaer_1);
}
.btn-outline:hover {
  background: var(--primaer_1);
  color: var(--weiss);
}
.split-text .btn {
  width: auto;
  display: inline-block;
}
/* Floating WA */
.float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--weiss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s;
}
.float-wa:hover {
  transform: scale(1.1);
}
/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--weiss);
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-top: 4px solid var(--primaer_1);
  flex-wrap: wrap;
  gap: 15px;
}
/* --- 3. SECTIONS --- */
/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--primaer_1);
}
.logo__img {
  height: 48px;
  width: auto;
  display: block;
}
.logo span {
  color: var(--accent);
}
.reviewer-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--weiss);
  flex-shrink: 0;
}
/* =========================
   Grundsetup
========================= */
.hero {
  position: relative;
  height: 40vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #eee;
}
@media (max-width: 768px) {
  .hero {
    align-items: flex-start;
  }
  .container {
    margin-top: 0; /* sicherheitshalber neutralisieren */
  }
  .hero-content-wrap {
    margin-top: 40px; /* ← exakt hierhin gehört der Abstand */
  }
  .split-text {
    padding-left: 0;
    padding-right: 0;
  }
}
/* =========================
   Slides (SLIDER-KOMPATIBEL)
========================= */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0; /* WICHTIG */
  transition: opacity 0.8s ease; /* WICHTIG */
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
/* =========================
   Content über allem
========================= */
/* Content-Wrap */
.hero-content-wrap {
  position: relative;
  z-index: 40;
  max-width: 500px;
  width: 100%;
}
/* Content selbst */
.hero-content {
  position: relative;
  z-index: 30;
}
/* =========================
   OVERLAYS
========================= */
/* Full Overlay – gesamter Hero (Mobile) */
.hero-overlay-full {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 107, 173, 1) 0%, rgba(0, 107, 173, 0.2) 50%, rgba(0, 107, 173, 0) 70%, rgba(0, 107, 173, 0) 100%);
  z-index: 10;
  pointer-events: none;
  display: none;
}
/* Box Overlay – nur hinter Content (Desktop) */
.hero-overlay-box {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: rgba(0, 107, 173, 0.75);
  z-index: 20;
  pointer-events: none;
  border-radius: 0 8px 8px 0;
}
/* =========================
   WEISSER BALKEN (Desktop)
========================= */
.hero-content-wrap::before {
  content: "";
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: -66px; /* 50px Abstand + 16px Balken */
  width: 16px;
  background: var(--weiss);
  border-radius: 8px 0 0 8px;
  z-index: 25;
  pointer-events: none;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  /* Full Overlay an, Box Overlay aus */
  .hero-overlay-full {
    display: block;
  }
  .hero-overlay-box {
    display: none;
  }
  /* Weißer Balken aus */
  .hero-content-wrap::before {
    display: none;
  }
  /* Content volle Breite */
  .hero-content-wrap {
    max-width: 100%;
  }
  .hero h1,
  .hero p {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  }
}
@media (max-width: 768px) {
  .ref-scroller {
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .ref-btn {
    display: none; /* Pfeile ausblenden */
  }
  .ref-card {
    scroll-snap-align: start;
  }
  .ref-nav {
    overflow: visible;
  }
}
@media (max-width: 768px) {
  ul.benefits {
    padding-left: 0;
  }
  ul.benefits li {
    display: inline-block; /* macht LI zentrierbar */
    text-align: left; /* Text linksbündig */
    padding-left: 22px; /* Platz für Häkchen */
  }
  ul.benefits li::before {
    left: 0; /* bleibt links vom Text */
  }
}
/* Systems Grid */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}
.system-card {
  background: var(--weiss);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}
.system-card:hover {
  transform: translateY(-5px);
}
.card-img {
  width: 100%;
  /* height: 220px; */
  object-fit: cover;
  background: #ddd;
}
.card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-cta {
  margin-top: auto;
  width: 100%;
}
/* Split Layout – immer 50/50 */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.split-img-wrap {
  order: 1;
}
/* Reverse: Bild rechts, Text links */
.split-row.reverse .split-text {
  order: 1;
}
.split-row.reverse .split-img-wrap {
  order: 2;
}
/* Bild sauber füllen */
.split-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
/* Textspalte nutzt ihre 50 % sichtbar */
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
}
.split-text .btn {
  align-self: flex-start;
}
/* Standard: Text näher zur Bildkante */
.split-row .split-text {
  padding-left: 40px;
}
/* Reverse: Text näher zur Bildkante (rechts) */
.split-row.reverse .split-text {
  padding-right: 40px;
  padding-left: 0;
}
@media (max-width: 768px) {
  .split-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Standard: Text näher zur Bildkante */
  .split-row.reverse .split-img-wrap {
    order: 1;
  }
  .split-row .split-text {
    padding-left: 0px;
    padding-right: 0;
  }
  /* Reverse: Text näher zur Bildkante (rechts) */
  .split-row.reverse .split-text {
    padding-right: 0px;
    padding-left: 0;
  }
}
/* Catalog Section */
.catalog-box {
  padding: 60px;
  display: flex;
  gap: 100px;
  align-items: center;
}
.catalog-img {
  max-width: 600px;
  /*box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
          transform: rotate(-2deg);*/
}
@media (max-width: 768px) {
  .catalog-box {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .catalog-img {
    max-width: 100%;
  }
}
/* === Split Layout (Media / Content) === */
.split-media {
  display: flex;
  justify-content: flex-end;
}
.split-content {
  flex: 1;
}
@media (max-width: 768px) {
  .split-media {
    width: 100%;
  }
}
/* Contact Form */
.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.contact-wrapper-2 {
  max-width: 1200px;
  margin: 0 auto;
}
.form-card {
  background: var(--weiss);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-soft);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.captcha-box {
  background: #f3f4f6;
  padding: 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
/* --- SOCIAL PROOF EXTRAS --- */
.quote {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}
.reviewer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.reviewer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.reviewer span {
  line-height: 1;
}
.review-card {
  text-align: center;
}
/* === Sterne Bewertung === */
.stars {
  color: #ffd700;
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
/* ===== Berater-Zitat Section ===== */
.berater-quote-section {
  padding: 4rem 0;
  text-align: center;
}
.berater-quote-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.berater-image-wrapper {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--weiss); /* optional Rahmen */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.berater-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* Zitatstil – wirkt seriös ohne zu groß */
.berater-quote-section .berater-quote {
  font-size: 1.5rem;
  line-height: 1.2;
  font-style: italic;
  font-weight: 800;
  color: var(--primaer_1);
  margin: 0;
  padding: 0 40px;
  text-align: center;
}
.quote-author {
  display: block;
  margin-top: 0;
  font-size: 0.95rem;
  color: #666;
  font-style: normal;
}
/* Optional: Responsive Anpassung */
@media (min-width: 768px) {
  .berater-quote-inner {
    align-items: center;
    gap: 2rem;
    text-align: left;
  }
}
/* === Video Section === */
/* === Video mit Play Overlay === */
.video-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 1rem auto 4rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.video-wrapper video {
  width: 100%;
  display: block;
}
/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.3s ease;
}
/* Play Button */
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn span {
  position: relative;
  left: 3px; /* ⬅️ 3px nach rechts */
  font-size: 2rem;
  line-height: 1;
}
.video-play-btn:hover {
  transform: scale(1.1);
}
/* Overlay ausblenden wenn Video läuft */
.video-wrapper.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}
/* --- FAQ --- */
/* === FAQ Akkordeon === */
.faq-container .lp-accordion {
  margin-top: 3rem;
  text-align: left;
}
.faq-container .lp-accordion-item {
  border-bottom: 1px solid #ddd;
}
.faq-container .lp-accordion-trigger {
  color: var(--text-main);
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  position: relative;
}
/* Plus / Minus */
.faq-container .lp-accordion-trigger::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.faq-container .lp-accordion-item.active .lp-accordion-trigger::after {
  content: "–";
}
/* Content */
.faq-container .lp-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-container .lp-accordion-content p {
  padding-bottom: 1.25rem;
  margin: 0;
}
/* === Referenzen mit Button-Navigation (Desktop) === */
.ref-nav {
  position: relative;
}
/* Scroller: kein Wischen, kein Scrollbar */
.ref-scroller {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  padding-bottom: 10px;
}
/* Karten */
.ref-card {
  flex: 0 0 320px;
  background: var(--weiss);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}
/* dezenter Hover (nur Desktop mit Maus) */
@media (hover: hover) {
  .ref-card:hover {
    transform: translateY(-6px);
  }
}
.ref-btn span {
  position: relative;
  top: -3px;
}
/* Bilder */
.ref-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
/* Textbereich */
.ref-info {
  padding: 20px;
}
/* === Pfeil-Buttons === */
.ref-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
/* Position */
.ref-btn-left {
  left: -24px;
}
.ref-btn-right {
  right: -24px;
}
/* Mobile: Pfeile ausblenden */
@media (max-width: 768px) {
  .ref-btn {
    display: none;
  }
}
/* === E-Mail Kontaktformular === */
#e-mail-kontakt .form-card {
  margin: 0 auto;
}
#e-mail-kontakt .form-group a {
  text-decoration: underline;
}
#e-mail-kontakt .form-group a:hover {
  text-decoration: none;
}
#e-mail-kontakt input[type="checkbox"] {
  margin-right: 6px;
}
#e-mail-kontakt .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}
/* === Footer === */
.lp-site-footer {
  background: var(--primaer_1);
  padding: 60px 0 40px;
  color: var(--weiss);
}
.lp-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* Top-Zeile */
.lp-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.lp-footer-top img {
  height: 60px;
  width: auto;
  display: inline-block;
}
.lp-footer-claim {
  position: relative;
  font-size: 1.3rem;
  font-weight: 600;
  max-width: 520px;
  text-align: right;
  margin-top: 27px;
}
/* Bottom-Zeile */
.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}
.lp-footer-contact {
  opacity: 0.9;
}
.lp-footer-legal a {
  color: var(--weiss);
  text-decoration: none;
  font-weight: 500;
}
.lp-footer-legal a:hover {
  text-decoration: underline;
}
/* Mobile */
@media (max-width: 768px) {
  .lp-footer-top,
  .lp-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .lp-footer-claim {
    text-align: center;
  }
}
@font-face {
  font-family: "Source Sans 3";
  src: url("/all/landingpage/fonts/source-sans-3-v19-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("/all/landingpage/fonts/source-sans-3-v19-latin-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* Fjalla One – für FKB Headlines */
@font-face {
  font-family: "Fjalla One";
  src: url("/all/landingpage/fonts/fjalla-one-400.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* --- Brand Overrides: FKB --- */
body[data-brand="fkb"] .headline-box { font-family: "Fjalla One", sans-serif; font-weight: 400; }
body[data-brand="fkb"] h1,
body[data-brand="fkb"] h2,
body[data-brand="fkb"] h3 { font-family: "Fjalla One", sans-serif !important; font-weight: 400; text-transform: uppercase; }
body[data-brand="fkb"] {
  --slide-desktop-1: url("/all/landingpage/assets/img/fkb/hero-desktop-03-16x9.webp");
  --slide-desktop-2: url("/all/landingpage/assets/img/fkb/hero-desktop-01-16x9.webp");
  --slide-desktop-3: url("/all/landingpage/assets/img/fkb/hero-desktop-02-16x9.webp");
  --slide-mobile-1: url("/all/landingpage/assets/img/fkb/hero-mobile-03-9x16.webp");
  --slide-mobile-2: url("/all/landingpage/assets/img/fkb/hero-mobile-01-9x16.webp");
  --slide-mobile-3: url("/all/landingpage/assets/img/fkb/hero-mobile-02-9x16.webp");
}
body[data-brand="fkb"][data-page="poolabdeckung"] {
  --slide-desktop-1: url("/all/landingpage/assets/img/fkb/poolabdeckung-hero-desktop-03-16x9.webp");
  --slide-desktop-2: url("/all/landingpage/assets/img/fkb/poolabdeckung-hero-desktop-01-16x9.webp");
  --slide-desktop-3: url("/all/landingpage/assets/img/fkb/poolabdeckung-hero-desktop-02-16x9.webp");
  --slide-mobile-1: url("/all/landingpage/assets/img/fkb/poolabdeckung-hero-mobile-03-9x16.webp");
  --slide-mobile-2: url("/all/landingpage/assets/img/fkb/poolabdeckung-hero-mobile-01-9x16.webp");
  --slide-mobile-3: url("/all/landingpage/assets/img/fkb/poolabdeckung-hero-mobile-02-9x16.webp");
}

/* Open Sans – für Fließtext */
@font-face {
  font-family: "Open Sans";
  src: url("/all/landingpage/fonts/open-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("/all/landingpage/fonts/open-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
