:root {
  --bp-navy: #062a50;
  --bp-blue: #0b65b9;
  --bp-sky: #3aa7e6;
  --bp-teal: #0f7685;
  --bp-green: #287f36;
  --bp-gold: #d29600;
  --bp-ink: #142033;
  --bp-muted: #5f6f82;
  --bp-line: #d9e5ef;
  --bp-soft: #f4f9fc;
  --bp-panel: #ffffff;
  --bp-shadow: 0 24px 70px rgba(6, 42, 80, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Entete public unifie : logo a gauche, menu centre noir, acces a droite. */
.bp-public-header {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) minmax(90px, 140px);
}

.bp-brand img {
  width: clamp(178px, 18vw, 245px);
}

.bp-public-header nav {
  justify-content: center;
  margin-left: 0;
  gap: clamp(16px, 2.2vw, 30px);
}

.bp-public-header nav a {
  color: #111111 !important;
}

.bp-header-cta {
  justify-self: end;
  white-space: nowrap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--bp-ink);
  background: #ffffff;
}

a {
  color: inherit;
}

.bp-public-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 229, 239, 0.8);
  backdrop-filter: blur(14px);
}

.bp-brand img {
  display: block;
  width: clamp(168px, 20vw, 245px);
  height: auto;
}

.bp-public-header nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  color: var(--bp-muted);
  font-size: 14px;
  font-weight: 750;
}

.bp-public-header nav a,
.bp-header-cta {
  text-decoration: none;
}

.bp-public-header nav a:hover {
  color: var(--bp-blue);
}

.bp-header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: var(--bp-navy);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(6, 42, 80, 0.18);
}

.slide-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 15;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.slide-dots a {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(6, 42, 80, 0.35);
  box-shadow: 0 4px 12px rgba(6, 42, 80, 0.22);
}

.slide-dots a:hover,
.slide-dots a:focus-visible {
  background: var(--bp-sky);
  outline: 3px solid rgba(58, 167, 230, 0.2);
}

.diagnostic-hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(20px, 6vw, 78px);
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(6, 42, 80, 0.98), rgba(6, 42, 80, 0.9) 45%, rgba(11, 101, 185, 0.72)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    url("../images/biopartner-logo-cropped.png") left 8% top 22%/390px auto no-repeat,
    radial-gradient(circle at 78% 24%, rgba(58, 167, 230, 0.32), transparent 38%),
    #062a50;
  overflow: hidden;
}

.diagnostic-hero__content {
  max-width: 820px;
}

