:root {
  --ink: #25282b;
  --muted: #62686d;
  --line: #dfe5e8;
  --paper: #f7f8f5;
  --white: #ffffff;
  --blue: #0879bd;
  --teal: #02a99d;
  --green: #62c82a;
  --red: #d83b31;
  --shadow: 0 18px 45px rgba(18, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 18, 26, 0.72), rgba(7, 18, 26, 0.2) 58%, rgba(247, 248, 245, 0.04));
  z-index: 1;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.brand-logo {
  width: min(230px, 48vw);
  height: auto;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 12px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--blue);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: auto 0 7vh clamp(18px, 5vw, 64px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #ccebf9;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 1.02;
  max-width: 11ch;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.hero-copy p:not(.eyebrow) {
  max-width: 900px;
  margin: 22px 0 30px;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.48;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
}

.primary-action {
  background: var(--red);
  color: var(--white);
}

.secondary-action {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--white);
}

.intro-grid p,
.technical p,
.diagnostic-header p,
.result-copy p {
  color: var(--muted);
  line-height: 1.65;
}

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

.concept-map article,
.question,
.result-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(18, 33, 43, 0.07);
}

.concept-map article {
  padding: 18px;
}

.concept-map b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #e7f4fa;
  color: var(--blue);
  font-size: 0.86rem;
}

.concept-map strong {
  display: block;
  margin-bottom: 8px;
}

.concept-map span {
  color: var(--muted);
  line-height: 1.5;
}

.technical {
  background: #eef5f6;
}

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

.metric-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  min-height: 132px;
}

.metric-tile span {
  display: block;
  color: var(--blue);
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.metric-tile p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.scale-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.scale-band div {
  min-height: 86px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 14px 8px;
  color: var(--white);
}

.scale-band div:nth-child(1) { background: #7b858c; }
.scale-band div:nth-child(2) { background: var(--blue); }
.scale-band div:nth-child(3) { background: var(--teal); }
.scale-band div:nth-child(4) { background: var(--green); color: #17320d; }
.scale-band div:nth-child(5) { background: var(--red); }

.scale-band b {
  font-size: 1.7rem;
}

.scale-band span {
  font-size: 0.88rem;
  font-weight: 800;
}

.diagnostic {
  background: var(--paper);
}

.diagnostic-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.diagnostic-header p {
  max-width: 820px;
  margin-bottom: 0;
}

.diagnostic-matrix {
  overflow-x: auto;
  padding-bottom: 6px;
  font-size: 80%;
}

.matrix-table {
  min-width: 1040px;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18, 33, 43, 0.07);
}

.matrix-row {
  display: grid;
  grid-template-columns: 152px minmax(280px, 1.35fr) repeat(6, minmax(86px, 0.62fr));
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.matrix-row:last-child {
  border-bottom: 0;
}

.matrix-row legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.matrix-head {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #eef5f6;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.matrix-head div,
.dimension-name,
.attribute-text,
.matrix-option {
  min-height: 72px;
  border-right: 1px solid var(--line);
  padding: 9px;
}

.matrix-head div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 112px;
  line-height: 1.22;
  text-align: center;
}

.matrix-head strong {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  border-radius: 5px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.84rem;
}

.matrix-head span {
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.1;
}

.matrix-head small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.18;
  max-width: 14ch;
}

.matrix-head div:nth-child(-n + 2) {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.matrix-head div:last-child,
.matrix-option:last-child {
  border-right: 0;
}

.dimension-name {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 900;
  line-height: 1.28;
}

.dimension-name span {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #e7f4fa;
  color: var(--blue);
  font-size: 0.72rem;
}

.attribute-text {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.86rem;
}

.matrix-option {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  cursor: pointer;
}

.matrix-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.matrix-option span {
  width: 100%;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 6px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.matrix-option input:checked + span {
  border-color: var(--blue);
  background: #e7f4fa;
  box-shadow: inset 0 0 0 2px rgba(8, 121, 189, 0.18);
}

.result-section {
  background: var(--white);
}

.result-panel {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(26px, 5vw, 60px);
  padding: clamp(22px, 5vw, 44px);
  align-items: center;
}

.score-visual {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.score-ring {
  --pct: 0%;
  width: min(260px, 68vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--blue) var(--pct), #e6ecef 0);
  position: relative;
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 22px;
  background: var(--white);
  border-radius: 50%;
}

.score-ring span,
.score-ring small {
  position: relative;
  z-index: 1;
}

.score-ring span {
  font-size: 4rem;
  font-weight: 900;
  align-self: end;
}

.score-ring small {
  align-self: start;
  color: var(--muted);
  font-weight: 800;
}

#maturityLevel {
  margin: 0;
  font-weight: 900;
  color: var(--blue);
  text-align: center;
}

.recommendations {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.recommendations article {
  border-left: 4px solid var(--teal);
  background: #f2f8f8;
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
}

.recommendations strong {
  display: block;
  margin-bottom: 4px;
}

.recommendations span {
  color: var(--muted);
  line-height: 1.45;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 64px);
  background: #ecf0ed;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer img {
  width: 170px;
  max-width: 38vw;
}

.footer-brand {
  display: grid;
  gap: 8px;
  max-width: 720px;
}

.footer-brand small {
  color: var(--ink);
  font-weight: 800;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.contact-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 6px;
  padding: 0 14px;
  text-decoration: none;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
}

.contact-action svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-action.whatsapp {
  background: #128c7e;
}

.contact-action.instagram {
  background: #c13584;
}

.website-link {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.website-link:hover,
.website-link:focus {
  text-decoration: underline;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.contact-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 32, 0.64);
}

.modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}

.modal-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

#contactForm {
  display: grid;
  gap: 16px;
}

#contactForm label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

#contactForm input,
#contactForm select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

#contactForm input:focus,
#contactForm select:focus {
  outline: 3px solid rgba(8, 121, 189, 0.18);
  border-color: var(--blue);
}

#contactForm small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.phone-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(220px, 1.3fr);
  gap: 14px;
}

