:root {
  --bg: #f8fbfd;
  --surface: #ffffff;
  --muted: #eef6fa;
  --text: #1f2a36;
  --soft-text: #5f6f7d;
  --accent: #26b7d0;
  --accent-dark: #0788a7;
  --accent-soft: rgba(38, 183, 208, 0.12);
  --line: #d8e7ee;
  --shadow: 0 20px 60px rgba(12, 91, 118, 0.12);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-dark); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--accent-dark);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 800px; text-align: center; }
.section-pad { padding: 92px 0; }
.muted { background: var(--muted); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 253, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 231, 238, .85);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}
.brand { display: flex; align-items: center; min-width: 220px; }
.brand-logo,
.custom-logo { display: block; width: min(285px, 42vw); height: auto; }
.main-nav,
.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--soft-text);
  font-weight: 600;
}
.primary-menu { list-style: none; padding: 0; margin: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: white;
  background: var(--accent-dark);
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(7, 136, 167, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { color: white; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(7, 136, 167, .28); }
.btn-small { min-height: 44px; padding: 0 18px; }
.text-link { font-weight: 800; color: var(--accent-dark); border-bottom: 2px solid currentColor; }
.hero { position: relative; overflow: hidden; padding: 92px 0 108px; }
.hero:before {
  content: "";
  position: absolute;
  inset: -180px -20% auto auto;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(38,183,208,.20), rgba(38,183,208,0) 68%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .85fr);
  gap: 58px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  color: var(--accent-dark);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  margin: 0 0 16px;
}
h1, h2, h3 {
  font-family: inherit;
  line-height: 1.08;
  margin: 0;
  color: #172333;
  font-weight: 650;
}
h1 { font-size: clamp(2.55rem, 6.4vw, 5.35rem); letter-spacing: -.045em; font-weight: 650; }
h2 { font-size: clamp(2rem, 3.7vw, 3.25rem); letter-spacing: -.035em; font-weight: 650; }
h3 { font-size: 1.35rem; letter-spacing: -.012em; font-weight: 650; }
.lead {
  color: var(--soft-text);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 680px;
  margin: 28px 0 34px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.partner-badge,
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-dark);
  font-weight: 800;
  margin-top: 26px;
}
.partner-badge span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(7,136,167,.24);
  background: rgba(38,183,208,.10);
}
.partner-badge:hover,
.partner-link:hover { color: #045f77; }
.about-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 18px; }
.about-actions .partner-link { margin-top: 0; }