.eyebrow,
.section-heading span,
.pricing-card > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--bp-sky);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.diagnostic-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.diagnostic-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 7px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.primary-button {
  background: linear-gradient(135deg, #168be1, #42b9f6);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(22, 139, 225, 0.3);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.secondary-button:hover,
.primary-button:hover,
.bp-header-cta:hover {
  transform: translateY(-1px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  min-height: 116px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.35;
}

.laptop-visual {
  width: min(100%, 520px);
  justify-self: center;
  perspective: 900px;
}

.laptop-screen {
  padding: 14px;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(145deg, #071322, #1b3148);
  box-shadow: 0 36px 85px rgba(0, 0, 0, 0.3);
}

.laptop-base {
  width: 108%;
  height: 30px;
  margin: 0 -4%;
  border-radius: 0 0 42px 42px;
  background: linear-gradient(180deg, #d8e1e8, #7d8b98 70%, #455260);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
}

.laptop-base::before {
  content: "";
  display: block;
  width: 22%;
  height: 7px;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  background: rgba(30, 48, 65, 0.35);
}

.diagnostic-dashboard {
  padding: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--bp-ink);
  box-shadow: inset 0 0 0 1px rgba(6, 42, 80, 0.08);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bp-line);
  color: var(--bp-navy);
  font-size: 13px;
}

.dashboard-top strong {
  font-size: 15px;
}

.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.bar-chart,
.ring-chart,
.line-chart,
.risk-list {
  min-height: 128px;
  padding: 14px;
  border: 1px solid var(--bp-line);
  border-radius: 7px;
  background: #ffffff;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 8px;
}

.bar-chart i {
  flex: 1;
  display: block;
  min-height: 22px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #42b9f6, #0b65b9);
}

.ring-chart {
  display: grid;
  place-items: center;
}

.ring-chart span {
  width: 82px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#0b65b9 0 32%, #0f7685 32% 58%, #d29600 58% 75%, #d9e5ef 75% 100%);
  box-shadow: inset 0 0 0 18px #ffffff;
}

.line-chart span {
  display: block;
  width: 100%;
  height: 82px;
  margin-top: 14px;
  border-bottom: 2px solid #d9e5ef;
  background:
    linear-gradient(135deg, transparent 0 15%, #0b65b9 15% 17%, transparent 17% 32%, #0b65b9 32% 34%, transparent 34% 52%, #0f7685 52% 54%, transparent 54% 70%, #0b65b9 70% 72%, transparent 72%),
    linear-gradient(#eef5fa 1px, transparent 1px) 0 0/100% 25%;
}

.risk-list {
  display: grid;
  align-content: center;
}

.risk-list strong {
  color: var(--bp-blue);
  font-size: 46px;
}

.risk-list small,
.risk-list span {
  color: var(--bp-muted);
}

.dashboard-table {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 0;
  margin-top: 14px;
  border: 1px solid var(--bp-line);
  border-radius: 7px;
  overflow: hidden;
  font-size: 12px;
}

.dashboard-table > * {
  padding: 9px;
  border-bottom: 1px solid var(--bp-line);
}

.dashboard-table span {
  background: #eef5fa;
  color: var(--bp-navy);
  font-weight: 850;
}

.dashboard-table em {
  color: var(--bp-gold);
  font-style: normal;
  font-weight: 850;
}

.dashboard-table b {
  color: var(--bp-teal);
}

.statement-band,
.content-section,
.request-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.statement-band {
  display: grid;
  grid-template-columns: auto minmax(240px, 0.6fr) 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--bp-line);
}

.statement-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 8px solid #dfeef8;
  color: var(--bp-blue);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.statement-band strong,
.statement-band span {
  display: block;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.2;
}

.statement-band span {
  margin-top: 6px;
  color: var(--bp-blue);
  font-weight: 900;
}

.statement-band p {
  margin: 0;
  color: var(--bp-ink);
  font-size: 18px;
  line-height: 1.55;
}

.content-section {
  padding: clamp(46px, 7vw, 78px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--bp-navy);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

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

.problem-grid article {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--bp-line);
  background: var(--bp-soft);
  color: var(--bp-ink);
  font-weight: 760;
  line-height: 1.35;
}

.analysis-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 6vw, 78px);
  background: linear-gradient(180deg, #ffffff, #f6fbfe);
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 2px solid var(--bp-line);
  border-bottom: 2px solid var(--bp-line);
}

.analysis-card {
  min-height: 330px;
  padding: 28px 20px;
  border-right: 1px solid var(--bp-line);
  background: rgba(255, 255, 255, 0.72);
}

.analysis-card:last-child {
  border-right: 0;
}

.analysis-card:nth-child(1) .analysis-photo {
  color: var(--bp-blue);
}

.analysis-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1.25;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 42, 80, 0.72), rgba(58, 167, 230, 0.2)),
    url("../images/biopartner-hospital-hero.png") center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34), 0 14px 28px rgba(6, 42, 80, 0.14);
}

.analysis-photo span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.analysis-photo span::before,
.analysis-photo span::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.analysis-photo span::before {
  left: 12px;
  top: 22px;
  width: 20px;
  height: 4px;
  border-radius: 99px;
}

.analysis-photo span::after {
  left: 20px;
  top: 12px;
  width: 4px;
  height: 20px;
  border-radius: 99px;
}

