:root {
  --ink: #1B1B1E;
  --slate: #373F51;
  --teal: #58A4B0;
  --blue: #A9BCD0;
  --mist: #D8DBE2;
  --green: #6f9e45;
  --red: #c93a5e;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --line: rgba(55, 63, 81, .16);
  --muted: rgba(27, 27, 30, .68);
  --shadow: 0 22px 60px rgba(27, 27, 30, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--soft) 44%, #ffffff 100%);
}

.wrap {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 152px;
  height: auto;
  display: block;
}

.navlinks,
.lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navlinks a,
.lang a {
  border-radius: 8px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.navlinks a {
  padding: 10px 11px;
}

.lang a {
  padding: 7px 9px;
  border: 1px solid transparent;
}

.navlinks a:hover,
.lang a:hover,
.lang a[aria-current="true"] {
  color: var(--ink);
  background: var(--mist);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(88, 164, 176, .24);
}

.btn:hover {
  background: var(--slate);
}

.btn.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--slate);
  box-shadow: none;
}

.btn.secondary:hover {
  background: var(--mist);
  color: var(--ink);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 88px 0 72px;
	background: linear-gradient(90deg, rgba(27, 27, 30, .8) 0%, rgba(27, 27, 30, .74) 46%, rgba(55, 63, 81, .2) 90%), linear-gradient(180deg, rgba(27, 27, 30, .12) 0%, rgba(27, 27, 30, .28) 100%), url("assets/bg.jpg") center center / cover no-repeat;
	color: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.text-blue,
.headline-blue {
  color: var(--teal);
}

.hero .wrap > h1,
.hero .wrap > div:first-child > h1 {
  color: #fff;
  text-shadow: 0 14px 36px rgba(0, 0, 0, .34);
}

.hero .wrap > .headline-blue,
.hero .wrap > div:first-child > .headline-blue,
.hero .wrap > .lead .text-blue,
.hero .wrap > div:first-child > .lead .text-blue {
  color: var(--teal);
}

.hero .wrap > .lead,
.hero .wrap > div:first-child > .lead {
  color: rgba(255, 255, 255, .84);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 74px);
}

h2 {
  font-size: clamp(31px, 4vw, 48px);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--slate);
  font-size: 13px;
  font-weight: 900;
}

