/*
 * Produktinformationen page (Exilby®) — FK Portal layout from Figma.
 */

@import url("fkp-fonts.css");

:root {
  --fkp-magenta: #de006a;
  --fkp-magenta-dark: #970048;
  --fkp-yellow: #ffbb11;
  --fkp-white: #ffffff;
  --fkp-text: rgba(0, 0, 0, 0.8);
  --fkp-navy: #011c40;
  --fkp-patient-bg: #e7f2ee;
  --fkp-container: 1312px;
  --fkp-section-x: 64px;
  --fkp-font: "Arial Greek Regular", Arial, "Helvetica Neue", Helvetica, sans-serif;
  --fkp-navbar-font: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --fkp-serif: "Merriweather", Georgia, "Times New Roman", serif;
  --fkp-display: "Montserrat", "Arial Greek Regular", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

/* Content columns sit 64px from the viewport edge (no extra centering margin). */
.fkp-announcement__inner,
.fkp-navbar__inner,
.fkp-produktinfo-overview__inner,
.fkp-produktinfo-quote__inner,
.fkp-produktinfo-study__inner,
.fkp-produktinfo-results__inner,
.fkp-produktinfo-newsletter__inner,
.fkp-exilby-footer__inner,
.fkp-portal-footer__inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

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

body.fkp-produktinformationen-page {
  margin: 0;
  font-family: var(--fkp-font);
  font-synthesis: none;
  color: var(--fkp-text);
  background: var(--fkp-white);
  overflow-x: hidden;
}

.fkp-produktinfo {
  overflow-x: hidden;
}

/* Figma "Font Family" on all UI headings (not Merriweather hero title) */
body.fkp-produktinformationen-page .fkp-produktinfo h2,
body.fkp-produktinformationen-page .fkp-produktinfo h3 {
  font-family: var(--fkp-font);
}

/* ── Shared header (portal) ── */

.fkp-portal-header {
  width: 100%;
  font-family: var(--fkp-navbar-font);
}

.fkp-announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 32px;
  padding: 4px var(--fkp-section-x);
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)),
    var(--fkp-magenta);
}

.fkp-announcement__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.fkp-announcement__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.fkp-announcement__user {
  font-family: var(--fkp-navbar-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--fkp-white);
}

.fkp-announcement__logout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fkp-navbar-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--fkp-white);
  text-decoration: none;
}

.fkp-announcement__logout svg,
.fkp-announcement__logout img {
  width: 24px;
  height: 24px;
  flex: none;
}

.fkp-navbar {
  display: flex;
  justify-content: flex-start;
  padding: 24px var(--fkp-section-x);
  background: var(--fkp-magenta);
}

.fkp-navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.fkp-navbar__logo {
  flex: 0 1 auto;
  min-width: 120px;
}

.fkp-navbar__logo img {
  display: block;
  width: clamp(120px, 11vw, 160px);
  height: auto;
}

.fkp-navbar__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  gap: clamp(18px, 2vw, 36px);
  flex: 1 1 auto;
  min-width: 0;
}

.fkp-navbar__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 0 2px;
  font-family: var(--fkp-navbar-font);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
  color: var(--fkp-white);
  text-decoration: none;
  hyphens: auto;
}

.fkp-navbar__link.is-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fkp-white);
  border-radius: 2px 0;
}

.fkp-navbar__actions {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
  max-width: 100%;
}

.fkp-navbar__kontakt {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  flex: 0 0 auto;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 0 16px;
  background: var(--fkp-white);
}

.fkp-navbar__kontakt-main {
  border-radius: 0;
  padding-right: 12px;
  min-width: 0;
  background: transparent;
  white-space: nowrap;
}

.fkp-navbar__kontakt-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 32px;
  padding: 0 10px 0 0;
  border: 0;
  background: transparent;
  color: var(--fkp-magenta);
  cursor: pointer;
}

.fkp-navbar__kontakt-toggle svg {
  display: block;
  transition: transform 0.15s ease;
}