.analysis-photo--preventif {
  background:
    linear-gradient(135deg, rgba(40, 127, 54, 0.74), rgba(255, 255, 255, 0.08)),
    url("../images/biopartner-hospital-hero.png") center right/cover no-repeat;
}

.analysis-photo--contrats {
  background:
    linear-gradient(135deg, rgba(68, 53, 140, 0.76), rgba(255, 255, 255, 0.08)),
    url("../images/biopartner-hospital-hero.png") center/cover no-repeat;
}

.analysis-photo--organisation {
  background:
    linear-gradient(135deg, rgba(15, 118, 133, 0.76), rgba(255, 255, 255, 0.08)),
    url("../images/biopartner-hospital-hero.png") center left/cover no-repeat;
}

.analysis-photo--eco {
  background:
    linear-gradient(135deg, rgba(210, 150, 0, 0.78), rgba(255, 255, 255, 0.1)),
    url("../images/biopartner-hospital-hero.png") center/cover no-repeat;
}

.analysis-card:nth-child(2) .analysis-photo,
.analysis-card:nth-child(2) h3 {
  color: var(--bp-green);
}

.analysis-card:nth-child(3) .analysis-photo,
.analysis-card:nth-child(3) h3 {
  color: #44358c;
}

.analysis-card:nth-child(4) .analysis-photo,
.analysis-card:nth-child(4) h3 {
  color: var(--bp-teal);
}

.analysis-card:nth-child(5) .analysis-photo,
.analysis-card:nth-child(5) h3 {
  color: var(--bp-gold);
}

.analysis-card h3 {
  margin: 0 0 18px;
  color: var(--bp-blue);
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
}

.analysis-card ul,
.deliverables-list,
.pricing-card ul {
  margin: 0;
  padding-left: 19px;
}

.analysis-card li,
.deliverables-list li,
.pricing-card li {
  margin-bottom: 9px;
  line-height: 1.45;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.timeline article {
  position: relative;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--bp-line);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(6, 42, 80, 0.08);
}

.timeline article::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--bp-blue);
  border-right: 3px solid var(--bp-blue);
  transform: translateY(-50%) rotate(45deg);
}

.timeline article:last-child::after {
  display: none;
}

.timeline span {
  color: var(--bp-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 10px 0;
  color: var(--bp-navy);
  font-size: 20px;
}

.timeline p,
.method-note,
.booking-section p,
.trust-strip p,
.request-copy p,
.request-copy li,
.pricing-card p {
  color: var(--bp-muted);
  line-height: 1.55;
}

.method-note {
  max-width: 880px;
  margin: 26px auto 0;
  text-align: center;
  color: var(--bp-navy);
  font-weight: 750;
}

.deliverables-pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.deliverables-list {
  display: grid;
  gap: 6px;
  padding-left: 0;
  list-style: none;
}

.deliverables-list li {
  position: relative;
  padding-left: 36px;
}

.deliverables-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bp-navy);
}

.deliverables-list li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.deliverable-showcase {
  display: grid;
  grid-template-columns: minmax(150px, 240px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--bp-line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f4f9fc);
}

.deliverable-showcase p {
  margin: 0;
  color: var(--bp-muted);
  font-weight: 750;
  line-height: 1.55;
}

.report-stack {
  position: relative;
  min-height: 230px;
}

.report-page,
.report-cover {
  position: absolute;
  inset: 0;
  width: 150px;
  height: 210px;
  margin: auto;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(6, 42, 80, 0.18);
}

