/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --accent:        #1d4ed8;
  --accent-deep:   #1e3a8a;
  --accent-bright: #3b82f6;
  --accent-soft:   #dbeafe;
  --accent-glow:   rgba(29, 78, 216, 0.22);
  --text:          #0f172a;
  --muted:         #475569;
  --muted-2:       #64748b;
  --bg:            #ffffff;
  --surface:       #f8fafc;
  --surface-2:     #e2e8f0;
  --border:        rgba(15, 23, 42, 0.1);
  --border-med:    rgba(15, 23, 42, 0.15);
  --radius:        14px;
  --radius-sm:     9px;
  --font:          'Montserrat', system-ui, sans-serif;
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h:         68px;
  --section-y:     clamp(3.5rem, 8vw, 5.5rem);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  padding-bottom: 72px;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font); cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { width: min(1140px, 100% - 2rem); margin-inline: auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  height: var(--nav-h); z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 20px rgba(15,23,42,.06);
  backdrop-filter: blur(12px);
}
.nav::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-deep) 0%, var(--accent-bright) 55%, var(--accent) 100%);
}
.nav__inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.nav__logo {
  display: inline-flex; align-items: center;
  font-family: var(--font); text-decoration: none; flex-shrink: 1; min-width: 0;
  gap: 0;
}
.nav__logo-stack { display: flex; flex-direction: column; gap: .07rem; min-width: 0; }
.nav__logo-text {
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  color: var(--text); white-space: nowrap;
}
.nav__logo-fenster {
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -.035em;
}
.nav__logo-suffix {
  font-weight: 700;
  color: var(--muted-2);
  font-size: .92em;
  letter-spacing: -.02em;
}
.nav__logo-sub {
  font-size: .58rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: var(--muted-2); line-height: 1.2;
}
/* remove old img style */
.nav__logo-img { display: none; }
.nav__right { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.nav__phone-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem .75rem .38rem .44rem; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, #e2e8f0);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 55%, #fff) 0%, #fff 100%);
  box-shadow: 0 2px 10px -4px rgba(15,23,42,.12);
  transition: border-color .2s, box-shadow .2s, transform .15s;
  text-decoration: none; color: inherit;
}
.nav__phone-pill:hover {
  border-color: color-mix(in srgb, var(--accent) 48%, #e2e8f0);
  box-shadow: 0 6px 18px -6px var(--accent-glow);
  transform: translateY(-1px);
}
.nav__phone-ic {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav__phone-ic svg { width: 14px; height: 14px; }
.nav__phone-label { display: flex; flex-direction: column; line-height: 1.1; }
.nav__phone-num { font-weight: 800; font-size: .88rem; color: var(--accent-deep); letter-spacing: -.02em; }
.nav__phone-meta { font-size: .58rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted-2); }
@media (max-width: 600px) { .nav__phone-label { display: none; } .nav__phone-pill { padding: .38rem; } }
.nav__burger {
  width: 40px; height: 40px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  border: 1px solid var(--border); border-radius: 10px; background: var(--surface);
  transition: background .15s, border-color .15s;
}
.nav__burger:hover { background: var(--surface-2); border-color: var(--border-med); }
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 1px; }

/* ============================================================
   DRAWER
   ============================================================ */