.fkp-navbar__kontakt-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.fkp-navbar__kontakt:hover,
.fkp-navbar__kontakt:focus-within {
  background: rgba(255, 255, 255, 0.92);
}

.fkp-navbar__kontakt-main:hover {
  opacity: 1;
}

.fkp-navbar__kontakt-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
  padding: 8px;
  border-radius: 8px;
  background: var(--fkp-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.fkp-navbar__kontakt-dropdown[hidden] {
  display: none;
}

.fkp-navbar__kontakt-link {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: var(--fkp-navbar-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  color: var(--fkp-magenta);
  text-decoration: none;
}

.fkp-navbar__kontakt-link:hover,
.fkp-navbar__kontakt-link:focus-visible {
  background: rgba(222, 0, 106, 0.08);
}

.fkp-portal-header .fkp-btn--white {
  font-family: var(--fkp-navbar-font);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--fkp-magenta);
}

/* ── Buttons ── */

.fkp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  border: 0;
  border-radius: 0 16px;
  font-family: var(--fkp-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.fkp-btn:hover {
  opacity: 0.9;
}

.fkp-btn--white {
  background: var(--fkp-white);
  color: var(--fkp-magenta);
  min-width: 85px;
  min-height: 37px;
}

.fkp-btn--white-lg {
  background: var(--fkp-white);
  color: var(--fkp-magenta);
  padding: 12px 24px;
  border-radius: 0 20px;
  font-size: 16px;
  min-height: 48px;
}

.fkp-btn--yellow {
  background: var(--fkp-yellow);
  color: var(--fkp-text);
  padding: 12px 24px;
  border-radius: 0 20px;
  font-size: 16px;
  min-height: 48px;
}

.fkp-navbar img,
.fkp-announcement img,
.fkp-produktinfo img {
  max-width: 100%;
  height: auto;
}

/* ── Main layout ── */

.fkp-produktinfo {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ── Hero ── */

.fkp-produktinfo-hero {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 64px var(--fkp-section-x);
  background: var(--fkp-magenta);
}

.fkp-produktinfo-hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  width: min(680px, 48%, 100%);
  min-height: 0;
  isolation: isolate;
}

.fkp-produktinfo-hero__glow {
  position: absolute;
  width: min(560px, 100%);
  height: min(560px, 100%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(50% 50% at 50% 50%, #f8b2d3 0%, rgba(248, 178, 211, 0) 100%);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.fkp-produktinfo-hero__shadow {
  position: absolute;
  width: 154px;
  height: 36px;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  background: #000;
  opacity: 0.4;
  filter: blur(11px);
  z-index: 1;
  pointer-events: none;
  display:none;
}

.fkp-produktinfo-hero__product {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
}

/* Word mark above the claim; the packshot owns the media column. */
.fkp-produktinfo-hero__logo {
  display: block;
  width: auto;
  max-width: 60% !important;
  height: auto;
}

.fkp-produktinfo-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1;
  min-width: 0;
}

.fkp-produktinfo-hero__title {
  margin: 0;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.06em;
  color: var(--fkp-white);
}

.fkp-produktinfo-hero__title sup {
  font-size: 0.45em;
  letter-spacing: 0;
}

/* The word mark is the heading here, so the type rules above have nothing to style. */
.fkp-produktinfo-hero__title--logo {
  line-height: 0;
}

.fkp-produktinfo-hero__headline {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 140%;
  color: var(--fkp-white);
}

.fkp-produktinfo-hero__headline-accent {
  display: inline;
  font-family: var(--fkp-font);
  font-weight: 700;
  background: var(--fkp-yellow);
  color: var(--fkp-text);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 8px;
}

.fkp-produktinfo-hero__headline-sub {
  font-weight: 400;
}

.fkp-produktinfo-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--fkp-white);
}

.fkp-produktinfo-hero__copy p {
  margin: 0;
  font-size: 18px;
  line-height: 160%;
}

.fkp-produktinfo-hero__list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 18px;
}