.report-page--back {
  transform: translate(42px, 14px) rotate(8deg);
  background: linear-gradient(#ffffff, #eaf3fa);
}

.report-page--middle {
  transform: translate(22px, 6px) rotate(4deg);
  background: linear-gradient(#ffffff, #edf7fd);
}

.report-cover {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  color: var(--bp-navy);
  transform: translate(-12px, -4px) rotate(-1deg);
}

.report-cover span {
  color: var(--bp-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-cover strong {
  font-size: 18px;
  line-height: 1.15;
}

.report-cover small {
  margin-top: 12px;
  color: var(--bp-blue);
  font-weight: 900;
}

.report-mini-chart {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 52px;
  padding: 8px;
  border-radius: 6px;
  background: #eef7fd;
}

.report-mini-chart i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--bp-sky);
}

.report-mini-chart i:nth-child(1) { height: 38%; }
.report-mini-chart i:nth-child(2) { height: 54%; }
.report-mini-chart i:nth-child(3) { height: 72%; }
.report-mini-chart i:nth-child(4) { height: 90%; }

.pricing-card {
  position: sticky;
  top: 96px;
  padding: 32px;
  border-radius: 8px;
  background: linear-gradient(160deg, #062a50, #073f75);
  color: #ffffff;
  box-shadow: var(--bp-shadow);
}

.pricing-card h2 {
  margin: 0;
  font-size: 30px;
}

.pricing-card > strong {
  display: block;
  margin: 14px 0 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--bp-sky);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
}

.pricing-card li,
.pricing-card p {
  color: rgba(255, 255, 255, 0.84);
}

.primary-button.light {
  width: 100%;
  margin: 18px 0 8px;
  color: #ffffff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--bp-blue);
  border-radius: 8px;
  margin-bottom: 64px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(6, 42, 80, 0.08);
}

.trust-strip article {
  padding: 8px;
}

.trust-strip strong {
  color: var(--bp-navy);
  font-size: 18px;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
  padding: clamp(44px, 6vw, 72px);
  border-radius: 8px;
  background: linear-gradient(135deg, #f4f9fc, #ffffff);
  border: 1px solid var(--bp-line);
  box-shadow: 0 18px 54px rgba(6, 42, 80, 0.1);
}

.request-copy h2 {
  margin: 0 0 16px;
  color: var(--bp-navy);
  font-size: clamp(30px, 3vw, 44px);
}

.request-copy {
  max-width: 760px;
}

.request-copy ol {
  padding-left: 19px;
}

.request-copy .primary-button {
  margin-top: 14px;
}

.diagnostic-modal {
  width: min(980px, calc(100% - 28px));
  max-height: min(90vh, 900px);
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--bp-ink);
  box-shadow: 0 34px 90px rgba(6, 42, 80, 0.28);
}

.diagnostic-modal::backdrop {
  background: rgba(6, 42, 80, 0.56);
  backdrop-filter: blur(6px);
}

.modal-shell {
  max-height: min(90vh, 900px);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--bp-line);
  border-radius: 10px;
  background: #ffffff;
}

.modal-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bp-line);
}

.modal-heading h2 {
  margin: 0;
  color: var(--bp-navy);
  font-size: clamp(28px, 3vw, 40px);
}

.modal-heading p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--bp-muted);
  line-height: 1.5;
}

.modal-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--bp-line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--bp-navy);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.diagnostic-form {
  display: grid;
  gap: 18px;
}

.diagnostic-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--bp-line);
  border-radius: 8px;
  background: #f4f9fc;
}

.diagnostic-tab {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--bp-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.diagnostic-tab.is-active {
  background: #ffffff;
  color: var(--bp-navy);
  box-shadow: 0 8px 20px rgba(6, 42, 80, 0.08);
}

.diagnostic-pane {
  display: none;
  gap: 16px;
}

.diagnostic-pane.is-active {
  display: grid;
}

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

.diagnostic-form label {
  display: grid;
  gap: 7px;
  color: var(--bp-muted);
  font-size: 13px;
  font-weight: 850;
}

.diagnostic-form input,
.diagnostic-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #cddce8;
  border-radius: 7px;
  background: #ffffff;
  color: var(--bp-ink);
  font: inherit;
}

.diagnostic-form input:focus,
.diagnostic-form select:focus {
  outline: 3px solid rgba(58, 167, 230, 0.22);
  border-color: var(--bp-blue);
}