.partner-label {
  display: inline-block;
  line-height: 1;
}
.partner-badge.has-logo,
.partner-link.has-logo {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(7,136,167,.18);
  background: rgba(255,255,255,.68);
  box-shadow: 0 10px 28px rgba(12,91,118,.06);
}
.partner-badge.has-logo .partner-label,
.partner-link.has-logo .partner-label {
  white-space: nowrap;
  font-size: .98rem;
  line-height: 1;
}
.biogena-logo {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-width: 118px;
  max-height: 34px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.hero-card {
  position: relative;
  min-height: 540px;
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.58)),
    radial-gradient(circle at 28% 24%, rgba(38,183,208,.18), transparent 36%),
    radial-gradient(circle at 74% 68%, rgba(7,136,167,.16), transparent 42%),
    #eef6fa;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216,231,238,.95);
}
.hero-card:after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 28px;
}
.molecule {
  position: absolute;
  inset: 70px 70px auto auto;
  width: 170px;
  height: 170px;
  border-radius: 44px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.65);
  z-index: 2;
}
.molecule:before,
.molecule:after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(7,136,167,.55);
  transform-origin: left center;
}
.molecule:before { width: 78px; left: 47px; top: 58px; transform: rotate(32deg); }
.molecule:after { width: 82px; left: 45px; top: 105px; transform: rotate(-28deg); }
.molecule span {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent-dark);
  box-shadow: 0 0 0 10px rgba(38,183,208,.12);
}
.molecule span:nth-child(1) { left: 36px; top: 48px; }
.molecule span:nth-child(2) { right: 35px; top: 82px; }
.molecule span:nth-child(3) { left: 38px; bottom: 48px; }
.molecule span:nth-child(4) { right: 56px; top: 36px; background: var(--accent); }
.orb { position: absolute; border-radius: 999px; background: rgba(255,255,255,.55); filter: blur(.2px); }
.orb-one { width: 190px; height: 190px; right: 42px; top: 60px; }
.orb-two { width: 110px; height: 110px; left: 54px; bottom: 118px; background: rgba(7,136,167,.16); }
.hero-card-content {
  position: absolute;
  inset: auto 34px 34px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(47,45,42,.12);
  z-index: 3;
}
.mini-title { color: var(--accent-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; }
.hero-card-content h2 { margin-top: 10px; font-size: 2.15rem; font-weight: 650; }
.hero-card-content p { color: var(--soft-text); margin-bottom: 0; }
.intro p:last-child { font-size: 1.18rem; color: var(--soft-text); }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card,
.price-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(216,231,238,.95);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 14px 38px rgba(12,91,118,.06);
}
.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 22px;
}
.service-card p,
.price-card p,
.split p,
.page-content p { color: var(--soft-text); }
ul { padding-left: 1.1rem; margin-bottom: 0; color: var(--soft-text); }
li + li { margin-top: .35rem; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.steps { display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.step strong {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-dark);
  color: white;
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 800;
}
.step p { margin: .35rem 0 0; color: var(--soft-text); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.price-card.featured { border: 2px solid var(--accent); transform: translateY(-8px); position: relative; }
.popular {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.price {
  font-family: inherit;
  color: var(--accent-dark) !important;
  font-size: 2.75rem;
  line-height: 1;
  margin: 24px 0 8px;
  font-weight: 650;
  letter-spacing: -.03em;
}
.price-note { color: var(--soft-text); margin-top: 22px; }
.about { align-items: center; }
.portrait-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.68), rgba(255,255,255,.18)),
    radial-gradient(circle at 60% 25%, rgba(38,183,208,.14), transparent 36%),
    #e8f2f7;
  color: rgba(7,136,167,.5);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  box-shadow: var(--shadow);
}
.portrait-placeholder span { border: 1px solid rgba(7,136,167,.18); padding: 16px 22px; border-radius: 999px; background: rgba(255,255,255,.45); }
.notice { padding: 56px 0; background: #172333; color: white; }
.notice-inner { display: grid; grid-template-columns: .35fr 1fr; gap: 42px; align-items: start; }
.notice h2 { color: white; font-size: 2rem; }
.notice p { margin: 0; color: rgba(255,255,255,.78); }
.site-footer { background: #111b26; color: white; padding: 76px 0 28px; }
.site-footer h2 { color: white; }
.site-footer p { color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); gap: 22px; }
.contact-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); box-shadow: none; }
.contact-card span {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-card a,
.site-footer a { color: inherit; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 44px;
  padding-top: 24px;
  font-size: .95rem;
}
.page-main { background: var(--bg); }
.page-content { max-width: 860px; }
.page-content h1 { margin-bottom: 28px; }
.page-content a { color: var(--accent-dark); font-weight: 700; }
@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero-grid,
  .split,
  .notice-inner,
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-card { min-height: 440px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 26px, 1160px); }
  .section-pad { padding: 66px 0; }
  .header-inner { min-height: 74px; }
  .brand { min-width: auto; }
  .brand-logo,
  .custom-logo { width: 210px; }
  .btn-small { display: none; }
  .hero { padding: 62px 0 74px; }
  .hero-card { min-height: 420px; border-radius: 30px; }
  .molecule { width: 136px; height: 136px; inset: 38px 34px auto auto; }
  .hero-card-content { inset: auto 18px 18px; padding: 22px; }
  .hero-card-content h2 { font-size: 1.65rem; }
  .cards-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .service-card,
  .price-card,
  .contact-card { padding: 24px; }
  .step { grid-template-columns: 52px 1fr; padding: 22px; }
  .step strong { width: 44px; height: 44px; }
  .price-card.featured { transform: none; }
  .footer-bottom { flex-direction: column; }
}

.about-photo {
  width: 100%;
  min-height: 430px;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 36px;
  box-shadow: var(--shadow);
  background: #e8f2f7;
}

.lead p,
.hero-card-content div p,
.notice-inner div p,
.site-footer div p { margin: 0; }
.hero-card-content div p { color: var(--soft-text); }