/* Lead and sub read as one continuous line, separated by an en dash. */
.fkp-produktinfo-hero__list li {
  line-height: 150%;
}

.fkp-produktinfo-hero__list li + li {
  margin-top: 8px;
}

.fkp-produktinfo-hero__list-lead {
  font-family: var(--fkp-font);
  font-weight: 700;
}

.fkp-produktinfo-hero__list-sub {
  font-weight: 400;
}

.fkp-produktinfo-hero__action {
  margin-top: 16px;
}

.fkp-produktinfo-hero__footnotes {
  font-size: 12px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.85);
}

.fkp-produktinfo-hero__footnotes p {
  margin: 0;
}

/* Numbered references for the hero claims, parked at the foot of the page. */
.fkp-produktinfo-footnotes {
  padding: 32px var(--fkp-section-x);
  background: var(--fkp-magenta);
}

.fkp-produktinfo-footnotes__list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 12px;
  line-height: 160%;
  color: var(--fkp-white);
}

.fkp-produktinfo-footnotes__list li + li {
  margin-top: 4px;
}

.fkp-produktinfo-footnotes__list a {
  color: inherit;
  overflow-wrap: anywhere;
}

/* Lists must not inherit the theme's body type - every panel reads the same. */
.fkp-tabs__panel-list {
  margin: 0 0 16px;
  padding-left: 1.75rem;
  font-size: 18px;
  line-height: 160%;
  color: var(--fkp-text);
}

.fkp-tabs__panel-list li {
  font-size: 18px;
  line-height: 160%;
  color: var(--fkp-text);
}

.fkp-tabs__panel-list li + li {
  margin-top: 8px;
}

.fkp-tabs__panel .fkp-btn {
  margin-top: 8px;
}

.fkp-produktinfo-quote__heading {
  margin: 0 0 32px;
  font-family: var(--fkp-font);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 140%;
  color: var(--fkp-magenta);
}

.fkp-produktinfo-studies {
  padding: 64px var(--fkp-section-x);
  background: var(--fkp-white);
}

.fkp-produktinfo-studies__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.fkp-produktinfo-study--nested {
  padding: 0;
  background: transparent;
}

.fkp-produktinfo-study__subtitle {
  margin: 0 0 32px;
  font-family: var(--fkp-font);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 140%;
  color: var(--fkp-magenta);
}

/* Nested inside the white studies band, so it keeps its own magenta surface -
   white cards and white copy would otherwise disappear. */
.fkp-produktinfo-results--nested {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  border-radius: 0 32px;
  background: var(--fkp-magenta);
}

.fkp-produktinfo-results--nested .fkp-produktinfo-results__title {
  font-size: clamp(24px, 2.2vw, 32px);
  margin-bottom: 0;
}

/* ── Section heading ── */

