:root {
  --navy: #0b1f3a;
  --blue: #2563eb;
  --blue2: #1d4ed8;
  --pale: #eff6ff;
  --muted: #5f6f86;
  --green: #15803d;
  --orange: #ea580c;
  --red: #b91c1c;
  --shadow: 0 18px 45px rgba(30, 64, 175, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--navy);
  background: #fff;
}

.wrap {
  max-width: 1180px;
  margin: auto;
  padding: 0 28px;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 1000;
  transform: translateY(-120%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(12px);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.site-header {
  position: relative;
  z-index: 20;
}

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

.logo {
  font-weight: 850;
  font-size: 21px;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.logo span {
  color: var(--blue);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.btn {
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 11px;
  padding: 13px 19px;
  font: inherit;
  font-weight: 750;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

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

.hero {
  background: linear-gradient(180deg, #fff 0, #f5f9ff 100%);
  padding: 74px 0 82px;
  border-top: 1px solid #f1f5f9;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  background: #e8f1ff;
  color: var(--blue2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  font-size: 55px;
  line-height: 1.04;
  letter-spacing: -2.6px;
  margin: 20px 0;
}

.lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 650px;
}

.lead.tight {
  font-size: 16px;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin-top: 28px;
}

.order-form {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: left;
}

.order-form-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr auto;
  gap: 10px;
  margin-top: 0;
}

.order-form select.input {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

@media (max-width: 800px) {
  .order-form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  min-width: 0;
}

.input {
  width: 100%;
  height: 51px;
  border: 2px solid var(--blue);
  border-radius: 11px;
  background: #fff;
  padding: 0 14px;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.input::placeholder {
  color: #94a3b8;
}

.input:focus {
  outline: none;
  border-color: var(--blue2);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.28);
}

.input.invalid {
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.16);
}

.trust {
  font-size: 12px;
  color: #64748b;
  margin: 12px 0 0;
}

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

.form-status {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  margin: 10px 0 0;
}

.form-status.is-error {
  color: #b91c1c;
  font-weight: 700;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 11px;
  padding: 12px 14px;
  font-size: 14px;
}

.form-status.is-success {
  color: var(--green);
  font-weight: 700;
}

.form-status.is-pending {
  color: var(--blue2);
  font-weight: 750;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 11px;
  padding: 12px 14px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-status.is-pending::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid #bfdbfe;
  border-top-color: var(--blue);
  border-radius: 999px;
  animation: processSpin 0.7s linear infinite;
}

.btn.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 1;
  background: var(--blue2);
}

.btn.is-loading::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 999px;
  animation: processSpin 0.7s linear infinite;
}

.process-dialog[hidden] {
  display: none !important;
}

.process-dialog {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.process-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.55);
}

.process-dialog[data-state="pending"] .process-dialog__backdrop {
  pointer-events: none;
}

.process-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  background: #fff;
  border: 1px solid #dbe7f5;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(11, 31, 58, 0.28);
  padding: 28px 26px 24px;
  text-align: left;
  animation: processPop 0.22s ease-out;
}

@keyframes processPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.process-dialog__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  background: #e8f1ff;
  color: var(--blue2);
}

.process-dialog[data-state="success"] .process-dialog__icon {
  background: #dcfce7;
  color: var(--green);
}

.process-dialog[data-state="error"] .process-dialog__icon {
  background: #fef2f2;
  color: #b91c1c;
}

.process-dialog__spinner {
  width: 22px;
  height: 22px;
  border: 3px solid #bfdbfe;
  border-top-color: var(--blue);
  border-radius: 999px;
  animation: processSpin 0.7s linear infinite;
}

.process-dialog[data-state="success"] .process-dialog__spinner,
.process-dialog[data-state="error"] .process-dialog__spinner {
  display: none;
}

.process-dialog[data-state="success"] .process-dialog__icon::after {
  content: "✓";
}

.process-dialog[data-state="error"] .process-dialog__icon::after {
  content: "!";
}

@keyframes processSpin {
  to {
    transform: rotate(360deg);
  }
}

.process-dialog__panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.03em;
  text-align: center;
}

.process-dialog__lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.process-steps {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 0;
}

.process-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  position: relative;
}