@media (max-width: 640px) {
  .partner-badge.has-logo,
  .partner-link.has-logo { align-items: center; padding: 8px 11px; gap: 9px; }
  .partner-badge.has-logo .partner-label,
  .partner-link.has-logo .partner-label { font-size: .82rem; }
  .biogena-logo { max-width: 96px; max-height: 28px; }
}

/* V12: Biogena logo and partner text are visually separated */
.partner-badge.has-logo,
.partner-link.has-logo {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.partner-badge.has-logo .biogena-logo,
.partner-link.has-logo .biogena-logo {
  display: block;
  flex: 0 0 auto;
  height: 30px;
  width: auto;
  max-width: 148px;
  max-height: none;
  object-fit: contain;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(7,136,167,.22);
  background: #fff;
  box-shadow: 0 10px 28px rgba(12,91,118,.07);
  box-sizing: content-box;
  margin: 0;
}

.partner-badge.has-logo .partner-label,
.partner-link.has-logo .partner-label {
  display: inline-block;
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--accent-dark);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.partner-badge.has-logo:hover .partner-label,
.partner-link.has-logo:hover .partner-label {
  color: #045f77;
}

@media (max-width: 640px) {
  .partner-badge.has-logo,
  .partner-link.has-logo {
    gap: 14px;
    align-items: center;
  }

  .partner-badge.has-logo .biogena-logo,
  .partner-link.has-logo .biogena-logo {
    height: 24px;
    max-width: 120px;
    padding: 8px 13px;
  }

  .partner-badge.has-logo .partner-label,
  .partner-link.has-logo .partner-label {
    font-size: .82rem;
    white-space: normal;
  }
}


/* V13: feinere, Biogena-inspirierte H1/H2-Typografie */
h1,
h2 {
  font-family: "Helvetica Neue", "Segoe UI", Arial, Helvetica, sans-serif;
  color: #182838;
}

h1 {
  font-weight: 300 !important;
  letter-spacing: -0.026em !important;
  line-height: 1.07;
}

h2 {
  font-weight: 350 !important;
  letter-spacing: -0.018em !important;
  line-height: 1.12;
}

@media (max-width: 640px) {
  h1 {
    font-weight: 320 !important;
    letter-spacing: -0.018em !important;
  }

  h2 {
    font-weight: 360 !important;
    letter-spacing: -0.012em !important;
  }
}


/* V14: Biogena Gutscheinbereich */
.voucher-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(9, 151, 184, .08), transparent 30%),
    linear-gradient(180deg, #f8fcfe 0%, #ffffff 100%);
  border-top: 1px solid rgba(7, 136, 167, .08);
}

.voucher-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.voucher-copy {
  max-width: 560px;
}

.voucher-code {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  min-width: 245px;
  margin: 22px 0 12px;
  padding: 16px 20px;
  border: 1px solid rgba(7, 136, 167, .18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(13, 64, 87, .06);
}

.voucher-code span {
  color: var(--muted-text);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.voucher-code strong {
  color: var(--accent-dark);
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: .08em;
}

.voucher-note {
  margin: 0 0 24px;
  color: var(--muted-text);
  font-size: .92rem;
}

.voucher-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.voucher-images a {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 136, 167, .12);
  box-shadow: 0 24px 70px rgba(13, 64, 87, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.voucher-images a:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(13, 64, 87, .16);
}

.voucher-images img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
}

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

  .voucher-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .voucher-images {
    grid-template-columns: 1fr;
  }

  .voucher-code {
    width: 100%;
    min-width: 0;
  }

  .voucher-images img {
    aspect-ratio: auto;
  }
}


/* V15: Rundes Biogena-Rabatt-Element statt Gutscheinfotos */
.voucher-grid {
  align-items: center;
}

.voucher-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 100%;
}

.voucher-round-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(250px, 32vw, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: radial-gradient(circle at 30% 28%, rgba(255,255,255,.20), transparent 26%), linear-gradient(145deg, #7fb8c8 0%, #4c91a6 45%, #1d6f87 100%);
  box-shadow: 0 30px 80px rgba(13, 64, 87, .18), inset 0 0 0 10px rgba(255,255,255,.08);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .2s ease, box-shadow .2s ease;
}

.voucher-round-button::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
}

