.pdf-report {
  display: none;
}

.promo-offer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 195, 152, 0.42);
  box-shadow: 0 22px 54px rgba(7, 23, 38, 0.18);
}

.promo-offer-card::after {
  position: absolute;
  right: -20px;
  bottom: -52px;
  color: rgba(255, 255, 255, 0.055);
  content: "15%";
  font-size: 138px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.promo-offer-card > * {
  position: relative;
  z-index: 1;
}

.promo-offer-card small {
  display: block;
  max-width: 720px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.promo-offer-actions {
  display: grid;
  gap: 10px;
  min-width: 245px;
}

.button.button-gold {
  color: #071726;
  background: #e5c398;
  border-color: #e5c398;
}

.button.button-gold:hover,
.button.button-gold:focus-visible {
  background: #f0d2aa;
  border-color: #f0d2aa;
}

.button.button-ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
}

.button.button-ghost-light:hover,
.button.button-ghost-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.7);
}

body.promo-modal-open,
body.validation-modal-open {
  overflow: hidden;
}

.option-card.has-validation-error {
  border-color: #b8342a;
  box-shadow: 0 0 0 3px rgba(184, 52, 42, 0.16);
}

.validation-modal[hidden] {
  display: none !important;
}

.validation-modal {
  position: fixed;
  z-index: 5200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 160ms ease;
}

.validation-modal.is-open {
  opacity: 1;
}

.validation-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 22, 0.78);
  backdrop-filter: blur(6px);
}

.validation-dialog {
  position: relative;
  width: min(480px, 100%);
  padding: 34px;
  color: #071726;
  background: #fff;
  border: 1px solid rgba(184, 52, 42, 0.28);
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  transform: translateY(14px) scale(0.985);
  transition: transform 160ms ease;
}

.validation-modal.is-open .validation-dialog {
  transform: translateY(0) scale(1);
}

.validation-dialog-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  background: #b8342a;
  border-radius: 50%;
}

.validation-dialog-kicker {
  margin: 0 0 7px;
  color: #9a4c25;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.validation-dialog h2 {
  margin: 0 0 10px;
  color: #071726;
  font-size: clamp(25px, 5vw, 34px);
  line-height: 1.05;
}

.validation-dialog > p:not(.validation-dialog-kicker) {
  margin: 0 0 22px;
  color: #41515b;
  font-size: 16px;
  line-height: 1.55;
}

.validation-dialog .button {
  width: 100%;
  justify-content: center;
}

.promo-modal[hidden] {
  display: none !important;
}

.promo-modal {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.promo-modal.is-open {
  opacity: 1;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 22, 0.82);
  backdrop-filter: blur(8px);
}

.promo-dialog {
  position: relative;
  display: grid;
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  grid-template-columns: minmax(300px, 0.92fr) minmax(380px, 1.08fr);
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(229, 195, 152, 0.5);
  border-radius: 24px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(18px) scale(0.985);
  transition: transform 180ms ease;
}

.promo-modal.is-open .promo-dialog {
  transform: translateY(0) scale(1);
}

.promo-dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: #071726;
  font-size: 28px;
  line-height: 1;
  background: #fff;
  border: 1px solid rgba(7, 23, 38, 0.14);
  border-radius: 50%;
  cursor: pointer;
}

.promo-dialog-offer {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 54px 44px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(229, 195, 152, 0.3), transparent 29%),
    linear-gradient(145deg, #071726, #103745 74%, #18544e);
}

.promo-dialog-offer::after {
  position: absolute;
  right: -40px;
  bottom: -68px;
  color: rgba(255, 255, 255, 0.055);
  content: "15";
  font-size: 240px;
  font-weight: 900;
  line-height: 1;
}

.promo-dialog-offer > * {
  position: relative;
  z-index: 1;
}

