@font-face {
  font-family: Manrope;
  src: url("./assets/fonts/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --ink: #18201f;
  --muted: #5c6662;
  --blue: #2453dc;
  --soft: #f3f6f4;
  --line: #d9e1dc;
  --green: #14664a;
  --gutter: 48px;
  --header-height: 80px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font:
    16px/1.65 Manrope,
    Arial,
    sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.16;
  font-weight: 550;
  text-wrap: balance;
}
h2 {
  font-size: 42px;
}
h3 {
  font-size: 23px;
  font-weight: 650;
}
h4 {
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
p {
  text-wrap: pretty;
}
[hidden] {
  display: none !important;
}
::selection {
  background: #cfddff;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.process-section :focus-visible,
.site-footer :focus-visible {
  outline-color: #91b0ff;
}
.container {
  width: 100%;
  max-width: 1376px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: 88px 0;
}
.section-label,
.plan-kicker {
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.5;
  margin-bottom: 18px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.section-heading > div {
  min-width: 0;
}
.section-intro {
  color: var(--muted);
  max-width: 395px;
  line-height: 1.85;
}
.section-heading > .section-intro {
  flex: 0 1 380px;
}
.inline-link {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.inline-link:hover {
  text-decoration-thickness: 2px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 50;
  transform: translateY(-180%);
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--ink);
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
  text-align: center;
  transition:
    background 0.16s,
    border-color 0.16s;
}
.button img {
  flex: 0 0 20px;
}
.button-primary {
  background: var(--blue);
  color: #fff;
}
.button-primary img {
  filter: brightness(0) invert(1);
}
.button-primary:hover {
  background: #163eaf;
}
.button-secondary {
  background: #fff;
  border-color: #9eaca4;
  color: var(--ink);
}
.button-secondary:hover {
  background: #eef3ef;
  border-color: var(--ink);
}
.button-outline {
  color: #fff;
  border-color: #acb7b1;
  background: #0000000a;
}
.button-outline:hover {
  background: #ffffff1c;
  border-color: #fff;
}
.button-full {
  width: 100%;
  justify-content: space-between;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
  background: none;
  border: 0;
  padding: 10px 0;
  line-height: 1.6;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e9ecea;
}
.site-header.is-scrolled {
  box-shadow: 0 3px 14px #14221a0b;
}
.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  white-space: nowrap;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
}
.brand span {
  font-weight: 450;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  padding: 12px 0;
}
.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}
.header-cta {
  min-height: 44px;
  font-size: 14px;
  padding: 11px 16px;
}
.mobile-nav {
  display: none;
}
.hero {
  color: #fff;
  background: #17201d url("./assets/hero-premium.jpg") center/cover no-repeat;
  min-height: 470px;
  height: min(590px, calc(100svh - 200px));
}
.hero-inner {
  height: 100%;
  min-height: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 100px;
}
.hero-content {
  max-width: 820px;
}
h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
}
.hero-copy {
  color: #edf2ee;
  font-size: 19px;
  line-height: 1.75;
  max-width: 550px;
  margin-top: 26px;
}
.hero-copy em {
  font-style: normal;
  font-weight: 750;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}
.hero-actions .button {
  min-height: 54px;
  padding: 15px 24px;
}
.hero-focus {
  position: absolute;
  bottom: 32px;
  display: flex;
  gap: 24px;
  list-style: none;
  font-size: 13px;
  color: #e2eae4;
}
.hero-focus li + li::before {
  content: "/";
  color: #b3c4b8;
  margin-right: 24px;
}
.trust-strip {
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 30px;
  padding-bottom: 30px;
}
.trust-item {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 0 26px;
}
.trust-item:first-child {
  padding-left: 0;
}
.trust-item:last-child {
  padding-right: 0;
}
.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}
.trust-item > img {
  flex: 0 0 26px;
  margin-top: 3px;
}
.trust-item h2 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  text-wrap: initial;
}
.trust-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  margin-top: 6px;
}
.trust-item > img,
.text-link > img {
  filter: invert(28%) sepia(92%) saturate(2328%) hue-rotate(219deg)
    brightness(88%) contrast(93%);
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 44px;
  align-items: start;
}
.service-photo {
  aspect-ratio: 1.04;
  overflow: hidden;
  border-radius: 4px;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-row {
  border-bottom: 1px solid var(--line);
}
.service-row:first-child {
  border-top: 1px solid var(--line);
}
.service-row summary {
  display: grid;
  grid-template-columns: 22px 1fr 20px;
  align-items: start;
  gap: 15px;
  padding: 24px 0;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.service-number {
  font-size: 11px;
  color: var(--blue);
  font-weight: 650;
  padding-top: 5px;
}
.service-title {
  display: block;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}
.service-description {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 7px;
}
.service-row summary > img {
  margin-top: 5px;
  transition: transform 0.16s;
}
.service-row[open] summary > img {
  transform: rotate(180deg);
}
.service-row[open] .service-title,
.service-row summary:hover .service-title {
  color: var(--blue);
}
.service-expanded {
  padding: 0 30px 24px 37px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.process-section {
  background: #17251f;
  color: #fff;
}
.process-section .section-label {
  color: #b3ccb9;
}
.process-section .section-intro {
  color: #c0d0c5;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  gap: 32px;
  margin-top: 48px;
}
.step-number {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #abcfb6;
  font-size: 30px;
  font-weight: 500;
}
.step-number::after {
  content: "";
  height: 1px;
  background: #496052;
  flex: 1;
}
.process-list h3 {
  margin-top: 20px;
  font-size: 19px;
  line-height: 1.45;
}
.process-list p {
  margin-top: 12px;
  color: #c0d0c5;
  font-size: 14px;
  line-height: 1.85;
}
.ownership-note {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid #496052;
  margin-top: 40px;
  padding-top: 24px;
  color: #d2dfd5;
  font-size: 13px;
}
.ownership-note > img {
  filter: brightness(0) invert(1);
  flex: 0 0 22px;
}
.pricing-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.featured-plan {
  border-top: 3px solid var(--blue);
  padding-top: 30px;
  background: #f7f9ff;
}
.premium-plan {
  border-top: 3px solid var(--green);
  padding-top: 30px;
}
.plan-top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: end;
}
.plan-kicker {
  margin-bottom: 10px;
  font-size: 10px;
}
.premium-plan .plan-kicker {
  color: var(--green);
}
.plan h3 {
  font-size: 25px;
}
.price {
  flex-shrink: 0;
}
.price strong {
  display: block;
  font-size: 39px;
  line-height: 1.2;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.price span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}
.plan-description {
  margin-top: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
  min-height: 99px;
}
.plan-features {
  list-style: none;
  margin: 24px 0 30px;
  display: grid;
  gap: 20px;
}
.plan-features li {
  position: relative;
  padding-left: 27px;
}
.plan-features li::before,
.audit-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  background: url("./assets/icons/check.svg") center/contain no-repeat;
}
.plan-features strong {
  display: block;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.6;
}
.plan-features span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.plan > .button {
  margin-top: auto;
}
.included-setup {
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.setup-heading {
  display: flex;
  align-items: start;
  gap: 40px;
  justify-content: space-between;
}
.setup-heading h3 {
  font-size: 22px;
  flex: 1;
}
.setup-heading > p {
  flex: 1;
  font-size: 13px;
  color: var(--muted);
  max-width: 560px;
}
.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 30px;
}
.mini-number {
  font-size: 12px;
  font-weight: 750;
  color: var(--green);
  display: block;
  margin-bottom: 10px;
}
.setup-grid p,
.scope-grid p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.85;
}
.scope-details {
  border-block: 1px solid var(--line);
  margin-top: 32px;
}
.scope-details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 25px;
}
.scope-grid h4 {
  font-size: 14px;
}
.checkup-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.checkup-offer > div:first-child {
  max-width: 700px;
}
.checkup-offer h3 {
  font-size: 22px;
}
.checkup-offer p:not(.plan-kicker):not(.price) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.85;
}
.checkup-offer strong {
  font-weight: 650;
}
.checkup-action {
  flex: 0 0 220px;
}
.checkup-action .price strong {
  font-size: 32px;
}
.checkup-action .text-link {
  margin-top: 8px;
}
.pricing-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
  max-width: 980px;
  margin-top: 22px;
}
.faq-section {
  background: #f8faf8;
  border-block: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 72px;
}
.faq-layout .section-intro {
  margin-top: 22px;
  font-size: 15px;
}
.faq-row {
  border-bottom: 1px solid var(--line);
}
.faq-row:first-child {
  border-top: 1px solid var(--line);
}
.faq-row summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  list-style: none;
  font-size: 16px;
  font-weight: 650;
}
.faq-row summary img,
.scope-details summary img {
  flex: 0 0 20px;
  transition: transform 0.16s;
}
.faq-row[open] summary img,
.scope-details[open] summary img {
  transform: rotate(45deg);
}
.faq-row summary:hover,
.scope-details summary:hover {
  color: var(--blue);
}
.faq-row > div {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  padding: 0 42px 24px 0;
}
.faq-row .inline-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
}
.audit-section {
  background: var(--soft);
}
.audit-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 90px;
}
.audit-copy {
  padding-top: 22px;
}
.audit-copy > p:not(.section-label) {
  color: var(--muted);
  margin-top: 24px;
  max-width: 400px;
}
.audit-points {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.audit-points li {
  position: relative;
  padding-left: 27px;
  font-size: 14px;
}
.audit-copy .tool-disclosure {
  font-size: 13px;
  line-height: 1.85;
}
.audit-copy > .inline-link {
  display: inline-block;
  font-size: 12px;
  margin-top: 16px;
}
.audit-tool {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-width: 0;
}
.audit-tool fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.tool-title {
  font-size: 22px;
  font-weight: 650;
  line-height: 1.4;
  padding: 0;
}
.tool-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
#check-questions {
  margin: 8px 0 28px;
}
.audit-tool .check-question {
  padding-top: 25px;
}
.check-question legend {
  float: left;
  width: 100%;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
  margin-bottom: 12px;
  padding: 0;
}
.answer-options {
  clear: both;
  display: flex;
  gap: 8px;
}
.answer-option {
  flex: 1;
  min-width: 0;
}
.answer-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.answer-option span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 9px 8px;
  border: 1px solid #becbc3;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 550;
  cursor: pointer;
}
.answer-option input:checked + span {
  background: #edf2ff;
  color: #183eae;
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
  font-weight: 750;
}
.answer-option input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.answer-option:hover span {
  border-color: var(--blue);
}
.check-question.has-error .answer-option span {
  border-color: #aa3535;
}
.form-error {
  color: #a22b2b;
  font-size: 13px;
  margin-bottom: 16px;
}
.audit-result {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 30px;
  scroll-margin-top: 110px;
}
.audit-result h3 {
  font-size: 22px;
}
#result-summary {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}
#result-list {
  list-style: none;
  counter-reset: priorities;
  display: grid;
  gap: 22px;
  margin-top: 24px;
}
#result-list li {
  padding-left: 28px;
  position: relative;
  counter-increment: priorities;
}
#result-list li::before {
  content: counter(priorities, decimal-leading-zero);
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
}
#result-list h4 {
  font-size: 14px;
}
#result-list p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}
.result-caveat {
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
}
.result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 24px;
}
.result-actions .button {
  font-size: 13px;
  padding: 12px 14px;
  min-height: 46px;
  gap: 10px;
}
.no-script {
  border-left: 3px solid var(--blue);
  padding: 12px;
  margin-bottom: 20px;
  font-size: 14px;
}
.contact-section {
  background: #fff;
}
.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.contact-layout > div:first-child {
  max-width: 630px;
}
.contact-layout > div > p:not(.section-label) {
  margin-top: 24px;
  color: var(--muted);
  max-width: 540px;
}
.contact-action {
  flex: 0 0 310px;
}
.contact-action > .button {
  width: 100%;
  justify-content: space-between;
}
.contact-address {
  display: block;
  color: var(--blue);
  text-align: center;
  font-size: 17px;
  margin-top: 20px;
  overflow-wrap: anywhere;
}
.contact-address:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-layout .contact-action > p {
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
}
.site-footer {
  background: #15201b;
  color: #fff;
  padding: 44px 0 25px;
}
.footer-top {
  display: flex;
  gap: 36px;
  justify-content: space-between;
  align-items: start;
}
.footer-top p {
  color: #b8c7be;
  font-size: 13px;
  margin-top: 13px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 6px 26px;
  font-size: 13px;
}
.footer-links a {
  display: inline-block;
  padding: 10px 0;
}
.footer-links a:hover {
  color: #b3cbff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #415247;
  margin-top: 35px;
  padding-top: 22px;
  font-size: 12px;
  color: #b8c7be;
}
.image-note {
  font-size: 11px;
  color: #aebfb3;
  margin-top: 12px;
}
.document-main {
  padding: 64px 0 88px;
  min-height: 65svh;
}
.document-main .container {
  max-width: 900px;
}
.document-main h1 {
  font-size: 42px;
}
.document-main h2 {
  font-size: 24px;
  margin-top: 36px;
}
.document-main p,
.document-main ul {
  color: var(--muted);
  margin-top: 18px;
}
.document-main ul {
  padding-left: 22px;
}
.document-main li + li {
  margin-top: 12px;
}
.document-main .button {
  margin-top: 32px;
}
@media (min-width: 1700px) {
  .hero {
    height: min(650px, calc(100svh - 200px));
  }
}
@media (max-width: 1120px) {
  :root {
    --gutter: 32px;
  }
  .header-inner {
    gap: 24px;
  }
  .nav-links {
    gap: 20px;
    font-size: 13px;
  }
  .brand {
    font-size: 24px;
  }
  h1 {
    font-size: 56px;
  }
  h2 {
    font-size: 36px;
  }
  .section {
    padding: 72px 0;
  }
  .section-heading {
    gap: 36px;
  }
  .section-heading > .section-intro {
    flex-basis: 330px;
    font-size: 14px;
  }
  .trust-item {
    padding: 0 18px;
    gap: 12px;
  }
  .trust-item h2 {
    font-size: 14px;
  }
  .services-layout {
    gap: 38px;
  }
  .service-title {
    font-size: 18px;
  }
  .service-row summary {
    padding: 20px 0;
  }
  .plan {
    padding: 26px;
  }
  .plan-top {
    display: block;
  }
  .plan-top .price {
    margin-top: 20px;
  }
  .price strong,
  .price span {
    display: inline;
  }
  .price span {
    margin-left: 8px;
  }
  .process-list {
    gap: 24px;
  }
  .process-list h3 {
    font-size: 17px;
  }
  .faq-layout,
  .audit-layout {
    gap: 48px;
  }
  .audit-tool {
    padding: 26px;
  }
}
@media (max-width: 840px) {
  :root {
    --header-height: 72px;
  }
  .nav-links {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav summary {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
  }
  .mobile-nav[open] summary {
    background: var(--soft);
  }
  .mobile-nav nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-height);
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 18px #14221a0b;
    padding: 14px var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
  }
  .mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
  }
  .hero {
    min-height: 480px;
    height: min(600px, calc(100svh - 150px));
    background-position: 63% center;
  }
  .hero-inner {
    background: linear-gradient(0deg, #101c17e8, #101c1780 70%, #101c1728);
  }
  h1 {
    font-size: 48px;
  }
  .hero-copy {
    font-size: 18px;
    max-width: 520px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 20px 0;
    gap: 18px;
  }
  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .trust-item h2 {
    font-size: 15px;
  }
  .section-heading {
    display: block;
  }
  .section-heading .section-intro {
    margin-top: 22px;
    max-width: 560px;
    font-size: 15px;
  }
  .services-layout {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 30px;
  }
  .service-photo {
    aspect-ratio: 1.5;
    max-height: 440px;
  }
  .service-title {
    font-size: 20px;
  }
  .service-row summary {
    padding: 24px 0;
  }
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
  .process-list h3 {
    font-size: 19px;
  }
  .pricing-list {
    gap: 16px;
  }
  .plan {
    padding: 22px;
  }
  .plan h3 {
    font-size: 22px;
  }
  .plan-description {
    min-height: 130px;
  }
  .plan > .button {
    font-size: 13px;
    padding-inline: 14px;
    gap: 12px;
  }
  .setup-heading {
    display: block;
  }
  .setup-heading > p {
    margin-top: 14px;
  }
  .setup-grid,
  .scope-grid {
    gap: 24px;
  }
  .checkup-offer {
    gap: 30px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-layout .section-intro {
    margin-top: 18px;
  }
  .faq-layout .wide-break {
    display: none;
  }
  .audit-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .audit-copy {
    padding-top: 0;
  }
  .audit-copy > p:not(.section-label) {
    max-width: 580px;
  }
  .contact-layout {
    gap: 36px;
  }
  .contact-action {
    flex-basis: 280px;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .footer-links {
    justify-content: start;
  }
}
@media (max-width: 600px) {
  :root {
    --gutter: 24px;
    --header-height: 68px;
  }
  .header-inner {
    gap: 10px;
  }
  .brand {
    font-size: 21px;
  }
  .header-cta {
    font-size: 12px;
    padding: 10px 12px;
    gap: 8px;
  }
  .header-cta img {
    display: none;
  }
  .mobile-nav summary {
    width: 40px;
    height: 44px;
  }
  .hero {
    min-height: 465px;
    height: min(570px, calc(100svh - 125px));
    background-position: 65% center;
  }
  .hero-inner {
    justify-content: end;
    padding-top: 36px;
    padding-bottom: 90px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  .hero-copy {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 23px;
  }
  .hero-actions {
    margin-top: 26px;
    gap: 10px;
  }
  .hero-actions .button {
    min-height: 50px;
    padding: 13px 16px;
    font-size: 13px;
    gap: 10px;
  }
  .hero-focus {
    gap: 15px;
    bottom: 29px;
    font-size: 11px;
  }
  .hero-focus li + li::before {
    margin-right: 15px;
  }
  .section {
    padding: 54px 0;
  }
  .section-label {
    margin-bottom: 16px;
    font-size: 10px;
  }
  .wide-break {
    display: none;
  }
  .service-photo {
    aspect-ratio: 1.2;
  }
  .service-row summary {
    gap: 11px;
    grid-template-columns: 20px 1fr 20px;
  }
  .service-title {
    font-size: 18px;
  }
  .service-description {
    font-size: 13px;
  }
  .service-expanded {
    padding-left: 31px;
    padding-right: 16px;
    font-size: 13px;
  }
  .process-list {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
  }
  .step-number {
    font-size: 26px;
  }
  .process-list h3 {
    margin-top: 14px;
  }
  .process-list p {
    margin-top: 8px;
  }
  .ownership-note {
    align-items: start;
    margin-top: 32px;
    font-size: 12px;
  }
  .pricing-list {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
  }
  .plan {
    padding: 24px;
  }
  .plan-top .price {
    margin-top: 18px;
  }
  .price strong {
    font-size: 38px;
  }
  .plan h3 {
    font-size: 25px;
  }
  .plan-description {
    min-height: 0;
    font-size: 14px;
    margin-top: 20px;
    padding-bottom: 22px;
  }
  .plan-features {
    gap: 18px;
    margin-top: 22px;
  }
  .plan-features strong {
    font-size: 14px;
  }
  .plan > .button {
    min-height: 48px;
    font-size: 14px;
  }
  .setup-grid,
  .scope-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .setup-grid > div {
    position: relative;
    padding-left: 32px;
  }
  .mini-number {
    position: absolute;
    left: 0;
    top: 3px;
  }
  .scope-details summary {
    font-size: 13px;
    gap: 16px;
  }
  .checkup-offer {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-block: 26px;
  }
  .checkup-action {
    flex-basis: auto;
  }
  .checkup-action .text-link {
    display: flex;
    justify-content: space-between;
  }
  .faq-row summary {
    font-size: 15px;
    padding-block: 21px;
    gap: 18px;
  }
  .faq-row > div {
    padding-right: 12px;
    font-size: 13px;
  }
  .audit-copy > p:not(.section-label) {
    font-size: 15px;
    margin-top: 20px;
  }
  .audit-copy > p.tool-disclosure {
    font-size: 12px;
  }
  .audit-points {
    margin-top: 22px;
  }
  .audit-tool {
    padding: 24px 20px;
  }
  .tool-title {
    font-size: 21px;
  }
  .check-question legend {
    font-size: 13px;
  }
  .answer-option span {
    font-size: 12px;
  }
  .audit-tool .button-full {
    font-size: 13px;
    padding-inline: 14px;
  }
  .contact-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .contact-action {
    flex-basis: auto;
  }
  .contact-layout > div > p:not(.section-label) {
    font-size: 15px;
  }
  .contact-layout .contact-action > p {
    font-size: 12px;
  }
  .contact-address {
    font-size: 16px;
  }
  .footer-links {
    gap: 6px 22px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    margin-top: 26px;
  }
  .image-note {
    font-size: 10px;
  }
  .document-main {
    padding: 42px 0 60px;
  }
  .document-main h1 {
    font-size: 34px;
  }
}
@media (max-width: 360px) {
  :root {
    --gutter: 18px;
  }
  .brand {
    font-size: 18px;
  }
  .header-inner {
    gap: 8px;
  }
  .header-cta {
    padding: 10px;
    font-size: 11px;
  }
  h1 {
    font-size: 35px;
  }
  .hero-copy {
    font-size: 14px;
  }
  .hero-actions .button {
    padding: 12px;
    font-size: 12px;
  }
  .hero-actions .button img {
    width: 17px;
    flex-basis: 17px;
  }
  .hero-focus {
    gap: 10px;
    font-size: 10px;
  }
  .hero-focus li + li::before {
    margin-right: 10px;
  }
  .plan {
    padding: 22px 18px;
  }
  .audit-tool {
    padding: 22px 16px;
  }
}
@media (max-height: 650px) and (min-width: 601px) {
  .hero {
    min-height: 380px;
    height: auto;
  }
  .hero-inner {
    padding-top: 36px;
    padding-bottom: 84px;
  }
  h1 {
    font-size: 44px;
  }
  .hero-copy {
    font-size: 16px;
    margin-top: 16px;
    line-height: 1.6;
  }
  .hero-actions {
    margin-top: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .hero,
  .trust-strip,
  .services-section,
  .process-section,
  .pricing-section,
  .faq-section,
  .audit-copy,
  #check-fields,
  .contact-section,
  .site-footer,
  .result-actions,
  .skip-link {
    display: none !important;
  }
  .audit-layout {
    display: block;
  }
  .audit-section {
    padding: 0;
    background: #fff;
  }
  .audit-tool,
  .audit-result {
    border: 0;
    padding: 0;
    margin: 0;
  }
  .audit-result li {
    break-inside: avoid;
  }
}