.voucher-round-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 90px rgba(13, 64, 87, .24), inset 0 0 0 10px rgba(255,255,255,.09);
}

.voucher-round-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.voucher-round-amount {
  position: relative;
  z-index: 1;
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.03em;
}

.voucher-round-text {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
}

.voucher-round-brand {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  opacity: .95;
}

/* voucher-mini-card removed in V17 */


.voucher-images,
.voucher-images a,
.voucher-images img {
  display: none !important;
}

@media (max-width: 900px) {
  .voucher-visual {
    padding-top: 8px;
  }
}

@media (max-width: 640px) {
  .voucher-round-button {
    width: min(82vw, 320px);
  }

  .voucher-round-amount {
    font-size: 3.5rem;
  }

  .voucher-round-text {
    font-size: 1.6rem;
  }
}


/* V16: Rabattcode nur links anzeigen; Einlösehinweis dezent */
.voucher-visual .voucher-mini-card {
  display: none !important;
}

.voucher-note {
  max-width: 520px;
  margin: 4px 0 24px;
  color: rgba(30, 47, 61, .56);
  font-size: .82rem;
  line-height: 1.55;
  font-weight: 400;
}

.voucher-code {
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .voucher-note {
    font-size: .78rem;
  }
}


/* V17: Zusätzliche Rabattcode-Karte rechts konsequent entfernen */
.voucher-visual > *:not(.voucher-round-button) {
  display: none !important;
}

.voucher-visual .voucher-mini-card,
.voucher-section .voucher-mini-card,
.voucher-mini-card,
.voucher-mini-label,
.voucher-mini-card strong {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}


/* V19: Produkt-Slider */
.product-slider-section {
  padding: 36px 0 58px;
  background: linear-gradient(180deg, rgba(238,246,250,.12) 0%, rgba(238,246,250,.68) 100%);
}

.slider-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.slider-heading h2 {
  margin-bottom: 12px;
}

.slider-intro {
  max-width: 760px;
  color: var(--soft-text);
}

.slider-controls {
  display: inline-flex;
  gap: 10px;
  flex-shrink: 0;
}

.slider-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.9);
  color: var(--accent-dark);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(12,91,118,.08);
}

.slider-nav:hover:not(:disabled) {
  background: var(--accent-dark);
  color: #fff;
}

.slider-nav:disabled {
  opacity: .45;
  cursor: default;
}

.product-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-slider-track::-webkit-scrollbar {
  display: none;
}

.product-slide {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(216,231,238,.95);
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(12,91,118,.08);
  overflow: hidden;
  scroll-snap-align: start;
}

.product-slide-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 20px;
  background: linear-gradient(180deg, #fafdff 0%, #eef6fa 100%);
}

.product-slide-media img {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
}

.product-slide-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 26px;
}

.product-slide-body h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.2;
}

.product-slide-body p {
  margin: 0;
  color: var(--soft-text);
}

.product-slide-body .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(7,136,167,.22);
  cursor: pointer;
  padding: 0;
}

.slider-dot.active {
  background: var(--accent-dark);
}

@media (max-width: 1023px) {
  .product-slider-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 699px) {
  .product-slider-section {
    padding: 24px 0 40px;
  }

  .slider-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .slider-controls {
    justify-content: flex-end;
  }

  .product-slider-track {
    grid-auto-columns: 88%;
  }

  .product-slide-media {
    min-height: 290px;
  }

  .product-slide-media img {
    max-height: 270px;
  }
}


/* V21: Vier Preis-Kacheln */
.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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


/* V23: Alle Preis-Kacheln gleich behandeln */
.price-card.featured {
  border: 1px solid var(--line) !important;
  transform: none !important;
  position: static !important;
}

.popular {
  display: none !important;
}


/* V24: Preis-Kacheln sauber ausrichten */
.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card h3 {
  margin: 0 0 22px;
  min-height: 3.7em;
  display: flex;
  align-items: flex-start;
  line-height: 1.18;
}

.price-card .price {
  margin: 0 0 10px;
}

.price-card ul {
  margin-top: 16px;
}

@media (max-width: 640px) {
  .price-card h3 {
    min-height: 0;
  }
}