.fkp-section-heading {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fkp-section-heading__title {
  margin: 0;
  max-width: 768px;
  font-family: var(--fkp-font);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 700;
  line-height: 140%;
  color: var(--fkp-magenta);
}

.fkp-section-heading__title--magenta {
  color: var(--fkp-magenta);
}

.fkp-section-heading__accent {
  display: block;
  width: 160px;
  height: 4px;
  background: var(--fkp-magenta);
}

.fkp-section-heading__accent--magenta {
  background: var(--fkp-magenta);
}

/* ── Overview / Tabs ── */

.fkp-produktinfo-overview {
  padding: 64px var(--fkp-section-x);
  border-top: 1px solid var(--fkp-white);
}

.fkp-produktinfo-overview__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.fkp-tabs__nav-scroll {
  width: 100%;
}

.fkp-tabs__nav {
  display: flex;
  border-bottom: 1px solid var(--fkp-magenta);
}

.fkp-tabs__tab {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 16px 24px;
  border: 0;
  background: transparent;
  font-family: var(--fkp-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  color: #000;
  cursor: pointer;
  touch-action: manipulation;
}

.fkp-tabs__tab.is-active {
  background: var(--fkp-magenta);
  color: var(--fkp-white);
}

.fkp-tabs__panels {
  max-width: 800px;
  margin-inline: auto;
  padding-top: 32px;
}

.fkp-tabs__panel[hidden] {
  display: none !important;
}

.fkp-tabs__panel-title {
  margin: 0 0 32px;
  font-family: var(--fkp-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0;
  color: var(--fkp-magenta);
}

.fkp-tabs__panel p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 160%;
  color: var(--fkp-text);
}

.fkp-tabs__panel-note {
  padding: 16px 20px;
  border-left: 4px solid var(--fkp-yellow);
  background: rgba(255, 187, 17, 0.12);
}

.fkp-tabs__panel sub {
  font-size: 0.7em;
  line-height: 0;
  vertical-align: sub;
}

.fkp-tabs__panel .fkp-btn {
  margin-top: 16px;
}

/* ── Quote ── */

.fkp-produktinfo-quote {
  padding: 64px var(--fkp-section-x);
  background: var(--fkp-magenta);
}

@media (min-width: 1280px) {
  .fkp-produktinfo-quote {
    padding-left: 220px;
    padding-right: 220px;
  }
}

.fkp-produktinfo-quote__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.fkp-produktinfo-quote__text {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  color: var(--fkp-white);
}

.fkp-produktinfo-quote__author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fkp-produktinfo-quote__avatar {
  flex: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.fkp-produktinfo-quote__name {
  margin: 0;
  font-family: var(--fkp-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  color: var(--fkp-white);
}

.fkp-produktinfo-quote__role {
  margin: 0;
  font-size: 14px;
  line-height: 160%;
  color: var(--fkp-white);
}

/* ── Study sections ── */

.fkp-produktinfo-study {
  padding: 64px var(--fkp-section-x);
  background: var(--fkp-white);
}

.fkp-produktinfo-study__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fkp-produktinfo-study__content {
  display: flex;
  align-items: center;
  gap: 64px;
}

.fkp-produktinfo-study__media {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.fkp-produktinfo-study__paper {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.12);
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.12));
}

.fkp-produktinfo-study__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.fkp-produktinfo-study__lead {
  margin: 0;
  font-size: 22px;
  line-height: 150%;
  color: var(--fkp-text);
}

.fkp-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fkp-checklist li {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  line-height: 150%;
  color: var(--fkp-text);
}

.fkp-checklist__icon {
  flex: none;
  width: 40px;
  height: 40px;
}

/* ── Results / Stat cards ── */

.fkp-produktinfo-results {
  padding: 64px var(--fkp-section-x);
  background: var(--fkp-magenta);
}

.fkp-produktinfo-results__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fkp-produktinfo-results__title {
  margin: 0;
  font-family: var(--fkp-font);
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 700;
  line-height: 140%;
  color: var(--fkp-white);
}

/* Auto-fit keeps the cards proportionate as they narrow instead of stacking
   into full-width blocks. */
.fkp-stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.fkp-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 312px;
  padding: 24px 20px;
  background: var(--fkp-white);
  border-radius: 0 32px;
  text-align: center;
}

.fkp-stat-card__label {
  margin: 0;
  font-family: var(--fkp-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  color: #000;
  display: flex;
  place-items: center;
  flex: 1;
}

.fkp-stat-card__value {
  margin: 0;
  font-family: var(--fkp-font);
  font-size: clamp(40px, 4vw, 55px);
  font-weight: 700;
  line-height: 140%;
  color: var(--fkp-magenta);
}

.fkp-stat-card__unit {
  margin: 0;
  font-family: var(--fkp-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  color: #000;
}

.fkp-stat-card__note {
  margin: 0;
  font-size: 18px;
  line-height: 160%;
  color: var(--fkp-text);
}

.fkp-produktinfo-results__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  background: var(--fkp-white);
}

.fkp-produktinfo-results__check {
  flex: none;
  width: 36px;
  height: auto;
}

.fkp-produktinfo-results__banner p {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  color: #000;
}

.fkp-produktinfo-results__action {
  display: flex;
  justify-content: center;
}

/* Sources and numbered notes under the stat cards, on the magenta band. */
.fkp-produktinfo-smallprint {
  font-size: 12px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.85);
}

.fkp-produktinfo-smallprint__source {
  margin: 0 0 8px;
}

.fkp-produktinfo-smallprint__list {
  margin: 0;
  padding-left: 1.25rem;
}

.fkp-produktinfo-smallprint__list li + li {
  margin-top: 4px;
}

.fkp-produktinfo-smallprint a {
  color: inherit;
  overflow-wrap: anywhere;
}

/* ── Patient voice ── */

.fkp-produktinfo-patient {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  min-height: 577px;
  padding: 64px;
  overflow: hidden;
  background:
    linear-gradient(270deg, rgba(231, 242, 238, 0) 45.56%, var(--fkp-patient-bg) 68.99%),
    url("../images/patient-portrait.jpeg") right center / contain no-repeat,
    var(--fkp-patient-bg);
}

.fkp-produktinfo-patient__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: min(840px, 100%);
  min-height: 449px;
  padding: 96px 64px;
  box-sizing: border-box;
  background: var(--fkp-magenta);
}