.verification-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.verification-row .secondary-button,
.booking-section .secondary-button {
  background: #ffffff;
  border-color: var(--bp-line);
  color: var(--bp-navy);
  box-shadow: 0 10px 22px rgba(6, 42, 80, 0.08);
}

.ghost-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--bp-line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--bp-navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.diagnostic-step-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.terms-line {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--bp-ink) !important;
  font-weight: 700 !important;
}

.terms-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.submit-button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  color: var(--bp-muted);
  font-weight: 800;
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: var(--bp-green);
}

.booking-section {
  margin-bottom: 78px;
  padding-top: 58px;
  border-top: 1px solid var(--bp-line);
}

.booking-section p {
  max-width: 760px;
  font-size: 17px;
}

.bp-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  padding: 26px 20px;
  background: var(--bp-navy);
  color: #ffffff;
  font-weight: 800;
}

.bp-footer a {
  text-decoration: none;
}

@media (max-width: 1080px) {
  .bp-public-header nav {
    display: none;
  }

  .diagnostic-hero,
  .request-section,
  .deliverables-pricing {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analysis-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analysis-card:nth-child(2n) {
    border-right: 0;
  }

  .pricing-card {
    position: static;
  }

  .slide-dots {
    display: none;
  }
}

@media (max-width: 720px) {
  .bp-public-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .bp-header-cta {
    width: 100%;
  }

  .diagnostic-hero {
    min-height: 0;
    padding-top: 36px;
  }

  .laptop-visual {
    width: 100%;
  }

  .laptop-screen {
    padding: 9px;
  }

  .hero-proof,
  .statement-band,
  .problem-grid,
  .analysis-grid,
  .timeline,
  .trust-strip,
  .form-grid,
  .verification-row {
    grid-template-columns: 1fr;
  }

  .statement-band {
    text-align: left;
  }

  .analysis-card {
    border-right: 0;
    border-bottom: 1px solid var(--bp-line);
  }

  .timeline article::after {
    display: none;
  }

  .request-section {
    width: min(100% - 28px, 1180px);
    padding: 24px;
  }

  .deliverable-showcase {
    grid-template-columns: 1fr;
  }

  .report-stack {
    min-height: 220px;
  }

  .modal-heading {
    align-items: flex-start;
  }

  .content-section,
  .statement-band {
    width: min(100% - 28px, 1180px);
  }
}

/* Plaquette-style refresh */
body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfe 42%, #ffffff 100%);
}

.bp-public-header {
  min-height: 70px;
  padding-inline: clamp(22px, 4vw, 48px);
  box-shadow: 0 10px 26px rgba(6, 42, 80, 0.06);
}

.bp-brand img {
  width: clamp(185px, 22vw, 260px);
}

.diagnostic-hero {
  position: relative;
  min-height: 430px;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.82fr);
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(36px, 5vw, 56px) clamp(26px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(6, 42, 80, 0.98) 0%, rgba(6, 42, 80, 0.94) 44%, rgba(6, 42, 80, 0.52) 100%),
    url("../images/biopartner-hospital-hero.png") right center/cover no-repeat;
}

.diagnostic-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(52vw, 560px);
  height: 108px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  opacity: 0.98;
}

.diagnostic-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(90deg, #0b65b9, #3aa7e6, transparent);
}

.diagnostic-hero__content,
.laptop-visual {
  position: relative;
  z-index: 1;
}

