:root {
  color-scheme: light dark;
  --bg: #F7F8FA;
  --surface: #FFFFFF;
  --surface-2: #EEF2F6;
  --text: #111827;
  --text-muted: #4B5563;
  --border: #D8DEE6;
  --brand-strong: #0F766E;
  --brand: #2DD4BF;
  --brand-soft: rgba(15, 118, 110, 0.12);
  --focus: #2DD4BF;
  --brand-ink: #FFFFFF;
  --shadow: 0 24px 45px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --radius-sm: 0.75rem;
  --nav-bg: rgba(247, 248, 250, 0.88);
  --nav-border: rgba(17, 24, 39, 0.08);
  --link: var(--brand-strong);
  --link-hover: #0D9488;
  --btn-primary-bg: var(--brand-strong);
  --btn-primary-hover: #0D9488;
  --btn-primary-text: #FFFFFF;
  --btn-outline-color: var(--brand-strong);
  --btn-outline-hover-bg: var(--brand-strong);
  --btn-outline-hover-text: #FFFFFF;
  --success: #16A34A;
  --warning: #D97706;
  --danger: #DC2626;
  --brand-border: rgba(15, 118, 110, 0.2);
  --dot-bg: #E3EAF2;
  --dot-border: #C9D5E4;
  --header-offset: 96px;
  --bs-body-color: var(--text);
  --bs-body-bg: var(--bg);
  --bs-table-color: var(--text);
  --bs-table-bg: var(--surface);
  --bs-table-border-color: var(--border);
  --bs-link-color: var(--link);
  --bs-link-hover-color: var(--link-hover);
}

[data-theme="dark"] {
  --bg: #0B0F14;
  --surface: #121826;
  --surface-2: #0F1520;
  --text: #E6EAF0;
  --text-muted: #AAB4C0;
  --border: #223043;
  --brand-soft: rgba(45, 212, 191, 0.15);
  --brand-ink: #062925;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --nav-bg: rgba(11, 15, 20, 0.78);
  --nav-border: rgba(34, 48, 67, 0.6);
  --link: var(--brand);
  --link-hover: #5EEAD4;
  --btn-primary-bg: var(--brand);
  --btn-primary-hover: #34E4CF;
  --btn-primary-text: #062925;
  --btn-outline-color: var(--brand);
  --btn-outline-hover-bg: var(--brand);
  --btn-outline-hover-text: #062925;
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #F87171;
  --brand-border: rgba(45, 212, 191, 0.35);
  --dot-bg: #1A2434;
  --dot-border: #2A3C55;
  --bs-body-color: var(--text);
  --bs-body-bg: var(--bg);
  --bs-table-color: var(--text);
  --bs-table-bg: var(--surface);
  --bs-table-border-color: var(--border);
  --bs-link-color: var(--link);
  --bs-link-hover-color: var(--link-hover);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --bg: #0B0F14;
    --surface: #121826;
    --surface-2: #0F1520;
    --text: #E6EAF0;
    --text-muted: #AAB4C0;
    --border: #223043;
    --brand-soft: rgba(45, 212, 191, 0.15);
    --brand-ink: #062925;
    --shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
    --nav-bg: rgba(11, 15, 20, 0.78);
    --nav-border: rgba(34, 48, 67, 0.6);
    --link: var(--brand);
    --link-hover: #5EEAD4;
    --btn-primary-bg: var(--brand);
    --btn-primary-hover: #34E4CF;
    --btn-primary-text: #062925;
    --btn-outline-color: var(--brand);
    --btn-outline-hover-bg: var(--brand);
    --btn-outline-hover-text: #062925;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #F87171;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4 {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--text);
}

p {
  color: var(--text-muted);
}

a {
  color: var(--link);
  text-decoration: none;
  text-underline-offset: 0.2em;
}

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

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.section {
  padding: 6rem 0;
  background: var(--bg);
}

.section--tight {
  padding: 4rem 0;
}

.section--alt {
  background: var(--bg);
}

.section--soft {
  background: var(--bg);
}

.section-title {
  margin-bottom: 2rem;
  max-width: 48rem;
}

.section-title h2 {
  position: relative;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.5rem;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--link);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-relevance {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.section-relevance strong {
  color: var(--text);
}

.accent {
  color: var(--link);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
}

.navbar {
  padding: 0.5rem 0;
}

.navbar-brand {
  padding: 0;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
}

.brand-logo--dark {
  display: none;
}

html[data-theme="dark"] .brand-logo--light {
  display: none;
}

html[data-theme="dark"] .brand-logo--dark {
  display: block;
}

.navbar .nav-link {
  color: var(--text-muted);
  font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--text);
}