.fkp-produktinfo-patient__title {
  margin: 0;
  font-family: var(--fkp-font);
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 700;
  line-height: 140%;
  color: var(--fkp-white);
}

.fkp-produktinfo-patient__quote {
  margin: 0;
  font-size: 18px;
  line-height: 160%;
  color: var(--fkp-white);
}

.fkp-produktinfo-patient__name {
  margin: 0;
  font-family: var(--fkp-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  color: var(--fkp-white);
}

.fkp-produktinfo-patient__note {
  margin: -24px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: var(--fkp-white);
}

.fkp-produktinfo-patient__role {
  margin: -24px 0 0;
  font-size: 14px;
  line-height: 160%;
  color: var(--fkp-white);
}

/* ── Newsletter ── */

.fkp-produktinfo-newsletter {
  padding: 64px var(--fkp-section-x);
  background: #FFBB11;
}

.fkp-produktinfo-newsletter__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.fkp-produktinfo-newsletter__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fkp-produktinfo-newsletter__title {
  margin: 0;
  font-family: var(--fkp-font);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 700;
  line-height: 140%;
  color: var(--fkp-white);
}

.fkp-produktinfo-newsletter__text {
  margin: 0;
  font-size: 22px;
  line-height: 150%;
  color: var(--fkp-white);
}

.fkp-produktinfo-newsletter__content > .fkp-btn {
  flex: none;
  align-self: flex-start;
  width: 247px;
  max-width: 100%;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 0 20px;
}

.fkp-produktinfo-newsletter__illustration {
  flex: none;
  width: min(492px, 40%);
}

.fkp-produktinfo-newsletter__illustration svg,
.fkp-produktinfo-newsletter__illustration img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Exilby footer ── */

.fkp-exilby-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px var(--fkp-section-x) 32px;
  gap: 16px;
  background: var(--fkp-magenta);
}

.fkp-exilby-footer__inner {
  width: 100%;
}

.fkp-exilby-footer__accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.fkp-exilby-footer__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.fkp-exilby-footer__trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: var(--fkp-white);
  font-family: var(--fkp-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  text-align: left;
  cursor: pointer;
}

.fkp-exilby-footer__trigger:hover {
  text-decoration: underline;
}

.fkp-exilby-footer__label {
  white-space: nowrap;
}

.fkp-exilby-footer__panel[hidden] {
  display: none !important;
}

.fkp-exilby-footer__panel-body {
  padding: 0 0 16px 44px;
  color: var(--fkp-white);
  font-size: 18px;
  line-height: 160%;
}

