

@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../fonts/poppins-v24-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../fonts/poppins-v24-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("../fonts/poppins-v24-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("../fonts/poppins-v24-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../fonts/inter-v20-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("../fonts/inter-v20-latin-600.woff2") format("woff2");
}

:root {

  --navy: #1B2A4A;
  --navy-dark: #111d36;
  --charcoal: #5F5E5D;
  --ice: #F4F7F9;
  --orange: #FF751F;
  --orange-dark: #e85f0a;
  --green: #6e9c4f;
  --green-soft: #eef4e7;

  --color-bg: #ffffff;
  --color-surface: #F4F7F9;
  --color-surface-2: #e9eef4;
  --color-text: #3b3b3d;
  --color-heading: #1B2A4A;
  --color-muted: #6b7480;
  --color-primary: #1B2A4A;
  --color-primary-dark: #111d36;
  --color-cta: #FF751F;
  --color-cta-dark: #e85f0a;
  --color-accent: #6e9c4f;
  --color-border: #e4e9ef;

  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow: 0 10px 30px rgba(27, 42, 74, .08);
  --shadow-lg: 0 24px 60px rgba(27, 42, 74, .14);

  --container: 1160px;
  --container-narrow: 760px;

  --header-h: 88px;
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--color-heading);
  font-weight: 600;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 var(--space-2); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin: 0 0 var(--space-2); }
h3 { font-size: 1.2rem; }
p  { color: var(--color-text); }

a { color: var(--color-primary); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }

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

strong { color: var(--color-heading); }

:focus-visible {
  outline: 3px solid var(--color-cta);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-3);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(var(--space-4), 8vw, var(--space-6)); }
.section--accent { background: var(--color-surface); }
.section--green { background: var(--green-soft); }
.section__title { text-align: center; margin: 0; }

.section__subtitle {
  text-align: center;
  margin: var(--space-4) 0 var(--space-3);
  font-size: 1.35rem;
}
.section__lead {
  text-align: center;
  max-width: 60ch;
  margin: var(--space-2) auto 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.section__lead + *:not(.btn):not(.section__cta),
.section__title + *:not(.section__lead):not(.eyebrow):not(.btn):not(.section__cta) {
  margin-top: var(--space-5);
}

.section__lead + .btn,
.section__title + .btn { margin-top: var(--space-3); }

.eyebrow {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 .85rem;
}
.section__title + .eyebrow { margin-top: 0; }

.split__body .eyebrow { color: var(--color-accent); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .85rem;
  color: var(--navy);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: .4rem .9rem;
}
.badge__dot { color: var(--color-cta); font-size: 1rem; line-height: 1; }

.skip-link {
  position: absolute;
  left: -999px; top: 0;
  background: var(--navy);
  color: #fff;
  padding: var(--space-1) var(--space-2);
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; top: 0; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: box-shadow .28s ease, background .28s ease, border-color .28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--color-border);
  box-shadow: 0 6px 24px rgba(27, 42, 74, .09);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 88px;
  transition: min-height .28s ease;
}
.site-header.is-scrolled .header-inner { min-height: 66px; }
.logo { display: inline-flex; align-items: center; margin-right: auto; }
.logo img { height: 60px; width: auto; transition: height .28s ease; }
.site-header.is-scrolled .logo img { height: 46px; }
.header-actions { display: flex; align-items: center; gap: var(--space-1); }

.header-cta { padding: .6rem 1.15rem; }

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0; padding: 0;
}
.site-nav a {
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .98rem;
  padding: .35rem 0;
  position: relative;
}
.site-nav a:hover { text-decoration: none; color: var(--color-cta); }
.site-nav a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px; border-radius: 3px;
  background: var(--color-cta);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle__bar { top: 21px; }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after  { top: 7px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .62rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .94rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .05s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn:hover { text-decoration: none; }
.btn:disabled { opacity: .6; cursor: not-allowed; }

.btn--primary { background: var(--color-cta); color: #fff; }
.btn--primary:hover { background: var(--color-cta-dark); color: #fff; }

.btn--ghost { border-color: var(--color-cta); color: var(--color-cta); background: #fff; }
.btn--ghost:hover { background: var(--color-cta); border-color: var(--color-cta); color: #fff; }

.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--ice); color: var(--navy); }

.hero {
  padding-block: clamp(var(--space-4), 7vw, var(--space-6));
  background: linear-gradient(180deg, var(--color-surface), var(--color-bg));
}
.hero--center { text-align: center; }
.hero--compact { padding-block: var(--space-5); }
.hero__lead {
  max-width: 62ch;
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-block: var(--space-2) var(--space-3);
}
.hero--center .hero__lead { margin-inline: auto; }
.hero__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-3);
}
.hero--center .hero__actions { justify-content: center; }

.hero__grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
.hero__media { position: relative; }
.hero__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--color-surface-2);
}
.hero__badge-float {
  position: absolute;
  left: -12px; bottom: 22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-2);
  display: flex;
  align-items: center;
  gap: .7rem;
  max-width: 230px;
}
.hero__badge-float strong { display: block; color: var(--navy); font-family: var(--font-head); }
.hero__badge-float span { font-size: .85rem; color: var(--color-muted); }
.hero__badge-icon {
  width: 42px; height: 42px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--green-soft); color: var(--green);
  border-radius: 50%; font-size: 1.3rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-3);
  margin-top: var(--space-3);
  list-style: none;
  padding: 0;
}
.trust li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .95rem; color: var(--color-muted); font-weight: 500;
}
.trust li::before { content: "\2713"; color: var(--green); font-weight: 800; }