.process-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 30px;
  bottom: -2px;
  width: 2px;
  background: #e2e8f0;
}

.process-steps li.is-done:not(:last-child)::before,
.process-steps li.is-active:not(:last-child)::before {
  background: #93c5fd;
}

.process-steps__marker {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #94a3b8;
  position: relative;
  z-index: 1;
}

.process-steps li.is-pending .process-steps__label {
  color: #94a3b8;
}

.process-steps li.is-active .process-steps__marker {
  border-color: var(--blue);
  background: #eff6ff;
  color: var(--blue);
}

.process-steps li.is-active .process-steps__marker::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #bfdbfe;
  border-top-color: var(--blue);
  border-radius: 999px;
  animation: processSpin 0.7s linear infinite;
}

.process-steps li.is-done .process-steps__marker {
  border-color: var(--green);
  background: #dcfce7;
  color: var(--green);
}

.process-steps li.is-done .process-steps__marker::after {
  content: "✓";
  animation: none;
  width: auto;
  height: auto;
  border: 0;
}

.process-steps li.is-error .process-steps__marker {
  border-color: #b91c1c;
  background: #fef2f2;
  color: #b91c1c;
}

.process-steps li.is-error .process-steps__marker::after {
  content: "!";
  animation: none;
  width: auto;
  height: auto;
  border: 0;
}

.process-steps__label {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  padding-top: 4px;
}

.process-dialog__btn {
  width: 100%;
}

.process-dialog__btn[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .process-dialog__panel {
    animation: none;
  }

  .process-dialog__spinner,
  .process-steps li.is-active .process-steps__marker::after {
    animation: none;
  }
}

.dash {
  background: #fff;
  border: 1px solid #dbe7f5;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
  transform: rotate(1deg);
}

.dashTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 15px;
  gap: 12px;
}

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

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  display: block;
}

.site {
  font-size: 13px;
  font-weight: 750;
  margin-top: 9px;
}

.status,
.ok {
  color: var(--green);
}

.okValue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.metric strong.okValue {
  display: inline-flex;
  font-size: 27px;
  line-height: 1;
}

.okValue.is-waiting {
  color: var(--blue);
}

.okValue.is-waiting .okCheck {
  display: none;
}

.okValue.is-ready .okCheck {
  display: inline-grid;
  animation: okCheckPop 0.45s ease-out both;
}

.okCheck {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex: 0 0 16px;
  display: none;
  place-items: center;
}

.okCheck svg {
  width: 16px;
  height: 16px;
  display: block;
}

.okValue.is-ready .okCheck-ring {
  opacity: 0;
  animation: okCheckRing 0.35s ease-out forwards;
}

.okValue.is-ready .okCheck-mark {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: checkDraw 0.45s ease-out forwards;
  animation-delay: 0.12s;
}

.httpWait {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 1em;
  padding-bottom: 0.12em;
}

.httpWait i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.25;
  animation: httpWaitDot 1s ease-in-out infinite;
}

.httpWait i:nth-child(2) {
  animation-delay: 0.15s;
}

.httpWait i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes httpWaitDot {
  0%,
  80%,
  100% {
    opacity: 0.22;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.status {
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.45);
  animation: statusPulse 2s ease-out infinite;
}

.metricGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.metric {
  padding: 15px;
  background: #f8fbff;
  border: 1px solid #e5effc;
  border-radius: 14px;
}

.metricHead {
  display: flex;
  align-items: center;
  gap: 8px;
}

.metricIcon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  background: #e8f1ff;
}

.metricIcon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.metricIcon--https {
  color: var(--green);
  background: #dcfce7;
}

.metric--warn .metricIcon {
  color: var(--orange);
  background: #ffedd5;
}

.metric--bad .metricIcon {
  color: var(--red);
  background: #fee2e2;
}

.metricValue {
  color: var(--blue);
}

.metricIcon-needle {
  transform-origin: 12px 12px;
  animation: needleSweep 2.8s ease-in-out infinite alternate;
}

.metricIcon-ring {
  transform-origin: 11px 11px;
  animation: seoPulse 2.4s ease-in-out infinite;
}

.metricIcon-handle {
  animation: seoHandle 2.4s ease-in-out infinite;
}