.diagnostic-hero h1 {
  display: grid;
  gap: 4px;
  max-width: 650px;
  margin-top: 64px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.diagnostic-hero h1 span:first-child {
  font-weight: 950;
}

.diagnostic-hero h1 span:last-child {
  font-weight: 500;
}

.diagnostic-hero p {
  max-width: 620px;
  margin-top: 26px;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.22;
}

.diagnostic-hero p strong {
  color: var(--bp-sky);
  font-size: 1.12em;
}

.hero-actions {
  margin-top: 28px;
}

.hero-proof {
  max-width: 670px;
  margin-top: 24px;
}

.hero-proof li {
  min-height: 82px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-proof strong {
  font-size: 20px;
}

.laptop-visual {
  width: min(100%, 560px);
  align-self: end;
  transform: translateY(10px);
}

.laptop-screen {
  padding: 12px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(145deg, #091827, #263b4f);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.diagnostic-dashboard {
  padding: 14px;
  min-height: 270px;
  border-radius: 4px;
}

.chart-grid {
  gap: 9px;
}

.statement-band {
  grid-template-columns: 90px minmax(240px, 0.8fr) 1.05fr;
  margin-top: 0;
  padding-block: 28px;
  border-bottom: 1px solid var(--bp-line);
}

.statement-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 5px solid var(--bp-blue);
  border-radius: 50%;
  color: transparent;
}

.statement-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bp-blue);
  box-shadow: 18px -18px 0 -4px var(--bp-sky);
}

.statement-band strong,
.statement-band span {
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.18;
}

.statement-band p {
  padding-left: 32px;
  border-left: 2px solid var(--bp-blue);
  font-size: 18px;
}

.content-section {
  padding-block: 38px;
}

#mission {
  padding-block: 26px 12px;
}

#mission .section-heading {
  display: none;
}

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

.problem-grid article {
  position: relative;
  min-height: 0;
  padding: 14px 14px 14px 38px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #dbe8f1;
  box-shadow: none;
  font-size: 14px;
}

.problem-grid article::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bp-blue);
}

.section-heading.centered {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.section-heading.centered::before,
.section-heading.centered::after {
  content: "";
  position: absolute;
  top: 16px;
  width: min(28vw, 310px);
  height: 2px;
  background: var(--bp-blue);
}

.section-heading.centered::before {
  right: calc(50% + 110px);
}

.section-heading.centered::after {
  left: calc(50% + 110px);
}

.section-heading h2 {
  margin-top: 0;
  color: var(--bp-navy);
}

.analysis-grid {
  border-top: 2px solid var(--bp-line);
  border-bottom: 0;
}

.analysis-card {
  min-height: 300px;
  padding: 24px 16px 18px;
  text-align: center;
  background: transparent;
}

.analysis-photo {
  width: 112px;
  height: 92px;
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(6, 42, 80, 0.12);
  color: var(--bp-blue);
}

.analysis-photo::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid currentColor;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 42, 80, 0.58), rgba(58, 167, 230, 0.14)),
    url("../images/supplier-dashboard-medical-devices.webp") center/cover no-repeat;
}

.analysis-photo span {
  display: block;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 6px 14px rgba(6, 42, 80, 0.18);
}

.analysis-photo span::before,
.analysis-photo span::after {
  background: currentColor;
}

.analysis-photo--parc::before {
  background:
    linear-gradient(135deg, rgba(6, 42, 80, 0.62), rgba(58, 167, 230, 0.08)),
    url("../images/supplier-dashboard-medical-devices.webp") center/cover no-repeat;
}

.analysis-photo--preventif::before {
  border-color: var(--bp-green);
  background:
    linear-gradient(135deg, rgba(40, 127, 54, 0.62), rgba(255, 255, 255, 0.08)),
    url("../images/supplier-maintenance-card.webp") center/cover no-repeat;
}

.analysis-photo--contrats::before {
  border-color: #44358c;
  background:
    linear-gradient(135deg, rgba(68, 53, 140, 0.62), rgba(255, 255, 255, 0.08)),
    url("../images/biopartner-email-hero.jpg") center/cover no-repeat;
}

.analysis-photo--organisation::before {
  border-color: var(--bp-teal);
  background:
    linear-gradient(135deg, rgba(15, 118, 133, 0.62), rgba(255, 255, 255, 0.08)),
    url("../images/biopartner-hospital-hero.png") center/cover no-repeat;
}