.grid { display: grid; gap: var(--space-3); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.swipe-dot, .carousel__dot {
  width: 8px; height: 8px; border: 0; padding: 0; cursor: pointer;
  border-radius: 50%; background: var(--color-border);
  transition: width .2s ease, background .2s ease;
}
.swipe-dot[aria-selected="true"], .carousel__dot[aria-selected="true"] {
  background: var(--color-cta); width: 22px; border-radius: 4px;
}
.carousel__dots { display: flex; flex-wrap: wrap; justify-content: center; gap: .45rem; margin-top: var(--space-2); }

.swipe-dots { display: none; }
@media (max-width: 719px) {
  .grid.swipe-mobile,
  .reviews__cards.swipe-mobile {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;

    scroll-snap-type: x proximity;

    overscroll-behavior-x: contain;
    gap: var(--space-2);
    -webkit-overflow-scrolling: touch;
    margin-inline: calc(var(--space-3) * -1);

    padding: 1.5rem var(--space-3) 1.9rem;
    scroll-padding-inline: var(--space-3);
    scrollbar-width: none;
  }
  .grid.swipe-mobile::-webkit-scrollbar,
  .reviews__cards.swipe-mobile::-webkit-scrollbar { display: none; }
  .grid.swipe-mobile > *,
  .reviews__cards.swipe-mobile > .review {
    flex: 0 0 84%;
    scroll-snap-align: center;
  }

  .review__text.is-clamped {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
  }
  .review__text + .review__toggle {
    display: inline-block;
    margin-top: var(--space-1);
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-cta);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
  }
  .review__text + .review__toggle:focus-visible {
    outline: 2px solid var(--color-cta);
    outline-offset: 3px;
    border-radius: 4px;
  }
  .swipe-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .45rem;
    margin-top: var(--space-2);
  }

  .section__cta,
  .page-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .section__cta .btn,
  .page-hero__actions .btn {
    width: 100%;
    white-space: nowrap;
    justify-content: center;
    text-align: center;
  }
}

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--green-soft); color: var(--green);
  border-radius: 14px;
  font-size: 1.7rem;
  margin-bottom: var(--space-2);
}
.card h3 { margin: 0 0 var(--space-1); color: var(--navy); }
.card p { margin: 0; color: var(--color-muted); }

.leistung { display: flex; flex-direction: column; }
.leistung .card__link { margin-top: auto; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: var(--space-2);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--color-cta);
}
.card__link:hover { text-decoration: none; color: var(--color-cta-dark); }
.card__link::after { content: "\2192"; transition: transform .2s ease; }
.card:hover .card__link::after { transform: translateX(4px); }
.card__icon--large { font-size: 3rem; margin-bottom: var(--space-2); }

.muted { color: var(--color-muted); font-size: .95rem; }

.taglist { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.taglist li { margin: 0; }
.taglist a {
  display: inline-block;
  padding: .25rem .6rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg, #fff);
  font-size: .82rem;
  color: var(--color-text);
  text-decoration: none;
}
.taglist a:hover,
.taglist a:focus-visible { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.lead { font-size: 1.15rem; color: var(--color-text); }
.cta--inline { display: flex; gap: var(--space-1); flex-wrap: wrap; margin-top: var(--space-3); }

.split {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--color-surface-2);
}

.split__media img.is-portrait,
.video-thumb img.is-portrait { object-position: center top; }
.split__body h2 { margin-bottom: var(--space-3); }
.split__body p { color: var(--color-muted); }
.split__body .btn { margin-top: var(--space-2); }

.feature-nums {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0; padding: 0;
}
.feature-num {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2);
  align-items: start;
}
.feature-num__n {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--color-cta);
  opacity: .9;
}
.feature-num h3 { margin: .2rem 0 .3rem; }
.feature-num p { margin: 0; }

.usp { text-align: left; }
.usp__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--green-soft); color: var(--green);
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.cta-band {
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-3), 4vw, var(--space-4)) clamp(var(--space-3), 5vw, var(--space-5));
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-1) var(--space-5);
  text-align: left;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; grid-column: 1; margin: 0; }