.metricIcon-hand {
  transform-origin: 12px 12px;
  animation: clockHand 3.2s linear infinite;
}

.metricIcon-shackle {
  animation: lockBounce 2.6s ease-in-out infinite;
}

.metricIcon-keyhole {
  animation: keyholeGlow 2.6s ease-in-out infinite;
}

.metric small {
  color: #718096;
  font-weight: 700;
}

.metric strong {
  display: block;
  font-size: 27px;
  margin-top: 8px;
}

.bar {
  height: 7px;
  background: #e2e8f0;
  border-radius: 9px;
  margin-top: 10px;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue);
  border-radius: 9px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: barFill 1.1s ease-out both;
  animation-delay: 0.25s;
}

.metric:nth-child(2) .bar i {
  animation-delay: 0.4s;
}

.metric:nth-child(3) .bar i {
  animation-delay: 0.55s;
}

.metric:nth-child(4) .bar i {
  animation-delay: 1.8s;
}

.bar--ok i {
  animation-name: barFillOk;
  animation-duration: 0.75s;
}

.bar--warn i {
  animation-name: barFillWarn;
}

.bar--bad i {
  animation-name: barFillBad;
}

.bar i[style*="--bar"] {
  width: var(--bar);
}

.checks {
  margin-top: 15px;
  display: grid;
  gap: 8px;
}

.check {
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #f7fafc;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: checkIn 0.45s ease-out both;
}

.check:nth-child(1) {
  animation-delay: 0.85s;
}

.check:nth-child(2) {
  animation-delay: 1.05s;
}

.check:nth-child(3) {
  animation-delay: 1.25s;
}

.check:nth-child(4) {
  animation-delay: 1.45s;
}

.check:nth-child(5) {
  animation-delay: 1.65s;
}

.checkIcon {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex: 0 0 auto;
}

.checkIcon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.checkIcon-mark {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: checkDraw 0.45s ease-out forwards;
}

.check:nth-child(1) .checkIcon-mark {
  animation-delay: 0.95s;
}

.check:nth-child(2) .checkIcon-mark {
  animation-delay: 1.15s;
}

.check:nth-child(3) .checkIcon-mark {
  animation-delay: 1.35s;
}

.check:nth-child(4) .checkIcon-mark {
  animation-delay: 1.55s;
}

.check:nth-child(5) .checkIcon-mark {
  animation-delay: 1.75s;
}

.dashCoverage {
  margin: 6px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 12px;
  line-height: 1.45;
  animation: checkIn 0.45s ease-out both;
  animation-delay: 1.85s;
}

.dashCoverage strong {
  color: #c2410c;
  font-size: inherit;
  margin: 0;
  display: inline;
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(21, 128, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 128, 61, 0);
  }
}

@keyframes needleSweep {
  from {
    transform: rotate(-28deg);
  }
  to {
    transform: rotate(34deg);
  }
}

@keyframes seoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

@keyframes seoHandle {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0.6px, 0.6px);
  }
}

@keyframes clockHand {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes lockBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-1.2px);
  }
}

@keyframes keyholeGlow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes barFill {
  from {
    transform: scaleX(0);
    transform-origin: left center;
  }
  to {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

@keyframes barFillOk {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--blue);
  }
  75% {
    transform: scaleX(1);
    transform-origin: left center;
    background: var(--blue);
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
    background: var(--green);
  }
}

@keyframes barFillWarn {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--blue);
  }
  70% {
    transform: scaleX(1);
    transform-origin: left center;
    background: var(--blue);
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
    background: var(--orange);
  }
}

@keyframes barFillBad {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--blue);
  }
  70% {
    transform: scaleX(1);
    transform-origin: left center;
    background: var(--blue);
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
    background: var(--red);
  }
}