.navbar-actions {
  display: flex;
  align-items: center;
}

.theme-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  min-height: 44px;
}

.theme-toggle__icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.2);
}

.theme-toggle__text {
  display: inline-flex;
  align-items: center;
  min-width: 3.9rem;
  text-align: left;
}

.theme-label--dark {
  display: none;
}

html[data-theme="dark"] .theme-label--light {
  display: none;
}

html[data-theme="dark"] .theme-label--dark {
  display: inline;
}

.theme-toggle[data-theme-state="dark"] .theme-toggle__icon {
  box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.4);
}

.theme-toggle[data-theme-state="light"] .theme-toggle__icon {
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.18);
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 0.35rem 0.5rem;
  min-width: 44px;
  min-height: 44px;
}

.navbar-toggler-icon {
  width: 1.25rem;
  height: 0.875rem;
  background-image: linear-gradient(var(--text) 2px, transparent 2px),
    linear-gradient(var(--text) 2px, transparent 2px),
    linear-gradient(var(--text) 2px, transparent 2px);
  background-position: 0 0, 0 6px, 0 12px;
  background-size: 100% 2px;
  background-repeat: no-repeat;
}

.btn {
  border-radius: var(--radius-md);
  font-weight: 600;
  padding: 0.65rem 1.4rem;
}

.btn-primary {
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
  color: var(--btn-primary-text);
}

.btn-outline-primary {
  border-color: var(--btn-outline-color);
  color: var(--btn-outline-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--btn-outline-hover-bg);
  color: var(--btn-outline-hover-text);
}

.hero {
  position: relative;
  padding: 3.5rem 0 6rem;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 3.5vw + 1rem, 3.7rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--brand-border);
  border-left: 3px solid var(--link);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text);
}

.highlight-title {
  font-weight: 700;
  color: var(--link);
}

.highlight-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-media {
  position: relative;
  margin-top: 2rem;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-media .hero-phone {
  position: absolute;
  bottom: -0.85rem;
  right: -0.9rem;
  width: auto;
  max-width: none;
  height: 75%;
  max-height: none;
  object-fit: contain;
  border: 8px solid var(--surface);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

html[data-theme="dark"] .hero-media .hero-phone {
  border-color: rgba(230, 234, 240, 0.78);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(45, 212, 191, 0.3);
}

.warum-grid {
  display: grid;
  gap: 1.5rem;
}

.warum-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.warum-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand-border);
}

.warum-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--link);
}

.warum-icon {
  width: 24px;
  height: 24px;
}

.warum-teaser {
  margin-bottom: 0.25rem;
}

.warum-toggle {
  align-self: flex-start;
  border: 1px solid var(--brand-border);
  background: var(--brand-soft);
  color: var(--link);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.warum-toggle:hover,
.warum-toggle:focus-visible {
  border-color: var(--link);
  color: var(--link-hover);
}

.accordion-panel {
  display: none;
}

.accordion-panel ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.accordion-panel li + li {
  margin-top: 0.4rem;
}

.warum-footer {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.warum-proof {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

body.popout-open {
  overflow: hidden;
}

.warum-popout {
  position: fixed;
  inset: 0;
  z-index: 1900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.warum-popout[hidden] {
  display: none;
}

.warum-popout__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(3px);
}

.warum-popout__dialog {
  position: relative;
  width: min(100%, 660px);
  max-height: min(84vh, 720px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.35rem 1.25rem;
}

.warum-popout__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.warum-popout__teaser {
  margin: 0.35rem 0 0.2rem;
}

.warum-popout__content ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.warum-popout__content li + li {
  margin-top: 0.45rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.feature-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.feature-list p {
  margin: 0;
}

.source-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.source-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.source-note a:hover,
.source-note a:focus {
  color: var(--link-hover);
}

.c-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  width: 32px;
  height: 32px;
  color: var(--brand);
  margin-bottom: 1rem;
}

.fokus-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--link);
}

.fokus-card__icon .icon {
  width: 22px;
  height: 22px;
  margin-bottom: 0;
  color: var(--link);
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.contact-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
}

.contact-cta .btn-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1px solid var(--btn-primary-bg);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.28);
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact:hover,
.floating-contact:focus {
  color: var(--btn-primary-text);
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.34);
}