.form-error {
  min-height: 22px;
  margin: 0;
  color: #b42318;
  font-weight: 800;
  line-height: 1.4;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .topbar,
  .diagnostic-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    justify-items: start;
  }

  .intro-grid,
  .result-panel {
    grid-template-columns: 1fr;
  }

  .concept-map,
  .technical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero {
    min-height: 78vh;
  }

  h1 {
    font-size: clamp(2.9rem, 12vw, 5.4rem);
    max-width: 9ch;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 680px;
    font-size: 1rem;
  }

  .diagnostic-matrix {
    overflow: visible;
    font-size: 100%;
  }

  .matrix-table {
    min-width: 0;
    display: grid;
    gap: 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .matrix-head {
    display: none;
  }

  .matrix-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(18, 33, 43, 0.07);
  }

  .matrix-row legend {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    padding: 14px 14px 0;
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 900;
  }

  .dimension-name,
  .attribute-text,
  .matrix-option {
    min-height: 0;
    border-right: 0;
  }

  .dimension-name {
    padding: 12px 14px 8px;
    font-size: 1rem;
  }

  .dimension-name span {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .attribute-text {
    padding: 0 14px 14px;
    font-size: 0.95rem;
  }

  .matrix-option {
    padding: 0;
  }

  .matrix-row .matrix-option:nth-of-type(1) {
    border-top: 1px solid var(--line);
  }

  .matrix-row {
    grid-template-areas:
      "legend"
      "dimension"
      "attribute"
      "options";
  }

  .matrix-row legend {
    grid-area: legend;
  }

  .dimension-name {
    grid-area: dimension;
  }

  .attribute-text {
    grid-area: attribute;
  }

  .matrix-row .matrix-option {
    display: block;
  }

  .matrix-row .matrix-option:nth-of-type(n) {
    grid-area: auto;
  }

  .matrix-row .matrix-option span {
    min-height: 64px;
    border-radius: 0;
    border: 0;
    border-top: 1px solid var(--line);
    background: #fbfcfa;
    font-size: 1.1rem;
  }

  .matrix-option span::after {
    content: attr(data-label);
  }

  .matrix-option span::after {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .matrix-option input:checked + span {
    border-color: var(--line);
    background: #e7f4fa;
    box-shadow: inset 0 0 0 2px rgba(8, 121, 189, 0.18);
  }

  .matrix-row {
    grid-auto-flow: row;
  }

  .matrix-row .matrix-option {
    border-top: 0;
  }

  .matrix-row .matrix-option:nth-last-child(-n + 6) {
    display: block;
  }

  .matrix-row .matrix-option:nth-last-child(6),
  .matrix-row .matrix-option:nth-last-child(5),
  .matrix-row .matrix-option:nth-last-child(4),
  .matrix-row .matrix-option:nth-last-child(3),
  .matrix-row .matrix-option:nth-last-child(2),
  .matrix-row .matrix-option:nth-last-child(1) {
    margin: 0;
  }

  .matrix-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .matrix-row legend,
  .dimension-name,
  .attribute-text {
    grid-column: 1 / -1;
  }

  .result-panel {
    padding: 24px;
  }

  .footer-contact,
  .contact-buttons {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 86vh;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 18, 26, 0.78), rgba(7, 18, 26, 0.35));
  }

  .hero-copy {
    margin: auto 18px 42px;
  }

  h1 {
    font-size: clamp(2.5rem, 16vw, 4.2rem);
    max-width: 8ch;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .technical-grid,
  .concept-map,
  .scale-band {
    grid-template-columns: 1fr;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-links a {
    padding: 8px 8px;
    font-size: 0.8rem;
  }

  .section {
    padding: 44px 16px;
  }

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

  .matrix-row legend,
  .dimension-name,
  .attribute-text {
    grid-column: 1 / -1;
  }

  .matrix-row .matrix-option span {
    min-height: 58px;
    font-size: 1rem;
  }

  .result-panel {
    padding: 18px;
  }

  .score-ring {
    width: min(220px, 64vw);
  }

  .contact-action {
    width: 100%;
    justify-content: center;
  }

  .website-link {
    width: 100%;
    text-align: center;
  }

  .modal-panel {
    max-height: calc(100vh - 24px);
    padding: 22px 16px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: min(210px, 70vw);
  }

  .hero {
    min-height: 84vh;
  }

  .hero-copy {
    width: calc(100% - 28px);
    margin-inline: 14px;
  }

  h1 {
    font-size: clamp(2.25rem, 17vw, 3.45rem);
  }

  .matrix-row {
    grid-template-columns: 1fr;
  }

  .matrix-row .matrix-option span {
    min-height: 52px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .matrix-option span::after {
    margin-top: 0;
  }
}

@media print {
  @page {
    size: A4 landscape;
    margin: 8mm;
  }

  html,
  body {
    background: var(--white);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .topbar,
  .button-print,
  .secondary-action,
  .contact-modal {
    display: none;
  }

  .hero {
    min-height: 360px;
  }

  .section {
    padding: 24px;
  }

  .diagnostic {
    background: var(--paper);
  }

  .diagnostic-header {
    display: block;
    margin-bottom: 14px;
  }

  .diagnostic-header p {
    max-width: none;
  }

  .diagnostic-matrix {
    width: 100%;
    overflow: visible;
    font-size: 58%;
    padding: 0;
  }

  .matrix-table {
    width: 100%;
    min-width: 0;
    border-radius: 4px;
    box-shadow: none;
    overflow: visible;
  }

  .matrix-row {
    grid-template-columns: 13% 28% repeat(6, 9.833%);
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .matrix-head {
    position: static;
  }

  .matrix-head div,
  .dimension-name,
  .attribute-text,
  .matrix-option {
    min-height: 48px;
    padding: 4px;
  }

  .matrix-head div {
    min-height: 74px;
    gap: 2px;
  }

  .matrix-head strong {
    min-width: 20px;
    height: 18px;
    font-size: 7px;
  }

  .matrix-head span {
    font-size: 7px;
  }

  .matrix-head small {
    max-width: 12ch;
    font-size: 5.5px;
    line-height: 1.08;
  }

  .dimension-name {
    gap: 3px;
    font-size: 6.4px;
    line-height: 1.14;
  }

  .dimension-name span {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    font-size: 5.6px;
  }

  .attribute-text {
    font-size: 6.4px;
    line-height: 1.25;
  }

  .matrix-option span {
    min-height: 30px;
    padding: 2px;
    border-radius: 2px;
    font-size: 8px;
  }

  .result-panel {
    box-shadow: none;
  }

  .footer {
    break-inside: avoid;
  }

  .question,
  .result-panel,
  .concept-map article,
  .metric-tile {
    box-shadow: none;
  }
}

.process-panel {
  margin-top: 24px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(18, 33, 43, 0.06);
}

.process-panel div {
  display: grid;
  gap: 5px;
}

.process-panel strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.process-panel span,
.report-status {
  color: var(--muted);
  line-height: 1.45;
}

.report-status:empty {
  display: none;
}

.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.result-summary {
  max-width: 760px;
  margin: 0 0 1.45rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.primary-action:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.report-status {
  min-height: 24px;
  margin: 16px 0 0;
  font-weight: 700;
}

#contactForm .consent-field {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f6fafb;
}

#contactForm .consent-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

#contactForm .consent-field span {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 620px) {
  .process-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .process-panel .primary-action {
    width: 100%;
  }
}

@media print {
  .process-panel,
  .report-status {
    display: none !important;
  }
}