.product-shot {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-window {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  color: #fff;
  border-bottom: 1px solid rgba(216, 219, 226, .12);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.window-title {
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 900;
}

.report {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(180deg, var(--ink), var(--slate));
}

.score-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(216, 219, 226, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.score-ring {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 7px solid var(--teal);
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  font-weight: 950;
}

.score-card strong {
  display: block;
  color: #fff;
  font-size: 21px;
}

.score-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

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

.check-pill {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(216, 219, 226, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.check-pill b {
  display: grid;
  place-items: center;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
}

.check-pill.warn b {
  background: var(--red);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--mist);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(55, 63, 81, .06);
}

.icon {
  display: grid;
  place-items: center;
  min-width: 58px;
  width: max-content;
  height: 46px;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(88, 164, 176, .14);
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
}

.card p,
.step p,
.price p,
.faq-item p,
.plain p,
.form-panel p {
  color: var(--muted);
}

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

.step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.plain {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--slate);
  font-weight: 800;
}

.feature-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.price-grid--compact {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
}

.price-page h1,
.price-page h2,
.price-page h3 {
  color: var(--teal);
}

.price {
  padding: 30px;
  border: 1px solid rgba(88, 164, 176, .38);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0;
}

.price-value strong {
  color: var(--ink);
  font-size: 58px;
  line-height: 1;
}

.price-value span {
  color: var(--muted);
  font-weight: 850;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--teal);
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(88, 164, 176, .14);
  color: var(--teal);
  font-size: 21px;
  line-height: 1;
}

.faq-toggle::before {
  content: "+";
}

.faq-item[open] .faq-toggle {
  background: var(--teal);
  color: #fff;
}

.faq-item[open] .faq-toggle::before {
  content: "-";
}

.faq-item h3 {
  font-size: 19px;
}

.form-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-scan {
  padding-top: 36px;
  padding-bottom: 36px;
}

.home-scan .price-grid {
  align-items: center;
}

.home-scan h2 {
  color: var(--teal);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--slate);
  font-size: 13px;
  font-weight: 900;
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.note {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(88, 164, 176, .28);
  border-radius: 8px;
  background: rgba(88, 164, 176, .08);
  color: var(--slate);
  font-size: 14px;
  font-weight: 800;
}

.cta-band {
  margin: 64px 0;
  padding: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.wrap.cta-band {
  margin: 64px auto;
}

.cta-band.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.cta-band.centered p {
  margin-right: auto;
  margin-left: auto;
}

.cta-band.centered .hero-actions {
  justify-content: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--slate);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .navlinks,
  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-grid,
  .split,
  .price-grid,
  .price-grid--compact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 26px, 1140px);
  }

  .hero,
  .section {
    padding: 44px 0;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .trust-row,
  .cards,
  .steps,
  .check-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-shot {
    padding: 8px;
  }

  .score-card {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band {
    padding: 26px;
  }
}

.navlinks a[aria-current="true"] {
  color: var(--ink);
  background: var(--mist);
}

.scan-hero-grid {
  display: block;
}

.scan-index-panel {
  width: 100%;
  max-width: none;
  margin-top: 34px;
  box-shadow: none;
}

.scan-index-panel h3 {
  color: var(--teal);
}

.scan-index-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.scan-index-panel__head p {
  margin: 8px 0 0;
}

.scan-index-panel .form-grid {
  grid-template-columns: minmax(360px, 2fr) minmax(130px, .45fr) minmax(260px, 1fr);
}

.scan-url-field {
  grid-column: span 1;
}

.scan-btn {
  width: auto;
  min-width: 210px;
  margin-top: 0;
  border: none;
  border-bottom: 5px solid rgba(55, 63, 81, .34);
  box-shadow: none;
  cursor: pointer;
  transition: transform .14s ease, border-bottom-width .14s ease;
}

.scan-btn:hover {
  background: var(--slate);
  transform: translateY(-1px);
}

.scan-btn:active {
  transform: translateY(3px);
  border-bottom-width: 2px;
}

.scan-btn-wide {
  width: 100%;
  min-height: 58px;
  font-size: 18px;
}

.scan-btn:disabled {
  opacity: .62;
  cursor: wait;
}

.scan-version-note {
  margin: 12px 0 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.scan-message {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--teal);
  font-size: 22px;
  font-weight: 950;
}

.scan-message--good {
  color: var(--teal);
}

.scan-message--bad {
  border-left: 8px solid var(--red);
  color: var(--slate);
  font-size: 16px;
  border-left-color: var(--red);
}

.scan-message-btn {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.scan-pages-section {
  background: var(--soft);
}

.scan-report-section,
.scan-detail-section {
  background: var(--mist);
}

.scan-print-brand {
  display: none;
}

.scan-report-meta {
  max-width: none !important;
  white-space: nowrap;
}

.scan-index-list {
  display: grid;
  gap: 9px;
}

.scan-index-row {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: opacity .16s ease, background .16s ease;
}

.scan-index-row.is-excluded {
  opacity: .3;
}

.scan-index-row a {
  min-width: 0;
  color: var(--slate);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.scan-index-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.scan-index-delete {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(201, 58, 94, .24);
  border-radius: 8px;
  background: rgba(201, 58, 94, .09);
  cursor: pointer;
}

.scan-index-delete img {
  width: 19px;
  height: 19px;
}

.scan-email-gate {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(88, 164, 176, .25);
  border-radius: 8px;
  background: #fff;
}

.scan-email-gate p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.scan-progress {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(88, 164, 176, .28);
  border-radius: 8px;
  background: #fff;
}

.scan-progress__head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--slate);
  font-weight: 900;
}

.scan-progress__head strong {
  color: var(--teal);
  font-size: 20px;
}

.scan-progress__bar {
  height: 16px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--mist);
  overflow: hidden;
}

.scan-progress__bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transition: width .22s ease;
}

.scan-progress p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.scan-report-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.scan-score-card {
  background: #fff;
  border-color: rgba(55, 63, 81, .12);
  box-shadow: 0 12px 30px rgba(55, 63, 81, .06);
}

.scan-score-card strong {
  color: var(--ink);
}

.scan-score-card span {
  color: var(--muted);
}

.scan-score-ring {
  color: #fff;
}

.scan-score-ring--red {
  background: var(--red);
  border-color: var(--red);
}

.scan-score-ring--light-red {
  background: #d9687f;
  border-color: #d9687f;
}

.scan-score-ring--blue {
  background: #418294;
  border-color: #418294;
}

.scan-score-ring--green {
  background: #6f9e45;
  border-color: #6f9e45;
}

.scan-score-ring--dark-green {
  background: #406e16;
  border-color: #406e16;
}

.scan-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

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

.scan-check {
  min-height: 188px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(55, 63, 81, .06);
}

.scan-check b {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 32px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.scan-check--good b {
  background: var(--green);
}

.scan-check--warn b {
  background: var(--teal);
}

.scan-check--bad b {
  background: var(--red);
}

.scan-check h3 {
  color: var(--teal);
  font-size: 19px;
}

.scan-check strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.scan-check p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.scan-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(55, 63, 81, .06);
}

.scan-panel h3 {
  margin-bottom: 16px;
  color: var(--teal);
}