.floating-contact.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-section-nav {
  position: fixed;
  top: 50%;
  right: calc(1rem + env(safe-area-inset-right));
  transform: translate3d(0, -50%, 0) scale(0.96);
  z-index: 1490;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-section-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.floating-section-nav a {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: 1px solid var(--dot-border);
  background: var(--dot-bg);
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.floating-section-nav a:hover,
.floating-section-nav a:focus-visible {
  border-color: var(--brand);
  background: var(--brand-soft);
  transform: scale(1.15);
}

.floating-section-nav a.is-active {
  border-color: var(--brand);
  background: var(--brand);
}

.floating-section-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0) scale(1);
}

.anchor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.anchor-chips a {
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.anchor-chips a:hover,
.anchor-chips a:focus {
  color: var(--link);
}

.comparison-table {
  border-collapse: separate;
  border-spacing: 0 0.75rem;
  color: var(--text);
  width: 100%;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
  color: var(--text);
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
  background: var(--brand-soft);
  border-color: var(--brand-border);
  color: var(--text);
}

.comparison-table th:nth-child(2) {
  font-weight: 700;
}

.comparison-table thead th {
  color: var(--text);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  border-radius: 0.75rem 0 0 0.75rem;
  width: 22%;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-radius: 0 0.75rem 0.75rem 0;
  width: 39%;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
  width: 39%;
}

.comparison-table tbody tr.comparison-row-link td {
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.comparison-table tbody tr.comparison-row-link:hover td,
.comparison-table tbody tr.comparison-row-link:focus td,
.comparison-table tbody tr.comparison-row-link:focus-visible td {
  border-color: var(--brand-border);
  background: var(--surface-2);
}

.comparison-table tbody tr.comparison-row-link:hover td:nth-child(2),
.comparison-table tbody tr.comparison-row-link:focus td:nth-child(2),
.comparison-table tbody tr.comparison-row-link:focus-visible td:nth-child(2) {
  background: var(--brand-soft);
}

.comparison-link {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.comparison-link:hover,
.comparison-link:focus {
  color: var(--link);
  text-decoration: underline;
}

.comparison-cards {
  display: grid;
  gap: 1rem;
}

.comparison-card {
  padding: 1.15rem 1.25rem;
}

.comparison-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.comparison-card__row + .comparison-card__row {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.comparison-card__row p {
  margin: 0;
}

.comparison-card__label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.module-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--link);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  margin: 0.35rem 0 0.75rem;
}

.module-toggle[aria-expanded="true"] {
  border-color: var(--brand-border);
  color: var(--link-hover);
}

.step-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.step h3,
.step h4 {
  margin: 0 0 0.35rem;
}

.step p {
  margin: 0;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pricing-process {
  margin-top: 2.25rem;
}

.pricing-process h3 {
  margin-bottom: 0.5rem;
}

.pricing-process > p {
  margin-bottom: 1rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pill-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  background: var(--surface-2);
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--link);
}

.footer-links {
  flex-wrap: wrap;
  row-gap: 0.5rem;
}

.footer-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  z-index: 2000;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-settings {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.legal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 991px) {
  :root {
    --header-offset: 96px;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-media .hero-phone {
    bottom: -0.5rem;
    right: -0.5rem;
    height: 75%;
    width: auto;
    border-width: 6px;
    border-radius: 1.3rem;
  }

  .navbar-actions {
    gap: 0.5rem;
  }

  .floating-section-nav {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .floating-section-nav {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .warum-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .warum-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }

  .contact-cta .btn {
    width: 100%;
  }

  .floating-contact {
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 767px) {
  .hero-badge {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--link);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0.65rem;
  }

  .comparison-card {
    padding: 1rem;
  }

  .module-toggle {
    display: inline-flex;
    min-height: 40px;
  }
}

section[id] {
  scroll-margin-top: calc(var(--header-offset) + env(safe-area-inset-top));
}

:target {
  scroll-margin-top: calc(var(--header-offset) + env(safe-area-inset-top));
}

.anchor-marker {
  display: block;
  height: 0;
  visibility: hidden;
  scroll-margin-top: calc(var(--header-offset) + env(safe-area-inset-top));
}

#top {
  scroll-margin-top: calc(var(--header-offset) + env(safe-area-inset-top));
}
