@font-face {
  font-family: "Inter Q";
  src: url("assets/fonts/InterVariableLatin.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-sans: "Inter Q", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --q-ink: #111113;
  --q-muted: #626268;
  --q-surface: #f5f5f7;
  --q-line: #d9d9de;
  --q-radius-s: 14px;
  --q-radius-m: 24px;
  --q-radius-l: 30px;
  --q-shadow-card: 0 1px 2px rgba(0, 0, 0, .025), 0 14px 38px rgba(0, 0, 0, .055);
  --q-shadow-raised: 0 2px 5px rgba(0, 0, 0, .04), 0 22px 56px rgba(0, 0, 0, .085);
  --q-header-height: 64px;
  --q-type-display: clamp(48px, 6vw, 80px);
  --q-type-section: clamp(40px, 4.6vw, 64px);
  --q-type-contained: clamp(34px, 3.5vw, 48px);
  --q-type-feature: clamp(30px, 2.7vw, 38px);
  --q-type-card: clamp(26px, 2.15vw, 30px);
  --q-type-support: clamp(22px, 1.8vw, 25px);
  --q-type-item: clamp(19px, 1.5vw, 21px);
  --q-type-document: clamp(30px, 2.6vw, 36px);
  --q-type-hero-copy: clamp(21px, 2vw, 25px);
  --q-type-section-copy: clamp(20px, 2vw, 25px);
  --q-type-card-copy: 16px;
  --q-type-compact-copy: 15px;
  --q-type-subtitle: 18px;
  --q-type-button: 16px;
  --q-type-nav: 13px;
  --q-type-meta: 13px;
  --q-type-footer: 12px;
  --q-type-label: 12px;
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.scroll-progress {
  width: 100%;
  height: 3px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  overflow: hidden;
  pointer-events: none;
  background: rgba(17, 17, 19, .08);
}

.scroll-progress__bar {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(0);
  transform-origin: left center;
  background: #111113;
  will-change: transform;
}

.nav { top: 3px; }

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-layout .content-card {
  min-height: 0;
  padding: 34px;
}

.legal-layout h2,
.legal-copy h2 { font-size: clamp(32px, 4.2vw, 52px); }

.legal-layout address {
  margin: 0 0 26px;
  color: var(--q-muted);
  font-size: 17px;
  font-style: normal;
  line-height: 1.55;
}

.legal-data { margin: 0; }
.legal-data > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--q-line);
}
.legal-data dt { color: var(--q-muted); font-weight: 650; }
.legal-data dd { margin: 0; font-weight: 650; }
.legal-data a,
.legal-copy a { text-decoration: underline; text-underline-offset: 3px; }
.legal-copy { max-width: 900px; }
.legal-copy h3 { margin: 34px 0 10px; font-size: 23px; }
.legal-copy p { color: var(--q-muted); font-size: 17px; line-height: 1.6; }

body {
  overflow-x: clip;
  color: var(--q-ink);
  font-family: var(--font-sans);
  font-kerning: normal;
  font-optical-sizing: auto;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea { font: inherit; }

::selection { color: #fff; background: #111; }

h1,
h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

p,
li { text-wrap: pretty; }

.eyebrow,
.kicker,
.section-label,
.product-label,
.tiny,
.tag { font-weight: 700 !important; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  translate: 0 -160%;
  padding: 11px 15px;
  border-radius: 10px;
  color: #fff;
  background: #111;
  font-size: 14px;
  font-weight: 700;
  transition: translate .18s ease;
}

.skip-link:focus { translate: 0; }

:focus-visible {
  outline: 3px solid #111 !important;
  outline-offset: 4px !important;
}

.nav {
  z-index: 100;
  border-bottom-color: rgba(17, 17, 19, .09);
  background: rgba(250, 250, 252, .92);
}

.navin {
  height: var(--q-header-height);
  position: relative;
  gap: 22px;
}

.logo {
  width: 132px;
  height: auto;
}

.flogo {
  height: auto;
}

.links {
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
}

.links a,
.navbtn { white-space: nowrap; }

.links .active { font-weight: 700; }

.navbtn {
  min-height: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #111113;
  border-radius: 999px;
  color: #fff !important;
  background: #111113 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.navbtn:hover {
  transform: translateY(-1px);
  color: #fff !important;
  background: #2b2b2e !important;
  opacity: 1;
}

.button,
.primary,
.secondary,
.submit,
.route-button {
  min-height: 48px;
  font-weight: 650;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--q-line);
  border-radius: 50%;
  color: #111;
  background: rgba(255, 255, 255, .82);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 17px;
  height: 1.5px;
  display: block;
  position: relative;
  border-radius: 2px;
  background: currentColor;
  transition: rotate .18s ease, translate .18s ease, opacity .18s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { translate: 0 -5px; }
.menu-icon::after { translate: 0 5px; }
.nav.is-open .menu-icon { background: transparent; }
.nav.is-open .menu-icon::before { translate: 0; rotate: 45deg; }
.nav.is-open .menu-icon::after { translate: 0; rotate: -45deg; }
.mobile-nav-cta { display: none; }

.hero h1 { max-width: 1080px; font-size: clamp(52px, 7vw, 88px); }
.product-hero h1 { max-width: 1040px; font-size: clamp(48px, 6.4vw, 80px); }
main h2 { font-size: clamp(40px, 5.25vw, 68px); }

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
  color: var(--q-muted);
  font-size: 13px;
  font-weight: 550;
}

.breadcrumb a:hover { color: var(--q-ink); }
.breadcrumb [aria-current="page"] { color: var(--q-ink); font-weight: 650; }

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.editorial-title h2 { margin: 0; }
.editorial-copy > p {
  margin: 0;
  color: #b8b8bd;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
}

.company-data {
  margin: 38px 0 30px;
  border-top: 1px solid #343438;
}

.company-data > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #343438;
}

