:root {
  color-scheme: light;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  --accent: #2f6f51;
  --accent-dark: #23563f;
  --background: #f7f7f7;
  --text: #121212;
  --muted: #505050;
}

.password-locked {
  overflow: hidden;
}

.password-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.92);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 9999;
}

.password-box {
  width: min(420px, 100%);
  background: rgba(31, 41, 55, 0.9);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.password-box h1 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}

.password-box__text {
  margin: 0 0 1rem;
  color: #e5e7eb;
  line-height: 1.5;
}

.password-form {
  display: grid;
  gap: 0.75rem;
}

.password-form__label {
  font-weight: 600;
}

.password-form__input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #374151;
  background: #111827;
  color: #f9fafb;
}

.password-form__input:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.password-form__error {
  margin: 0;
  color: #f87171;
  font-size: 0.95rem;
}

.password-form__submit {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #0b1324;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.password-form__submit:hover,
.password-form__submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(22, 163, 74, 0.35);
  outline: none;
}

@media (max-width: 600px) {
  .password-box {
    padding: 1.25rem;
  }

  .password-box h1 {
    font-size: 1.15rem;
  }

  .password-form__submit {
    width: 100%;
  }
}

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

body {
  margin: 0;
  background: #fcfcfc;
  color: var(--text);
  font-size: 17px;
}

.container {
  width: min(1600px, 100%);
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 1.75rem);
  padding-right: clamp(1rem, 3vw, 1.75rem);
}

.site-header {
  padding: 1.5rem 0 1.9rem;
  background: #fff;
  border-bottom: 1px solid #d9d9d9;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.25rem);
  display: grid;
  gap: 1.1rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  row-gap: 0.85rem;
  flex-wrap: wrap;
}

.site-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #111;
  text-decoration: none;
  padding: 0;
  border: none;
  background: none;
}

.site-logo {
  display: block;
  height: clamp(42px, 5vw, 56px);
  width: auto;
  max-width: min(240px, 40vw);
}

.primary-nav {
  display: flex;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  justify-content: flex-end;
  align-items: stretch;
  flex: 0 1 auto;
  flex-wrap: wrap;
  margin-left: auto;
}

.nav-section {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 170px;
  position: relative;
}

.nav-section__trigger {
  background: none;
  border: none;
  color: inherit;
  font-size: 1rem;
  padding: 0.25rem 0.1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 100%;
  border-radius: 0.5rem;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-section__trigger::after {
  content: "▾";
  font-size: 0.85rem;
  margin-left: 0.05rem;
  color: #4b5563;
}

.nav-section__trigger:hover,
.nav-section__trigger:focus-visible {
  outline: none;
  color: #111;
  background: #f3f4f6;
}

.nav-section__panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 220px;
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid #e4e4e4;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  z-index: 15;
}