.cta-band p { color: rgba(255, 255, 255, .82); grid-column: 1; max-width: 60ch; margin: var(--space-1) 0 0; }
.cta-band .btn { grid-column: 2; grid-row: 1 / 3; align-self: center; justify-self: end; margin: 0; }
.cta-band--orange {
  background: linear-gradient(120deg, var(--orange), #ff9145);
}
.cta-band--orange p { color: rgba(255, 255, 255, .92); }
@media (max-width: 680px) {
  .cta-band { grid-template-columns: 1fr; text-align: center; gap: var(--space-2); }
  .cta-band p { margin-inline: auto; }
  .cta-band .btn { grid-column: 1; grid-row: auto; justify-self: center; }
}

.section--tight { padding-block: var(--space-2); }
.section--pull-up { padding-top: var(--space-3); }
.section--dark { background: var(--navy); color: #fff; }
.section--dark h2, .section--dark h3, .section--dark .section__title { color: #fff; }
.section--dark p, .section--dark .section__lead { color: rgba(255, 255, 255, .78); }
.section--dark .feature-num__n { color: #fff; opacity: .28; }

.tel-link { font-weight: 700; white-space: nowrap; color: var(--navy); }

.mail-link { font-weight: 700; color: var(--navy); word-break: break-word; }
.site-footer .mail-link { color: #fff; }

.booking-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  text-align: center;
  margin-bottom: var(--space-2);
}
.booking-box h2 { margin: 0 0 var(--space-1); }
.booking-box p { margin: 0 0 var(--space-2); }
.booking-or { text-align: center; color: var(--color-muted); margin: 0 0 var(--space-2); }

.praxis-info { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
.praxis-info__col h3 { margin: 0 0 var(--space-1); color: var(--navy); }
.praxis-info__note { font-size: .9rem; color: var(--color-muted); }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .5rem 0; border-bottom: 1px solid var(--color-border); }
.hours th { font-weight: 600; color: var(--color-heading); width: 45%; }
.hours td { color: var(--color-muted); }

.social { display: flex; gap: var(--space-1); margin: 0 0 .5rem; }
.social__link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}
.social__link:hover { background: var(--color-cta); color: #fff; }

.map-consent {
  margin-top: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}
.map-consent__inner { padding: var(--space-3); text-align: center; }
.map-consent__text { margin: 0 auto var(--space-2); max-width: 52ch; font-size: .95rem; color: var(--color-muted); }
.map-consent__frame { display: block; width: 100%; height: 360px; border: 0; }

.location { padding-bottom: var(--space-4); margin-bottom: var(--space-4); border-bottom: 1px solid var(--color-border); }
.location:last-child { border-bottom: 0; margin-bottom: 0; }
.location__name { margin: 0 0 var(--space-2); }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 1.9rem; margin-bottom: .6rem; color: var(--color-text); }
.checklist li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 800;
}

.entwurf {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 999px;
  padding: .2rem .6rem;
  margin-bottom: .5rem;
}
.entwurf-hinweis {
  border: 1px solid #fcd34d;
  background: #fffbeb;
  border-radius: var(--radius);
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-3);
  font-size: .9rem;
  color: #92400e;
}
.entwurf-hinweis strong { display: block; margin-bottom: .2rem; }

.team-group { margin: 0; }
.team-group img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--color-surface-2);
}
.team { text-align: center; display: flex; flex-direction: column; align-items: center; }

.team__avatar,
.team__photo {
  width: 128px; height: 128px;
  border-radius: 50%;
  margin: 0 auto var(--space-2);
}
.team__avatar {
  display: grid; place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2rem;
}
.team__photo { object-fit: cover; object-position: center top; }
.team h3 { margin: 0; color: var(--navy); }
.team__role { margin: .2rem 0 0; font-size: .95rem; color: var(--color-muted); min-height: 2.6em; display: flex; align-items: center; justify-content: center; text-align: center; }
.team__quals { list-style: none; padding: 0; margin: var(--space-2) 0 0; display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; }
.team__quals li {
  font-size: .78rem;
  background: var(--color-surface);
  color: var(--navy);
  padding: .25rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
}