.fkp-exilby-footer__panel-body p {
  margin: 0 0 16px;
}

.fkp-exilby-footer__panel-body p:last-child {
  margin-bottom: 0;
}

.fkp-exilby-footer__pflichttext-heading {
  margin: 0 0 16px;
  color: var(--fkp-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
}

.fkp-exilby-footer__literature-list {
  margin: 0;
  padding: 0 0 0 1.25rem;
  list-style: decimal;
  color: var(--fkp-white);
  font-size: 18px;
  line-height: 160%;
}

.fkp-exilby-footer__literature-list li {
  margin: 0 0 16px;
  padding-left: 8px;
}

.fkp-exilby-footer__literature-list li:last-child {
  margin-bottom: 0;
}

.fkp-exilby-footer__icon {
  flex: none;
  display: block;
  width: 28px;
  height: 28px;
}

.fkp-exilby-footer__icon img {
  display: block;
  width: 28px;
  height: 28px;
}

.fkp-exilby-footer__disclaimer {
  margin: 0 auto;
  width: 100%;
  max-width: 325px;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  color: var(--fkp-white);
}

/* ── Portal footer (bottom bar) ── */

.fkp-portal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px var(--fkp-section-x);
  background: var(--fkp-magenta-dark);
}

.fkp-portal-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.fkp-portal-footer__copy {
  margin: 0;
  font-size: 14px;
  line-height: 160%;
  color: var(--fkp-white);
}

.fkp-portal-footer__links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.fkp-portal-footer__links a {
  color: var(--fkp-white);
  text-decoration: none;
  font-size: 14px;
  line-height: 160%;
}

.fkp-portal-footer__links a:hover,
.fkp-navbar__link:hover,
.fkp-announcement__logout:hover {
  text-decoration: underline;
}

/* ── Responsive ── */

@media (max-width: 1200px) {
  .fkp-produktinfo-study__content {
    gap: 40px;
  }

  .fkp-stat-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .fkp-stat-card {
    min-height: 260px;
    padding: 20px 16px;
  }

  .fkp-stat-card__label {
    font-size: 20px;
  }
}

/* The desktop bar hands over to the mobile menu here; see portal-nav.css. */
@media (max-width: 1280px) {
  .fkp-navbar__nav {
    display: none;
  }
}