.company-data dt {
  color: #85858b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.company-data dd { margin: 0; color: #fff; font-size: 15px; line-height: 1.5; }
.company-data a:hover { color: #b8b8bd; }
.editorial-copy .button { border-color: #fff; color: #111; background: #fff; }
.flagship-title h2 { font-size: clamp(40px, 4vw, 54px); }

:is(
  .card,
  .result,
.pitem,
.explain-card,
.product-card,
  .path-card,
  .ownership-card,
  .quality-card,
  .fit-card,
  .compare-card,
  .content-card,
  .route-card,
  .form-shell,
  .direct,
  .step,
  .roadmap-copy,
  .need-card,
  .system-module
) { border-radius: var(--q-radius-m); }

:is(
  .card,
  .result,
  .pitem,
  .explain-card,
  .product-card,
  .path-card,
  .quality-card,
  .fit-card,
  .compare-card,
  .content-card,
  .route-card,
  .form-shell,
  .step,
  .roadmap-copy
) {
  border: 1px solid rgba(17, 17, 19, .045);
  box-shadow: var(--q-shadow-card);
}

:is(a.card, a.pitem, .product-card):hover { box-shadow: var(--q-shadow-raised); }

:is(
  .cards,
  .resultgrid,
  .portfolio,
  .process,
  .explain-grid,
  .paths-grid,
  .ownership-grid,
  .quality-grid,
  .fit-comparison,
  .comparison,
  .content-grid,
  .need-grid,
  .system-module-grid,
  .introduction-grid,
  .route-grid,
  .steps,
  .flagship-stage,
  .flagship-areas,
  .flagship-area,
  .boundary-stage,
  .decision-stage,
  .result-stage
) > * { min-width: 0; }

.paths-grid,
.quality-grid,
.content-grid.three,
.introduction-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.content-grid,
.need-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.system-module-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.content-card p + p { margin-top: 15px; }

.systems-stage,
.logic-stage,
.stage,
.decision-stage,
.boundary-stage,
.flagship-stage,
.list-stage,
.result-stage,
.scope-stage { border-radius: var(--q-radius-l); }

.flagship-area,
.flagship-area > div,
.flagship-areas,
.flagship-stage,
.path-card { min-width: 0; }

.direct-row small { color: #929298; }
.direct-row a:hover strong { color: #fff; }

.contact-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-fieldset legend { padding: 0; }
.radio-pill input:focus-visible + span {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.radio-pill input {
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0 !important;
  white-space: nowrap;
}

.form-info {
  margin-bottom: 22px;
  padding: 15px 17px;
  border: 1px solid #b8d1c2;
  border-radius: var(--q-radius-s);
  color: #155d36;
  background: #effaf3;
  font-size: 14px;
  line-height: 1.5;
}

footer .footer-title {
  max-width: none;
  margin: 0 0 10px;
  color: #1d1d1f;
  font-size: 12px !important;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: left;
}
footer li { margin: 0 !important; }
footer li a,
footer .legal a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
}
footer a { text-underline-offset: 3px; }
footer a:hover { color: #111; opacity: 1; }

.black .tag,
.pitem.black .tiny,
.pitem.black .core-list,
.product-card:nth-child(even) .product-label,
.path-card:nth-child(2) small,
.need-card:last-child small,
.route-card:nth-child(2) small,
.cta .section-label,
.cta .micro { color: #a1a1a6 !important; }

.cookie-dialog {
  width: min(1120px, calc(100% - 40px));
  max-width: none;
  margin: auto auto 24px;
  padding: 0;
  border: 1px solid rgba(17, 17, 19, .1);
  border-radius: 28px;
  color: var(--q-ink);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .22), 0 4px 18px rgba(0, 0, 0, .08);
}

.cookie-dialog::backdrop {
  background: rgba(17, 17, 19, .34);
  backdrop-filter: blur(8px);
}
.cookie-dialog-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, .8fr);
  gap: 42px;
  padding: 34px;
}
.cookie-dialog-copy { position: relative; padding-left: 68px; }
.cookie-dialog-mark {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #111113;
  font-size: 24px;
  font-weight: 780;
  letter-spacing: -.08em;
}
.cookie-dialog-eyebrow {
  margin: 0 0 8px !important;
  color: #111113 !important;
  font-size: 11px !important;
  font-weight: 760;
  letter-spacing: .14em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}
.cookie-dialog h2 {
  max-width: 620px;
  margin: 0 0 12px;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.cookie-dialog h2:focus { outline: 0 !important; }
.cookie-dialog p { margin: 0; color: var(--q-muted); font-size: 14px; line-height: 1.55; }
.cookie-privacy-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: #111113;
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}
.cookie-privacy-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.cookie-dialog-controls {
  padding-left: 32px;
  border-left: 1px solid var(--q-line);
}
.cookie-category-list { display: grid; gap: 11px; }
.cookie-category {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-category div { min-width: 0; display: grid; gap: 2px; }
.cookie-category strong { font-size: 13px; line-height: 1.3; }
.cookie-category div span { color: var(--q-muted); font-size: 12px; line-height: 1.35; }
.cookie-category-status {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid var(--q-line);
  border-radius: 999px;
  color: var(--q-muted);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.cookie-category-status.is-active { border-color: #111113; color: #fff; background: #111113; }
.cookie-dialog-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 22px; }
.cookie-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #111;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}
.cookie-button-primary { color: #fff; background: #111; }
.cookie-button-secondary { color: #111; background: #fff; }
.cookie-button:hover { transform: translateY(-1px); }
.cookie-button:focus-visible,
.cookie-privacy-link:focus-visible { outline: 3px solid rgba(17, 17, 19, .25); outline-offset: 3px; }
.cookie-dialog-note { margin-top: 12px !important; font-size: 11px !important; line-height: 1.4 !important; }

.flagship-button {
  width: fit-content;
  margin-top: 28px;
  border-color: #fff;
  color: #000;
  background: #fff;
}

@media (max-width: 1040px) {
  .paths-grid,
  .quality-grid,
  .content-grid.three,
  .system-module-grid,
  .introduction-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .navbtn { display: none !important; }
  .menu-toggle { display: grid; flex: 0 0 auto; }
  .navin > a:first-child { margin-right: auto; }
  .nav .links {
    width: min(360px, calc(100vw - 28px));
    max-height: calc(100vh - 82px);
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 10;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(17, 17, 19, .1);
    border-radius: 20px;
    color: #111;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .16);
    backdrop-filter: blur(22px);
  }

  .nav.is-open .links { display: flex !important; }
  .nav.is-open .links a {
    min-height: 46px;
    display: flex !important;
    align-items: center;
    padding: 0 13px;
    border-radius: 12px;
    font-size: 15px;
  }
  .nav.is-open .links a:hover { background: var(--q-surface); opacity: 1; }
  .nav.is-open .links .active { background: var(--q-surface); }
  .nav.is-open .links .mobile-nav-cta {
    display: flex !important;
    width: 100%;
    min-height: 46px;
    height: 46px;
    justify-content: center;
    margin-top: 5px;
    padding: 0 16px;
    font-size: 15px !important;
    color: #fff;
    background: #111;
  }

  .hero h1 { font-size: clamp(47px, 9vw, 72px); }
  .product-hero h1 { font-size: clamp(44px, 8.4vw, 66px); }
  .editorial-split { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .logo { width: 126px; }
  .hero h1,
  .product-hero h1 { font-size: clamp(40px, 11vw, 54px); line-height: 1.01; letter-spacing: -.048em; }
  main h2 { font-size: clamp(32px, 8.6vw, 42px); line-height: 1.04; letter-spacing: -.043em; }
  .hero-copy,
  .intro,
  .sub,
  .desc { font-size: clamp(18px, 5vw, 21px); }

  .paths-grid,
  .quality-grid,
  .content-grid,
  .content-grid.three,
  .system-module-grid,
  .need-grid,
  .introduction-grid { grid-template-columns: minmax(0, 1fr); }

  .flagship-area { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; }
  .flagship-area h3,
  .flagship-area p { overflow-wrap: normal; hyphens: auto; }
  .ring { right: 0; }
  .path-card,
  .explain-card,
  .quality-card,
  .content-card { width: 100%; min-width: 0; }

  .cookie-dialog { width: calc(100% - 20px); margin-bottom: 10px; border-radius: 22px; }
  .cookie-dialog-inner { grid-template-columns: 1fr; gap: 23px; padding: 25px 22px 22px; }
  .cookie-dialog-copy { padding-left: 0; }
  .cookie-dialog-mark { width: 38px; height: 38px; position: static; margin-bottom: 20px; font-size: 19px; }
  .cookie-dialog h2 { font-size: 28px; }
  .cookie-dialog-controls { padding: 21px 0 0; border-top: 1px solid var(--q-line); border-left: 0; }
  .cookie-dialog-actions { grid-template-columns: 1fr; }
  .cookie-button { width: 100%; }
  .company-data > div { grid-template-columns: 1fr; gap: 6px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-layout .content-card { padding: 27px 24px; }
  .legal-data > div { grid-template-columns: 1fr; gap: 5px; }
  .legal-copy p { font-size: 16px; }
}

/* Über Q KI: Team mit einheitlicher Bild- und Informationshierarchie */
.team-section { background: #fff; }

.team-section .section-head {
  max-width: 900px;
  margin-bottom: 46px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-grid--three {
  max-width: 882px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px auto 0;
}

.team-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 19, .1);
  border-radius: var(--q-radius-m);
  background: #fff;
  box-shadow: var(--q-shadow-card);
}

.team-portrait {
  aspect-ratio: 2 / 2.65;
  overflow: hidden;
  background: #111;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(.78) contrast(1.035);
}

.team-info {
  min-height: 190px;
  padding: 24px 23px 26px;
}

.team-role {
  display: block;
  margin-bottom: 12px;
  color: #6b6b71;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.team-info h3 {
  margin: 0 0 11px;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.08;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.team-info p {
  margin: 0;
  color: var(--q-muted);
  font-size: 15px;
  line-height: 1.55;
}

.team-principle {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  align-items: start;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--q-line);
}

.team-principle strong {
  font-size: 19px;
  line-height: 1.25;
}

.team-principle p {
  max-width: 720px;
  margin: 0;
  color: var(--q-muted);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 1040px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid--three { max-width: none; grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .team-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-principle { grid-template-columns: minmax(0, 1fr); gap: 12px; }
}

@media (max-width: 620px) {
  .team-section .section-head { margin-bottom: 32px; }
  .team-grid,
  .team-grid--three { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .team-grid--three { margin-top: 14px; }
  .team-card { display: grid; grid-template-columns: 42% minmax(0, 1fr); border-radius: 20px; }
  .team-portrait { min-height: 230px; aspect-ratio: auto; }
  .team-info { min-height: 0; display: flex; flex-direction: column; justify-content: center; padding: 22px 18px; }
  .team-info h3 { font-size: clamp(16px, 4.4vw, 18px); letter-spacing: -.045em; }
  .team-info p { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .skip-link,
  .menu-icon,
  .menu-icon::before,
  .menu-icon::after { transition: none; }
}

/* Über Q KI: Arbeitsweise als reduzierte redaktionelle Schrittfolge */
.introduction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
  max-width: 1020px;
  margin: 0 auto;
}

.introduction-step {
  min-height: 188px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
  padding: 28px 0 30px;
  border-top: 1px solid var(--q-line);
  border-radius: 0;
  background: transparent;
  transition: border-color .2s ease, translate .2s ease;
}

.introduction-step:nth-child(-n + 2) { border-top-color: #111113; }

.introduction-step:hover {
  translate: 0 -2px;
  border-color: #a8a8ae;
  box-shadow: none;
}

.introduction-step > b {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: -4px 0 0;
  color: #b0b0b6;
  font-size: 38px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.06em;
}

.introduction-step h3 {
  grid-column: 2;
  max-width: none;
  margin: 0 0 9px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.introduction-step p {
  grid-column: 2;
  max-width: 66ch;
  margin: 0;
  color: var(--q-muted);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 620px) {
  .introduction-grid { grid-template-columns: minmax(0, 1fr); }
  .introduction-step {
    min-height: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 15px;
    padding: 23px 0 25px;
  }
  .introduction-step > b { font-size: 31px; }
  .introduction-step h3 { font-size: 22px; }
  .introduction-step p { font-size: 15px; }
}

/* Impressum: ruhige, dokumentartige Darstellung */
.legal-page {
  color: #1b1b1f;
  background: #fff;
}

.legal-page .legal-hero {
  min-height: 0;
  padding: 86px 0 64px;
  text-align: left;
  background: #fff;
  border-bottom: 1px solid var(--q-line);
}

.legal-page .legal-hero .container,
.legal-page main .container { max-width: var(--max); }
.legal-page .legal-hero h1 {
  max-width: none;
  margin: 0 0 16px;
  font-size: clamp(48px, 7vw, 76px);
  letter-spacing: -.055em;
}
.legal-page .legal-hero .hero-copy {
  max-width: 650px;
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.legal-page .section,
.legal-page .section.soft { padding: 68px 0; background: #fff; }
.legal-page .section + .section { border-top: 1px solid #ededf0; }
.legal-page nav .container,
.legal-page footer .container { max-width: var(--max); }
.legal-page .legal-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 0 auto;
}
.legal-page .legal-layout .content-card {
  padding: 0 0 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.legal-page .legal-layout .content-card + .content-card {
  margin-top: 42px;
  padding-top: 42px;
  padding-left: 0;
  border-top: 1px solid var(--q-line);
  border-left: 0;
}
.legal-page .legal-layout h2,
.legal-page .legal-copy h2 {
  margin-bottom: 22px;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -.045em;
}
.legal-page .section-label { margin-bottom: 12px; font-size: 12px; }
.legal-page .legal-copy { max-width: var(--max); }
.legal-page .legal-copy .section-head { margin: 0 0 26px; text-align: left; }
.legal-page .legal-copy .section-head h2 { margin: 0; }
.legal-page .legal-copy h3 { margin-top: 30px; font-size: 21px; }
.legal-page .legal-copy p { max-width: none; font-size: 16px; line-height: 1.65; }
.legal-page footer { border-top: 1px solid var(--q-line); background: #fff; }
.legal-page main a { text-decoration: none; }

.agb-document {
  /* Das AGB-Dokument folgt dem gleichen äußeren Seitenraster wie alle
     anderen Inhaltsseiten. Die Textzeilen bleiben darunter separat lesbar. */
  max-width: var(--max) !important;
  margin: 0 auto;
}
.agb-document > .native-lead,
.agb-document > .native-legal-overview,
.agb-document > .native-legal-copy {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.agb-document .native-lead {
  margin: 0 0 42px;
  color: var(--q-muted);
  font-size: 18px;
  line-height: 1.6;
}
.agb-document .native-legal-overview {
  margin: 0 0 48px;
  padding: 24px 0;
  border-top: 1px solid var(--q-line);
  border-bottom: 1px solid var(--q-line);
}
.agb-document .native-legal-overview-copy p,
.agb-document .native-legal-overview-item p { margin: 0 0 8px; color: var(--q-muted); line-height: 1.55; }
.agb-document .native-legal-overview-grid {
  display: block;
  margin-top: 24px;
}
.agb-document .native-legal-overview-card strong,
.agb-document .native-legal-overview-item strong { display: block; margin-bottom: 4px; }
.agb-document .native-legal-overview-card {
  display: grid;
  grid-template-columns: 130px minmax(120px, 180px) 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--q-line);
}
.agb-document .native-legal-overview-card:last-child { border-bottom: 1px solid var(--q-line); }
.agb-document .native-legal-overview-card span { color: var(--q-muted); font-size: 14px; }
.agb-document .native-legal-overview-card p { margin: 0; }
.agb-document .native-legal-index {
  display: block;
  margin: 30px 0 0;
  border-top: 1px solid var(--q-line);
}
.agb-document .native-legal-index a {
  display: block;
  padding: 13px 0;
  color: var(--q-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--q-line);
}
.agb-document .native-legal-index a:hover { color: var(--q-muted); }
.agb-document .native-legal-index a span {
  display: inline-block;
  width: 28px;
  color: var(--q-muted);
  font-weight: 700;
}
.agb-document .agb-part {
  margin: 0;
  padding: 42px 0 8px;
  border-top: 1px solid var(--q-line);
}
.agb-document .agb-part h2 {
  margin: 0 0 28px;
  max-width: none;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.agb-document h3 {
  margin: 30px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}
.agb-document p {
  max-width: none;
  margin: 0 0 14px;
  color: var(--q-muted);
  font-size: 16px;
  line-height: 1.65;
}
.agb-document a { text-decoration: underline; text-underline-offset: 3px; }
.agb-document .agb-closing { padding: 0; border-top: 0; }
.agb-document .agb-closing h2,
.agb-document .native-legal-overview h2 { max-width: none; margin-left: 0; margin-right: 0; }
.agb-document .agb-closing h2 { margin: 0 0 16px; font-size: 30px; }

.privacy-document {
  max-width: var(--max) !important;
  margin: 0 auto;
}
.privacy-document .native-legal-copy-head {
  margin: 0 0 36px;
}
.privacy-document h2 {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.045em;
}
.privacy-document .native-legal-index {
  display: block;
  margin: 30px 0 46px;
  border-top: 1px solid var(--q-line);
}
.privacy-document .native-legal-index a {
  display: block;
  padding: 13px 0;
  color: var(--q-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--q-line);
}
.privacy-document .native-legal-index a span {
  display: inline-block;
  width: 28px;
  color: var(--q-muted);
  font-weight: 700;
}
.privacy-document .legal-detail {
  padding: 34px 0 8px;
  border-top: 1px solid var(--q-line);
}
.privacy-document .legal-detail summary {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
  list-style: none;
  cursor: default;
  pointer-events: none;
}
.privacy-document .legal-detail summary::-webkit-details-marker { display: none; }
.privacy-document .legal-detail summary::after { display: none !important; }
.privacy-document .legal-detail summary .legal-detail-number {
  flex: 0 0 28px;
  color: var(--q-muted);
  font-weight: 700;
}
.privacy-document .legal-detail summary strong {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -.04em;
}
.privacy-document .legal-detail summary small { display: none; }
.privacy-document .legal-detail-body {
  display: block !important;
  margin: 22px 0 0 40px;
}
.privacy-document .legal-detail-body p {
  max-width: none;
  margin: 0 0 16px;
  color: var(--q-muted);
  font-size: 16px;
  line-height: 1.65;
}
.privacy-document a { text-decoration: none; }

@media (max-width: 620px) {
  .agb-document .native-legal-overview-card { grid-template-columns: 1fr; gap: 4px; }
  .agb-document .agb-part { padding-top: 32px; }
}

@media (max-width: 620px) {
  .legal-page .legal-hero { padding: 70px 0 48px; }
  .legal-page .legal-hero h1 { font-size: 52px; }
  .legal-page .legal-layout .content-card + .content-card {
    margin-top: 36px;
    padding-top: 36px;
    padding-left: 0;
    border-top: 1px solid var(--q-line);
    border-left: 0;
  }
  .legal-page .section,
  .legal-page .section.soft { padding: 52px 0; }
}

/*
 * Verbindliches Q-Typografiesystem
 *
 * Die sichtbare Hierarchie folgt wenigen festen Rollen statt individuellen
 * Seitengrößen. Diese Regeln stehen bewusst am Ende des gemeinsamen
 * Stylesheets und sind für alle Bereiche der Website verbindlich.
 */
:is(.eyebrow, .kicker, .section-label, .product-label, .native-legal-eyebrow),
main :is(.card, .pitem) :is(.tag, .tiny) {
  font-size: var(--q-type-label);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .11em;
  text-transform: uppercase;
}

:is(.path-card, .need-card, .route-card) small {
  font-size: var(--q-type-label);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .08em;
}

/*
 * Navigation: Der aktive Bereich wird nur über eine feine Linie markiert.
 * Schriftfamilie, Größe und Gewicht bleiben bei jedem Menüpunkt identisch.
 */
.links,
.links a,
.navbtn {
  font-family: var(--font-sans);
  font-size: var(--q-type-nav) !important;
  line-height: 1;
  letter-spacing: 0;
}

.links,
.links a,
.links .active { font-weight: 550; }

.links a:not(.mobile-nav-cta) { position: relative; }
.home-link {
  width: 30px;
  height: 30px;
  display: inline-grid !important;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--q-ink);
  background: transparent;
}

.home-link svg {
  width: 17px;
  height: 17px;
  display: block;
}

.home-link-label {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.links .home-link:hover {
  background: rgba(17, 17, 19, .07);
  opacity: 1;
}

@media (min-width: 901px) {
  .links > a:not(.home-link, .mobile-nav-cta) {
    display: inline-flex !important;
    align-items: center;
  }
}

.links .active::after {
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  background: currentColor;
}

.navbtn { font-weight: 700; }

@media (max-width: 900px) {
  .nav.is-open .links a,
  .nav.is-open .links .mobile-nav-cta {
    font-size: 15px !important;
    line-height: 1;
  }

  .nav.is-open .links a { font-weight: 550; }
  .nav.is-open .links .mobile-nav-cta { font-weight: 700; }
  .links .active::after { display: none; }

  .nav.is-open .links .home-link {
    width: 100%;
    flex-basis: auto;
    justify-content: flex-start;
    gap: 10px;
  }

  .nav.is-open .home-link-label {
    width: auto;
    height: auto;
    position: static;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
  }
}

.hero h1,
.product-hero h1,
.legal-page .legal-hero h1 {
  font-size: var(--q-type-display);
  line-height: .98;
  letter-spacing: -.052em;
}

:is(.hero-copy, .hero .sub, .product-hero .hero-copy) {
  font-size: var(--q-type-hero-copy);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -.012em;
}

:is(.intro, .desc) {
  font-size: var(--q-type-section-copy);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -.012em;
}

main h2 {
  font-size: var(--q-type-section);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.notice h2,
.result-title h2,
.decision-copy h2,
.boundary-copy h2,
.flagship-title h2,
.fit-card h2,
.form-head h2,
.success-state h2,
.product-result .result-title h2 {
  font-size: var(--q-type-contained);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.legal-page .legal-layout h2,
.legal-page .legal-copy h2,
.agb-document .agb-part h2,
.agb-document .agb-closing h2,
.agb-document .native-legal-overview h2,
.privacy-document h2 {
  font-size: var(--q-type-document);
  line-height: 1.08;
  letter-spacing: -.035em;
}

main h3 {
  font-size: var(--q-type-support);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.product-card h3,
.compare-card h3,
.ownership-card h3,
.stagecopy h3 {
  font-size: var(--q-type-feature);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.card h3,
.content-card h3,
.path-card h3,
.route-card h3,
.need-card h3,
.system-path h3,
.direct h3 {
  font-size: var(--q-type-card);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.explain-card h3,
.introduction-step h3 {
  font-size: var(--q-type-support);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.quality-card h3,
.result h3,
.pitem h3,
.step h3,
.roadmap-copy h3,
.campaign-gate h3,
.list-item h3,
.flagship-area h3,
.legal-page .legal-copy h3,
.agb-document h3 {
  font-size: var(--q-type-item);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.product-card h4,
.ownership-group h4,
.content-card h4 {
  font-size: var(--q-type-subtitle);
  line-height: 1.3;
  letter-spacing: -.015em;
}

.privacy-document .legal-detail summary strong {
  font-size: var(--q-type-card);
  line-height: 1.12;
  letter-spacing: -.03em;
}

:is(.button, .primary, .secondary, .submit, .route-button) {
  font-size: var(--q-type-button) !important;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -.01em;
}

:is(.card, .product-card, .path-card, .need-card, .content-card, .route-card, .explain-card, .ownership-card, .fit-card, .compare-card)
  > p:not(.path-route, .microcopy, .micro) {
  font-size: var(--q-type-card-copy);
  line-height: 1.5;
}

:is(.result, .pitem, .step, .roadmap-copy, .quality-card, .system-module, .flagship-area)
  > p:not(.microcopy, .micro) {
  font-size: var(--q-type-compact-copy);
  line-height: 1.5;
}

:is(.micro, .microcopy, .portfolio-note, .logic-note) {
  font-size: var(--q-type-meta);
  line-height: 1.45;
}

main :is(.card, .pitem) .link {
  font-size: var(--q-type-compact-copy);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -.005em;
}

footer {
  font-size: var(--q-type-footer);
  line-height: 1.5;
}

footer p,
footer li,
footer li a,
footer .legal,
footer .legal a {
  font-size: inherit;
  line-height: 1.5;
}

@media (max-width: 620px) {
  :root {
    --q-type-display: clamp(40px, 10.5vw, 44px);
    --q-type-section: clamp(31px, 8.5vw, 34px);
    --q-type-contained: clamp(28px, 7.5vw, 30px);
    --q-type-feature: clamp(26px, 7vw, 28px);
    --q-type-card: clamp(23px, 6.3vw, 25px);
    --q-type-support: 22px;
    --q-type-item: 19px;
    --q-type-document: 30px;
    --q-type-hero-copy: clamp(18px, 5vw, 20px);
    --q-type-section-copy: clamp(18px, 5vw, 20px);
    --q-type-subtitle: 17px;
  }

}

/* Blog: redaktionelle Klarheit statt Magazin-Dekoration */
.blog-hero {
  padding-bottom: 76px;
  background: linear-gradient(180deg, #fff 0%, #f5f5f7 100%);
}

.blog-hero .hero-copy { max-width: 820px; }

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
}

.blog-toolbar a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--q-line);
  border-radius: 999px;
  color: #3f3f44;
  background: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 650;
}

.blog-toolbar a:hover { border-color: #111; color: #111; }

.blog-group + .blog-group { border-top: 1px solid var(--q-line); }

.blog-group-head {
  display: grid;
  grid-template-columns: minmax(210px, .7fr) minmax(0, 1.3fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.blog-group-head h2 { margin: 8px 0 0; }
.blog-group-head p { margin: 0; color: var(--q-muted); font-size: 18px; line-height: 1.55; }

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

.blog-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(17, 17, 19, .1);
  border-radius: var(--q-radius-m);
  background: #fff;
  box-shadow: var(--q-shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 17, 19, .28);
  box-shadow: var(--q-shadow-raised);
}

.blog-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  color: #707076;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 24px 0 14px;
  font-size: clamp(24px, 2vw, 29px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.blog-card > p { margin: 0; color: var(--q-muted); font-size: 16px; line-height: 1.55; }

.blog-card-solution {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--q-line);
}

.blog-card-solution small { display: block; color: var(--q-muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.blog-card-solution strong { display: block; margin-top: 6px; font-size: 15px; }
.blog-card-link { margin-top: 18px; font-size: 14px; font-weight: 700; }

.article-hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--q-line);
  background: #fff;
}

.article-hero h1 {
  max-width: 1020px;
  margin: 20px 0 24px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.052em;
}

.article-hero .hero-copy { max-width: 820px; margin: 0; }
.article-meta { margin-top: 28px; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 72px;
  align-items: start;
}

.article-body { max-width: 760px; }
.article-body > *:first-child { margin-top: 0; }
.article-body h2 { margin: 58px 0 18px; font-size: clamp(32px, 4vw, 46px); }
.article-body h3 { margin: 34px 0 12px; font-size: 24px; }
.article-body p,
.article-body li { color: #45454a; font-size: 18px; line-height: 1.7; }
.article-body ul { display: grid; gap: 13px; margin: 22px 0; padding-left: 22px; list-style: disc; }
.article-lede { color: #111 !important; font-size: 22px !important; line-height: 1.55 !important; }

.article-callout {
  margin: 38px 0;
  padding: 28px 30px;
  border-left: 4px solid #111;
  border-radius: 0 18px 18px 0;
  background: var(--q-surface);
}

.article-callout strong { display: block; margin-bottom: 8px; font-size: 19px; }
.article-callout p { margin: 0; font-size: 16px; }

.article-aside { position: sticky; top: 94px; }
.solution-panel {
  padding: 28px;
  border-radius: var(--q-radius-m);
  color: #fff;
  background: #0d0d0f;
  box-shadow: var(--q-shadow-raised);
}
.solution-panel .section-label { color: #a8a8ae; }
.solution-panel h2 { margin: 12px 0 15px; color: #fff; font-size: 29px; }
.solution-panel p { margin: 0; color: #bcbcc2; font-size: 15px; line-height: 1.6; }
.solution-panel ol { display: grid; gap: 12px; margin: 22px 0 0; padding: 20px 0 0 20px; border-top: 1px solid #343438; }
.solution-panel li { padding-left: 4px; color: #f2f2f4; font-size: 14px; line-height: 1.45; }
.solution-panel .button { width: 100%; margin-top: 24px; border-color: #fff; color: #111; background: #fff; }

.article-sources {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--q-line);
  border-radius: 18px;
}
.article-sources h2 { margin: 0 0 12px; font-size: 16px; }
.article-sources ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.article-sources a { color: #55555a; font-size: 13px; line-height: 1.45; text-decoration: underline; text-underline-offset: 3px; }

.article-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--q-line);
}
.article-pager a { padding: 20px; border: 1px solid var(--q-line); border-radius: 16px; }
.article-pager small { display: block; margin-bottom: 6px; color: var(--q-muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.article-pager strong { font-size: 15px; }
.article-pager a:last-child { text-align: right; }

.editorial-standard {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
  align-items: start;
}
.editorial-standard p { margin: 0; color: var(--q-muted); font-size: 17px; line-height: 1.65; }

@media (max-width: 1040px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 42px; }
}

@media (max-width: 820px) {
  .blog-group-head,
  .article-layout,
  .editorial-standard { grid-template-columns: minmax(0, 1fr); }
  .article-aside { position: static; }
}

@media (max-width: 620px) {
  .blog-hero { padding-bottom: 58px; }
  .blog-toolbar { justify-content: flex-start; }
  .blog-grid,
  .article-pager { grid-template-columns: minmax(0, 1fr); }
  .blog-card { min-height: 0; padding: 25px 23px; }
  .blog-card h3 { font-size: 25px; }
  .article-hero { padding: 70px 0 55px; }
  .article-hero h1 { font-size: clamp(40px, 11vw, 50px); }
  .article-body p,
  .article-body li { font-size: 17px; }
  .article-lede { font-size: 20px !important; }
  .article-pager a:last-child { text-align: left; }
}

/* Premium system objects: one visual family, distinct functional motifs. */
.system-box-visual {
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.system-box-art {
  width: 100%;
  position: relative;
  container-type: inline-size;
  isolation: isolate;
}

.system-box-visual picture { width: 100%; display: block; }
.system-box-art > picture img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, .18));
}

.product-card--visual {
  grid-template-columns: minmax(0, .94fr) minmax(215px, .5fr) minmax(265px, .72fr);
  align-items: stretch;
}

.product-card--visual .product-main { padding-right: 30px; }
.system-box-visual--card {
  padding: 28px 18px 20px;
  border-right: 1px solid rgba(17, 17, 19, .06);
  border-left: 1px solid rgba(17, 17, 19, .06);
  background: radial-gradient(circle at 50% 43%, rgba(255, 255, 255, .96), rgba(242, 242, 245, .7) 58%, rgba(232, 232, 236, .58) 100%);
}

.product-card:nth-child(even) .system-box-visual--card {
  background: radial-gradient(circle at 50% 43%, #fff, #ececf0 60%, #dedee4 100%);
}

.system-box-visual--card .system-box-art > picture img { max-height: 365px; }

.product-hero--system {
  min-height: 720px;
  padding: 76px 0 62px;
  overflow: hidden;
  text-align: left;
}

.product-hero--system .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  gap: 28px clamp(38px, 6vw, 82px);
  align-items: center;
}

.product-hero--system .breadcrumb {
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.system-hero-copy { min-width: 0; }
.product-hero--system h1,
.product-hero--system .hero-copy {
  max-width: 790px;
  margin-right: 0;
  margin-left: 0;
}

.product-hero--system h1 { font-size: clamp(46px, 5.3vw, 72px); }
.product-hero--system .hero-actions { justify-content: flex-start; }
.system-box-visual--hero {
  width: 100%;
  max-width: 350px;
  justify-self: end;
  align-self: center;
}

.system-box-visual--hero .system-box-art > picture img { max-height: 510px; }
.product-hero--system .hero-facts {
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin-top: 0;
  padding-top: 6px;
}

@media (max-width: 1100px) {
  .product-card--visual { grid-template-columns: minmax(0, 1fr) minmax(230px, 290px); }
  .product-card--visual .product-points {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-card--visual .product-point:nth-last-child(2) { border-bottom: 0; }
}

@media (max-width: 900px) {
  .product-hero--system { min-height: 0; }
  .product-hero--system .container { grid-template-columns: minmax(0, 1fr) 255px; gap: 30px; }
  .product-hero--system h1 { font-size: clamp(42px, 7vw, 62px); }
  .system-box-visual--hero .system-box-art > picture img { max-height: 420px; }
}

@media (max-width: 760px) {
  .product-card--visual { grid-template-columns: minmax(0, 1fr); }
  .product-card--visual .product-main { padding-right: 30px; }
  .system-box-visual--card {
    min-height: 360px;
    padding: 24px 22px 18px;
    border-top: 1px solid rgba(17, 17, 19, .06);
    border-right: 0;
    border-left: 0;
  }
  .system-box-visual--card .system-box-art > picture img { max-height: 315px; }
  .product-card--visual .product-points { grid-column: auto; }

  .product-hero--system { padding: 68px 0 54px; }
  .product-hero--system .container { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .product-hero--system .breadcrumb { margin-bottom: 8px; }
  .system-box-visual--hero { width: min(78vw, 290px); justify-self: center; }
  .system-box-visual--hero .system-box-art > picture img { max-height: 410px; }
  .product-hero--system .hero-facts { padding-top: 2px; }
}

@media (max-width: 520px) {
  .product-card--visual .product-points { grid-template-columns: minmax(0, 1fr); }
  .product-card--visual .product-point:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .product-hero--system .hero-actions { align-items: stretch; }
  .product-hero--system .hero-actions .button { width: 100%; }
}

/* Q Dialer: echte Produktoberfläche als ruhige, redaktionelle Produktbühne. */
.qd-ui-showcase {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, .095), transparent 38%),
    #0c0c0e;
}

.qd-ui-showcase::after {
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, .09);
}

.qd-ui-showcase .container { position: relative; }
.qd-ui-head { max-width: 940px; }
.qd-ui-head .section-label { color: #8f8f96; }
.qd-ui-head h2 { color: #fff; }
.qd-ui-head .intro {
  max-width: 840px;
  border-top-color: rgba(255, 255, 255, .14);
  color: #b9b9bf;
}

.qd-ui-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.qd-ui-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--q-radius-m);
  background: #151517;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .3);
}

.qd-ui-shot--featured { grid-column: 1 / -1; }

.qd-ui-media {
  padding: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: linear-gradient(145deg, #29292d, #1a1a1d);
}

.qd-ui-media picture {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 15px;
  background: #f7f7f6;
}

.qd-ui-media img {
  width: 100%;
  height: auto;
  display: block;
}

.qd-ui-caption { padding: 28px 30px 31px; }
.qd-ui-shot--featured .qd-ui-caption {
  display: grid;
  grid-template-columns: minmax(150px, .25fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 34px 38px 38px;
}

.qd-ui-label {
  display: block;
  color: #8f8f96;
  font-size: var(--q-type-label);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.qd-ui-caption h3 {
  max-width: 660px;
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.qd-ui-shot--featured .qd-ui-caption h3 { margin-top: 0; }
.qd-ui-caption p {
  max-width: 690px;
  margin: 0;
  color: #aaaab0;
  font-size: var(--q-type-card-copy);
  line-height: 1.55;
}

.qd-ui-note {
  margin: 26px 0 0;
  color: #88888f;
  text-align: center;
}

@media (max-width: 820px) {
  .qd-ui-grid { grid-template-columns: minmax(0, 1fr); }
  .qd-ui-shot--featured { grid-column: auto; }
  .qd-ui-shot--featured .qd-ui-caption {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .qd-ui-shot--featured .qd-ui-caption h3 { margin-top: 0; }
}

@media (max-width: 620px) {
  .qd-ui-grid { gap: 16px; }
  .qd-ui-media { padding: 7px; }
  .qd-ui-media picture { aspect-ratio: 4 / 5; border-radius: 12px; }
  .qd-ui-media img {
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .qd-ui-caption,
  .qd-ui-shot--featured .qd-ui-caption { padding: 24px 23px 27px; }
  .qd-ui-caption h3 { font-size: 24px; }
  .qd-ui-note { margin-top: 22px; text-align: left; }
}