.review {
  margin: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow);
  text-align: left;
}
.review__head { display: flex; align-items: center; gap: .7rem; margin-bottom: var(--space-1); }
.review__avatar {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem;
}
.review__author { margin: 0; color: var(--navy); font-weight: 600; font-style: normal; }
.review__meta { margin: 0; font-size: .8rem; color: var(--color-muted); display: flex; align-items: center; gap: .35rem; }
.review__stars { color: #fbbc05; letter-spacing: 2px; margin-bottom: var(--space-1); }
.review p { margin: 0; color: var(--color-text); font-style: normal; }

.review__toggle { display: none; }

.reviews__summary {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: var(--space-2) var(--space-3);
  box-shadow: var(--shadow);
  margin-bottom: var(--space-5);
}
.reviews__rating { margin: 0; font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.reviews__rating .review__stars { font-size: 1rem; margin: .25rem 0 0; display: block; }
.reviews__count { margin: 0; font-size: .9rem; color: var(--color-muted); }
.reviews__cards { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }
.reviews__cards .review { flex: 0 1 340px; }
.gicon { display: inline-block; vertical-align: middle; }

.review--feature {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  max-width: 46rem;
  margin-inline: auto;
}
.review--feature p { font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.5; }
.section--dark .review--feature p { color: #fff; }
.section--dark .review--feature .review__author { color: rgba(255, 255, 255, .7); }

.faq {
  display: grid;
  gap: var(--space-1);

  --faq-marker-w: .9rem;
  --faq-marker-gap: .55rem;
}
.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  padding: 0 var(--space-2);
}
.faq__q {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--color-heading);
  padding: var(--space-2) 0;
  list-style: none;

  display: flex;
  align-items: flex-start;
  gap: var(--faq-marker-gap);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before {
  content: "+";

  flex: 0 0 var(--faq-marker-w);
  text-align: center;
  color: var(--color-cta);
  font-weight: 700;
}
.faq__item[open] .faq__q::before { content: "\2013"; }

.faq__a {
  padding-bottom: var(--space-2);
  padding-left: calc(var(--faq-marker-w) + var(--faq-marker-gap));
}
.faq__a p { margin: 0; }

.form { margin-top: var(--space-3); }
.form__hint { font-size: .9rem; margin-top: 0; }
.form__group { margin-bottom: var(--space-3); }
.form__group label { display: block; font-weight: 600; margin-bottom: var(--space-1); color: var(--color-heading); }
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: .8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--color-bg);
  color: var(--color-text);
}
.form__group input[type="file"] { padding: .5rem; background: var(--color-surface); }
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus { border-color: var(--color-cta); outline: none; }
.form__optional { font-weight: 400; color: var(--color-muted); font-size: .9rem; }
.form__group input[aria-invalid="true"],
.form__group textarea[aria-invalid="true"] { border-color: #dc2626; }
.form__group--check { display: flex; gap: var(--space-1); align-items: flex-start; }
.form__group--check label { font-weight: 400; margin: 0; color: var(--color-text); }
.form__group--check input { width: auto; margin-top: .35rem; }
.req { color: #dc2626; }
.form__error { display: block; color: #dc2626; font-size: .9rem; margin-top: .35rem; }
.form__note { margin-top: var(--space-2); font-weight: 600; }
.form__note--ok { color: #15803d; }
.form__note--err { color: #dc2626; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.legal h2 { margin-top: var(--space-4); }
.legal ul { color: var(--color-muted); }
.legal__hint {
  margin-top: var(--space-4);
  padding: var(--space-2);
  background: var(--color-surface);
  border-left: 4px solid var(--color-cta);
  border-radius: var(--radius-sm);
}

.steps {
  list-style: none;
  margin: 0 auto; padding: 0;
  display: grid;
  gap: var(--space-2);
  max-width: 760px;
}
.steps__item {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-2);
}
.steps__item h3 { margin: 0 0 .25rem; }
.steps__item p { margin: 0; color: var(--color-muted); }
.steps__num {
  flex: 0 0 auto;
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  background: var(--color-cta);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 700;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .78);
  padding-block: var(--space-5);

}
.footer-inner {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
.footer-brand__logo { height: 52px; width: auto; margin-bottom: var(--space-2); }
.footer-brand__name { font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 1.1rem; }
.site-footer p { margin: 0 0 .35rem; color: rgba(255, 255, 255, .72); }
.site-footer a { color: rgba(255, 255, 255, .82); }
.site-footer a:hover { color: #fff; }
.footer-brand .tel-link { color: #fff; }
.footer-nav__title {
  font-family: var(--font-head);
  font-size: .95rem;
  color: #fff;
  margin: 0 0 var(--space-2);
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 0; padding: 0;
}
.footer-nav a { color: rgba(255, 255, 255, .72); }
.footer-nav a:hover { color: var(--color-cta); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: var(--space-4);
  padding-top: var(--space-2);
  font-size: .85rem;
}
.link-btn {
  background: none; border: 0; padding: 0;
  color: rgba(255, 255, 255, .72); cursor: pointer;
  font: inherit; text-align: left;
}
.link-btn:hover { color: var(--color-cta); text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }

@media (hover: none) {
  .btn { transition: transform .12s ease, background .15s ease, box-shadow .15s ease; }
  .btn:active { transform: translateY(1px) scale(.985); }
  .card { transition: transform .12s ease, box-shadow .15s ease; }
  .card:active { transform: scale(.99); }
  .faq__q:active { opacity: .7; }
}

@media (hover: hover) {
  .feature-card__img { transition: transform .5s ease; }
  .feature-card:hover .feature-card__img { transform: scale(1.06); }
  .btn { transition: transform .15s ease, background .18s ease, box-shadow .18s ease; }
  .btn--primary:hover { transform: translateY(-1px); }
}

.mobile-bar { display: none; }
@media (max-width: 719px) {
  .mobile-bar {
    display: flex;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 880;
    gap: 1px;
    background: var(--color-border);
    box-shadow: 0 -6px 22px rgba(27, 42, 74, .16);
    transform: translateY(100%);
    transition: transform .3s ease;
  }
  .mobile-bar.is-visible { transform: translateY(0); }
  .mobile-bar__btn {
    flex: 1 1 0;
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .95rem 1rem;
    font-family: var(--font-head); font-weight: 600; font-size: .98rem;
    text-decoration: none;
  }
  .mobile-bar__btn svg { width: 19px; height: 19px; flex-shrink: 0; }
  .mobile-bar__btn--call { background: #fff; color: var(--navy); }
  .mobile-bar__btn--appt { background: var(--color-cta); color: #fff; }
  .mobile-bar__btn:active { filter: brightness(.95); }
  body { padding-bottom: 3.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .mobile-bar { transition: none; }
}

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .steps__item { padding: var(--space-3); }
  .praxis-info { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .feature-nums { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; align-items: start; }
}

@media (min-width: 900px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .split { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .split--reverse .split__media { order: 2; }

  .split__media { display: grid; }
  .split__media img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 20rem;
  }
}

@media (max-width: 899px) {
  .hero__badge-float { left: 12px; }
}

@media (max-width: 719px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav[data-open="true"] { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: var(--space-1); }
  .site-nav a { display: block; padding: var(--space-2); }
  .site-nav a[aria-current="page"]::after { display: none; }
}

.btn--lg { padding: 1rem 2.1rem; font-size: 1.06rem; }
.section__cta { margin-top: clamp(1.8rem, 4vw, 2.6rem); display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; }
.section__cta--left { justify-content: flex-start; }

.hero-rec {
  position: relative;
  background-size: cover;
  background-position: center right;
  padding-block: clamp(2.6rem, 9vw, 6.5rem);
  padding-top: calc(var(--header-h) + clamp(1.2rem, 4vw, 3rem));
  overflow: hidden;
}

.hero-rec__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-rec__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(244,247,249,.98) 0%, rgba(244,247,249,.94) 34%,
    rgba(244,247,249,.6) 62%, rgba(244,247,249,.12) 100%);
}
.hero-rec__inner { position: relative; }
.hero-rec__content { max-width: 620px; }
.hero-rec__content h1 { margin-top: .8rem; }
.hero-rec__sub {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--color-muted);
  margin: 0 0 1.6rem; max-width: 40ch;
}
.hero-rec__list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .7rem; }
.hero-rec__list li { position: relative; padding-left: 2.1rem; font-weight: 500; color: var(--navy); }
.hero-rec__list li::before {
  content: "\2713"; position: absolute; left: 0; top: .12rem;
  display: grid; place-items: center;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: .78rem; font-weight: 800;
}
.hero-rec__list strong { color: var(--navy); }

.video-thumb { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.video-thumb__play {
  position: absolute; inset: 0; margin: auto;
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,117,31,.94); box-shadow: 0 10px 26px rgba(0,0,0,.32);
}
.video-thumb__play::after {
  content: ""; position: absolute; top: 50%; left: 54%;
  transform: translate(-50%,-50%);
  border-style: solid; border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}
.video-thumb__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem .8rem; color: #fff; font-size: .88rem;
  background: linear-gradient(0deg, rgba(0,0,0,.62), transparent);
}
.split--tight { gap: var(--space-3); align-items: center; }

.feature-cards { margin-top: var(--space-3); }
.feature-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.feature-card__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.feature-card__img--square { aspect-ratio: 1 / 1; }
.feature-card__body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);
  flex: 1;
}

.feature-card__body h3,
.feature-card__body h4 { margin: 0; color: var(--navy); font-size: 1.15rem; }
.feature-card__body p { margin: 0; color: var(--color-muted); }
.feature-card__body .btn,
.feature-card__body .card__link { margin-top: auto; }

.vorteile { position: relative; background-size: cover; background-position: center; color: #fff; }
.vorteile__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,42,74,.93), rgba(17,29,54,.9)); }
.vorteile__inner { position: relative; }
.vorteile .section__title, .vorteile h3 { color: #fff; }
.vorteile .section__lead { color: rgba(255,255,255,.82); }
.vorteile .feature-nums { margin-top: var(--space-3); }
.vorteile .feature-num__n { color: #fff; opacity: .28; }
.vorteile .feature-num p { color: rgba(255,255,255,.8); }

.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.benefit-list li { position: relative; padding-left: 2.3rem; color: var(--color-muted); }
.benefit-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  width: 1.55rem; height: 1.55rem; display: grid; place-items: center;
  border-radius: 50%; background: var(--green-soft); color: var(--green);
  font-weight: 800; font-size: .85rem;
}
.benefit-list strong { color: var(--navy); }

.reassure {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-1) var(--space-3);
  font-size: .9rem;
  color: var(--color-muted);
}
.reassure li { display: flex; align-items: center; gap: .4rem; }
.reassure li::before {
  content: "";
  width: .95rem; height: .95rem;
  flex-shrink: 0;
  background: var(--color-accent);

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.form.funnel {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-4) var(--space-3) var(--space-3);
  margin-top: var(--space-3);
}