@media (max-width: 1024px) {
  .fkp-produktinfo-hero {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .fkp-produktinfo-hero__content {
    align-items: flex-start;
    width: 100%;
  }

  .fkp-produktinfo-hero__media {
    width: 100%;
    max-width: 560px;
    align-self: center;
  }

  /* Copy stays left-aligned; only the CTA is centred. */
  .fkp-produktinfo-hero__action {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .fkp-tabs__nav {
    flex-wrap: wrap;
  }

  /* Fixed thirds so the lone tab on the last row stays flush left at full size. */
  .fkp-tabs__tab {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    justify-content: flex-start;
    text-align: left;
    font-size: 14px;
    padding: 12px 12px;
  }

  .fkp-produktinfo-study__content {
    flex-direction: column;
  }

  .fkp-produktinfo-patient {
    min-height: auto;
    padding: 64px var(--fkp-section-x);
  }

  /* Trim the card rather than letting it stretch across the full width. */
  .fkp-produktinfo-patient__card {
    width: min(560px, 100%);
    min-height: 0;
    padding: 48px 40px;
  }

  .fkp-produktinfo-newsletter__inner {
    flex-direction: column;
    text-align: center;
  }

  .fkp-produktinfo-newsletter__content {
    align-items: center;
  }

  .fkp-produktinfo-newsletter__illustration {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --fkp-section-x: 16px;
  }

  /* ── Hero (Exilby Banner) ── */

  .fkp-produktinfo-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 32px var(--fkp-section-x);
    text-align: left;
  }

  .fkp-produktinfo-hero__media {
    width: 100%;
    max-width: none;
    min-height: 302px;
  }

  .fkp-produktinfo-hero__glow {
    width: 336px;
    height: 337px;
  }

  .fkp-produktinfo-hero__shadow {
    width: 106px;
    height: 25px;
    filter: blur(7.78px);
  }

  .fkp-produktinfo-hero__product {
    max-width: 420px;
  }

  .fkp-produktinfo-hero__content {
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .fkp-produktinfo-hero__title {
    font-size: 40px;
    line-height: 120%;
  }

  .fkp-produktinfo-hero__headline {
    font-size: 32px;
    line-height: 140%;
  }

  .fkp-produktinfo-hero__copy {
    gap: 8px;
  }

  .fkp-produktinfo-hero__copy p,
  .fkp-produktinfo-hero__list {
    font-size: 16px;
    line-height: 160%;
  }

  .fkp-produktinfo-hero__list-lead {
    font-size: 16px;
    line-height: 150%;
  }

  .fkp-produktinfo-hero__action .fkp-btn {
    width: 100%;
  }

  .fkp-produktinfo-footnotes {
    padding: 24px var(--fkp-section-x);
  }

  /* ── Section headings ── */

  .fkp-section-heading {
    gap: 20px;
  }

  .fkp-section-heading__title {
    font-size: 28px;
    line-height: 140%;
  }

  .fkp-section-heading__accent {
    width: 120px;
  }

  /* ── Overview / Tabs ── */

  .fkp-produktinfo-overview {
    padding: 64px var(--fkp-section-x);
  }

  .fkp-produktinfo-overview__inner {
    gap: 32px;
  }

  .fkp-tabs__nav-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
    margin-inline: calc(-1 * var(--fkp-section-x));
    padding-inline: var(--fkp-section-x);
  }

  .fkp-tabs__nav-scroll::-webkit-scrollbar {
    display: none;
  }

  .fkp-tabs__nav {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    border-bottom: 1px solid var(--fkp-magenta);
  }

  .fkp-tabs__tab {
    flex: none;
    max-width: none;
    justify-content: center;
    text-align: center;
    min-height: 54px;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 120%;
  }

  .fkp-tabs__panels {
    max-width: none;
    padding-top: 0;
  }

  .fkp-tabs__panel-title {
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 140%;
  }

  .fkp-tabs__panel p,
  .fkp-tabs__panel-list,
  .fkp-tabs__panel-list li {
    font-size: 16px;
    line-height: 160%;
  }

  .fkp-tabs__panel .fkp-btn {
    width: 100%;
    margin-top: 8px;
  }

  /* ── Quote ── */

  .fkp-produktinfo-quote {
    padding: 64px var(--fkp-section-x);
  }

  .fkp-produktinfo-quote__inner {
    gap: 32px;
  }

  .fkp-produktinfo-quote__text {
    font-size: 20px;
    line-height: 150%;
  }

  .fkp-produktinfo-quote__avatar {
    width: 71px;
    height: 71px;
  }

  .fkp-produktinfo-quote__name {
    font-size: 16px;
  }

  /* ── Study sections ── */

  .fkp-produktinfo-study {
    padding: 32px var(--fkp-section-x);
  }

  .fkp-produktinfo-study__inner {
    gap: 32px;
  }

  .fkp-produktinfo-study__content {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .fkp-produktinfo-study__media {
    padding: 0;
  }

  .fkp-produktinfo-study__paper {
    width: 100%;
    max-width: none;
  }

  .fkp-produktinfo-study__details {
    gap: 32px;
  }

  .fkp-checklist li {
    gap: 12px;
    align-items: center;
    font-size: 18px;
    line-height: 150%;
  }

  .fkp-checklist__icon {
    width: 32px;
    height: 32px;
    margin-top: 0;
  }

  .fkp-produktinfo-study__details > .fkp-btn {
    width: 100%;
  }

  /* ── Results ── */

  .fkp-produktinfo-results {
    padding: 32px var(--fkp-section-x);
  }

  .fkp-produktinfo-results--nested {
    gap: 24px;
    padding: 24px 20px;
  }

  .fkp-produktinfo-results__title {
    font-size: 28px;
    line-height: 140%;
  }

  .fkp-stat-cards {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }

  .fkp-stat-card {
    gap: 8px;
    min-height: 190px;
    padding: 16px;
  }

  .fkp-stat-card__label {
    font-size: 18px;
    line-height: 140%;
  }

  .fkp-stat-card__value {
    font-size: 28px;
    line-height: 140%;
  }

  .fkp-stat-card__unit {
    font-size: 16px;
  }

  .fkp-stat-card__note {
    font-size: 16px;
    line-height: 160%;
  }

  .fkp-produktinfo-results__banner {
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }

  .fkp-produktinfo-results__banner {
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .fkp-produktinfo-results__check {
    width: 28px;
    height: auto;
    margin-top: 0;
  }

  .fkp-produktinfo-results__banner p {
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    text-align: left;
  }

  .fkp-produktinfo-results__action {
    width: 100%;
  }

  .fkp-produktinfo-results__action .fkp-btn {
    width: 100%;
  }

  /* ── Patient voice ── */

  .fkp-produktinfo-patient {
    min-height: 0;
    padding: 0;
    background: none;
  }

  .fkp-produktinfo-patient::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 390 / 320;
    background:
      linear-gradient(rgba(9, 19, 33, 0.15), rgba(9, 19, 33, 0.15)),
      url("../images/patient-portrait.jpeg") center / cover no-repeat;
  }

  .fkp-produktinfo-patient__card {
    width: min(480px, 100%);
    align-self: center;
    min-height: 0;
    padding: 24px var(--fkp-section-x) 32px;
    gap: 32px;
  }

  .fkp-produktinfo-patient__title {
    font-size: 28px;
    line-height: 140%;
  }

  .fkp-produktinfo-patient__quote {
    font-size: 16px;
    line-height: 160%;
  }

  .fkp-produktinfo-patient__name {
    font-size: 16px;
  }

  .fkp-produktinfo-patient__note {
    margin-top: -16px;
    font-size: 13px;
  }

  .fkp-produktinfo-patient__role {
    margin-top: -24px;
    font-size: 14px;
  }

  .fkp-produktinfo-patient__card > .fkp-btn {
    width: 100%;
  }

  /* ── Newsletter CTA ── */

  .fkp-produktinfo-newsletter {
    padding: 32px var(--fkp-section-x);
  }

  .fkp-produktinfo-newsletter__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .fkp-produktinfo-newsletter__content {
    align-items: flex-start;
    gap: 32px;
    width: 100%;
  }

  .fkp-produktinfo-newsletter__title {
    font-size: 28px;
    line-height: 140%;
  }

  .fkp-produktinfo-newsletter__text {
    font-size: 20px;
    line-height: 150%;
  }

  .fkp-produktinfo-newsletter__illustration {
    order: 1;
    width: 100%;
    max-width: none;
  }

  /* ── Exilby footer ── */

  .fkp-exilby-footer {
    padding: 16px;
  }

  .fkp-exilby-footer__trigger {
    padding: 12px 0;
    font-size: 16px;
    line-height: 140%;
  }

  .fkp-exilby-footer__panel-body {
    padding-left: 40px;
    font-size: 16px;
    line-height: 160%;
  }

  .fkp-exilby-footer__literature-list {
    font-size: 16px;
    line-height: 160%;
  }

  .fkp-exilby-footer__icon,
  .fkp-exilby-footer__icon img {
    width: 24px;
    height: 24px;
  }

  /* ── Portal footer ── */

  .fkp-portal-footer {
    padding: 12px var(--fkp-section-x);
  }

  .fkp-portal-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .fkp-portal-footer__links {
    order: 0;
    justify-content: space-between;
    width: 100%;
    gap: 0;
  }

  .fkp-portal-footer__copy {
    order: 1;
    width: 100%;
    text-align: center;
  }
}