@keyframes checkIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes checkDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes okCheckPop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes okCheckRing {
  from {
    opacity: 0;
    transform: scale(0.85);
    transform-origin: 10px 10px;
  }
  to {
    opacity: 1;
    transform: scale(1);
    transform-origin: 10px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot,
  .metricIcon-needle,
  .metricIcon-ring,
  .metricIcon-handle,
  .metricIcon-hand,
  .metricIcon-shackle,
  .metricIcon-keyhole,
  .bar i,
  .check,
  .checkIcon-mark,
  .okCheck,
  .okCheck-ring,
  .okCheck-mark,
  .httpWait i {
    animation: none !important;
  }

  .bar i {
    transform: none;
  }

  .checkIcon-mark,
  .okCheck-mark {
    stroke-dashoffset: 0;
  }

  .okCheck-ring {
    opacity: 1;
  }

  .httpWait i {
    opacity: 1;
    transform: none;
  }
}

section {
  padding: 84px 0;
}

.center {
  text-align: center;
}

.kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

h2 {
  font-size: 38px;
  letter-spacing: -1.4px;
  margin: 10px 0 14px;
  line-height: 1.15;
}

.sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.cards4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.card {
  border: 1px solid #e2e8f0;
  border-radius: 17px;
  padding: 24px;
  background: #fff;
  text-align: left;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--pale);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 17px;
}

.icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-size: 17px;
  margin: 0 0 8px;
}

.card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.pale {
  background: #f7faff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.num {
  width: 34px;
  height: 34px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 850;
  margin-bottom: 14px;
}

.auditPanel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

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

.auditItem {
  display: flex;
  gap: 13px;
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  background: #fff;
  text-align: left;
}

.auditItem b {
  color: var(--blue);
}

.auditItem strong {
  display: block;
}

.auditItem span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  align-items: stretch;
}

.price {
  border: 1px solid #dfe7f2;
  border-radius: 20px;
  padding: 28px;
  background: #fff;
  position: relative;
  text-align: left;
}

.price.featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.tag {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #e8f1ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  padding: 7px 9px;
  border-radius: 999px;
}

.price h3 {
  font-size: 22px;
  margin: 0;
}

.amount {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 13px 0;
}

.amount small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.price ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 11px;
  color: #475569;
  font-size: 14px;
}

.price li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.outline {
  display: block;
  text-align: center;
  border: 1px solid #b8c8dd;
  border-radius: 11px;
  padding: 12px;
  font-weight: 800;
  color: var(--navy);
}