.analysis-photo--eco::before {
  border-color: var(--bp-gold);
  background:
    linear-gradient(135deg, rgba(210, 150, 0, 0.62), rgba(255, 255, 255, 0.08)),
    url("../images/supplier-equipment-card.webp") center/cover no-repeat;
}

.analysis-card h3 {
  min-height: 46px;
  margin-bottom: 12px;
  font-size: 19px;
}

.analysis-card ul {
  display: inline-grid;
  justify-items: start;
  text-align: left;
}

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

.timeline article {
  min-height: 148px;
  padding: 20px 20px 18px 82px;
  border: 0;
  background: linear-gradient(135deg, #eef6fb, #ffffff);
  box-shadow: 0 16px 34px rgba(6, 42, 80, 0.08);
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 42px;
  height: 42px;
  border: 4px solid currentColor;
  border-radius: 50%;
  color: var(--bp-blue);
}

.timeline article:nth-child(2)::before { color: var(--bp-green); }
.timeline article:nth-child(3)::before { color: #44358c; }
.timeline article:nth-child(4)::before { color: var(--bp-teal); }

.timeline article::after {
  right: -22px;
}

.timeline span {
  font-size: 15px;
}

.timeline h3 {
  font-size: 18px;
}

.deliverables-pricing {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.54fr);
  align-items: stretch;
}

.deliverable-showcase {
  border: 0;
  background: transparent;
}

.pricing-card {
  overflow: hidden;
  padding: 26px 32px 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(58, 167, 230, 0.34), transparent 30%),
    linear-gradient(160deg, #062a50, #031b36);
}

.pricing-card > span {
  width: 80%;
  justify-content: center;
  margin-inline: auto;
  padding: 6px 14px;
  border-radius: 7px;
  background: linear-gradient(135deg, #2aa7e6, #58c3f4);
  color: #ffffff;
  font-size: 15px;
}

.pricing-card h2 {
  margin-top: 14px;
  text-align: center;
  text-transform: uppercase;
}

.pricing-card > strong {
  margin: 14px 0 18px;
  text-align: center;
  font-size: clamp(48px, 5vw, 72px);
}

.trust-strip {
  width: min(1180px, calc(100% - 56px));
  margin-bottom: 0;
  padding: 18px 20px;
  border: 2px solid var(--bp-blue);
  border-radius: 8px;
  background: #ffffff;
}

.trust-strip article {
  position: relative;
  padding-left: 54px;
}

.trust-strip article::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  border: 3px solid var(--bp-blue);
  border-radius: 50%;
}

@media (max-width: 1080px) {
  .diagnostic-hero {
    grid-template-columns: 1fr;
  }

  .diagnostic-hero h1 {
    margin-top: 52px;
  }

  .statement-band {
    grid-template-columns: 1fr;
  }

  .statement-band p {
    padding-left: 0;
    border-left: 0;
  }

  .problem-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .diagnostic-hero {
    padding-inline: 20px;
  }

  .diagnostic-hero::before {
    width: 78vw;
    height: 82px;
  }

  .diagnostic-hero h1 {
    margin-top: 44px;
  }

  .hero-proof,
  .problem-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section-heading.centered::before,
  .section-heading.centered::after {
    display: none;
  }

  .analysis-photo {
    margin-left: 0;
  }

  .analysis-card {
    text-align: left;
  }

  .analysis-card ul {
    justify-items: start;
  }
}

/* Entete public unifie - priorite finale */
.bp-public-header {
  display: grid !important;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) minmax(90px, 140px) !important;
}
.bp-brand img {
  width: clamp(178px, 18vw, 245px) !important;
}
.bp-public-header nav {
  justify-content: center !important;
  margin-left: 0 !important;
  gap: clamp(16px, 2.2vw, 30px) !important;
}
.bp-public-header nav a {
  color: #111111 !important;
}
.bp-header-cta {
  justify-self: end !important;
  white-space: nowrap !important;
}