.scan-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.scan-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.scan-table th,
.scan-table td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.scan-table td {
  color: var(--slate);
  overflow-wrap: anywhere;
}

.scan-table a,
.scan-group a {
  color: #287987;
}

.scan-group-list {
  display: grid;
  gap: 10px;
}

.scan-group {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.scan-group strong {
  color: var(--slate);
}

.sgr-loader {
  position: fixed;
  z-index: 2147483647;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, visibility .16s ease;
}

.sgr-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sgr-loader img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

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

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  html,
  body,
  .site {
    background: #f5f7fa !important;
  }

  body {
    color: var(--ink);
    font-size: 11px;
    line-height: 1.42;
  }

  .topbar,
  .hero,
  .scan-pages-section,
  .scan-report-actions,
  .cta-band,
  .sgr-loader,
  .footer {
    display: none !important;
  }

  .wrap {
    width: 100% !important;
    max-width: none !important;
  }

  .section,
  .scan-report-section,
  .scan-detail-section {
    padding: 0 !important;
    background: transparent !important;
  }

  .scan-report-section {
    padding-bottom: 8mm !important;
  }

  .scan-print-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8mm;
    padding: 7mm;
    border: 1px solid rgba(55, 63, 81, .14);
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 54%, #d8dbe2 100%) !important;
  }

  .scan-print-brand img {
    width: 46mm;
    height: auto;
  }

  .scan-print-brand div {
    display: grid;
    gap: 2mm;
    text-align: right;
  }

  .scan-print-brand strong {
    color: var(--teal);
    font-size: 18px;
    font-weight: 950;
  }

  .scan-print-brand span {
    color: var(--slate);
    font-size: 12px;
    font-weight: 850;
  }

  .scan-report-section .section-head {
    display: block;
    margin-bottom: 6mm;
    padding: 0;
  }

  .headline-blue {
    color: var(--teal) !important;
  }

  .scan-report-section h2 {
    margin-bottom: 2mm;
    font-size: 30px;
    line-height: 1.08;
  }

  .scan-report-meta {
    max-width: none !important;
    color: var(--slate) !important;
    font-size: 12px;
    white-space: nowrap;
  }

  .scan-report-top {
    grid-template-columns: 1fr;
    margin-bottom: 6mm;
  }

  .scan-score-card {
    border: 1px solid rgba(55, 63, 81, .14);
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(55, 63, 81, .10);
  }

  .score-ring {
    width: 30mm;
    height: 30mm;
    border-width: 2mm;
    color: #fff !important;
    font-size: 28px;
  }

  .scan-score-card strong {
    color: var(--ink) !important;
    font-size: 20px;
  }

  .scan-score-card span {
    color: var(--muted) !important;
  }

  .scan-check-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4mm;
    margin-bottom: 7mm;
  }

  .scan-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4mm;
  }

  .scan-check,
  .scan-panel,
  .scan-score-card {
    border-radius: 8px;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .scan-check,
  .scan-panel {
    border: 1px solid rgba(55, 63, 81, .16);
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(55, 63, 81, .08);
  }

  .scan-check {
    min-height: 44mm;
    padding: 5mm;
  }

  .scan-check b {
    height: 8mm;
    min-width: 16mm;
    color: #ffffff !important;
    font-size: 9px;
  }

  .scan-check h3 {
    color: var(--teal) !important;
    font-size: 14px;
    line-height: 1.15;
  }

  .scan-check strong {
    color: var(--ink) !important;
    font-size: 16px;
  }

  .scan-check p {
    color: var(--muted) !important;
    font-size: 10px;
  }

  .scan-panel {
    padding: 5mm;
  }

  .scan-panel h3 {
    color: var(--teal) !important;
    font-size: 15px;
  }

  .scan-table table {
    font-size: 9px;
  }

  .scan-table th {
    color: var(--slate) !important;
    background: rgba(88, 164, 176, .10) !important;
  }

  .scan-table th,
  .scan-table td {
    padding: 2.2mm;
  }

  .scan-empty,
  .scan-table td,
  .scan-group strong {
    color: var(--slate) !important;
  }

  .scan-group {
    background: var(--soft) !important;
  }

  a {
    color: #287987 !important;
    text-decoration: none;
  }
}

@media (max-width: 1100px) {
  .scan-check-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .scan-hero-grid,
  .scan-report-top,
  .scan-detail-grid {
    grid-template-columns: 1fr;
  }

  .scan-report-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 680px) {
  .scan-index-panel .form-grid,
  .scan-index-panel__head,
  .scan-email-gate,
  .scan-check-grid {
    grid-template-columns: 1fr;
  }

  .scan-btn {
    width: 100%;
  }

  .scan-report-meta {
    white-space: normal;
  }
}