.drawer {
  position: fixed; inset: 0; z-index: 80;
  pointer-events: none; visibility: hidden;
}
.drawer.open { pointer-events: auto; visibility: visible; }
.drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.45);
  opacity: 0; transition: opacity .25s ease; border: none; padding: 0; margin: 0; cursor: pointer;
  width: 100%; height: 100%;
}
.drawer.open .drawer__backdrop { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(22rem, 88vw);
  background: #fff; box-shadow: -8px 0 48px rgba(15,23,42,.14);
  transform: translateX(100%); transition: transform .28s var(--ease-out);
  display: flex; flex-direction: column;
}
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
.drawer__title { font-weight: 700; font-size: .95rem; }
.drawer__close {
  width: 36px; height: 36px; border: none; background: var(--surface);
  border-radius: 8px; font-size: 1.4rem; line-height: 1;
  color: var(--text); transition: background .15s;
}
.drawer__close:hover { background: var(--surface-2); }
.drawer__nav { flex: 1; display: flex; flex-direction: column; padding: .5rem 0; overflow-y: auto; }
.drawer__nav a {
  padding: .9rem 1.25rem; font-weight: 600; font-size: .96rem;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  color: var(--text); display: block;
  transition: color .15s, background .15s, padding-left .15s;
}
.drawer__nav a:hover { color: var(--accent); background: color-mix(in srgb, var(--accent-soft) 45%, transparent); padding-left: 1.55rem; }
.drawer__nav-cta {
  margin: .85rem 1.25rem .25rem !important;
  padding: .8rem !important; border-radius: 10px !important;
  background: var(--accent) !important; color: #fff !important;
  text-align: center; border-bottom: none !important;
  box-shadow: 0 4px 14px -6px var(--accent-glow);
}
.drawer__nav-cta:hover { background: var(--accent-deep) !important; padding-left: 1.25rem !important; color: #fff !important; }
.drawer__call {
  margin-top: auto; padding: 1.1rem 1.25rem 1.6rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), #fff);
}
.drawer__call-label {
  margin: 0 0 .35rem; font-size: .62rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2);
}
.drawer__call-num { display: block; font-size: 1.15rem; font-weight: 800; color: var(--accent-deep); }
.drawer__call-num:hover { color: var(--accent); }
.drawer__call-meta { margin: .45rem 0 0; font-size: .82rem; color: var(--muted); line-height: 1.4; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex; flex-direction: column;
  padding-top: var(--nav-h);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(9,16,35,.88) 0%, rgba(9,16,35,.65) 46%, rgba(9,16,35,.3) 100%);
}
.hero__body {
  position: relative; z-index: 2; flex: 1;
  display: flex; align-items: center; padding: 3rem 0 3.5rem;
}
.hero__grid {
  display: grid; gap: 2.75rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero__left { display: flex; flex-direction: column; gap: 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .3rem .8rem; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  font-size: .7rem; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: rgba(255,255,255,.92);
  margin-bottom: 1.4rem; width: fit-content;
  backdrop-filter: blur(8px);
}
.hero__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); flex-shrink: 0; }
.hero__h1 {
  margin: 0; font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.03em;
  color: #fff; text-wrap: balance;
}
.hero__h1 em { font-style: normal; color: var(--accent-bright); }
.hero__sub {
  margin: 1.2rem 0 0; font-size: 1.06rem;
  color: rgba(255,255,255,.76); max-width: 44ch; line-height: 1.65;
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.75rem;
}
.hero__trust-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .7rem; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
}
.hero__trust-chip-ic { color: #4ade80; font-size: .7rem; }

/* Hero card */
.hero__card {
  background: #fff; border-radius: 22px;
  box-shadow: 0 40px 80px -24px rgba(9,16,35,.48), 0 0 0 1px rgba(255,255,255,.05);
}
.hero__card-head {
  padding: 1.6rem 1.6rem 1.35rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 50%, #fff) 0%, #fff 100%);
  border-bottom: 1px solid var(--border); border-radius: 22px 22px 0 0;
}
.hero__card-heading {
  margin: 0 0 .8rem; font-weight: 800; font-size: 1rem;
  letter-spacing: -.01em; color: var(--text);
}
.hero__search { display: flex; gap: .5rem; }
.hero__search-input {
  flex: 1; min-width: 0; padding: .72rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--border-med); font-family: var(--font);
  font-size: .95rem; color: var(--text); background: var(--surface);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.hero__search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent);
}
.hero__search-btn {
  padding: .72rem 1.25rem; border-radius: 10px; border: none;
  background: var(--accent); color: #fff; font-size: .9rem; font-weight: 700;
  white-space: nowrap; box-shadow: 0 4px 14px -4px var(--accent-glow);
  transition: background .2s, transform .15s;
}
.hero__search-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.hero__card-body { padding: 1.35rem 1.6rem 1.6rem; position: relative; }
.hero__checks { display: flex; flex-direction: column; gap: .6rem; }
.hero__check { display: flex; align-items: flex-start; gap: .65rem; font-size: .88rem; line-height: 1.4; }
.hero__check-mark {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: .04rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 900;
}
.hero__badge {
  position: absolute; top: -1.35rem; right: 1.5rem;
  width: 76px; height: 76px; border-radius: 50%;
  background: conic-gradient(from 120deg, #f59e0b, #ef4444, #f59e0b);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; line-height: 1.1;
  box-shadow: 0 8px 28px -8px rgba(239,68,68,.55), 0 0 0 3px rgba(255,255,255,.9);
  animation: badge-pop 3.5s ease-in-out infinite;
}
.hero__badge-num { font-size: 1.45rem; font-weight: 900; letter-spacing: -.03em; }
.hero__badge-line { font-size: .48rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; opacity: .9; }
@keyframes badge-pop {
  0%,100% { transform: scale(1) rotate(-4deg); }
  50% { transform: scale(1.06) rotate(-4deg); }
}
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__left { align-items: center; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__trust { justify-content: center; }
  .hero__card { max-width: 480px; margin-inline: auto; }
}

/* ============================================================
   USP RIBBON
   ============================================================ */
.usp-ribbon { background: var(--accent-deep); padding: .8rem 0; }
.usp-ribbon__list {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: .5rem 1.5rem;
}
.usp-ribbon__item { display: flex; align-items: center; gap: .45rem; font-size: .83rem; font-weight: 600; color: #fff; }
.usp-ribbon__ic { color: #60a5fa; font-size: .8rem; font-weight: 900; }

/* ============================================================
   BRAND TICKER
   ============================================================ */
.brand-ticker { padding: 1.5rem 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.brand-ticker__label {
  text-align: center; margin-bottom: 1.1rem;
  font-size: .66rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted-2);
}
.brand-ticker__track {
  display: flex; gap: 1rem; align-items: center;
  width: max-content;
  animation: ticker 24s linear infinite;
}
.brand-ticker__track:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-chip {
  display: inline-flex; align-items: center;
  padding: .52rem 1.2rem; border-radius: 10px;
  border: 1px solid var(--border); background: #fff;
  font-size: .82rem; font-weight: 800; color: var(--accent-deep);
  white-space: nowrap; letter-spacing: -.01em;
  box-shadow: 0 2px 8px -4px rgba(15,23,42,.07);
  transition: border-color .2s, box-shadow .2s;
}
.brand-chip:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--section-y) 0; }
.section--surface { background: var(--surface); }
.section--deep { background: var(--accent-deep); color: #fff; }
.section--gradient {
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--accent-soft) 50%, #fff) 100%);
}
.section__head { margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem); }
.section__head--center { text-align: center; }
.section__head--center .section__lead { margin-inline: auto; }
.section__eyebrow {
  margin: 0 0 .55rem; font-size: .68rem; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase; color: var(--accent);
}
.section--deep .section__eyebrow { color: #93c5fd; }
.section__title {
  margin: 0; font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.12;
  text-wrap: balance;
}
.section--deep .section__title { color: #fff; }
.section__lead {
  margin: .85rem 0 0; color: var(--muted); font-size: 1.02rem;
  line-height: 1.65; max-width: 60ch;
}
.section--deep .section__lead { color: rgba(255,255,255,.72); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.prod-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.prod-tab {
  padding: .58rem 1.2rem; border-radius: 999px;
  border: 1.5px solid var(--border); background: #fff;
  font-size: .86rem; font-weight: 700; color: var(--muted);
  transition: all .18s ease; cursor: pointer;
}
.prod-tab:hover:not(.active) {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  color: var(--accent-deep);
}
.prod-tab.active {
  border-color: var(--accent); background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px -6px var(--accent-glow);
}
.prod-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}
.prod-card {
  border-radius: 18px; border: 1px solid var(--border);
  background: #fff; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px -6px rgba(15,23,42,.07);
  transition: border-color .22s, box-shadow .22s, transform .22s var(--ease-out);
}
.prod-card:hover {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--border));
  box-shadow: 0 20px 52px -22px rgba(15,23,42,.24);
  transform: translateY(-4px);
}
.prod-card__fig { margin: 0; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.prod-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease-out); }
.prod-card:hover .prod-card__img { transform: scale(1.06); }
.prod-card__body { padding: 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; gap: .35rem; }
.prod-card__cat {
  font-size: .65rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
}
.prod-card__name { margin: 0; font-weight: 800; font-size: 1.04rem; line-height: 1.2; color: var(--text); }
.prod-card__sum { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.55; flex: 1; }
.prod-card__brands { display: flex; flex-wrap: wrap; gap: .35rem; padding-top: .2rem; }
.brand-pill {
  padding: .18rem .58rem; border-radius: 999px; font-size: .68rem; font-weight: 700;
  color: var(--accent-deep); background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
}
.prod-card__footer { padding: 0 1.2rem 1.2rem; }
.prod-card__cta {
  display: flex; align-items: center; justify-content: center;
  min-height: 44px; border-radius: 12px; font-size: .85rem; font-weight: 700;
  border: 1.5px solid color-mix(in srgb, var(--accent) 26%, var(--border));
  background: color-mix(in srgb, var(--accent) 6%, #fff);
  color: var(--accent-deep); transition: all .18s; cursor: pointer;
  width: 100%;
}
.prod-card__cta:hover {
  background: color-mix(in srgb, var(--accent) 11%, #fff);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  transform: translateY(-1px);
}

/* ============================================================
   ADVISOR
   ============================================================ */
.advisor-grid {
  display: grid; gap: 2rem 3.5rem;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
}
@media (max-width: 780px) {
  .advisor-grid { grid-template-columns: 1fr; }
  .advisor-photo-wrap { max-width: 320px; margin-inline: auto; }
}
.advisor-photo-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 72px -24px rgba(15,23,42,.3);
}
.advisor-photo-wrap img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.advisor-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(0deg, rgba(9,16,35,.85) 0%, transparent 100%);
}
.advisor-overlay-name { font-weight: 800; font-size: .96rem; color: #fff; }
.advisor-overlay-role { font-size: .74rem; color: rgba(255,255,255,.65); margin-top: .1rem; }
.advisor-body { display: flex; flex-direction: column; gap: 1.35rem; }
.advisor-bullets { display: flex; flex-direction: column; gap: .65rem; }
.advisor-bullet { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; color: var(--muted); }
.advisor-bullet-ic {
  width: 24px; height: 24px; border-radius: 7px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .72rem;
}
.advisor-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; gap: 2rem; }
@media (min-width: 680px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { display: flex; flex-direction: column; gap: .8rem; }
.step__top { display: flex; align-items: center; gap: 1.1rem; }
.step__num {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 900; letter-spacing: -.03em;
  box-shadow: 0 6px 22px -6px var(--accent-glow);
}
.step__connector { flex: 1; height: 2px; background: var(--border); }
@media (max-width: 679px) { .step__connector { display: none; } }
.step__title { margin: 0; font-weight: 800; font-size: 1.06rem; letter-spacing: -.015em; }
.step__text { margin: 0; font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   PROMO SECTION
   ============================================================ */
.promo-inner {
  display: grid; gap: 2.5rem 4rem;
  grid-template-columns: auto 1fr;
  align-items: center;
}
@media (max-width: 580px) { .promo-inner { grid-template-columns: 1fr; text-align: center; } }
.promo-num {
  font-size: clamp(5rem, 13vw, 9.5rem); font-weight: 900;
  line-height: .88; letter-spacing: -.04em;
  color: var(--accent-bright);
  text-shadow: 0 0 100px color-mix(in srgb, var(--accent-bright) 60%, transparent);
}
.promo-content { display: flex; flex-direction: column; gap: 1rem; }
.promo-title { margin: 0; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -.025em; color: #fff; }
.promo-checks { display: flex; flex-direction: column; gap: .5rem; }
.promo-check { display: flex; gap: .65rem; align-items: flex-start; font-size: .93rem; color: rgba(255,255,255,.78); }
.promo-check-ic { color: #4ade80; font-weight: 900; flex-shrink: 0; }
.promo-legal { margin: 0; font-size: .74rem; color: rgba(255,255,255,.38); }
.promo-cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ============================================================
   QUOTES
   ============================================================ */
.quotes-grid { display: grid; gap: 1.2rem; }
@media (min-width: 680px) { .quotes-grid { grid-template-columns: repeat(3, 1fr); } }
.quote-card {
  padding: 1.75rem; border-radius: 18px;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 4px 28px -14px rgba(15,23,42,.08);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.quote-card::before {
  content: '\201C'; position: absolute; top: -.35rem; left: .85rem;
  font-size: 6rem; font-weight: 900; line-height: 1;
  color: var(--accent-soft); font-family: Georgia, serif;
  pointer-events: none;
}
.quote-text {
  position: relative; margin: 1.1rem 0 .9rem;
  font-size: .92rem; line-height: 1.7; color: var(--text); flex: 1;
}
.quote-src { font-size: .76rem; font-weight: 700; color: var(--muted-2); }

/* ============================================================
   CTA END
   ============================================================ */
.cta-end {
  padding: clamp(3.5rem, 8vw, 6rem) 0; text-align: center;
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--accent-soft) 45%, #fff) 100%);
}
.cta-end__title {
  margin: 0 0 .85rem;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.1;
}
.cta-end__lead {
  margin: 0 0 2.25rem; color: var(--muted); font-size: 1.04rem;
  max-width: 52ch; margin-inline: auto; margin-bottom: 2.25rem;
}
.cta-end__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.6rem; border-radius: 11px; font-family: var(--font);
  font-weight: 700; font-size: .93rem; border: none; cursor: pointer;
  transition: all .18s var(--ease-out); text-decoration: none;
}
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 18px -6px var(--accent-glow);
}
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 8px 24px -6px var(--accent-glow); }
.btn--ghost {
  background: #fff; color: var(--text);
  border: 1.5px solid var(--border-med);
}
.btn--ghost:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); color: var(--accent-deep); }
.btn--ghost-white {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn--ghost-white:hover { background: rgba(255,255,255,.2); }
.btn--lg { padding: .9rem 1.85rem; font-size: 1rem; }

/* ============================================================
   STICKY BAR
   ============================================================ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  padding: .65rem 1rem;
  background: rgba(9,16,35,.96); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.sticky-bar__q { font-size: .82rem; color: rgba(255,255,255,.65); font-weight: 500; }
@media (max-width: 460px) { .sticky-bar__q { display: none; } }
.sticky-bar__pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .52rem 1.1rem .52rem .6rem; border-radius: 999px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: .88rem;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 18px -6px var(--accent-glow); text-decoration: none;
}
.sticky-bar__pill:hover { background: var(--accent-deep); transform: translateY(-1px); }
.sticky-bar__pill-ic {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
}
.sticky-bar__pill-ic svg { width: 12px; height: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #fff; border-top: 1px solid var(--border); }
.footer__grid {
  display: grid; gap: 2.25rem;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  padding: 3.5rem 0 2.5rem;
}
@media (max-width: 840px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; padding: 2.5rem 0 2rem; } }
.footer__col-brand-name {
  display: flex; align-items: center; gap: .65rem;
  font-weight: 800; font-size: .98rem; margin-bottom: .65rem;
}
.footer__col-brand-name img { width: 32px; height: 32px; object-fit: contain; }
.footer__col-note { font-size: .86rem; color: var(--muted); line-height: 1.65; max-width: 26ch; margin-bottom: 1.1rem; }
.footer__col-link-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .52rem 1rem; border-radius: 999px; font-size: .83rem; font-weight: 700;
  border: 1.5px solid color-mix(in srgb, var(--accent) 25%, var(--border));
  background: color-mix(in srgb, var(--accent) 6%, #fff);
  color: var(--accent-deep); transition: all .18s; text-decoration: none;
}
.footer__col-link-cta:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.footer__col-label {
  font-size: .64rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted-2); margin: 0 0 .85rem;
}
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a {
  font-size: .88rem; color: var(--muted); display: inline-block;
  transition: color .15s, transform .15s;
}
.footer__links a:hover { color: var(--accent); transform: translateX(2px); }
.footer__contact-row { display: flex; flex-direction: column; gap: .15rem; margin-bottom: .85rem; }
.footer__contact-label { font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.footer__contact-val { font-size: .9rem; color: var(--text); font-weight: 600; }
.footer__contact-val a { color: var(--accent-deep); font-weight: 700; }
.footer__contact-val a:hover { text-decoration: underline; }
.footer__bar {
  padding: 1rem 0 1.5rem; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: .45rem 1.1rem;
  align-items: center; font-size: .78rem; color: var(--muted-2);
}
.footer__bar a { color: var(--muted-2); }
.footer__bar a:hover { color: var(--accent); }

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks-panel {
  position: fixed; bottom: 5rem; right: 1.25rem; z-index: 100;
  background: #fff; border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px -16px rgba(15,23,42,.24);
  padding: 1.35rem; width: 268px;
  display: none; flex-direction: column; gap: 1.1rem;
}
.tweaks-panel.show { display: flex; }
.tweaks-panel__head { display: flex; align-items: center; justify-content: space-between; }
.tweaks-panel__title { margin: 0; font-weight: 800; font-size: .9rem; }
.tweaks-panel__close {
  width: 28px; height: 28px; border: none; background: var(--surface);
  border-radius: 7px; font-size: 1.1rem; line-height: 1; color: var(--muted-2); cursor: pointer;
}
.tweaks-section { display: flex; flex-direction: column; gap: .5rem; }
.tweaks-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); }
.tweaks-chips { display: flex; gap: .4rem; flex-wrap: wrap; }
.tweaks-chip {
  padding: .3rem .75rem; border-radius: 999px; font-size: .8rem;
  font-weight: 700; border: 1.5px solid var(--border); background: #fff;
  color: var(--muted); cursor: pointer; transition: all .15s;
}
.tweaks-chip.on { border-color: var(--accent); background: var(--accent); color: #fff; }
.tweaks-toggle-row { display: flex; align-items: center; justify-content: space-between; }
.tweaks-toggle-label { font-size: .85rem; font-weight: 500; color: var(--text); }
.toggle-btn {
  width: 42px; height: 24px; border-radius: 999px;
  background: var(--surface-2); border: none; cursor: pointer;
  position: relative; transition: background .2s; flex-shrink: 0;
}
.toggle-btn.on { background: var(--accent); }
.toggle-thumb {
  position: absolute; top: 2px; left: 2px; width: 20px; height: 20px;
  border-radius: 50%; background: #fff; transition: transform .2s var(--ease-out);
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.toggle-btn.on .toggle-thumb { transform: translateX(18px); }

/* ============================================================
   DESKTOP NAV LINKS
   ============================================================ */
.nav__desktop-links {
  display: none; align-items: center; gap: .3rem .95rem;
  font-size: .86rem; font-weight: 600; color: var(--muted); flex: 1; justify-content: center;
}
@media (min-width: 960px) {
  .nav__desktop-links { display: flex; }
  .nav__burger { display: none; }
}
.nav__desktop-links a { transition: color .15s; white-space: nowrap; }
.nav__desktop-links a:not(.nav__desktop-cta):hover { color: var(--accent); }
.nav__desktop-links a.active { color: var(--accent); }
.nav__desktop-cta {
  padding: .4rem .95rem; border-radius: 9px;
  border: 1.5px solid var(--border-med); background: var(--surface);
  color: var(--text); transition: all .18s;
}
.nav__desktop-cta:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, var(--bg));
  color: var(--accent);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { padding: 1.75rem 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.stats-bar__grid {
  display: grid; gap: .5rem;
  grid-template-columns: repeat(4, 1fr); text-align: center;
}
@media (max-width: 580px) { .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
.stats-bar__num {
  display: block; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900;
  letter-spacing: -.04em; color: var(--accent-deep); line-height: 1;
}
.stats-bar__label { display: block; font-size: .77rem; color: var(--muted); margin-top: .28rem; }

/* ============================================================
   PRODUCT CARD BULLETS
   ============================================================ */
.prod-card__bullets { list-style: none; margin: 0 0 .7rem; padding: 0; display: flex; flex-direction: column; gap: .28rem; }
.prod-card__bullets li { display: flex; gap: .5rem; align-items: flex-start; font-size: .82rem; color: var(--muted); line-height: 1.4; }
.prod-card__bullets li::before { content: ''; flex-shrink: 0; width: .34rem; height: .34rem; border-radius: 50%; background: var(--accent); margin-top: .42rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: .5rem; max-width: 860px; margin-inline: auto; }
.faq-item { border-radius: 12px; border: 1px solid var(--border); background: #fff; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item.open { border-color: color-mix(in srgb, var(--accent) 38%, var(--border)); box-shadow: 0 4px 20px -10px rgba(15,23,42,.1); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem; border: none; background: none; cursor: pointer;
  text-align: left; font-size: .95rem; font-weight: 700; color: var(--text); font-family: var(--font); transition: color .15s;
}
.faq-q:hover { color: var(--accent); }
.faq-chevron { font-size: 1.2rem; font-weight: 900; color: var(--accent); flex-shrink: 0; line-height: 1; width: 20px; text-align: center; }
.faq-a { padding: 0 1.25rem 1rem; font-size: .92rem; color: var(--muted); line-height: 1.65; border-top: 1px solid var(--border); }
.faq-a p { margin: .7rem 0 0; }

/* ============================================================
   BREADCRUMB (shared)
   ============================================================ */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .3rem .5rem; font-size: .82rem; color: var(--muted-2); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--accent-deep); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { opacity: .4; }

/* ============================================================
   STANDORTE PAGE
   ============================================================ */
.orte-hero { padding: clamp(2rem,5vw,3.5rem) 0; border-bottom: 1px solid var(--border); }
.orte-hero__eyebrow { margin: 0 0 .5rem; font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); }
.orte-hero__title { margin: 0; font-size: clamp(1.75rem,3.5vw,2.5rem); font-weight: 800; letter-spacing: -.025em; }
.orte-hero__lead { margin: .75rem 0 0; color: var(--muted); font-size: 1rem; max-width: 56ch; line-height: 1.65; }
.orte-search-wrap { margin-top: 1.5rem; display: flex; gap: .5rem; max-width: 480px; }
.orte-search {
  flex: 1; padding: .72rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--border-med); font-family: var(--font);
  font-size: .95rem; background: var(--surface); color: var(--text); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.orte-search:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent); }