.nav-section__panel:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.page-header,
.page-content {
  max-width: 75ch;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

.report-shell {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  margin: clamp(1rem, 3vw, 2.5rem) auto;
  max-width: 78ch;
  padding: clamp(1rem, 3vw, 1.75rem) 0 clamp(1.5rem, 4vw, 2.25rem);
}

.site-note {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 0.35rem 0.15rem;
  border-radius: 10px;
  display: inline-block;
}

.nav-links a:hover,
.nav-links a:focus {
  text-decoration: none;
  background: #f2f2f2;
}

.nav-section.is-open .nav-section__trigger {
  background: #f3f4f6;
}

.nav-section--single {
  min-width: 0;
}

.nav-section__link {
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.25rem 0.1rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-section__link:hover,
.nav-section__link:focus-visible {
  outline: none;
  color: #111;
  background: #f3f4f6;
}

.header-actions {
  display: inline-flex;
  gap: 0.7rem;
  justify-content: flex-end;
  align-items: center;
}

.header-action {
  text-decoration: none;
  border: 1.75px solid #111;
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  color: #111;
  background: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.header-action--strong {
  background: #111;
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  background: #fff;
  border: 2px solid #111;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle__bar {
  width: 22px;
  height: 3px;
  background: #111;
  border-radius: 999px;
}

.menu-toggle__label {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(1.65rem, 5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 240px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.menu-overlay[hidden] {
  display: none;
}

.menu-overlay.is-active {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 88vw);
  max-width: 420px;
  background: #fff;
  border-left: 2px solid #111;
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 100;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 1rem 1.25rem 1.5rem;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__title {
  margin: 0;
  font-weight: 800;
}

.menu-close {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-menu__accordion {
  display: grid;
  gap: 0.75rem;
}

.mobile-accordion__section {
  border: 1.5px solid #111;
  border-radius: 0.5rem;
  overflow: hidden;
}

.mobile-accordion__section--single {
  padding: 0;
}

.mobile-accordion__trigger {
  width: 100%;
  background: #f5f5f5;
  border: none;
  padding: 0.75rem 0.85rem;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-accordion__panel {
  padding: 0.5rem 0.85rem 0.8rem;
  display: grid;
  gap: 0.4rem;
}

.mobile-nav__single {
  display: block;
  padding: 0.75rem 0.85rem;
  text-decoration: none;
  color: #111;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.mobile-nav__single:hover,
.mobile-nav__single:focus-visible {
  background: #f5f5f5;
}

.mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.mobile-nav__list a {
  color: #111;
  text-decoration: none;
}

.mobile-nav__list a:hover,
.mobile-nav__list a:focus {
  text-decoration: underline;
}

.mobile-menu__actions {
  display: grid;
  gap: 0.5rem;
}

.mobile-menu__actions .header-action {
  justify-content: center;
}

@media (max-width: 640px) {
  .site-header {
    padding: 1.25rem 0 1.5rem;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

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

  .site-header h1 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
}

.hero-highlights {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto;
  max-width: 680px;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid #111;
  padding-bottom: 1rem;
}

.hero-highlights li {
  border-bottom: 1px solid rgba(42, 42, 42, 0.25);
  padding: 0.65rem 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-highlights li:last-child {
  border-bottom: none;
}

.hero-highlights span {
  font-size: 1.1rem;
}

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

main {
  padding: 2.5rem 1.5rem 3rem;
}

.filters-intro {
  margin: 0 auto 1.25rem;
  max-width: 960px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.comparison-layout {
  display: grid;
  gap: 1.35rem;
  align-items: start;
  width: 100%;
  margin: 0;
  grid-template-areas:
    "filters"
    "table";
}

.filter-mobile-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  width: 100%;
}

.filter-open {
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  border: 1.75px solid #111;
  border-radius: 0.4rem;
  background: #111;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.filter-jump {
  text-decoration: none;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 2px solid #111;
}

.filter-panel {
  grid-area: filters;
  margin: 0 auto 1.5rem;
  max-width: none;
  background: #ffffff;
  border: 2px solid #111;
  border-radius: 0.4rem;
  padding: 1.5rem;
  display: grid;
  gap: 1.25rem;
  position: sticky;
  top: 1rem;
}

.filter-panel__header {
  display: grid;
  align-items: flex-start;
  gap: 0.75rem;
}

.filter-panel__footer {
  display: flex;
  justify-content: flex-end;
}

.filter-close {
  display: none;
  background: transparent;
  border: 1.75px solid #111;
  width: 42px;
  height: 42px;
  border-radius: 0.35rem;
  font-size: 1rem;
  cursor: pointer;
}

.filter-panel__eyebrow {
  font-size: 0.85rem;
  margin: 0 0 0.1rem;
  color: rgba(18, 18, 18, 0.55);
}

.filter-panel__intro {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.filter-panel__header .reset-filters {
  width: 100%;
  justify-self: stretch;
}

.filter-panel__header .filter-close {
  justify-self: end;
}

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

.filter-group {
  border: 1px solid rgba(42, 42, 42, 0.15);
  border-radius: 0.35rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.8);
}

.filter-group__legend {
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.filter-options {
  display: grid;
  gap: 0.4rem;
}

.filter-group__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid #111;
  border-radius: 0.25rem;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
}

.filter-group__content {
  display: grid;
  gap: 0.4rem;
}

.filter-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.98rem;
  cursor: pointer;
}

.filter-option input {
  accent-color: var(--accent);
}

.reset-filters {
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.reset-filters:hover,
.reset-filters:focus {
  background: #fff;
  color: #111;
}

ul,
ol {
  line-height: 1.6;
}

.comparison-wrapper {
  position: relative;
  grid-area: table;
  margin: 0 auto;
  max-width: 1400px;
  background: white;
  border-radius: 0.4rem;
  border: 2px solid #111;
  box-shadow: none;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.comparison-wrapper::after {
  content: '↔︎ Scrollen';
  position: sticky;
  bottom: 0.3rem;
  right: 0.5rem;
  margin-left: auto;
  width: fit-content;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 2;
}

.comparison-wrapper.is-scrollable::after {
  opacity: 0.82;
}

.comparison-wrapper.is-scrolled::after {
  opacity: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 560px;
}

thead {
  background: transparent;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  border-bottom: 2px solid #111;
}

.stacked-heading {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

th, td {
  padding: 1.15rem 1.45rem;
  text-align: left;
  line-height: 1.6;
}

tbody tr:nth-child(even) {
  background: rgba(42, 42, 42, 0.03);
}

tbody tr {
  border-bottom: 1px solid rgba(42, 42, 42, 0.15);
}

.provider {
  font-weight: 700;
  font-size: 1.05rem;
}

.provider-meta {
  display: grid;
  gap: 0.25rem;
}

.provider-name {
  line-height: 1.4;
}

.provider-brand {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.83rem;
  font-weight: 750;
}

.table-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--text);
}

.table-list li {
  margin: 0;
  line-height: 1.5;
}

td small {
  color: var(--muted);
}

.action-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.1rem;
  background: var(--accent);
  color: #f9fafb;
  text-decoration: none;
  font-weight: 750;
  border-radius: 0.65rem;
  box-shadow: 0 8px 22px rgba(35, 86, 63, 0.2);
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta-primary:hover,
.cta-primary:focus {
  background: var(--accent-dark);
  color: #e8f1eb;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(35, 86, 63, 0.26);
}

.cta-secondary {
  color: var(--muted);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.cta-secondary:hover,
.cta-secondary:focus {
  color: var(--accent-dark);
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.muted {
  color: var(--muted);
}

.empty-state {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 210, 130, 0.25);
  border: 1px solid rgba(255, 210, 130, 0.6);
  border-radius: 0.35rem;
  color: #6b4c00;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.15rem;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  border: none;
  border-bottom: 2px solid #111;
  border-radius: 0;
  letter-spacing: 0.03em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
  color: var(--accent-dark);
  border-color: #111;
}

.advisory {
  margin: 2.5rem 0 3rem;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}

.advisory p {
  margin: 0 0 1.25rem;
}

.advisory p:last-child {
  margin-bottom: 0;
}

.legal-page {
  text-align: left;
  margin: 2.5rem auto 4rem;
}

.update-note {
  font-size: 1rem;
  color: var(--muted);
}

.seo-section {
  margin: 2.75rem 0 3.5rem;
  padding: 1.5rem 1.25rem;
  background: #f5f5f2;
  border: 1px solid #e1e1dc;
  border-radius: 12px;
  line-height: 1.7;
}

.seo-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

.seo-section p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.seo-section p:last-child {
  margin-bottom: 0;
}

.brand-list {
  font-weight: 600;
  color: var(--text);
}

.site-footer {
  padding: 2.75rem 1.5rem 3.25rem;
  background: #0e211b;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 0.6rem;
}

.footer-heading {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.footer-notes {
  margin-top: 2rem;
  display: grid;
  gap: 0.4rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.footer-notes p {
  margin: 0;
}

@media (max-width: 640px) {
  header {
    padding: 1.35rem 0.95rem 1.7rem;
  }

  .filter-panel__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .reset-filters {
    width: 100%;
  }

  table {
    font-size: 1rem;
    min-width: 500px;
  }

  th, td {
    padding: 0.85rem 1rem;
  }

  .primary-cta .cta-button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-notes {
    margin-top: 1.5rem;
  }
}

@media (max-width: 1199px) {
  .filter-panel__footer {
    justify-content: flex-start;
  }
}

@media (max-width: 1023px) {
  .comparison-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: fixed;
    inset: auto 0 0;
    max-width: none;
    width: 100%;
    height: min(90vh, 100%);
    top: auto;
    border-radius: 0.75rem 0.75rem 0 0;
    transform: translateY(100%);
    transition: transform 0.25s ease, opacity 0.2s ease;
    z-index: 120;
    overflow-y: auto;
    padding-bottom: 2rem;
  }

  .filter-panel.is-open {
    transform: translateY(0);
  }

  .filter-panel[hidden] {
    display: none;
  }

  .filter-panel__header {
    align-items: flex-start;
  }

  .filter-panel__intro {
    margin-right: 0;
  }

  .filter-nav {
    grid-template-columns: 1fr;
  }

  .filter-group.is-collapsed .filter-group__content {
    display: none;
  }

  .filter-group__toggle {
    display: inline-flex;
  }

  .filter-close {
    display: inline-flex;
  }

  .filter-open {
    display: inline-flex;
  }

  .filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 110;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .filter-backdrop:not([hidden]) {
    opacity: 1;
  }

  body.filters-open {
    overflow: hidden;
  }
}

@media (min-width: 1024px) {
  .filter-mobile-trigger {
    display: none;
  }

  .comparison-layout {
    grid-template-columns: minmax(280px, 340px) 1fr;
    grid-template-areas: "filters table";
  }

  .filter-panel {
    max-width: none;
    width: 100%;
  }

  .comparison-wrapper {
    width: 100%;
  }
}
