@font-face {
  font-family: "Inter";
  src: url("/fonts/InterVariable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  /* Calm premium trades — design-system aligned (2026-07-22 visual research) */
  --ink: #0e1726;
  --ink-deep: #07111f;
  --navy: #0b1f33;
  --paper: #ffffff;
  --paper-soft: #f5f7fa;
  --line: #d8e2ec;
  --muted: #3d4f63;
  --blue: #1f6feb;
  --blue-hover: #3b82f6;
  --signal: #0d9488;
  --amber: #b45309;
  --amber-soft: #fef3c7;
  /* Legacy aliases: demote neon lime → signal/amber roles */
  --lime: var(--signal);
  --lime-deep: #0f766e;
  --text-on-ink: #f4f7fb;
  --text-on-ink-muted: #c5d0dc;
  --shadow: 0 18px 48px rgba(3, 16, 29, 0.12);
  --radius: 10px;
  --radius-card: 12px;
  --container: 1160px;
  --measure: 65ch;
  --lh-body: 1.62;
  --lh-display: 1.12;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.home-v2 {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.visually-hidden {
  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: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  color: var(--ink);
  background: rgba(245, 247, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(3, 16, 29, 0.28);
}

.site-header__inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a:not(.button) {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle > span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 820;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--nav {
  min-height: 39px;
  padding: 8px 13px;
  color: var(--paper);
  background: var(--blue);
  font-size: 0.83rem;
}

.button--nav:hover {
  color: var(--paper);
  background: var(--blue-hover);
}

/* Primary CTA: blue (lime class kept for HTML compat, no neon) */
.button--lime {
  color: var(--paper);
  background: var(--blue);
}

.button--lime:hover {
  background: var(--blue-hover);
}

.button--ink {
  color: var(--paper);
  background: var(--navy);
}

.button--ink:hover {
  background: var(--blue);
}

.section--ink {
  color: var(--text-on-ink);
  background: var(--navy);
}

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

.eyebrow {
  margin-bottom: 15px;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 106px) 0 30px;
  color: var(--text-on-ink);
  background:
    radial-gradient(circle at 78% 14%, rgba(31, 111, 235, 0.18), transparent 34%),
    linear-gradient(145deg, var(--navy) 0%, #0f2740 58%, var(--ink-deep) 100%);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.91fr);
  column-gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.hero__content {
  padding-bottom: 14px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 23px;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: var(--lh-display);
}

.hero__lede {
  max-width: 620px;
  color: var(--text-on-ink-muted);
  font-size: clamp(1.04rem, 1.45vw, 1.18rem);
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 21px;
  margin-top: 31px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.91rem;
  font-weight: 780;
  line-height: 1.5;
  text-decoration: none;
}

.text-link--light {
  color: var(--paper);
}

.text-link:hover {
  color: var(--blue);
}

.hero__proof {
  margin-top: 26px;
  color: var(--text-on-ink-muted);
  font-size: 0.85rem;
  font-weight: 650;
}

.hero__proof a {
  color: inherit;
  text-underline-offset: 0.18em;
}

.hero__proof a:hover {
  color: var(--text-on-ink);
}

.hero__visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #173753;
  box-shadow: var(--shadow);
}

.hero__visual picture {
  display: block;
  height: 100%;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: 43% center;
}

.call-signal {
  position: absolute;
  right: 19px;
  bottom: 19px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 9px;
  align-items: center;
  min-width: 196px;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--paper);
  border-left: 5px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 12px 26px rgba(3, 16, 29, 0.16);
  font-size: 0.71rem;
  font-weight: 720;
  line-height: 1.25;
}

.call-signal strong {
  grid-column: 2;
  margin-top: 2px;
  font-size: 0.86rem;
  font-weight: 750;
}

.call-signal__marker {
  grid-row: 1 / 3;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber);
}

.ownership-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 29px 0 0;
  margin: clamp(36px, 6vw, 76px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  list-style: none;
}

.ownership-rail li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-right: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.89rem;
  font-weight: 720;
}

.ownership-rail li + li {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.ownership-rail span {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(330px, 0.76fr);
  gap: clamp(40px, 10vw, 145px);
  align-items: center;
}

.split-section h2,
.section-heading h2,
.fit-check h2,
.faq h2,
.closing h2,
.diagnostic h2 {
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.split-section__copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.fit-check__layout > div > p:not(.eyebrow) {
  max-width: 630px;
  color: var(--muted);
  font-size: 1.05rem;
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 39px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.process-list strong {
  color: var(--ink);
  font-weight: 840;
}

.process-list__number {
  padding-top: 2px;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.worksheet {
  position: relative;
  margin: 0;
}

.worksheet::before {
  position: absolute;
  z-index: 0;
  top: -16px;
  left: -16px;
  width: 44%;
  height: 72%;
  background: rgba(11, 31, 51, 0.12);
  border-radius: var(--radius-card);
  content: "";
}

.worksheet img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.87;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.worksheet picture {
  display: block;
}

.worksheet figcaption {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 26px);
  padding: 11px 14px;
  margin: -22px 0 0 auto;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.79rem;
  font-weight: 730;
}

.diagnostic {
  padding-top: clamp(75px, 9vw, 124px);
}

.diagnostic__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, 0.72fr);
  gap: 48px;
  align-items: end;
}

.diagnostic h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.diagnostic__offer {
  padding-bottom: 5px;
  border-bottom: 2px solid var(--signal);
}

.diagnostic__price {
  display: flex;
  align-items: flex-start;
  color: var(--text-on-ink);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.diagnostic__price span,
.pricing__amount span {
  margin-top: 0.1em;
  margin-right: 4px;
  font-size: 0.36em;
  letter-spacing: 0;
}

.diagnostic__name {
  margin-top: 17px;
  font-size: 1.04rem;
  font-weight: 820;
}

.diagnostic__summary {
  max-width: 440px;
  margin-top: 7px;
  color: var(--text-on-ink-muted);
  font-size: 0.91rem;
}

.diagnostic__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: clamp(46px, 7vw, 85px);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.diagnostic__steps article {
  padding-top: 23px;
}

.diagnostic__steps span {
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.diagnostic__steps h3 {
  margin: 12px 0 8px;
  font-size: 1.19rem;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.diagnostic__steps p {
  color: var(--text-on-ink-muted);
  font-size: 0.9rem;
}

.diagnostic__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 32px;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.diagnostic__footer > p {
  color: var(--text-on-ink-muted);
  font-size: 0.88rem;
  font-weight: 660;
}

.section-heading {
  max-width: 670px;
}

.pricing__primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  padding: clamp(28px, 4vw, 45px);
  margin-top: clamp(40px, 6vw, 68px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  outline: 2px solid rgba(31, 111, 235, 0.22);
  outline-offset: 0;
}

.pricing__label {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pricing__primary .pricing__label {
  color: var(--blue);
}

.pricing__primary h3 {
  margin-bottom: 7px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing__primary h3 + p {
  max-width: 545px;
  color: var(--muted);
  font-size: 0.91rem;
}

.pricing__amount {
  display: flex;
  align-items: flex-start;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.pricing__price-stack {
  min-width: 145px;
}

.pricing__price-stack .pricing__amount {
  margin: 0;
}

.pricing__cadence,
.pricing__monthly {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.pricing__primary .pricing__cadence {
  color: var(--muted);
}

.pricing__monthly {
  margin: -2px 0 11px;
  color: var(--blue);
}

.pricing__path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.pricing__path article {
  padding: 25px 26px 0 0;
}

.pricing__path article + article {
  padding-left: 27px;
  border-left: 1px solid var(--line);
}

.pricing__path h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
  font-weight: 830;
  letter-spacing: -0.04em;
}

.pricing__small-price {
  margin-bottom: 11px;
  font-size: 1.66rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.pricing__small-price span {
  color: var(--muted);
  font-size: 0.55em;
  letter-spacing: 0;
}

.pricing__path article > p:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.fit-check {
  color: var(--ink);
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fit-check__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(360px, 0.75fr);
  gap: clamp(44px, 10vw, 150px);
  align-items: start;
}

.fit-form {
  padding: clamp(24px, 4vw, 38px);
  background: var(--paper);
  border-top: 5px solid var(--amber);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 34px rgba(3, 16, 29, 0.09);
}

.fit-form__questions {
  padding: 0;
  margin: 0 0 25px;
}

.fit-form__legend {
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 820;
}

.check-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 620;
  cursor: pointer;
}

.check-option input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.fit-form .button {
  width: 100%;
}

.fit-form__result {
  min-height: 28px;
  margin-top: 15px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 680;
  border-left-color: var(--amber);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.73fr) minmax(420px, 0.94fr);
  gap: clamp(45px, 10vw, 150px);
  align-items: start;
}

.faq__items {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 790;
  list-style: none;
}

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

.faq summary::after {
  flex: 0 0 auto;
  color: var(--blue);
  content: "+";
  font-size: 1.45rem;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 630px;
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.closing {
  padding: clamp(74px, 10vw, 126px) 0;
}

.closing__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 840px;
}

.closing h2 {
  max-width: 760px;
  margin-bottom: 31px;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.site-footer {
  color: var(--text-on-ink-muted);
  background: var(--ink-deep);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 27px 0;
  font-size: 0.77rem;
}

.site-footer .brand {
  color: var(--paper);
}

.site-footer p {
  margin: 0;
}


.eyebrow--ink {
  color: var(--ink);
}

.deliverables {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverables::after {
  display: none;
  content: "";
}

.deliverables__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: clamp(34px, 8vw, 105px);
  align-items: end;
}

.deliverables__header h2 {
  max-width: 760px;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.deliverables__header > p {
  max-width: 510px;
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.deliverables__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(36px, 6vw, 56px);
  border-top: none;
}

.deliverables__grid article {
  padding: 22px 22px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px rgba(3, 16, 29, 0.05);
}

.deliverables__grid article + article {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.deliverables__grid span {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.deliverables__grid h3 {
  margin: 14px 0 9px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.deliverables__grid p {
  color: var(--muted);
  font-size: 0.91rem;
}

.deliverables__boundary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 22px;
  margin-top: 36px;
  color: var(--ink);
  background: var(--amber-soft);
  border: 1px solid rgba(180, 83, 9, 0.28);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
}

.deliverables__boundary strong {
  font-size: 0.98rem;
  font-weight: 750;
}

.deliverables__boundary p {
  color: var(--muted);
  font-size: 0.85rem;
}

.button--blue {
  color: var(--paper);
  background: var(--blue);
}

.button--blue:hover {
  background: var(--ink);
}

.fit-form__result:not(:empty) {
  min-height: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--amber);
  background: var(--paper-soft);
}

.fit-form[data-fit-tier="strong"] .fit-form__result {
  border-left-color: var(--signal);
  background: rgba(13, 148, 136, 0.1);
}

.fit-form__actions {
  display: grid;
  gap: 17px;
  margin-top: 17px;
}

.fit-form__actions[hidden] {
  display: none;
}

.fit-form__actions .button {
  width: 100%;
}

.fit-form__privacy {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 620;
}

.fit-form__demo-link {
  margin-top: 15px;
}

@keyframes home-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__content {
    animation: home-rise 560ms 80ms both;
  }

  .hero__visual {
    animation: home-rise 640ms 180ms both;
  }

  .ownership-rail {
    animation: home-rise 540ms 300ms both;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(3, 16, 29, 0.12);
    transform: translateY(-12px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .site-nav .button {
    width: 100%;
    margin-top: 15px;
  }

  .hero__layout,
  .split-section,
  .deliverables__header,
  .diagnostic__layout,
  .fit-check__layout,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .hero__layout {
    gap: 35px;
  }

  .hero__visual {
    min-height: min(95vw, 530px);
  }

  .hero__visual img {
    min-height: min(95vw, 530px);
  }

  .ownership-rail {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .ownership-rail li,
  .ownership-rail li + li {
    padding: 0;
    border: 0;
  }

  .worksheet {
    width: min(500px, calc(100% - 16px));
    margin-left: 16px;
  }

  .diagnostic__offer {
    width: min(100%, 500px);
  }

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

  .deliverables__grid article,
  .deliverables__grid article + article {
    padding: 23px 0;
    border-bottom: 1px solid rgba(7, 27, 47, 0.3);
    border-left: 0;
  }

  .deliverables__grid article:last-child {
    border-bottom: 0;
  }

  .deliverables__boundary {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing__primary {
    grid-template-columns: 1fr auto;
  }

  .pricing__primary .button {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .pricing__path article,
  .pricing__path article + article {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .pricing__path article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .hero {
    padding-top: 53px;
  }

  .hero h1 {
    font-size: clamp(2.58rem, 13.4vw, 4rem);
  }

  .hero__actions,
  .diagnostic__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .diagnostic__footer .button {
    width: 100%;
  }

  .text-link {
    width: max-content;
  }

  .call-signal {
    right: 12px;
    bottom: 12px;
  }

  .section {
    padding: 73px 0;
  }

  .worksheet::before {
    top: -12px;
    left: -12px;
  }

  .diagnostic__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .diagnostic__steps article {
    padding: 21px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .diagnostic__steps article:last-child {
    border-bottom: 0;
  }

  .diagnostic__footer {
    margin-top: 28px;
  }

  .pricing__primary {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .pricing__amount {
    order: -1;
  }

  .fit-check__layout,
  .faq__layout {
    gap: 34px;
  }

  .fit-form {
    padding: 23px 20px;
  }

  .faq summary {
    font-size: 0.97rem;
  }
}

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