.orte-grid { margin-top: 2rem; display: grid; gap: .5rem 1rem; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.orte-grid__item a {
  display: flex; align-items: center; gap: .5rem; padding: .58rem .85rem; border-radius: 9px;
  font-size: .9rem; font-weight: 600; color: var(--accent-deep);
  border: 1px solid var(--border); background: var(--surface); transition: all .15s;
}
.orte-grid__item a:hover { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); transform: translateX(2px); }
.orte-grid__item.hidden { display: none; }
.orte-section-letter { grid-column: 1/-1; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); padding: .75rem 0 .25rem; border-top: 1px solid var(--border); margin-top: .25rem; }
.orte-count { font-size: .82rem; color: var(--muted-2); margin-top: .5rem; }

/* ============================================================
   ORT DETAIL PAGE
   ============================================================ */
.ort-hero {
  position: relative; min-height: min(68vh, 640px);
  padding-top: var(--nav-h); display: flex; flex-direction: column;
}
.ort-hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.ort-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ort-hero__scrim { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(9,16,35,.88) 0%, rgba(9,16,35,.6) 50%, rgba(9,16,35,.3) 100%); }
.ort-hero__body { position: relative; z-index: 2; flex: 1; display: flex; align-items: flex-end; padding-bottom: 3rem; }
.ort-hero__eyebrow { display: inline-flex; align-items: center; gap: .5rem; padding: .28rem .75rem; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.88); margin-bottom: 1.1rem; backdrop-filter: blur(8px); width: fit-content; }
.ort-hero__h1 { margin: 0; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.08; color: #fff; }
.ort-hero__h1 em { font-style: normal; color: var(--accent-bright); }
.ort-hero__lead { margin: .9rem 0 0; color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.6; max-width: 48ch; }
.ort-hero__actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.ort-selector-bar { padding: .85rem 0; border-bottom: 1px solid var(--border); background: var(--surface); }
.ort-selector-inner { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.ort-selector-label { font-size: .8rem; font-weight: 700; color: var(--muted-2); white-space: nowrap; }
.ort-selector { padding: .5rem .85rem; border-radius: 9px; border: 1.5px solid var(--border-med); font-family: var(--font); font-size: .9rem; color: var(--text); background: #fff; cursor: pointer; flex: 1; max-width: 300px; outline: none; transition: border-color .2s; }
.ort-selector:focus { border-color: var(--accent); }
.ort-body { padding: clamp(2rem,5vw,3.5rem) 0 4rem; }
.ort-layout { display: grid; gap: 1.75rem; }
@media (min-width: 900px) { .ort-layout { grid-template-columns: minmax(0,1.45fr) minmax(280px,.55fr); align-items: start; } }
/* Ort sections = white cards like homepage */
.ort-section {
  background: #fff; border-radius: 14px;
  padding: 1.5rem 1.6rem; margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 4px 14px -8px rgba(0,0,0,.07);
}
.ort-section .section__title { font-size: clamp(1.15rem,2.5vw,1.5rem); margin-bottom: .5rem; }
.ort-section .section__eyebrow { margin-bottom: .4rem; }
.ort-trust-bar { background: var(--accent-deep); color: #fff; padding: .8rem 0; }
.ort-trust-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem 2rem; }
.ort-trust-item { display: flex; align-items: center; gap: .45rem; font-size: .84rem; font-weight: 600; }
.ort-trust-ic { color: #60a5fa; font-weight: 900; }
.ort-facts-card { padding: 1.35rem; border-radius: 18px; border: 1px solid color-mix(in srgb, var(--accent) 14%, var(--border)); background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 45%, #fff), #fff); box-shadow: 0 12px 40px -20px rgba(15,23,42,.12); }
@media (min-width: 900px) { .ort-facts-card { position: sticky; top: calc(var(--nav-h) + 1rem); } }
.ort-facts-card__title { margin: 0 0 1rem; font-weight: 800; font-size: 1rem; }
.ort-fact { margin-bottom: .75rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.ort-fact:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.ort-fact__label { font-size: .64rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted-2); }
.ort-fact__val { font-size: .9rem; font-weight: 600; color: var(--text); margin-top: .1rem; }
.ort-facts-card__actions { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.ort-prod-grid { display: grid; gap: .85rem; grid-template-columns: repeat(auto-fill, minmax(min(220px,100%),1fr)); }
.ort-prod-card { padding: 1rem; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); transition: all .2s; }
.ort-prod-card:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); box-shadow: 0 8px 24px -12px rgba(15,23,42,.12); transform: translateY(-2px); }
.ort-prod-card__title { margin: 0 0 .35rem; font-weight: 800; font-size: .97rem; }
.ort-prod-card__text { margin: 0 0 .65rem; font-size: .85rem; color: var(--muted); line-height: 1.5; }
.ort-prod-card__link { font-size: .82rem; font-weight: 700; color: var(--accent-deep); }
.ort-prod-card__link:hover { text-decoration: underline; }
.ort-faq { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.ort-faq-item { border: 1px solid var(--border); border-radius: 10px; background: #fff; overflow: hidden; }
.ort-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .85rem 1rem; border: none; background: none; font-family: var(--font); font-size: .92rem; font-weight: 700; color: var(--text); cursor: pointer; text-align: left; }
.ort-faq-q:hover { color: var(--accent); }
.ort-faq-ic { color: var(--accent); font-weight: 900; flex-shrink: 0; }
.ort-faq-a { padding: 0 1rem .85rem; font-size: .9rem; color: var(--muted); line-height: 1.65; border-top: 1px solid var(--border); padding-top: .7rem; }
.ort-nearby-grid { display: grid; gap: .5rem; grid-template-columns: repeat(auto-fill, minmax(165px,1fr)); }
.ort-nearby-link { display: block; padding: .58rem .85rem; border-radius: 10px; border: 1px solid var(--border); background: var(--surface); font-size: .88rem; font-weight: 600; color: var(--accent-deep); transition: all .15s; }
.ort-nearby-link:hover { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); transform: translateX(2px); }

/* ============================================================
   PRODUKTE PAGE
   ============================================================ */
.prod-page-hero { padding: clamp(1.75rem,4vw,2.75rem) 0; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 45%, var(--surface)), var(--bg)); }
.prod-cat-nav { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.prod-cat-btn { padding: .58rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--border); background: #fff; font-size: .86rem; font-weight: 700; color: var(--muted); transition: all .18s; cursor: pointer; }
.prod-cat-btn:hover:not(.active) { border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); color: var(--accent-deep); }
.prod-cat-btn.active { border-color: var(--accent); background: var(--accent); color: #fff; box-shadow: 0 4px 16px -6px var(--accent-glow); }
.prod-full-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(min(300px,100%),1fr)); }
.prod-detail-layout { display: grid; gap: 1.75rem 2.5rem; }
@media (min-width: 860px) { .prod-detail-layout { grid-template-columns: minmax(0,1.1fr) minmax(300px,.9fr); align-items: start; } }
.prod-detail__fig { margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 24px 56px -28px rgba(15,23,42,.22); }
.prod-detail__fig img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.prod-detail__card { padding: 1.5rem; border-radius: 18px; border: 1px solid color-mix(in srgb, var(--accent) 12%, var(--border)); background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 4%, #fff), #fff); box-shadow: 0 12px 40px -20px rgba(15,23,42,.12); }
.prod-detail__tag { display: inline-block; padding: .22rem .65rem; border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-deep); background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent); margin-bottom: .65rem; }
.prod-detail__title { margin: 0 0 .6rem; font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.15; }
.prod-detail__sum { margin: 0 0 1rem; font-size: .97rem; color: var(--muted); line-height: 1.6; }
.prod-detail__hl { list-style: none; margin: 0 0 1.1rem; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.prod-detail__hl li { display: flex; gap: .65rem; align-items: flex-start; font-size: .9rem; }
.prod-detail__hl li::before { content: ''; flex-shrink: 0; width: .38rem; height: .38rem; border-radius: 50%; background: var(--accent); margin-top: .42rem; }
.prod-detail__section-label { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: .55rem; }
.prod-detail__text-list { margin: 0 0 1.1rem; padding-left: 1.1rem; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.prod-detail__text-list li + li { margin-top: .35rem; }
.prod-detail__brands { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.25rem; }
.prod-detail__actions { display: flex; flex-direction: column; gap: .55rem; }
.prod-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.prod-related__title { margin: 0 0 1.25rem; font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 800; letter-spacing: -.02em; }

/* ============================================================
   BODY — mobile.de grau-blauer Hintergrund
   ============================================================ */
body { background: #e8ecf0; }

/* ============================================================
   HERO BANNER CARD (mobile.de-Stil, contained)
   ============================================================ */
.mhero {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 0;
  background: var(--accent-deep);
  border-radius: 24px;
  overflow: hidden;
  min-height: min(48vh, 420px);
  box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 8px 32px -12px rgba(0,0,0,.1);
  margin-bottom: 1.1rem;
}
@media (max-width: 680px) {
  .mhero { grid-template-columns: 1fr; }
  .mhero__img-wrap { height: 220px; }
}
.mhero__img-wrap { overflow: hidden; }
.mhero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
/* Nav CTA filled button — like mobile.de "Anmelden" */
.nav__cta-btn {
  display: none; padding: .52rem 1.25rem; border-radius: 10px;
  background: var(--accent-deep); color: #fff;
  font-size: .88rem; font-weight: 700; white-space: nowrap;
  transition: background .2s, transform .15s; text-decoration: none;
  box-shadow: 0 2px 8px -2px rgba(29,78,216,.3);
}
.nav__cta-btn:hover { background: var(--accent); transform: translateY(-1px); }
@media (min-width: 960px) { .nav__cta-btn { display: inline-flex; align-items: center; } }

.mhero__panel {
  background: var(--accent-deep);
  padding: clamp(1.5rem,3vw,2.25rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  border-radius: 36px 0 0 36px;
}
.mhero__panel::after {
  content: ''; position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -80px; right: -80px; pointer-events: none;
}
.mhero__eyebrow {
  margin: 0 0 .7rem;
  font-size: .64rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}
.mhero__tag {
  margin: 0 0 .75rem; font-size: .64rem; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.58);
}
.mhero__h1 {
  margin: 0; color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.06;
}
.mhero__em { font-style: normal; color: #93c5fd; }
.mhero__sub { margin: .9rem 0 1.35rem; color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.6; }
.mhero__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.25rem; border-radius: 10px;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.24);
  color: #fff; font-size: .87rem; font-weight: 700;
  backdrop-filter: blur(8px); transition: background .2s; text-decoration: none;
}
.mhero__cta:hover { background: rgba(255,255,255,.22); }
.mhero__badge-wrap {
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-deep);
  border-left: 1px solid rgba(255,255,255,.08);
  padding: 0 clamp(.75rem,2vw,1.5rem);
}
/* .mhero__badge-wrap removed — badge now inline in panel-top */
.mhero__panel-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: .75rem;
  margin-bottom: .85rem;
}
.mhero__badge {
  flex-shrink: 0;
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; line-height: 1.1;
  box-shadow: 0 4px 18px -4px rgba(37,99,235,.5), 0 0 0 3px rgba(255,255,255,.15);
}
.mhero__badge-pct { font-size: 1.75rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.mhero__badge-sub { font-size: .46rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; opacity: .9; margin-top: .1rem; }

/* ============================================================
   TRUST CERTS GRID
   ============================================================ */
.certs-grid {
  display: grid;
  gap: .6rem;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: .75rem;
}
@media (max-width: 740px) { .certs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .certs-grid { grid-template-columns: 1fr; } }
.cert-chip {
  display: flex; align-items: center; gap: .7rem;
  padding: .75rem .9rem; border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 2px 8px -4px rgba(0,0,0,.06);
}
.cert-chip__dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.cert-chip__text { display: flex; flex-direction: column; gap: .06rem; min-width: 0; }
.cert-chip__title { font-size: .83rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.cert-chip__sub { font-size: .7rem; color: var(--muted-2); font-weight: 500; }

/* ============================================================
   STATS CARD + CTA END UPGRADES
   ============================================================ */
.stats-card {
  background: #fff; border-radius: 16px;
  display: grid; grid-template-columns: repeat(4,1fr);
  box-shadow: 0 2px 8px rgba(0,0,0,.05), 0 4px 16px -8px rgba(0,0,0,.07);
  overflow: hidden; margin-bottom: 1rem;
}
@media (max-width: 600px) { .stats-card { grid-template-columns: repeat(2,1fr); } }
.stats-card__item { padding: 1.4rem 1.25rem; text-align: center; display: flex; flex-direction: column; gap: .18rem; }
.stats-card__num { font-size: clamp(2rem,4vw,2.75rem); font-weight: 900; letter-spacing: -.05em; color: var(--accent-deep); line-height: 1; display: block; }
.stats-card__label { font-size: .82rem; font-weight: 700; color: var(--text); }
.stats-card__sub { font-size: .7rem; color: var(--muted-2); }

.cta-end {
  background: var(--accent-deep); border-radius: 20px;
  padding: clamp(2.5rem,6vw,4rem) clamp(1.75rem,5vw,3.5rem);
  box-shadow: 0 4px 24px -8px rgba(29,78,216,.25); text-align: center;
}
.cta-end__title { margin: 0 0 .85rem; font-size: clamp(2.25rem,5vw,3.5rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.05; color: #fff; }
.cta-end__lead { margin: 0 auto 2.25rem; font-size: 1rem; color: rgba(255,255,255,.7); max-width: 52ch; line-height: 1.65; }
.cta-end__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.cta-end .section__eyebrow { color: #93c5fd; }
.cta-end .btn--primary { background: #fff; color: var(--accent-deep); box-shadow: none; }
.cta-end .btn--primary:hover { background: #f0f6ff; transform: translateY(-1px); }
.cta-end .btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.cta-end .btn--ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.38); color: #fff; }

/* ============================================================
   CLEAN MINIMALISM — simple is the best
   ============================================================ */

/* Consistent vertical rhythm — same across ALL sections */
.section { padding: clamp(2.75rem,6vw,4.5rem) 0; }

/* Uniform card radius + shadow — no sticking out */
.prod-card, .cat-tile, .faq-item, .cert-chip { border-radius: 14px; }
.msearch, .promo-card, .cta-end { border-radius: 18px; }
.stats-card { border-radius: 14px; overflow: hidden; }

/* Quotes — no giant ::before mark, consistent height, same spacing */
.quotes-grid { align-items: stretch; gap: 1rem; }
.quote-card {
  padding: 1.5rem 1.6rem; border-radius: 14px;
  background: #fff; border: none; border-left: 3px solid var(--accent-soft);
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 14px -8px rgba(0,0,0,.07);
  display: flex; flex-direction: column;
}
.quote-card::before { display: none; }
.quote-text {
  margin: 0 0 .85rem; font-size: .91rem;
  line-height: 1.72; color: var(--text); flex: 1; font-style: italic;
}
.quote-src {
  font-size: .73rem; font-weight: 700; color: var(--muted-2);
  text-transform: uppercase; letter-spacing: .06em;
}

/* Remove stray borders */
.section--surface, .section--gradient { background: transparent; border: none; }

/* ============================================================
   SEARCH CARD (mobile.de — pill input + arrow btn)
   ============================================================ */
.msearch {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 2rem 1.6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.05), 0 8px 24px -12px rgba(0,0,0,.07);
  text-align: center;
  margin-bottom: 1.25rem;
}
.msearch__title {
  margin: 0 0 1.35rem;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 800; letter-spacing: -.025em; color: var(--text);
}
.msearch__form { margin-bottom: 1.1rem; }
.msearch__pill {
  display: flex; align-items: center; gap: .5rem;
  max-width: 680px; margin: 0 auto;
  padding: .42rem .42rem .42rem 1rem;
  border: 2px solid #d1d9e6; border-radius: 999px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.msearch__pill:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}
.msearch__icon { color: var(--muted-2); flex-shrink: 0; }
.msearch__input {
  flex: 1; min-width: 0; border: none; outline: none;
  font-family: var(--font); font-size: 1rem; color: var(--text); background: transparent;
}
.msearch__input::placeholder { color: var(--muted-2); }
.msearch__btn {
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--accent); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .15s;
  box-shadow: 0 2px 8px -2px var(--accent-glow);
}
.msearch__btn:hover { background: var(--accent-deep); transform: scale(1.05); }
.msearch__checks {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; justify-content: center;
}
.msearch__check { display: flex; align-items: center; gap: .4rem; font-size: .83rem; color: var(--muted); font-weight: 500; }
.msearch__check-ic { color: var(--accent); font-weight: 900; font-size: .75rem; }

/* ============================================================
   SECTION OVERRIDES — transparent auf grauem BG
   ============================================================ */
.section { background: transparent; }
.section--surface { background: transparent; }
.section--gradient { background: transparent; }
.section--deep { background: var(--accent-deep); border-radius: 20px; margin-inline: calc((100vw - min(1140px, 100% - 2rem)) / 2); }
.brand-ticker { background: #fff; border-top: none; border-bottom: 1px solid rgba(0,0,0,.07); }
.stats-bar { background: #fff; border-top: none; border-bottom: none; border-radius: 16px; margin: 0 0 1rem; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.trust-bar { background: var(--accent-soft); border-bottom: 1px solid rgba(29,78,216,.1); }
.footer { background: #fff; border-top: 1px solid rgba(0,0,0,.07); }
.cta-end { border-top: none; border-radius: 20px; max-width: min(1140px, calc(100% - 2rem)); margin-inline: auto; }

/* white cards on gray bg */
.quote-card { box-shadow: 0 2px 8px rgba(0,0,0,.05), 0 4px 16px -8px rgba(0,0,0,.08); border: none; }
.prod-card { box-shadow: 0 2px 8px rgba(0,0,0,.05), 0 4px 16px -8px rgba(0,0,0,.08); border: none; }
.prod-card:hover { box-shadow: 0 8px 32px -8px rgba(0,0,0,.16); border: none; }
.cat-tile { box-shadow: 0 2px 8px rgba(0,0,0,.05), 0 4px 16px -8px rgba(0,0,0,.08); border: none; }
.cat-tile:hover { box-shadow: 0 8px 32px -8px rgba(0,0,0,.16); border: none; }
.faq-item { border: none; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.faq-item.open { box-shadow: 0 4px 16px -6px rgba(0,0,0,.1); }
.advisor-photo-wrap { box-shadow: 0 8px 28px -8px rgba(0,0,0,.18); }
.promo-card { box-shadow: 0 2px 8px rgba(0,0,0,.05), 0 8px 24px -12px rgba(0,0,0,.1); border: none; }

/* ============================================================
   ANIMATIONS & REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}
.lhero {
  padding-top: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.lhero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: center;
  padding: clamp(2.5rem,6vw,4.5rem) 0;
  min-height: min(78vh, 680px);
}
@media (max-width: 820px) {
  .lhero__inner { grid-template-columns: 1fr; padding: 2rem 0 2.5rem; min-height: auto; }
  .lhero__media { display: none; }
}
.lhero__eyebrow {
  display: inline-block; margin-bottom: .85rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--accent);
}
.lhero__h1 {
  margin: 0; font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.08;
  color: var(--text); text-wrap: balance;
}
.lhero__accent { color: var(--accent); }
.lhero__sub {
  margin: .9rem 0 1.5rem; font-size: 1.05rem;
  color: var(--muted); line-height: 1.6; max-width: 44ch;
}
.lhero__form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.4rem;
  box-shadow: 0 2px 8px rgba(15,23,42,.06), 0 8px 24px -12px rgba(15,23,42,.08);
}
.lhero__form-label { margin: 0 0 .75rem; font-weight: 800; font-size: .95rem; color: var(--text); }
.lhero__search { display: flex; gap: .5rem; margin-bottom: 1rem; }
.lhero__input {
  flex: 1; min-width: 0; padding: .72rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--border-med); background: #fff;
  font-family: var(--font); font-size: .95rem; color: var(--text); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.lhero__input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent); }
.lhero__btn {
  padding: .72rem 1.25rem; border-radius: 10px; border: none;
  background: var(--accent); color: #fff; font-size: .9rem; font-weight: 700;
  white-space: nowrap; cursor: pointer;
  box-shadow: 0 2px 8px -2px var(--accent-glow);
  transition: background .2s, transform .15s;
}
.lhero__btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.lhero__checks {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .5rem;
}
.lhero__check { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; line-height: 1.4; }
.lhero__check-ic {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: .04rem;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 900;
}
.lhero__media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 24px -8px rgba(15,23,42,.14), 0 24px 48px -20px rgba(15,23,42,.1); }
.lhero__img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; }
.lhero__badge {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  width: 82px; height: 82px; border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; line-height: 1.1;
  box-shadow: 0 4px 16px -4px rgba(239,68,68,.5), 0 0 0 3px rgba(255,255,255,.9);
}
.lhero__badge-num { font-size: 1.5rem; font-weight: 900; letter-spacing: -.03em; }
.lhero__badge-line { font-size: .48rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; opacity: .9; }

/* ============================================================
   TRUST BAR (hell)
   ============================================================ */
.trust-bar { background: var(--accent-soft); padding: .75rem 0; border-bottom: 1px solid color-mix(in srgb, var(--accent) 15%, var(--border)); }
.trust-bar__list { display: flex; flex-wrap: wrap; gap: .45rem 1.5rem; align-items: center; justify-content: center; margin: 0; padding: 0; list-style: none; }
.trust-bar__item { display: flex; align-items: center; gap: .45rem; font-size: .83rem; font-weight: 600; color: var(--accent-deep); }
.trust-bar__ic { font-weight: 900; color: var(--accent); }

/* ============================================================
   CATEGORY TILES (mobile.de-Kacheln)
   ============================================================ */
.cat-tiles {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 740px) { .cat-tiles { grid-template-columns: 1fr; gap: .65rem; } }
@media (min-width: 741px) and (max-width: 900px) { .cat-tiles { grid-template-columns: repeat(2, 1fr); } }
.cat-tile {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 16px; border: 1px solid var(--border);
  overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: 0 2px 6px rgba(15,23,42,.05);
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ease-out);
}
.cat-tile:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 8px 32px -12px rgba(15,23,42,.16);
  transform: translateY(-3px);
}
.cat-tile__fig { margin: 0; aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.cat-tile__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-out); }
.cat-tile:hover .cat-tile__img { transform: scale(1.04); }
.cat-tile__body { padding: 1rem 1.1rem .9rem; flex: 1; }
.cat-tile__title { margin: 0 0 .3rem; font-weight: 800; font-size: 1.05rem; color: var(--text); }
.cat-tile__sub { margin: 0 0 .5rem; font-size: .85rem; color: var(--muted); line-height: 1.4; }
.cat-tile__count { font-size: .75rem; font-weight: 700; color: var(--accent-deep); background: var(--accent-soft); padding: .18rem .55rem; border-radius: 999px; display: inline-block; }
.cat-tile__arrow { display: flex; align-items: center; justify-content: flex-end; padding: .7rem 1rem; color: var(--accent); border-top: 1px solid var(--border); }

/* ============================================================
   PROMO CARD (hell, sauber)
   ============================================================ */
.promo-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px -12px rgba(15,23,42,.1);
  overflow: hidden;
  align-items: stretch;
}
@media (max-width: 740px) { .promo-card { grid-template-columns: 1fr; } .promo-card__media { display: none; } }
.promo-card__badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(160deg, #dbeafe, #bfdbfe);
  border-right: 1px solid #93c5fd;
  min-width: 140px; text-align: center;
}
.promo-card__pct { font-size: 3.5rem; font-weight: 800; letter-spacing: -.05em; color: #1d4ed8; line-height: 1; }
.promo-card__pct-label { font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #2563eb; margin-top: .35rem; }
.promo-card__body { padding: 2rem 1.75rem; display: flex; flex-direction: column; justify-content: center; }
.promo-card__eyebrow { margin: 0 0 .4rem; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.promo-card__title { margin: 0 0 1rem; font-size: clamp(1.15rem,2.5vw,1.55rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.promo-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; font-size: .9rem; color: var(--muted); line-height: 1.5; }
.promo-card__media { width: 240px; overflow: hidden; }
@media (min-width: 1000px) { .promo-card__media { width: 280px; } }
.promo-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   DESIGN UPGRADES (überschreiben alte Stile)
   ============================================================ */
.section--surface { background: #fff; }
.section--gradient { background: #f5f7fa; }
.cta-end { border-top: none; }
.brand-ticker { background: #fff; }
.stats-bar { background: #fff; border-top: 1px solid var(--border); }
.footer { background: #fff; }

.btn--primary {
  background: var(--accent);
  box-shadow: 0 2px 6px rgba(15,23,42,.08), 0 4px 14px -6px var(--accent-glow);
}
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-1px); }

/* ============================================================
   ANIMATIONS & REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}

/* Hero: bessere Karte */
.hero__card {
  background: #fff;
  border-radius: 22px;
  box-shadow:
    0 2px 4px rgba(9,16,35,.06),
    0 12px 28px rgba(9,16,35,.12),
    0 40px 80px -24px rgba(9,16,35,.42),
    0 0 0 1px rgba(255,255,255,.06);
}
.hero__card-head {
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--accent-soft) 55%, #fff) 0%,
    color-mix(in srgb, var(--accent-soft) 20%, #fff) 100%);
}

/* Stats: Trennlinie zwischen Items */
@media (min-width: 580px) {
  .stats-bar__grid > div + div {
    border-left: 1px solid var(--border);
  }
}

/* Section-Titel: etwas Display-artiger */
.section__title {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 900;
}

/* Produkt-Karten: stärkerer Hover */
.prod-card {
  transition: border-color .22s, box-shadow .25s, transform .25s var(--ease-out);
}
.prod-card:hover {
  box-shadow:
    0 2px 4px rgba(15,23,42,.04),
    0 8px 20px rgba(15,23,42,.08),
    0 24px 56px -18px rgba(15,23,42,.26);
  transform: translateY(-6px);
}

/* Quote-Karten: Gradient-Rand */
.quote-card {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 20%, #fff), #fff);
  transition: box-shadow .22s, transform .22s;
}
.quote-card:hover {
  box-shadow: 0 8px 32px -12px rgba(15,23,42,.12);
  transform: translateY(-2px);
}

/* Advisor: bessere Foto-Behandlung */
.advisor-photo-wrap {
  box-shadow:
    0 8px 20px rgba(15,23,42,.1),
    0 32px 72px -24px rgba(15,23,42,.32);
}

/* Steps: Nummer schöner */
.step__num {
  font-size: 1.25rem;
  letter-spacing: -.04em;
  box-shadow:
    0 4px 12px -4px var(--accent-glow),
    0 12px 28px -10px var(--accent-glow);
}

/* FAQ: hover-Feedback */
.faq-item { transition: border-color .2s, box-shadow .2s, transform .15s; }
.faq-item:hover { transform: translateY(-1px); }

/* CTA end: handled by stats card section */

/* Nav: Gradient-Linie etwas kräftiger */
.nav::before {
  height: 3.5px;
  opacity: 1;
}

/* Typography: max font-weight 800, no 900 black */
.section__title,
.mhero__h1,
.msearch__title,
.cta-end__title,
.promo-card__title,
.kform-step__title,
.kform-thanks__title,
.advisor-body .section__title,
.nav__logo-text,
.stats-card__num {
  font-weight: 800;
}

/* Text not pure black — use dark navy */
body { color: #1a1a2e; }
:root { --text: #1a1a2e; --muted: #5c5f80; --muted-2: #9092b0; }

/* cert dots — all same blue */
.cert-chip__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* Buttons: schärfere Übergänge */
.btn--primary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 90%, #fff) 0%, var(--accent) 100%);
  box-shadow: 0 1px 2px rgba(9,16,35,.12), 0 4px 16px -6px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.16);
}
.btn--primary:hover {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 1px 2px rgba(9,16,35,.12), 0 8px 24px -6px var(--accent-glow);
}

/* ============================================================
   ANIMATIONS & REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}


/* ============================================================
   KUNDENSTIMMEN MARQUEE
   ============================================================ */
.qs-wrap {
  background: var(--text);
  padding-block: var(--section-y);
  overflow: hidden;
}
.qs-eyebrow { color: var(--accent-bright) !important; }
.qs-heading { color: #f1f5f9 !important; }

.qs-rating-bar {
  display: flex; align-items: center; justify-content: center;
  gap: .55rem; margin-top: .6rem;
}
.qs-stars { color: #fbbf24; font-size: 1.05rem; letter-spacing: .04em; }
.qs-rating-label { font-size: .82rem; color: #64748b; }

.qs-marquee-mask {
  margin-top: 2.75rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.qs-marquee {
  display: flex; gap: 1.25rem;
  width: max-content;
  animation: qs-scroll 32s linear infinite;
}
.qs-marquee:hover { animation-play-state: paused; }
@keyframes qs-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.qs-card {
  width: 360px; flex-shrink: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 1.8rem 1.9rem;
  display: flex; flex-direction: column; gap: .8rem;
  transition: background .2s;
}
.qs-card:hover { background: rgba(255,255,255,.08); }
.qs-card__stars { color: #fbbf24; font-size: .9rem; letter-spacing: .1em; }
.qs-card__text {
  font-size: .95rem; line-height: 1.72;
  color: #cbd5e1; font-style: italic; flex: 1;
}
.qs-card__src {
  font-size: .71rem; font-weight: 700;
  color: #475569;
  text-transform: uppercase; letter-spacing: .07em;
}

/* ── Kundenstimmen: Responsive ── */
@media (max-width: 600px) {
  .qs-rating-bar { flex-direction: column; gap: .3rem; }
  .qs-rating-label { text-align: center; font-size: .76rem; }
  .qs-card { width: 78vw; padding: 1.35rem 1.4rem; }
  .qs-card__text { font-size: .88rem; }
  .qs-marquee { gap: .9rem; animation-duration: 24s; }
  .qs-marquee-mask {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .qs-card { width: 300px; }
}

/* ============================================================
   PRODUCT INQUIRY CART
   ============================================================ */

/* cat-tile as button */
.cat-tile-wrap { display: flex; flex-direction: column; }
button.cat-tile {
  all: unset; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}
button.cat-tile:hover { border-color: var(--accent); box-shadow: 0 4px 18px -6px var(--accent-glow); }
.cat-tile-wrap.open button.cat-tile {
  border-color: var(--accent);
  border-bottom-left-radius: 0; border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

/* expandable product list */
.cat-products {
  display: none; flex-direction: column;
  border: 1px solid var(--accent); border-top: none;
  border-bottom-left-radius: var(--radius); border-bottom-right-radius: var(--radius);
  overflow: hidden;
}
.cat-products.open { display: flex; }

.cat-product {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .9rem 1.2rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background .15s;
}
.cat-product:last-child { border-bottom: none; }
.cat-product.added { background: color-mix(in srgb, var(--accent-soft) 60%, var(--surface)); }
.cat-product__info { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.cat-product__name { font-size: .9rem; font-weight: 600; color: var(--text); }
.cat-product__sum  { font-size: .78rem; color: var(--muted-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-product__btn {
  all: unset; cursor: pointer; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 700; padding: .45rem .85rem;
  border-radius: 8px; border: 1.5px solid var(--accent);
  color: var(--accent); background: transparent;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.cat-product__btn:hover { background: var(--accent); color: #fff; }
.cat-product__btn.added {
  border-color: #16a34a; color: #16a34a; background: #f0fdf4;
  pointer-events: none;
}

/* ── Cart Bar (floating bottom) ── */
.cart-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .85rem 0;
  animation: cartBarIn .25s var(--ease-out);
}
@keyframes cartBarIn { from { transform: translateY(100%); opacity: 0; } to { transform: none; opacity: 1; } }
.cart-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.cart-bar__chips { display: flex; flex-wrap: wrap; gap: .45rem; flex: 1; min-width: 0; }
.cart-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #e2e8f0; font-size: .77rem; font-weight: 600;
  padding: .3rem .65rem; border-radius: 999px;
}
.cart-chip__rm {
  all: unset; cursor: pointer; color: #94a3b8; font-size: 1rem; line-height: 1;
  transition: color .15s;
}
.cart-chip__rm:hover { color: #fff; }
.cart-bar__cta {
  flex-shrink: 0; display: flex; align-items: center; gap: .5rem; white-space: nowrap;
}
.cart-bar__badge {
  background: #fff; color: var(--accent);
  font-size: .72rem; font-weight: 800;
  padding: .1rem .45rem; border-radius: 999px; line-height: 1.4;
}

/* ── StickyBar cart variant ── */
.sticky-bar__pill--cart {
  all: unset; cursor: pointer;
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--accent); color: #fff;
  font-size: .82rem; font-weight: 700;
  padding: .45rem 1rem; border-radius: 999px;
  transition: background .15s;
}
.sticky-bar__pill--cart:hover { background: var(--accent-deep); }
.sticky-bar__badge {
  background: #fff; color: var(--accent);
  font-size: .7rem; font-weight: 800;
  padding: .1rem .4rem; border-radius: 999px; line-height: 1.4;
}

/* ── Anfrage Drawer ── */
.anfrage-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(15,23,42,.45); opacity: 0; pointer-events: none;
  transition: opacity .28s;
}
.anfrage-overlay.show { opacity: 1; pointer-events: auto; }

.anfrage-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 301;
  width: min(480px, 100vw);
  background: var(--bg); display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(15,23,42,.16);
  transform: translateX(100%);
  transition: transform .3s var(--ease-out);
}
.anfrage-drawer.show { transform: none; }

.anfrage-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.anfrage-drawer__title { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.anfrage-drawer__close {
  all: unset; cursor: pointer; font-size: 1.5rem; color: var(--muted-2);
  line-height: 1; width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 8px; transition: background .15s;
}
.anfrage-drawer__close:hover { background: var(--surface-2); }

.anfrage-drawer__body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.anfrage-block { display: flex; flex-direction: column; gap: .6rem; }
.anfrage-block__label { font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted-2); }

.anfrage-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.anfrage-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent-deep); font-size: .8rem; font-weight: 600;
  padding: .35rem .7rem; border-radius: 999px;
}
.anfrage-chip__cat { font-size: .68rem; opacity: .65; }
.anfrage-chip__rm { all: unset; cursor: pointer; color: var(--accent); font-size: .95rem; line-height: 1; transition: opacity .15s; }
.anfrage-chip__rm:hover { opacity: .6; }
.anfrage-empty { font-size: .85rem; color: var(--muted-2); font-style: italic; }

.anfrage-fields { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.anfrage-field { display: flex; flex-direction: column; gap: .3rem; }
.anfrage-field--full { grid-column: 1 / -1; }
.anfrage-field > span { font-size: .78rem; font-weight: 600; color: var(--muted); }
.anfrage-input {
  padding: .6rem .8rem; border-radius: 8px;
  border: 1.5px solid var(--border-med); background: var(--surface);
  font-size: .88rem; color: var(--text); font-family: var(--font);
  transition: border-color .15s;
}
.anfrage-input:focus { outline: none; border-color: var(--accent); background: #fff; }
textarea.anfrage-input { resize: vertical; }

.anfrage-drawer__footer {
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .65rem; flex-shrink: 0;
}
.anfrage-notice { font-size: .75rem; color: var(--muted-2); }
.anfrage-submit { width: 100%; justify-content: center; }
.anfrage-submit:disabled { opacity: .45; cursor: not-allowed; }

.anfrage-success {
  display: flex; flex-direction: column; align-items: center;
  gap: .85rem; padding: 3rem 1.5rem; text-align: center;
}
.anfrage-success__ic {
  width: 56px; height: 56px; border-radius: 50%;
  background: #f0fdf4; color: #16a34a; font-size: 1.5rem;
  display: grid; place-items: center; border: 2px solid #bbf7d0;
}
.anfrage-success__title { font-size: 1.15rem; font-weight: 800; color: var(--text); }
.anfrage-success__sub { font-size: .88rem; color: var(--muted-2); }

/* Responsive adjustments */
@media (max-width: 600px) {
  .cart-bar__inner { flex-direction: column; align-items: stretch; }
  .cart-bar__cta { justify-content: center; }
  .anfrage-fields { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCT CARDS (expanded category grid)
   ============================================================ */
.prd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--accent);
  border-top: none;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  overflow: hidden;
  animation: prdGridIn .22s var(--ease-out);
}
@keyframes prdGridIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
@media (max-width: 860px) { .prd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .prd-grid { grid-template-columns: 1fr; } }

.prd-card {
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: background .18s;
}
.prd-card.added { background: color-mix(in srgb, var(--accent-soft) 40%, var(--bg)); }

.prd-card__fig {
  width: 100%; aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0;
}
.prd-card__fig img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease-out);
}
.prd-card:hover .prd-card__fig img { transform: scale(1.04); }

.prd-card__body {
  padding: 1.1rem 1.2rem .75rem;
  display: flex; flex-direction: column; gap: .55rem; flex: 1;
}
.prd-card__name {
  font-size: .97rem; font-weight: 800; color: var(--text); line-height: 1.3;
}
.prd-card__sum {
  font-size: .82rem; color: var(--muted); line-height: 1.5;
}
.prd-card__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .3rem;
}
.prd-card__bullets li {
  display: flex; align-items: flex-start; gap: .45rem;
  font-size: .8rem; color: var(--text); line-height: 1.45;
}
.prd-card__bullet-ic {
  color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: .05rem;
}
.prd-card__brands {
  display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .15rem;
}
.prd-brand-chip {
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  padding: .2rem .55rem; border-radius: 999px;
  background: var(--surface-2); color: var(--muted);
  border: 1px solid var(--border);
}

.prd-card__footer {
  padding: .85rem 1.2rem 1.1rem;
  border-top: 1px solid var(--border); margin-top: auto;
}
.prd-card__add {
  all: unset; cursor: pointer;
  display: flex; align-items: center; gap: .45rem; justify-content: center;
  width: 100%;
  font-size: .82rem; font-weight: 700;
  padding: .6rem 1rem; border-radius: 8px;
  border: 1.5px solid var(--accent); color: var(--accent);
  background: transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.prd-card__add:hover { background: var(--accent); color: #fff; }
.prd-card__add.added {
  border-color: #16a34a; color: #fff; background: #16a34a;
  pointer-events: none;
}

/* ── Cat-tile: link + select button layout ── */
.cat-tile-row {
  display: flex; align-items: stretch; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.cat-tile-wrap.open .cat-tile-row {
  border-color: var(--accent);
  border-bottom-left-radius: 0; border-bottom-right-radius: 0;
}
.cat-tile-row:focus-within,
.cat-tile-row:hover { border-color: var(--accent); box-shadow: 0 4px 18px -6px var(--accent-glow); }

a.cat-tile--link {
  flex: 1; border: none; border-radius: 0; box-shadow: none;
  background: var(--bg);
}
a.cat-tile--link:hover { border: none; box-shadow: none; }

.cat-tile__select-btn {
  all: unset; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  flex-shrink: 0; padding: 0 1.1rem;
  border-left: 1px solid var(--border);
  font-size: .78rem; font-weight: 700; color: var(--accent);
  background: var(--surface);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.cat-tile__select-btn:hover,
.cat-tile__select-btn.active { background: var(--accent); color: #fff; }
.cat-tile__select-btn.has-items { color: #fff; background: #16a34a; border-left-color: #16a34a; }
.cat-tile__select-btn.has-items.active { background: #15803d; }

.cat-tile__select-badge {
  background: #fff; color: #16a34a;
  font-size: .7rem; font-weight: 800;
  padding: .1rem .4rem; border-radius: 999px; line-height: 1.4;
}

/* ============================================================
   PRODUKT MODAL
   ============================================================ */
.cat-tiles-cta {
  margin-top: 2rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: .5rem;
}
.cat-tiles-cta__note {
  font-size: .77rem; color: var(--muted-2);
}

.pm-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(15,23,42,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .28s;
}
.pm-overlay.show { opacity: 1; pointer-events: auto; }

.pm-modal {
  position: fixed; inset: 0; z-index: 401;
  display: flex; flex-direction: column;
  background: var(--bg);
  transform: translateY(100%);
  transition: transform .32s var(--ease-out);
  overflow: hidden;
  pointer-events: none;
}
.pm-modal.show { pointer-events: auto; }
@media (min-width: 780px) {
  .pm-modal {
    inset: 5vh 5vw;
    border-radius: 20px;
    box-shadow: 0 32px 80px rgba(15,23,42,.3);
    transform: scale(.96) translateY(20px);
    opacity: 0;
    transition: transform .3s var(--ease-out), opacity .3s;
  }
  .pm-modal.show { transform: none; opacity: 1; }
}
@media (max-width: 779px) {
  .pm-modal.show { transform: none; }
}

.pm-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; padding: 1.4rem 1.75rem;
  border-bottom: 1px solid var(--border); flex-shrink: 0;
  background: var(--bg);
}
.pm-header__title { font-size: 1.15rem; font-weight: 800; color: var(--text); }
.pm-header__sub   { font-size: .82rem; color: var(--muted-2); margin-top: .2rem; }
.pm-close {
  all: unset; cursor: pointer;
  font-size: 1.6rem; color: var(--muted-2); line-height: 1;
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 10px; transition: background .15s; flex-shrink: 0;
}
.pm-close:hover { background: var(--surface-2); color: var(--text); }

.pm-body {
  display: flex; flex: 1; overflow: hidden;
}

/* Sidebar */
.pm-sidebar {
  width: 220px; flex-shrink: 0;
  border-right: 1px solid var(--border);
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 2px;
  padding: .75rem;
  background: var(--surface);
}
@media (max-width: 779px) {
  .pm-body { flex-direction: column; }
  .pm-sidebar {
    width: 100%; flex-direction: row; overflow-x: auto;
    border-right: none; border-bottom: 1px solid var(--border);
    padding: .5rem;
  }
}
.pm-cat-btn {
  all: unset; cursor: pointer;
  display: flex; align-items: center; gap: .65rem;
  padding: .7rem .85rem; border-radius: 10px;
  transition: background .15s;
  position: relative;
}
.pm-cat-btn:hover { background: var(--surface-2); }
.pm-cat-btn.active { background: #fff; box-shadow: 0 1px 4px rgba(15,23,42,.08); }
.pm-cat-btn__img {
  width: 40px; height: 40px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
}
@media (max-width: 779px) {
  .pm-cat-btn { flex-direction: column; align-items: center; padding: .5rem .65rem; gap: .3rem; min-width: 90px; }
  .pm-cat-btn__sub { display: none; }
}
.pm-cat-btn__info { display: flex; flex-direction: column; gap: .1rem; }
.pm-cat-btn__label { font-size: .88rem; font-weight: 700; color: var(--text); }
.pm-cat-btn__sub   { font-size: .72rem; color: var(--muted-2); }
.pm-cat-badge {
  background: var(--accent); color: #fff;
  font-size: .65rem; font-weight: 800;
  padding: .1rem .4rem; border-radius: 999px;
  margin-left: auto; flex-shrink: 0;
}

/* Products */
.pm-products {
  flex: 1; overflow-y: auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px; align-content: start;
  background: var(--border);
  padding: 0;
}
.pm-prod {
  background: var(--bg); display: flex; flex-direction: column;
  transition: background .15s;
}
.pm-prod.added { background: color-mix(in srgb, var(--accent-soft) 35%, var(--bg)); }
.pm-prod__fig { aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.pm-prod__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease-out); }
.pm-prod:hover .pm-prod__fig img { transform: scale(1.04); }
.pm-prod__body { padding: 1rem 1.1rem .6rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.pm-prod__name { font-size: .93rem; font-weight: 800; color: var(--text); }
.pm-prod__sum  { font-size: .79rem; color: var(--muted); line-height: 1.5; }
.pm-prod__bullets { list-style: none; padding: 0; margin: .2rem 0 0; display: flex; flex-direction: column; gap: .25rem; }
.pm-prod__bullets li { display: flex; align-items: flex-start; gap: .4rem; font-size: .77rem; color: var(--text); line-height: 1.45; }
.pm-bullet-ic { color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: .05rem; }
.pm-prod__brands { display: flex; flex-wrap: wrap; gap: .25rem; margin-top: .25rem; }
.pm-brand {
  font-size: .65rem; font-weight: 700; letter-spacing: .04em;
  padding: .15rem .5rem; border-radius: 999px;
  background: var(--surface-2); color: var(--muted); border: 1px solid var(--border);
}
.pm-prod__add {
  all: unset; cursor: pointer; margin: .6rem 1.1rem .9rem;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-size: .8rem; font-weight: 700;
  padding: .55rem 1rem; border-radius: 8px;
  border: 1.5px solid var(--accent); color: var(--accent);
  transition: background .15s, color .15s;
}
.pm-prod__add:hover { background: var(--accent); color: #fff; }
.pm-prod__add.added { background: #16a34a; color: #fff; border-color: #16a34a; pointer-events: none; }

/* Footer */
.pm-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--border);
  background: var(--surface); flex-shrink: 0;
}
.pm-footer__left { flex: 1; min-width: 0; }
.pm-footer__hint { font-size: .8rem; color: var(--muted-2); }
.pm-footer__chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.pm-footer__chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent-deep); font-size: .78rem; font-weight: 600;
  padding: .3rem .65rem; border-radius: 999px;
}
.pm-footer__chip-rm { all: unset; cursor: pointer; color: var(--accent); font-size: .9rem; }
.pm-footer__cta { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 600px) {
  .pm-footer { flex-direction: column; align-items: stretch; }
  .pm-footer__cta { text-align: center; justify-content: center; }
}

/* ── ProduktModal: inline contact form in footer ── */
.pm-footer {
  display: flex; flex-direction: column; gap: .75rem;
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--border);
  background: var(--surface); flex-shrink: 0;
}
.pm-footer__selection { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; min-height: 1.5rem; }
.pm-footer__form {
  display: flex; gap: .6rem; flex-wrap: wrap; align-items: center;
}
.pm-footer__input {
  flex: 1; min-width: 140px;
  padding: .6rem .85rem; border-radius: 8px;
  border: 1.5px solid var(--border-med); background: #fff;
  font-size: .88rem; font-family: var(--font); color: var(--text);
  transition: border-color .15s;
}
.pm-footer__input:focus { outline: none; border-color: var(--accent); }
.pm-footer__cta { white-space: nowrap; flex-shrink: 0; }
.pm-footer__cta:disabled { opacity: .4; cursor: not-allowed; transform: none !important; }

/* Success state */
.pm-sent {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1rem; padding: 3rem 2rem; text-align: center;
}
.pm-sent__ic {
  width: 64px; height: 64px; border-radius: 50%;
  background: #f0fdf4; color: #16a34a; font-size: 1.75rem;
  display: grid; place-items: center; border: 2px solid #bbf7d0;
}
.pm-sent__title { font-size: 1.25rem; font-weight: 800; color: var(--text); }
.pm-sent__sub { font-size: .9rem; color: var(--muted-2); max-width: 360px; line-height: 1.6; }

@media (max-width: 600px) {
  .pm-footer__form { flex-direction: column; }
  .pm-footer__input { min-width: 0; width: 100%; }
  .pm-footer__cta { width: 100%; justify-content: center; }
}


/* ============================================================
   MOBILE OPTIMIERUNG (Startseite + alle Pages)
   ============================================================ */

/* Wrap: etwas mehr Luft auf sehr kleinen Screens */
@media (max-width: 400px) {
  .wrap { width: min(1140px, 100% - 1.5rem); }
}

/* Topbar: verstecken auf Mobile */
@media (max-width: 640px) {
  .topbar { display: none; }
}

/* Sticky bar: iOS safe area */
.sticky-bar {
  padding-bottom: max(.75rem, env(safe-area-inset-bottom));
}

/* Section lead: etwas kleiner auf Mobile */
@media (max-width: 480px) {
  .section__lead { font-size: .92rem; }
  .section__title { font-size: clamp(1.45rem, 5.5vw, 2rem); }
}

/* Hero-Suche: volle Breite auf Mobile */
@media (max-width: 520px) {
  .msearch__form { flex-direction: column; }
  .msearch__input { border-radius: 10px; }
  .msearch__btn   { border-radius: 10px; width: 100%; justify-content: center; }
  .mhero__cta     { width: 100%; justify-content: center; text-align: center; }
}

/* Trust bar: kleinere Gaps auf Mobile */
@media (max-width: 480px) {
  .trust-bar__list { gap: .6rem 1rem; justify-content: flex-start; }
  .trust-bar__item { font-size: .75rem; }
}

/* Stats: 2 Spalten auf Mobile */
@media (max-width: 400px) {
  .stats-card { grid-template-columns: repeat(2, 1fr); }
}

/* Advisor: volle Breite Buttons */
@media (max-width: 520px) {
  .advisor-actions { flex-direction: column; }
  .advisor-actions .btn { width: 100%; justify-content: center; }
  .advisor-photo-wrap { max-width: 100%; }
}

/* Steps: kompaktere Darstellung auf Mobile */
@media (max-width: 479px) {
  .step__num { width: 36px; height: 36px; font-size: .8rem; }
  .step__title { font-size: .95rem; }
}

/* CTA am Ende Produkte: volle Breite */
@media (max-width: 520px) {
  .cat-tiles-cta .btn { width: 100%; justify-content: center; }
}

/* Cert chips: 1 Spalte auf sehr kleinen Screens */
@media (max-width: 360px) {
  .certs-grid { grid-template-columns: 1fr; }
}

/* Promo section: volle Breite Buttons */
@media (max-width: 520px) {
  .promo-inner .btn { width: 100%; justify-content: center; }
}

/* CTA-End Sektion: volle Breite Buttons */
@media (max-width: 520px) {
  .cta-end__actions { flex-direction: column; }
  .cta-end__actions .btn { width: 100%; justify-content: center; }
}

/* Footer: kleinere Schrift auf Mobile */
@media (max-width: 400px) {
  .footer__col-note { font-size: .78rem; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: .5rem; font-size: .75rem; }
}

/* ProduktModal: footer form auf Mobile */
@media (max-width: 479px) {
  .pm-header__title { font-size: 1rem; }
  .pm-header__sub { font-size: .76rem; }
  .pm-prod__name { font-size: .88rem; }
  .pm-prod__sum  { font-size: .75rem; }
  .pm-prod__add { font-size: .76rem; padding: .45rem .75rem; }
}

/* Produkt-Cards Grid auf Mobile */
@media (max-width: 479px) {
  .prd-grid { grid-template-columns: 1fr; }
}

/* Kundenstimmen: kleinere Karten auf kleinen Screens */
@media (max-width: 400px) {
  .qs-card { width: 88vw; }
}

/* Drawer: nav links auf Mobile */
@media (max-width: 360px) {
  .drawer__links a { font-size: 1.35rem; }
}

/* Kontakt-Wizard auf Mobile */
@media (max-width: 480px) {
  .kform-q { font-size: 1.35rem; }
  .kopt__label { font-size: .9rem; }
  .kopt { padding: .85rem 1rem; }
}

/* ============================================================
   MOBILE FIXES (verifier pass 2)
   ============================================================ */

/* 1. Steps: force single column on mobile */
@media (max-width: 599px) {
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .step__connector { display: none; }
}

/* 2. Stats card: single column on tiny screens */
@media (max-width: 399px) {
  .stats-card { grid-template-columns: 1fr; }
  .stats-card__item { border-left: none !important; border-top: 1px solid var(--border); }
  .stats-card__item:first-child { border-top: none; }
}

/* 3. Promo card: hide media on mobile */
@media (max-width: 580px) {
  .promo-card__media { display: none; }
}

/* 4. Topbar: hide on mobile, trust-bar wraps cleanly */
@media (max-width: 600px) {
  .topbar { display: none; }
  .trust-bar__list {
    gap: .5rem .75rem;
    justify-content: flex-start;
    font-size: .74rem;
  }
}

/* 5. Section title: tighter on very small screens */
@media (max-width: 360px) {
  .section__title { font-size: 1.35rem; }
  .section__lead  { font-size: .88rem; }
}

/* 6. Cat-tiles-cta + pm-footer inputs: full width */
@media (max-width: 520px) {
  .cat-tiles-cta { align-items: stretch; }
  .cat-tiles-cta .btn { width: 100%; justify-content: center; }
  .pm-footer__input { width: 100%; min-width: 0; flex: none; }
  .pm-footer__form { flex-direction: column; }
  .pm-footer__cta { width: 100%; justify-content: center; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  animation: cookieIn .3s var(--ease-out);
}
@keyframes cookieIn { from { transform: translateY(100%); } to { transform: none; } }
.cookie-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  width: min(1140px, 100% - 2rem); margin-inline: auto;
}
.cookie-banner__text {
  font-size: .82rem; color: #94a3b8; line-height: 1.5; flex: 1; min-width: 200px;
}
.cookie-banner__link { color: var(--accent-bright); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-banner__decline {
  all: unset; cursor: pointer;
  font-size: .8rem; font-weight: 600; color: #64748b;
  padding: .5rem .9rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  transition: color .15s, border-color .15s;
}
.cookie-banner__decline:hover { color: #cbd5e1; border-color: rgba(255,255,255,.25); }
.cookie-banner__accept {
  all: unset; cursor: pointer;
  font-size: .8rem; font-weight: 700; color: #fff;
  padding: .5rem 1.1rem; border-radius: 8px;
  background: var(--accent);
  transition: background .15s;
}
.cookie-banner__accept:hover { background: var(--accent-deep); }
@media (max-width: 520px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__btns { justify-content: flex-end; }
}

/* ============================================================
   STEPS V2 — Card with ghost number
   ============================================================ */
.steps-v2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 700px) {
  .steps-v2 {
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
}

.step-v2 {
  position: relative; overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem 2rem;
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.step-v2:hover {
  box-shadow: 0 8px 32px -8px rgba(15,23,42,.12);
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .step-v2 { border-radius: 0; border: none; transform: none !important; box-shadow: none !important; }
}

/* Ghost number watermark */
.step-v2__ghost {
  position: absolute; top: -.25rem; right: .75rem;
  font-size: 6.5rem; font-weight: 900;
  line-height: 1; letter-spacing: -.06em;
  color: var(--accent-soft);
  pointer-events: none; user-select: none;
  font-family: var(--font);
}

.step-v2__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: .5rem; }
.step-v2__label {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent); margin: 0;
}
.step-v2__title {
  font-size: 1.08rem; font-weight: 800; color: var(--text);
  line-height: 1.25; margin: 0; letter-spacing: -.02em;
}
.step-v2__text {
  font-size: .88rem; color: var(--muted); line-height: 1.65; margin: .15rem 0 0;
}

/* Arrow connector between steps */
.step-v2__arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 .5rem; color: var(--muted-2); flex-shrink: 0;
}
@media (max-width: 700px) { .step-v2__arrow { display: none; } }

/* ============================================================
   ADVISOR STRIP — kompakt, dezent
   ============================================================ */
.advisor-strip {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-block: var(--section-y);
  flex-wrap: wrap;
}
.advisor-strip__photo {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(15,23,42,.12);
  flex-shrink: 0;
}
.advisor-strip__text {
  display: flex; flex-direction: column; gap: .2rem; flex: 1; min-width: 160px;
}
.advisor-strip__name {
  font-size: .9rem; font-weight: 700; color: var(--text);
}
.advisor-strip__sub {
  font-size: .8rem; color: var(--muted-2); line-height: 1.45;
}
.advisor-strip__cta {
  flex-shrink: 0; font-size: .85rem;
}
@media (max-width: 520px) {
  .advisor-strip { flex-direction: column; align-items: flex-start; gap: .85rem; }
  .advisor-strip__cta { width: 100%; justify-content: center; }
}

/* ── Steps: inline advisor note ── */
.steps-advisor {
  display: inline-flex; align-items: center; gap: .65rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 999px; padding: .45rem .9rem .45rem .45rem;
}
.steps-advisor__photo {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.steps-advisor__text {
  font-size: .8rem; color: var(--muted); line-height: 1.4;
}
.steps-advisor__text strong { color: var(--text); }
@media (max-width: 520px) {
  .steps-advisor { text-align: left; border-radius: 12px; }
}

/* ── CTA: Marco inline ── */
.cta-end__marco {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem;
}
.cta-end__marco-photo {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15,23,42,.15);
}
.cta-end__marco-name {
  font-size: .78rem; font-weight: 700; color: var(--muted-2);
  text-transform: uppercase; letter-spacing: .07em; margin: 0 0 .2rem;
}
.cta-end__marco-quote {
  font-size: .95rem; color: var(--text); font-style: italic; margin: 0; line-height: 1.5;
}
@media (max-width: 480px) {
  .cta-end__marco { flex-direction: column; align-items: flex-start; }
}

/* ── Step 01: inline person ── */
.step-v2__person {
  display: flex; align-items: center; gap: .55rem;
  margin-top: .85rem; padding-top: .85rem;
  border-top: 1px solid var(--border);
}
.step-v2__person-photo {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(15,23,42,.12);
}
.step-v2__person-name {
  font-size: .78rem; color: var(--muted-2); font-weight: 600;
}

/* ============================================================
   MOBILE FIX PASS — 375px vollständig
   ============================================================ */

/* 1. Hero city search: column stacking */
@media (max-width: 480px) {
  .msearch__form { flex-direction: column; gap: .5rem; }
  .msearch__input { border-radius: 10px; width: 100%; }
  .msearch__btn   { border-radius: 10px; width: 100%; justify-content: center; }
}

/* 2. Hero CTA: full width on mobile */
@media (max-width: 520px) {
  .mhero__cta {
    display: flex; width: 100%;
    justify-content: center; text-align: center;
    box-sizing: border-box;
  }
}

/* 3. Ghost number: smaller on narrow cards */
@media (max-width: 480px) {
  .step-v2__ghost { font-size: 4.5rem; right: .5rem; }
  .step-v2 { padding: 1.5rem 1.25rem; }
}

/* 4. Trust bar: force wrap + smaller text */
.trust-bar__list {
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .trust-bar__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }
  .trust-bar__item { font-size: .75rem; }
}

/* 5. Footer bar: compact on mobile */
@media (max-width: 480px) {
  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: .45rem;
    padding-block: 1.25rem;
    font-size: .75rem;
  }
  .footer__bar a { font-size: .75rem; }
}

/* 6. Cookie banner: stack on mobile */
@media (max-width: 480px) {
  .cookie-banner__inner { flex-direction: column; gap: .75rem; }
  .cookie-banner__btns { justify-content: stretch; gap: .5rem; }
  .cookie-banner__accept,
  .cookie-banner__decline { flex: 1; text-align: center; padding: .6rem; }
}

/* 7. Brand ticker: fade mask on mobile */
@media (max-width: 600px) {
  .brand-ticker {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    overflow: hidden;
  }
}

/* 8. ProduktModal sidebar: scrollable but with min item size */
@media (max-width: 779px) {
  .pm-sidebar {
    min-height: auto;
    padding: .4rem;
    gap: .35rem;
  }
  .pm-cat-btn { min-width: 80px; padding: .4rem .55rem; }
  .pm-cat-btn__img { width: 32px; height: 32px; }
  .pm-cat-btn__label { font-size: .78rem; }
}

/* 9. Kontakt aside: padding on mobile */
@media (max-width: 860px) {
  .kform-aside { padding-top: .5rem; }
  .kform-aside__card { padding: 1rem; }
  .kform-aside__phone { font-size: 1.15rem; }
}

/* Extra: hero panel on very small screens */
@media (max-width: 380px) {
  .mhero__h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .mhero__panel { padding: 1.25rem; }
  .mhero__tag  { font-size: .7rem; }
}

/* Extra: CTA end buttons full width on mobile */
@media (max-width: 480px) {
  .cta-end__actions { flex-direction: column; width: 100%; }
  .cta-end__actions .btn { width: 100%; justify-content: center; }
  .cta-end { padding: 2rem 1.5rem; }
}

/* Extra: FAQ items full width */
@media (max-width: 480px) {
  .faq-q { font-size: .92rem; padding: 1rem; }
  .faq-a  { padding: 0 1rem 1rem; font-size: .88rem; }
}

/* Extra: product modal full-screen on mobile */
@media (max-width: 779px) {
  .pm-modal { border-radius: 0; }
  .pm-header { padding: 1rem; }
  .pm-header__title { font-size: 1rem; }
  .pm-footer { padding: .85rem 1rem; }
}

/* ── msearch pill: stack on mobile ── */
@media (max-width: 500px) {
  .msearch__pill {
    flex-direction: column;
    align-items: stretch;
    padding: .6rem .75rem;
    gap: .5rem;
    border-radius: 14px;
  }
  .msearch__icon { display: none; }
  .msearch__input {
    padding: .55rem 0;
    font-size: .95rem;
    border-bottom: 1px solid var(--border);
  }
  .msearch__btn {
    width: 100%; height: 46px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .55s var(--ease-out),
    transform .55s var(--ease-out);
  /* transition-delay set inline via transitionDelay prop */
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Stats count-up: subtle scale entrance */
.stats-card__num {
  display: block;
  transition: transform .4s var(--ease-out);
}
.stats-card__item:hover .stats-card__num {
  transform: scale(1.08);
}

/* Cat tiles: lift on hover */
.cat-tile {
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .18s;
}
.cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px -8px var(--accent-glow);
}

/* Step cards: subtle lift */
.step-v2 {
  transition: box-shadow .22s, transform .22s, background .15s;
}

/* FAQ items: smooth height open */
.faq-a {
  animation: faqOpen .25s var(--ease-out);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* CTA end: pulse on phone button */
.cta-end .btn--primary {
  animation: ctaPulse 3.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 4px 14px -4px var(--accent-glow); }
  50%      { box-shadow: 0 4px 24px -2px var(--accent-glow), 0 0 0 6px color-mix(in srgb, var(--accent) 12%, transparent); }
}
.cta-end .btn--primary:hover {
  animation: none;
}