/* V25: Preis-Kacheln vollständig harmonisieren */
.pricing-grid {
  align-items: stretch;
}

.price-card {
  min-height: 100%;
  display: flex !important;
  flex-direction: column;
}

.price-card h3 {
  min-height: 3.85em;
  margin: 0 0 20px !important;
  display: flex;
  align-items: flex-start;
}

.price-card .price {
  min-height: 1em;
  margin: 0 0 12px !important;
  display: flex;
  align-items: center;
  letter-spacing: -0.035em;
}

.price-card .price + p {
  min-height: 2.1em;
  margin: 0 !important;
  display: flex;
  align-items: flex-start;
}

.price-card ul {
  margin-top: 24px !important;
  padding-top: 0;
}

.price-card li {
  line-height: 1.55;
}

@media (min-width: 641px) {
  .price-card {
    min-height: 520px;
  }
}

@media (min-width: 1101px) {
  .price-card {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .price-card {
    min-height: 0;
  }

  .price-card h3,
  .price-card .price,
  .price-card .price + p {
    min-height: 0;
  }
}


/* V26: Blog und Informationsmaterial */
.blog-intro {
  max-width: 760px;
  color: var(--soft-text);
  font-size: 1.16rem;
}

.blog-list-section {
  padding-top: 56px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--surface);
  border: 1px solid rgba(216,231,238,.95);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(12,91,118,.07);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--muted);
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  flex: 1;
}

.blog-card h2 {
  font-size: 1.45rem;
  margin: 0;
}

.blog-card h2 a:hover {
  color: var(--accent-dark);
}

.blog-meta {
  margin: 0;
  color: var(--accent-dark) !important;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.blog-excerpt p {
  margin: 0;
  color: var(--soft-text);
}

.blog-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.pagination {
  margin-top: 42px;
  color: var(--soft-text);
}

.pagination .nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.pagination .current {
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.empty-state {
  padding: 42px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.single-post-image {
  margin-top: -42px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--muted);
}

.single-post-image img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.back-link {
  margin-top: 42px;
}

.info-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.info-download-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(12,91,118,.06);
}

.info-download-card h3 {
  margin-top: 0;
  color: var(--text);
}

.info-download-card p {
  margin-bottom: 0;
  color: var(--soft-text);
}

.content-body a {
  color: var(--accent-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.content-body ul,
.content-body ol {
  margin: 1.2rem 0;
}

.content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

@media (max-width: 1023px) {
  .blog-grid,
  .info-download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .main-nav,
  .primary-menu {
    gap: 14px;
    font-size: .92rem;
    flex-wrap: wrap;
  }

  .blog-grid,
  .info-download-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-body {
    padding: 24px;
  }
}


/* V27: Mobiles Burger-Menü */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(12,91,118,.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 920px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 78px;
    gap: 14px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand-logo,
  .custom-logo {
    width: min(238px, 58vw);
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-inner > .btn {
    order: 2;
    min-height: 42px;
    padding: 0 16px;
    font-size: .92rem;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    color: var(--text);
    z-index: 40;
  }

  .mobile-menu-open .main-nav {
    display: flex;
  }

  .main-nav a,
  .primary-menu a {
    display: block;
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--text);
    font-weight: 700;
  }

  .main-nav a:hover,
  .primary-menu a:hover {
    background: var(--muted);
    color: var(--accent-dark);
  }

  .primary-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .primary-menu li {
    margin: 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner > .btn {
    display: none;
  }

  .brand-logo,
  .custom-logo {
    width: min(225px, 68vw);
  }

  .main-nav {
    left: 14px;
    right: 14px;
  }
}


/* V28: Kleine interne SEO-Verlinkung */
.seo-crosslinks {
  padding: 30px 0;
  background: var(--surface);
  border-top: 1px solid rgba(216,231,238,.72);
  border-bottom: 1px solid rgba(216,231,238,.72);
}

.seo-crosslinks-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  color: var(--soft-text);
  font-size: .96rem;
}

.seo-crosslinks-inner span {
  font-weight: 700;
  color: var(--text);
}

.seo-crosslinks-inner a {
  color: var(--accent-dark);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 640px) {
  .seo-crosslinks-inner {
    justify-content: flex-start;
  }
}