.funnel__bar {
  height: 5px;
  border-radius: 999px;
  background: var(--color-surface-2);
  overflow: hidden;
  margin-bottom: var(--space-4);
}
.funnel__bar > i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--color-cta);
  transition: width .35s ease;
}

.funnel__step {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.funnel__head { margin-bottom: var(--space-3); }
.funnel__kicker {
  margin: 0 0 .35rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-cta);
}
.funnel__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 3.2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-heading);
}
.funnel__hint { margin: .5rem 0 0; font-size: .92rem; color: var(--color-muted); }
.funnel__error { margin: .6rem 0 0; font-size: .92rem; font-weight: 600; color: var(--color-error, #dc2626); }
.funnel__summary {
  margin: 0 0 var(--space-3);
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-size: .95rem;
  color: var(--color-text);
}
.funnel__summary b { color: var(--color-cta); }

.funnel__choices { display: grid; gap: .6rem; }
.funnel__choices.has-error .funnel__choice { border-color: var(--color-error, #dc2626); }

.funnel__choice {
  display: flex;
  align-items: center;
  gap: .8rem;
  width: 100%;
  margin: 0;
  padding: var(--space-2);
  text-align: left;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font: inherit;
  color: var(--color-text);
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.funnel__choice:hover { border-color: var(--color-cta); }
.funnel__choice:focus-within,
.funnel__choice:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 2px;
}
.funnel__choice.is-selected {
  border-color: var(--color-cta);
  background: #fff6ef;
}
.funnel__choice-text { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.funnel__choice-text b { font-weight: 600; color: var(--color-heading); }
.funnel__choice-text small { font-size: .85rem; color: var(--color-muted); }

.funnel__tick {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg) center/12px 12px no-repeat;
  transition: border-color .18s ease, background-color .18s ease;
}
.funnel__choice.is-selected .funnel__tick {
  border-color: var(--color-cta);
  background-color: var(--color-cta);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.funnel__choices--multi .funnel__choice { position: relative; }
.funnel__choices--multi .funnel__choice input[type="checkbox"] {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin: 0;
  accent-color: var(--color-cta);
  cursor: pointer;
}
.funnel__choices--multi .funnel__choice label {
  margin: 0;
  font-weight: 600;
  color: var(--color-heading);
  cursor: pointer;
}

.funnel__actions {
  display: flex;
  gap: var(--space-2);
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-4);
}
.funnel__actions .btn { flex: 0 1 auto; }
.funnel__actions [data-funnel-next] { margin-left: auto; }

@media (max-width: 719px) {
  .form.funnel { padding: var(--space-3) var(--space-2) var(--space-2); }
  .funnel__actions .btn { flex: 1 1 0; }
}

@media (prefers-reduced-motion: reduce) {
  .funnel__bar > i,
  .funnel__choice,
  .funnel__tick { transition: none; }
}

.carousel { position: relative; }
.carousel__track {
  display: flex; gap: var(--space-3);
  overflow-x: auto;

  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;

  padding: .4rem .5rem 1.1rem;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 86%; scroll-snap-align: center; margin: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--color-surface-2);
}
.carousel__slide img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.carousel__btn {
  position: absolute; top: 44%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--navy); box-shadow: var(--shadow);
  font-size: 1.7rem; line-height: 1; display: grid; place-items: center;
}
.carousel__btn--prev { left: -6px; }
.carousel__btn--next { right: -6px; }
.carousel__btn:hover { background: var(--orange); color: #fff; }

.carousel__btn:disabled { opacity: .35; cursor: default; }
.carousel__btn:disabled:hover { background: #fff; color: var(--navy); }

@media (min-width: 720px) {
  .carousel__slide { flex-basis: 45%; }
  .carousel__btn--prev { left: 10px; }
  .carousel__btn--next { right: 10px; }
}
@media (min-width: 1000px) {
  .carousel__slide { flex-basis: 30%; }
}
@media (max-width: 719px) {
  .hero-rec__overlay {
    background: linear-gradient(180deg, rgba(244,247,249,.97) 0%, rgba(244,247,249,.9) 55%, rgba(244,247,249,.82) 100%);
  }
}

.page-hero {
  position: relative;
  min-height: clamp(340px, 52vh, 520px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}
.page-hero__slides { position: absolute; inset: 0; }
.page-hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.page-hero__slide.is-active { opacity: 1; }

.page-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.5) 100%);
}

.page-hero::before,
.hero-rec::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: calc(var(--header-h) + 2.5rem);
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.55) 55%, rgba(255,255,255,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero__inner, .hero-rec__inner { z-index: 2; }

[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }
.page-hero__inner {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  padding-top: calc(var(--header-h) + clamp(1.2rem, 3vw, 2.4rem));
}
.page-hero__content { max-width: 680px; }
.page-hero .eyebrow { color: var(--color-accent); }

.vorteile .eyebrow,
.section--dark .eyebrow { color: #9fca79; }
.page-hero h1 { color: var(--navy); }
.page-hero__subtitle {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  color: var(--navy); margin: .3rem 0 .9rem;
}
.page-hero__text { color: var(--color-muted); font-size: 1.08rem; max-width: 56ch; margin: 0 0 1.6rem; }
.page-hero__actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

.page-hero .btn--light { background: transparent; border-color: var(--color-cta); color: var(--color-cta); }
.page-hero .btn--light:hover { background: var(--color-cta); border-color: var(--color-cta); color: #fff; }

.page-hero--plain { background: var(--color-surface); min-height: clamp(240px, 34vh, 360px); }
@media (max-width: 719px) {
  .page-hero__overlay { background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.74)); }
}

.checklist--center {
  display: inline-flex; flex-wrap: wrap;
  gap: .5rem 1.75rem; justify-content: center;
  text-align: left; margin-top: var(--space-2);
}
.checklist--center li { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

.admin-bar { border-bottom: 2px solid var(--color-primary); }
.admin-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-2); flex-wrap: wrap;
  padding-top: .6rem; padding-bottom: .6rem;
}
.admin-nav { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem .35rem; }
.admin-nav a {
  padding: .45rem .7rem; border-radius: var(--radius-sm, 6px);
  font-size: .9rem; font-weight: 500; color: var(--color-text); text-decoration: none;
  white-space: nowrap;
}
.admin-nav a:hover { background: var(--color-surface, #f1f5f9); }
.admin-nav a.is-active { background: var(--color-primary); color: #fff; }
.admin-nav__logout { color: var(--color-muted); }

.admin-nav__burger { display: none; }
.admin-nav__checkbox { display: none; }

@media (max-width: 720px) {

  .admin-bar__inner { flex-wrap: wrap; }
  .admin-nav__burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
    width: 42px; height: 42px; padding: 9px; cursor: pointer; flex: 0 0 auto;
    border: 1px solid var(--color-border); border-radius: var(--radius-sm, 6px);
  }
  .admin-nav__burger span {
    display: block; height: 2px; width: 100%; background: var(--color-text);
    border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
  }

  .admin-nav {
    display: none; order: 3; width: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    margin: .5rem -1rem -0.6rem; padding: .25rem 1rem .5rem;
    border-top: 1px solid var(--color-border);
  }
  .admin-nav a { padding: .75rem .25rem; border-bottom: 1px solid var(--color-border); border-radius: 0; font-size: 1rem; }
  .admin-nav a:last-child { border-bottom: 0; }
  .admin-nav a.is-active { background: transparent; color: var(--color-primary); font-weight: 700; }

  .admin-nav__checkbox:checked ~ .admin-nav { display: flex; }
  .admin-nav__checkbox:checked ~ .admin-nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .admin-nav__checkbox:checked ~ .admin-nav__burger span:nth-child(2) { opacity: 0; }
  .admin-nav__checkbox:checked ~ .admin-nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
@media (prefers-reduced-motion: reduce) { .admin-nav__burger span { transition: none; } }

.btn--sm { padding: .35rem .75rem; font-size: .8rem; }

.dash__progress { margin: var(--space-3) 0; }
.dash__bar { height: 10px; border-radius: 999px; background: var(--color-border); overflow: hidden; margin-bottom: .4rem; }
.dash__bar span { display: block; height: 100%; background: var(--color-primary); transition: width .3s ease; }

.dash__groups { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
@media (min-width: 760px) { .dash__groups { grid-template-columns: 1fr 1fr; align-items: start; } }
.dash__group { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; overflow: hidden; }
.dash__group--done { border-color: #16a34a; }
.dash__group-head { display: flex; align-items: center; gap: .6rem; padding: .75rem var(--space-3); border-bottom: 1px solid var(--color-border); background: var(--color-surface, #f8fafc); }
.dash__group-head h2 { margin: 0; font-size: 1rem; flex: 1; }
.dash__count { font-size: .8rem; font-weight: 700; color: var(--color-muted); padding: .1rem .5rem; border-radius: 999px; background: #fff; border: 1px solid var(--color-border); }
.dash__count.is-done { color: #fff; background: #16a34a; border-color: #16a34a; }
.dash__list { list-style: none; margin: 0; padding: .35rem var(--space-3) var(--space-2); display: flex; flex-direction: column; }
.dash__item { display: flex; align-items: center; gap: .6rem; padding: .45rem 0; border-bottom: 1px solid var(--color-border); }
.dash__item:last-child { border-bottom: 0; }
.dash__mark { flex: 0 0 1.3rem; width: 1.3rem; height: 1.3rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; color: #fff; background: #cbd5e1; border: 1px solid #cbd5e1; }
.dash__item--done .dash__mark { background: #16a34a; border-color: #16a34a; }
.dash__item--todo .dash__mark { background: #fff; border-color: #cbd5e1; }
.dash__label { flex: 1; font-size: .9rem; }
.dash__item--todo .dash__label { color: var(--color-text); }
.dash__optional, .dash__manual { display: inline-block; margin-left: .4rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .03em; padding: .05rem .35rem; border-radius: 4px; vertical-align: middle; }
.dash__optional { color: var(--color-muted); background: var(--color-surface, #f1f5f9); }
.dash__manual { color: #b45309; background: #fef3c7; }
.dash__toggle { margin: 0; }

.trk__topbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; }
.trk__topbar h1 { margin: 0; }
.trk__ranges { display: flex; gap: .35rem; flex-wrap: wrap; }
.trk__intro { color: var(--color-muted); font-size: .9rem; }

.trk__controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; margin: .75rem 0 .25rem; }
.trk__daterange { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin: 0; font-size: .85rem; }
.trk__daterange input[type="date"] { padding: .35rem .5rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm, 6px); font: inherit; width: auto; }
.trk__daterange label { font-weight: 600; }
.trk__refresh { display: flex; align-items: center; gap: .6rem; font-size: .85rem; }
.trk__auto { display: inline-flex; align-items: center; gap: .35rem; color: var(--color-muted); white-space: nowrap; }
.trk__auto input { width: auto; margin: 0; }

.trk__realtime { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; padding: .65rem var(--space-2); margin: .75rem 0; border: 1px solid var(--color-border); border-left: 4px solid #16a34a; border-radius: var(--radius); background: #f0fdf4; font-size: .9rem; }
.trk__realtime__main { display: inline-flex; align-items: center; gap: .35rem; flex-wrap: wrap; }
.trk__realtime__pages { flex: 1 1 100%; }
.trk__realtime__time { margin-left: auto; font-variant-numeric: tabular-nums; }
.trk__sep { color: var(--color-muted); }
.trk__live { width: 9px; height: 9px; border-radius: 50%; background: #16a34a; margin-right: .3rem; flex: 0 0 auto; animation: trkpulse 2s ease-in-out infinite; }
@keyframes trkpulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .trk__live { animation: none; } }
@media (max-width: 640px) {
  .trk__controls { flex-direction: column; align-items: stretch; }
  .trk__refresh { justify-content: space-between; }
  .trk__realtime__time { margin-left: 0; flex: 1 1 100%; }
  .trk__daterange input[type="date"] { flex: 1 1 8rem; min-width: 0; }
}
.trk__meta { color: var(--color-muted); font-size: .82rem !important; }
.trk__kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin: var(--space-3) 0; }
@media (min-width: 520px) { .trk__kpis { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--space-2); } }
@media (max-width: 519px) {
  .trk__kpi { padding: .6rem .5rem; }
  .trk__kpi strong { font-size: 1.35rem; }
  .trk__topbar h1 { font-size: 1.5rem; }
  .trk__ranges { width: 100%; }
  .trk__ranges .btn { flex: 1 1 auto; text-align: center; }
}
.trk__kpi { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; padding: var(--space-2) var(--space-3); text-align: center; }
.trk__kpi strong { display: block; font-size: 1.8rem; line-height: 1.1; color: var(--color-primary); }
.trk__kpi span { font-size: .8rem; color: var(--color-muted); }
.trk__trend { display: inline-block; margin-top: .35rem; font-size: .72rem; font-weight: 700; padding: .1rem .45rem; border-radius: 999px; white-space: nowrap; }
.trk__trend--up { color: #15803d; background: #dcfce7; }
.trk__trend--down { color: #b91c1c; background: #fee2e2; }
.trk__trend--flat { color: var(--color-muted); background: var(--color-surface, #f1f5f9); }

.trk__legend { display: flex; flex-wrap: wrap; gap: 1.1rem; font-size: .82rem; margin: .3rem 0 .6rem; color: var(--color-text); }
.trk__lg { display: inline-flex; align-items: center; }
.trk__lg::before { content: ""; display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: .4rem; }
.trk__lg--pv::before { background: var(--color-primary); }
.trk__lg--app::before { background: #d97706; }
.trk__lg--visitors::before { width: 14px; height: 0; border-radius: 0; border-top: 3px solid #7c3aed; }
.trk__chartlabel { font-size: .78rem; color: var(--color-muted); margin: .5rem 0 .25rem; }
.trk__chart { position: relative; display: flex; align-items: flex-end; gap: 2px; height: 140px; padding: .5rem; border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; overflow-x: auto; }
.trk__chart--app { height: 64px; }

.trk__line { position: absolute; left: .5rem; top: .5rem; right: .5rem; bottom: .5rem; width: calc(100% - 1rem); height: calc(100% - 1rem); pointer-events: none; }
.trk__line polyline { fill: none; stroke: #7c3aed; stroke-width: 2px; vector-effect: non-scaling-stroke; stroke-linejoin: round; stroke-linecap: round; }
.trk__col { flex: 1 0 4px; min-width: 4px; height: 100%; display: flex; align-items: flex-end; }
.trk__colbar { display: block; width: 100%; background: var(--color-primary); border-radius: 2px 2px 0 0; min-height: 2px; }
.trk__col:hover .trk__colbar { background: var(--color-primary-dark, #0b5c55); }
.trk__chart--app .trk__colbar { background: #d97706; }
.trk__chart--app .trk__col:hover .trk__colbar { background: #b45309; }

.trk__cols { display: grid; grid-template-columns: 1fr; gap: var(--space-2); margin: .5rem 0 var(--space-3); }
@media (min-width: 760px) {
  .trk__cols { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .trk__cols--three { grid-template-columns: repeat(3, 1fr); }
  .trk__cols--wide { grid-template-columns: 1fr; }
}
.trk__panel { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; padding: var(--space-2) var(--space-3); }
.trk__panel h3 { margin: 0 0 .5rem; font-size: 1rem; }
.trk__list { width: 100%; border-collapse: collapse; font-size: .88rem; }
.trk__list td { padding: .3rem 0; border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.trk__list tr:last-child td { border-bottom: 0; }
.trk__k { word-break: break-word; padding-right: .5rem !important; }
.trk__v { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; width: 3rem; }
.trk__barcell { width: 40%; padding: 0 .5rem !important; }
.trk-mini { display: block; height: 7px; border-radius: 999px; background: var(--color-border); overflow: hidden; }
.trk-mini__fill { display: block; height: 100%; background: var(--color-primary); }
.trk__stats { display: flex; flex-wrap: wrap; gap: var(--space-2); margin: var(--space-2) 0; }
.trk__stat { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; padding: .6rem 1rem; min-width: 8rem; }
.trk__stat strong { display: block; font-size: 1.5rem; color: var(--color-primary); }
.trk__stat span { font-size: .8rem; color: var(--color-muted); }
.trk__tablewrap { overflow-x: auto; }
.trk__table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.trk__table th, .trk__table td { text-align: left; padding: .55rem .6rem; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.trk__table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; color: var(--color-muted); }

.site-nav .has-submenu { position: relative; }
.site-nav .submenu {
  list-style: none;
  display: none;
  margin: 0;
  padding: var(--space-1);
  min-width: 230px;
}
.site-nav .submenu a { white-space: nowrap; }

.site-nav .submenu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: var(--space-2);
  color: inherit;
}
.site-nav .submenu-toggle__icon {
  display: block;
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s ease;
}
.site-nav .has-submenu[data-open="true"] .submenu-toggle__icon {
  transform: rotate(-135deg) translate(-2px, -2px);
}

@media (min-width: 720px) {

  .site-nav .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 60;
  }

  .site-nav .has-submenu::after {
    content: "";
    position: absolute;
    top: 100%; inset-inline: 0;
    height: var(--space-2);
    display: none;
  }
  .site-nav .has-submenu:hover::after,
  .site-nav .has-submenu:focus-within::after { display: block; }
  .site-nav .has-submenu:hover > .submenu,
  .site-nav .has-submenu:focus-within > .submenu,
  .site-nav .has-submenu[data-open="true"] > .submenu { display: flex; }
  .site-nav .submenu a { display: block; padding: var(--space-2); }
  .site-nav .submenu a[aria-current="page"]::after { display: none; }
}

@media (max-width: 719px) {

  .site-nav .has-submenu {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .site-nav .submenu-toggle { display: block; }
  .site-nav .submenu {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-inline-start: var(--space-3);
  }
  .site-nav .has-submenu[data-open="true"] > .submenu { display: flex; }
}

.split__media-second { margin-top: var(--space-2); }

.consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1200;
  padding: 0 16px 16px;
  font-family: inherit;
}
.consent__box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
}
.consent__title {
  margin: 0 0 var(--space-1);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--color-heading);
}
.consent__text { margin: 0 0 var(--space-2); font-size: .95rem; color: var(--color-muted); }
.consent__text a { color: var(--color-primary); text-decoration: underline; }
.consent__actions { display: flex; flex-wrap: wrap; gap: var(--space-1); justify-content: flex-end; }
@media (max-width: 719px) {
  .consent { padding-bottom: 12px; }
  .consent__actions .btn { flex: 1 1 100%; justify-content: center; }
}