.promo-dialog-offer > span,
.promo-form-kicker {
  margin: 0 0 9px;
  color: #e5c398;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-dialog-offer > strong {
  margin-bottom: 8px;
  color: #e5c398;
  font-size: clamp(72px, 9vw, 106px);
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.promo-dialog-offer h2 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.promo-dialog-offer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.promo-dialog-offer dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.promo-dialog-offer dl > div {
  padding: 13px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.promo-dialog-offer dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-dialog-offer dd {
  margin: 4px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.promo-dialog-offer small {
  margin-top: 18px;
  padding: 12px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: rgba(169, 52, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
}

.promo-dialog-offer small[hidden] {
  display: none;
}

.promo-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 14px;
  padding: 54px 48px 42px;
}

.promo-form > .promo-form-kicker,
.promo-form > h3,
.promo-form > label:has(input[name="email"]),
.promo-form > label:has(input[name="condominio"]),
.promo-form > .consent-row,
.promo-form > .button,
.promo-form > .form-status,
.promo-form > .promo-terms {
  grid-column: 1 / -1;
}

.promo-form h3 {
  margin: -4px 0 8px;
  max-width: 460px;
  color: #071726;
  font-size: 29px;
  line-height: 1.08;
}

.promo-form label:not(.form-honeypot):not(.consent-row) {
  display: grid;
  gap: 6px;
  color: #071726;
  font-size: 13px;
  font-weight: 850;
}

.promo-form input[type="text"],
.promo-form input[type="email"],
.promo-form input[type="tel"] {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: #071726;
  font: inherit;
  background: #f8f8f6;
  border: 1px solid #c9cfd1;
  border-radius: 10px;
  outline: none;
}

.promo-form input:focus {
  border-color: #2f6f5e;
  box-shadow: 0 0 0 3px rgba(47, 111, 94, 0.17);
}

.promo-form .consent-row {
  margin: 2px 0;
  font-size: 12px;
  line-height: 1.45;
}

.promo-form .button {
  width: 100%;
  justify-content: center;
}

.promo-form .button:disabled {
  cursor: progress;
  opacity: 0.68;
}

.promo-form .promo-whatsapp-fallback {
  color: #fff;
  background: #176b50;
  border-color: #176b50;
}

.promo-form .promo-whatsapp-fallback[hidden] {
  display: none !important;
}

.promo-form .promo-whatsapp-fallback:hover,
.promo-form .promo-whatsapp-fallback:focus-visible {
  background: #0f5840;
  border-color: #0f5840;
}

.promo-form .form-status.is-success,
.promo-form .form-status.is-warning,
.promo-form .form-status.is-error {
  display: block;
  margin: 0;
}

.promo-form .form-status.is-success {
  color: #245f50;
  background: #edf7f2;
  border-color: #a8d2c4;
}

.promo-form .form-status.is-warning {
  color: #71490f;
  background: #fff7e3;
  border-color: #dfbd74;
}

.promo-form .form-status.is-error {
  color: #922f28;
  background: #fff0ed;
  border-color: #e2aaa4;
}

.promo-terms {
  color: #65717a;
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .promo-offer-actions {
    min-width: 0;
  }

  .promo-modal {
    align-items: end;
    padding: 12px;
  }

  .promo-dialog {
    max-height: calc(100vh - 24px);
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .promo-dialog-offer {
    padding: 38px 28px 30px;
  }

  .promo-dialog-offer > strong {
    font-size: 74px;
  }

  .promo-dialog-offer h2 {
    max-width: calc(100% - 38px);
    font-size: 28px;
  }

  .promo-form {
    grid-template-columns: 1fr;
    padding: 34px 26px 30px;
  }

  .promo-form > label:has(input[name="condominio"]) {
    grid-column: auto;
  }

  .promo-form > label:has(input[name="email"]) {
    grid-column: auto;
  }
}

@media (max-height: 660px) and (min-width: 761px) {
  .promo-dialog-offer {
    padding: 30px 36px;
  }

  .promo-dialog-offer > strong {
    font-size: 72px;
  }

  .promo-dialog-offer h2 {
    margin-top: 8px;
    font-size: 28px;
  }

  .promo-dialog-offer dl {
    margin-top: 16px;
  }

  .promo-form {
    gap: 9px 12px;
    padding: 30px 38px 24px;
  }

  .promo-form h3 {
    margin-bottom: 2px;
    font-size: 25px;
  }

  .promo-form input[type="text"],
  .promo-form input[type="email"],
  .promo-form input[type="tel"] {
    min-height: 42px;
  }

  .promo-form .consent-row {
    line-height: 1.3;
  }

  .promo-form > label:has(input[name="email"]),
  .promo-form > label:has(input[name="condominio"]) {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .validation-modal,
  .validation-dialog,
  .promo-modal,
  .promo-dialog {
    transition: none;
  }
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  html,
  body.printing-triage {
    width: 210mm;
    margin: 0 !important;
    padding: 0 !important;
    color: #071726;
    background: #fff !important;
  }

  body.printing-triage,
  body.printing-triage * {
    font-family: Arial, Helvetica, sans-serif !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  body.printing-triage .site-header,
  body.printing-triage .content-hero,
  body.printing-triage .triage-intro,
  body.printing-triage .triage-safety,
  body.printing-triage .triage-form,
  body.printing-triage .validation-modal,
  body.printing-triage .promo-modal,
  body.printing-triage .site-footer,
  body.printing-triage .triage-result > *:not(.pdf-report) {
    display: none !important;
  }

  body.printing-triage .triage-wrap,
  body.printing-triage .content-shell,
  body.printing-triage .triage-result,
  body.printing-triage .triage-result > .pdf-report {
    display: block !important;
    width: 210mm !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body.printing-triage .pdf-page {
    position: relative;
    display: flex;
    box-sizing: border-box;
    width: 210mm;
    min-height: 297mm;
    flex-direction: column;
    overflow: hidden;
    padding: 14mm 15mm 13mm;
    color: #071726;
    background: #fff;
    break-after: page;
    page-break-after: always;
  }

  body.printing-triage .pdf-page:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  body.printing-triage .pdf-page::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4mm;
    content: "";
    background: linear-gradient(90deg, #071726 0 72%, #cca378 72%);
  }

  body.printing-triage .pdf-brand-row,
  body.printing-triage .pdf-page-header {
    display: flex;
    min-height: 14mm;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 4mm;
    border-bottom: 0.35mm solid #d8dddf;
  }

  body.printing-triage .pdf-brand-row img,
  body.printing-triage .pdf-page-header img {
    width: 46mm;
    max-height: 13mm;
    object-fit: contain;
    object-position: left center;
  }

  body.printing-triage .pdf-brand-row > span,
  body.printing-triage .pdf-page-header > span {
    color: #50606a;
    font-size: 11pt;
    font-weight: 700;
  }

  body.printing-triage .pdf-cover-main {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 8mm 0 5mm;
  }

  body.printing-triage .pdf-eyebrow {
    margin: 0 0 3mm;
    color: #2f6f5e;
    font-size: 11pt;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  body.printing-triage .pdf-cover-main > h1 {
    max-width: 158mm;
    margin: 0 0 8mm;
    color: #071726;
    font-size: 29pt;
    line-height: 1.03;
    letter-spacing: -0.025em;
  }

  body.printing-triage .pdf-cover-result {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 43mm;
    gap: 8mm;
    align-items: center;
    padding: 8mm;
    background: #eef3f1;
    border: 0.4mm solid #a9beb7;
    border-left: 3mm solid #2f6f5e;
    border-radius: 4mm;
    break-inside: avoid;
  }

  body.printing-triage .pdf-priority {
    display: inline-block;
    margin-bottom: 3mm;
    color: #245f50;
    font-size: 11pt;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  body.printing-triage .pdf-cover-result h2 {
    margin: 0 0 3mm;
    color: #071726;
    font-size: 23pt;
    line-height: 1.06;
  }

  body.printing-triage .pdf-cover-result p {
    margin: 0;
    color: #334750;
    font-size: 11pt;
    line-height: 1.5;
  }

  body.printing-triage .pdf-score-ring {
    display: grid;
    width: 42mm;
    height: 42mm;
    place-content: center;
    color: #071726;
    text-align: center;
    background: #fff;
    border: 2.5mm solid #cca378;
    border-radius: 50%;
  }

  body.printing-triage .pdf-score-ring > div {
    display: flex;
    align-items: baseline;
    justify-content: center;
  }

  body.printing-triage .pdf-score-ring strong {
    font-size: 28pt;
    line-height: 1;
  }

  body.printing-triage .pdf-score-ring span,
  body.printing-triage .pdf-score-ring small {
    font-size: 11pt;
  }

  body.printing-triage .pdf-score-ring small {
    display: block;
    max-width: 31mm;
    margin: 2mm auto 0;
    font-weight: 700;
    line-height: 1.1;
  }

  body.printing-triage .pdf-cover-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1.45fr;
    gap: 4mm;
    margin: 7mm 0 0;
  }

  body.printing-triage .pdf-cover-meta > div {
    padding: 4mm;
    background: #f7f5f1;
    border: 0.3mm solid #d9ddde;
    border-radius: 2.5mm;
  }

  body.printing-triage .pdf-cover-meta dt {
    color: #62717a;
    font-size: 11pt;
    font-weight: 700;
  }

  body.printing-triage .pdf-cover-meta dd {
    margin: 1mm 0 0;
    color: #071726;
    font-size: 11pt;
    font-weight: 800;
    overflow-wrap: anywhere;
  }

  body.printing-triage .pdf-cover-message {
    margin-bottom: 6mm;
    padding: 5mm 6mm;
    color: #fff;
    background: #071726;
    border-radius: 3mm;
    break-inside: avoid;
  }

  body.printing-triage .pdf-cover-message strong,
  body.printing-triage .pdf-cover-message p {
    font-size: 11pt;
  }

  body.printing-triage .pdf-cover-message p {
    margin: 2mm 0 0;
    color: #e5e9eb;
    line-height: 1.45;
  }

  body.printing-triage .pdf-analysis-page > .pdf-eyebrow,
  body.printing-triage .pdf-company-page .pdf-eyebrow {
    margin-top: 6mm;
  }

  body.printing-triage .pdf-analysis-page > h2,
  body.printing-triage .pdf-company-intro h2 {
    margin: 0 0 5mm;
    color: #071726;
    font-size: 23pt;
    line-height: 1.05;
  }

  body.printing-triage .pdf-topic-panel,
  body.printing-triage .pdf-action-panel {
    padding: 4mm 5mm;
    background: #f7f5f1;
    border-left: 2mm solid #cca378;
    border-radius: 2.5mm;
    break-inside: avoid;
  }

  body.printing-triage .pdf-topic-panel strong,
  body.printing-triage .pdf-action-panel > span {
    color: #2f6f5e;
    font-size: 11pt;
    font-weight: 800;
  }

  body.printing-triage .pdf-topic-panel p,
  body.printing-triage .pdf-action-panel h3 {
    margin: 1.5mm 0 0;
    color: #071726;
    font-size: 11pt;
    line-height: 1.4;
  }

  body.printing-triage .pdf-chart-panel {
    margin: 5mm 0;
    padding: 5mm;
    color: #071726;
    background: #edf3f1;
    border: 0.3mm solid #bccdc7;
    border-radius: 3mm;
    break-inside: avoid;
  }

  body.printing-triage .pdf-chart-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 6mm;
    margin-bottom: 4mm;
  }

  body.printing-triage .pdf-chart-heading h3,
  body.printing-triage .pdf-chart-heading p {
    margin: 0;
    font-size: 11pt;
  }

  body.printing-triage .pdf-chart-heading h3 {
    font-size: 14pt;
  }

  body.printing-triage .pdf-chart-heading p {
    color: #52616b;
  }

  body.printing-triage .pdf-chart-row {
    display: grid;
    grid-template-columns: 48mm 1fr 17mm;
    gap: 4mm;
    align-items: center;
    min-height: 8mm;
    font-size: 11pt;
  }

  body.printing-triage .pdf-chart-row > div {
    height: 3mm;
    overflow: hidden;
    background: #d3dcda;
    border-radius: 3mm;
  }

  body.printing-triage .pdf-chart-row i {
    display: block;
    width: 0;
    height: 100%;
    background: #2f6f5e;
    border-radius: inherit;
  }

  body.printing-triage .pdf-chart-row strong {
    font-size: 11pt;
    text-align: right;
  }

  body.printing-triage .pdf-analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4mm;
    margin-bottom: 4mm;
  }

  body.printing-triage .pdf-analysis-grid section,
  body.printing-triage .pdf-checklist-panel {
    padding: 4mm 5mm;
    background: #fff;
    border: 0.35mm solid #d4dadd;
    border-radius: 2.5mm;
    break-inside: avoid;
  }

  body.printing-triage .pdf-analysis-grid span {
    color: #2f6f5e;
    font-size: 11pt;
    font-weight: 800;
  }

  body.printing-triage .pdf-analysis-grid h3,
  body.printing-triage .pdf-analysis-grid ul,
  body.printing-triage .pdf-checklist-panel h3,
  body.printing-triage .pdf-checklist-panel ul {
    margin: 1.5mm 0 0;
    font-size: 11pt;
    line-height: 1.35;
  }

  body.printing-triage .pdf-analysis-grid ul,
  body.printing-triage .pdf-checklist-panel ul {
    padding-left: 5mm;
  }

  body.printing-triage .pdf-action-panel {
    margin-bottom: 4mm;
    border-left-color: #2f6f5e;
  }

  body.printing-triage .pdf-checklist-panel li + li {
    margin-top: 1.3mm;
  }

  body.printing-triage .pdf-company-intro {
    display: grid;
    grid-template-columns: 1fr 42mm;
    gap: 8mm;
    align-items: center;
    margin-bottom: 5mm;
  }

  body.printing-triage .pdf-company-intro > div > p:last-child {
    margin: 0;
    color: #40535d;
    font-size: 11pt;
    line-height: 1.45;
  }

  body.printing-triage .pdf-company-intro > img {
    width: 42mm;
    height: 50mm;
    object-fit: cover;
    object-position: center 18%;
    border: 1.5mm solid #e5c398;
    border-radius: 4mm;
  }

  body.printing-triage .pdf-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3mm;
    margin-bottom: 4mm;
  }

  body.printing-triage .pdf-services-grid section {
    padding: 4mm;
    background: #f7f5f1;
    border-top: 1.4mm solid #2f6f5e;
    border-radius: 2mm;
    break-inside: avoid;
  }

  body.printing-triage .pdf-services-grid strong,
  body.printing-triage .pdf-services-grid p {
    font-size: 11pt;
    line-height: 1.35;
  }

  body.printing-triage .pdf-services-grid p {
    margin: 2mm 0 0;
    color: #465962;
  }

  body.printing-triage .pdf-expert-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6mm;
    align-items: center;
    margin-bottom: 4mm;
    padding: 4mm 5mm;
    color: #fff;
    background: #071726;
    border-radius: 3mm;
    break-inside: avoid;
  }

  body.printing-triage .pdf-expert-panel span,
  body.printing-triage .pdf-expert-panel h3,
  body.printing-triage .pdf-expert-panel p,
  body.printing-triage .pdf-expert-panel li {
    font-size: 11pt;
  }

  body.printing-triage .pdf-expert-panel span {
    color: #e5c398;
    font-weight: 800;
  }

  body.printing-triage .pdf-expert-panel h3 {
    margin: 1mm 0;
    color: #fff;
    font-size: 15pt;
  }

  body.printing-triage .pdf-expert-panel p,
  body.printing-triage .pdf-expert-panel ul {
    margin: 0;
  }

  body.printing-triage .pdf-expert-panel ul {
    padding-left: 5mm;
  }

  body.printing-triage .pdf-promo-panel {
    display: grid;
    grid-template-columns: 34mm 1fr;
    gap: 5mm;
    align-items: center;
    margin-bottom: 4mm;
    padding: 4mm 5mm;
    background: #fff8ed;
    border: 0.5mm solid #cca378;
    border-radius: 3mm;
    break-inside: avoid;
  }

  body.printing-triage .pdf-promo-number {
    color: #9a641d;
    font-size: 34pt;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
  }

  body.printing-triage .pdf-promo-panel span,
  body.printing-triage .pdf-promo-panel h3,
  body.printing-triage .pdf-promo-panel p,
  body.printing-triage .pdf-promo-panel small {
    font-size: 11pt;
  }

  body.printing-triage .pdf-promo-panel span {
    color: #2f6f5e;
    font-weight: 800;
  }

  body.printing-triage .pdf-promo-panel h3 {
    margin: 1mm 0;
    color: #071726;
    font-size: 14pt;
  }

  body.printing-triage .pdf-promo-panel p,
  body.printing-triage .pdf-promo-panel small {
    display: block;
    margin: 1mm 0 0;
    color: #384b55;
    line-height: 1.35;
  }

  body.printing-triage .pdf-contact-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4mm;
    padding: 3.5mm 4mm;
    color: #071726;
    background: #eef3f1;
    border-radius: 2.5mm;
    break-inside: avoid;
  }

  body.printing-triage .pdf-contact-panel strong,
  body.printing-triage .pdf-contact-panel span {
    font-size: 11pt;
  }

  body.printing-triage .pdf-footer {
    display: flex;
    min-height: 8mm;
    align-items: end;
    justify-content: space-between;
    gap: 6mm;
    margin-top: auto;
    padding-top: 3mm;
    color: #5a6870;
    border-top: 0.3mm solid #d8dddf;
  }

  body.printing-triage .pdf-footer span {
    font-size: 11pt;
    line-height: 1.25;
  }

  body.printing-triage .pdf-footer span:last-child {
    color: #071726;
    font-weight: 800;
  }
}