.featured .outline {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.featured .outline:hover {
  background: var(--blue2);
}

.report {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.paper {
  background: #fff;
  border: 1px solid #dfe7f2;
  border-radius: 17px;
  box-shadow: var(--shadow);
  padding: 26px;
  text-align: left;
}

.paperHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 15px;
}

.rows {
  display: grid;
  gap: 11px;
  margin-top: 16px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: #f8fafc;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 13px;
}

.faq {
  max-width: 850px;
  margin: 38px auto 0;
  text-align: left;
}

.q {
  width: 100%;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 750;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  cursor: pointer;
}

.q span {
  flex: none;
  color: var(--muted);
}

.a {
  padding: 0 0 16px;
  border-bottom: 1px solid #e5e7eb;
}

.q[aria-expanded="true"] {
  border-bottom-color: transparent;
}

.a p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.repair-cta {
  display: inline-block;
  margin-top: 22px;
  border: 1px solid #b8c8dd;
  border-radius: 11px;
  padding: 12px 18px;
  font-weight: 800;
}

.repair-cta:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.cta {
  background: var(--navy);
  color: #fff;
  border-radius: 25px;
  padding: 54px;
  margin-bottom: 70px;
}

.cta h2 {
  margin-top: 0;
}

.cta .sub {
  color: #cbd5e1;
  margin: 0;
}

.cta .form {
  max-width: 850px;
}

.cta .trust,
.cta .form-status {
  color: #94a3b8;
}

.footer {
  padding: 36px 0 50px;
  color: #64748b;
  font-size: 13px;
  border-top: 1px solid #eef2f7;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 6px;
}

.footer p {
  margin: 0 0 6px;
  line-height: 1.5;
}

.footer a {
  color: var(--blue);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer a:hover {
  color: var(--blue2);
}

.footer-meta {
  margin-top: 10px !important;
}

.smallnote {
  font-size: 12px;
  color: #64748b;
  margin: 14px auto 0;
  max-width: 700px;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.input:focus-visible {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 800px) {
  .wrap {
    padding: 0 20px;
  }

  .nav {
    height: 64px;
  }

  .logo {
    font-size: 18px;
  }

  .navlinks {
    gap: 0;
  }

  .navlinks a:not(.btn) {
    display: none;
  }

  .navlinks .btn {
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    padding: 34px 0 52px;
  }

  .heroGrid,
  .auditPanel,
  .report {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .eyebrow {
    font-size: 11px;
    padding: 7px 10px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -1.65px;
    margin: 16px 0;
  }

  .lead {
    font-size: 16px;
    line-height: 1.58;
  }

  .form {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 22px;
  }

  .input {
    height: 50px;
  }

  .form .btn {
    width: 100%;
    padding: 15px 14px;
  }

  .trust {
    font-size: 11px;
    line-height: 1.5;
    margin-top: 10px;
  }

  .dash {
    transform: none;
    padding: 17px;
    border-radius: 17px;
  }

  .status {
    font-size: 10px;
    text-align: right;
  }

  .metricGrid {
    gap: 9px;
  }

  .metric {
    padding: 13px;
    border-radius: 11px;
  }

  .metric strong {
    font-size: 23px;
  }

  .checks {
    gap: 7px;
  }

  .check {
    font-size: 12px;
    line-height: 1.4;
  }

  section {
    padding: 54px 0;
  }

  .kicker {
    font-size: 11px;
  }

  .center {
    text-align: left;
  }

  .center > .sub,
  .smallnote {
    margin-left: 0;
    margin-right: 0;
  }

  .center h2 {
    max-width: 370px;
  }

  h2 {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .sub {
    font-size: 15px;
    line-height: 1.55;
  }

  .cards4 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .card {
    padding: 18px;
    border-radius: 14px;
  }

  .icon {
    width: 38px;
    height: 38px;
    margin-bottom: 13px;
  }

  .card h3 {
    font-size: 15px;
  }

  .card p {
    font-size: 13px;
    line-height: 1.48;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .steps .card {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    align-items: start;
  }

  .steps .num {
    grid-row: 1 / 3;
    margin: 0;
  }

  .steps h3 {
    margin-top: 3px;
  }

  .steps p {
    grid-column: 2;
  }

  .auditPanel {
    gap: 24px;
  }

  .auditList {
    gap: 9px;
  }

  .auditItem {
    padding: 13px;
    gap: 10px;
  }

  .auditItem span {
    font-size: 12px;
    line-height: 1.45;
  }

  .auditItem strong {
    font-size: 14px;
  }

  .pricing {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .price {
    padding: 23px;
    border-radius: 17px;
  }

  .price.featured {
    transform: none;
    order: -1;
  }

  .amount {
    font-size: 36px;
  }

  .price ul {
    margin: 18px 0;
    gap: 9px;
    font-size: 13px;
  }

  .smallnote {
    text-align: left;
    line-height: 1.5;
  }

  .report {
    gap: 28px;
  }

  .paper {
    padding: 18px;
    border-radius: 14px;
    order: 2;
  }

  .report > div:last-child {
    order: 1;
  }

  .paperHead {
    font-size: 12px;
  }

  .rows {
    gap: 8px;
  }

  .row {
    font-size: 12px;
  }

  .row b {
    text-align: right;
  }

  .faq {
    margin-top: 25px;
  }

  .q {
    padding: 17px 0;
    font-size: 14px;
    line-height: 1.35;
  }

  .cta {
    padding: 30px 20px;
    border-radius: 18px;
    margin-bottom: 40px;
  }

  .cta h2 {
    font-size: 29px;
    max-width: none;
  }

  .cta .sub {
    font-size: 14px;
  }

  .footer {
    padding: 8px 0 30px;
  }
}

@media (max-width: 420px) {
  .wrap {
    padding: 0 16px;
  }

  .logo {
    font-size: 16px;
  }

  .navlinks .btn {
    font-size: 11px;
    padding: 9px 10px;
  }

  .hero h1 {
    font-size: 34px;
  }

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

  .metric small {
    font-size: 11px;
  }

  .metric strong {
    font-size: 21px;
  }

  h2 {
    font-size: 28px;
  }

  .cta h2 {
    font-size: 27px;
  }
}
