:root {
  --ink: #15202b;
  --muted: #52606d;
  --soft: #f6f8fa;
  --white: #ffffff;
  --navy: #071722;
  --navy-2: #0b2231;
  --line: rgba(20, 38, 51, 0.14);
  --line-dark: rgba(214, 232, 239, 0.16);
  --teal: #17a7ae;
  --teal-bright: #22c4cc;
  --orange: #e8782f;
  --green: #79b66a;
  --blue: #267eb3;
  --shadow: 0 22px 70px rgba(8, 24, 35, 0.12);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body::selection {
  color: var(--white);
  background: var(--teal);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 20px;
  z-index: 50;
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal);
  border-radius: 4px;
}

.skip-link:focus {
  top: 14px;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  width: min(100% - 64px, 1320px);
  margin: 0 auto;
  padding: 27px 0;
  color: var(--white);
}

.site-header.is-open {
  z-index: 30;
}

.brand {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  font-size: 15px;
  font-weight: 760;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 31px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 780;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.text-link:focus-visible,
.audit-form input:focus-visible,
.audit-form textarea:focus-visible {
  outline: 3px solid rgba(34, 196, 204, 0.56);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(90deg, #0f8f99, #18b3b8);
  box-shadow: 0 14px 30px rgba(23, 167, 174, 0.22);
}

.button-ghost,
.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.02);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 920px;
  padding: 128px min(64px, 6vw) 54px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 52% 22%, rgba(37, 181, 190, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(7, 23, 34, 0.96), rgba(7, 23, 34, 1));
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 58%, rgba(255, 255, 255, 0.04) 59%, transparent 61%);
  background-size: 34px 34px, 34px 34px, 100% 100%;
  transform: perspective(680px) rotateX(42deg) translateY(-190px) scale(1.26);
  transform-origin: top center;
}

.map-shell,
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin-inline: auto;
}

.map-shell {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 430px;
  margin-top: 8px;
}

.hierarchy-map {
  position: relative;
  min-height: 430px;
  width: min(100%, 1120px);
  margin-inline: auto;
}

.map-controls {
  display: flex;
  gap: 18px;
  margin-left: 16px;
  color: rgba(255, 255, 255, 0.33);
  font-size: 12px;
}

.map-controls button {
  padding: 0;
  color: rgba(255, 255, 255, 0.3);
  background: transparent;
  border: 0;
  font: inherit;
}

.node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 158px;
  min-height: 58px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(176, 215, 228, 0.45);
  border-radius: 5px;
  background: rgba(15, 40, 55, 0.86);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
}

.node::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  vertical-align: -4px;
  border: 1px solid rgba(209, 234, 241, 0.78);
  border-radius: 2px;
}

.node strong {
  display: inline;
  font-size: 12px;
  font-weight: 760;
}

.node span {
  display: block;
  margin-top: 3px;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
}

.parent-node {
  width: 180px;
}

.sub-node {
  width: 160px;
  min-height: 52px;
  border-color: rgba(176, 215, 228, 0.28);
}

.map-lines {
  position: absolute;
  inset: 36px 0 0;
  width: 100%;
  height: calc(100% - 36px);
  overflow: visible;
}

.map-lines path {
  fill: none;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.map-lines .rollup {
  stroke: rgba(204, 231, 238, 0.58);
}

.map-lines .ownership-line {
  stroke: var(--teal-bright);
}

.map-lines .child-line {
  stroke: rgba(204, 231, 238, 0.45);
  stroke-dasharray: 5 5;
}

.hero-copy {
  max-width: 620px;
  margin-top: -4px;
  margin-left: max(calc((100vw - 1320px) / 2), 0px);
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(46px, 5.5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.hero-copy p {
  max-width: 610px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.43;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.section,
.audit-outcome {
  width: min(100% - 110px, 1260px);
  margin-inline: auto;
}

.section {
  padding: 58px 0;
}

.section-intro h2,
.audit-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(31px, 3.5vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-intro p,
.audit-copy p,
.final-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.symptoms {
  padding-top: 58px;
}

.symptom-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 42px;
}

.symptom-grid article,
.fit-grid article {
  min-height: 184px;
  padding: 0 40px 0 0;
  border-right: 1px solid var(--line);
}

.symptom-grid article + article,
.fit-grid article + article {
  padding-left: 40px;
}

.symptom-grid article:last-child,
.fit-grid article:last-child {
  border-right: 0;
}

.line-icon {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  margin-bottom: 21px;
  color: var(--teal);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.line-icon.hierarchy::before {
  inset: 6px 9px 22px;
  border: 2px solid currentColor;
}

.line-icon.hierarchy::after {
  left: 3px;
  right: 3px;
  bottom: 5px;
  height: 15px;
  border: 2px solid currentColor;
  box-shadow: 16px 0 0 -1px var(--white), 16px 0 0 1px currentColor;
}

.line-icon.owner {
  color: var(--orange);
}

.line-icon.owner::before {
  left: 11px;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon.owner::after {
  left: 5px;
  bottom: 3px;
  width: 30px;
  height: 18px;
  border: 2px solid currentColor;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: 0;
}

.line-icon.calendar::before {
  inset: 7px 4px 4px;
  border: 2px solid currentColor;
}

.line-icon.calendar::after {
  left: 4px;
  right: 4px;
  top: 15px;
  border-top: 2px solid currentColor;
}

.line-icon.report {
  color: var(--orange);
}

.line-icon.report::before {
  left: 6px;
  bottom: 5px;
  width: 4px;
  height: 14px;
  border-left: 2px solid currentColor;
  box-shadow: 10px -7px 0 0 currentColor, 20px -17px 0 0 currentColor;
}

.line-icon.report::after {
  left: 2px;
  right: 3px;
  bottom: 3px;
  border-top: 2px solid currentColor;
}

.line-icon.expand::before {
  inset: 6px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.line-icon.expand::after {
  inset: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.line-icon.people::before {
  left: 2px;
  top: 8px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 17px 0 0 -1px var(--white), 17px 0 0 1px currentColor;
}

.line-icon.people::after {
  left: 0;
  bottom: 4px;
  width: 40px;
  height: 15px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.line-icon.warn {
  color: var(--orange);
}

.line-icon.warn::before {
  left: 4px;
  top: 2px;
  width: 30px;
  height: 30px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(135deg);
}

.line-icon.warn::after {
  left: 19px;
  top: 15px;
  height: 12px;
  border-left: 2px solid currentColor;
}

.symptom-grid h3,
.fit-grid h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.symptom-grid p,
.fit-grid p {
  margin: 0;
  color: #394754;
  font-size: 15px;
}

.audit-section {
  display: grid;
  grid-template-columns: 0.88fr 1fr 0.5fr;
  gap: 70px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 54px max(55px, calc((100vw - 1260px) / 2)) 42px;
  background: linear-gradient(90deg, #f7f8f9, #ffffff 55%, #f6f7f8);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #22303b;
  font-size: 15px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 6px;
  border-left: 2px solid #1f3643;
  border-bottom: 2px solid #1f3643;
  transform: rotate(-45deg);
}

.inline-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.text-link {
  color: var(--teal);
  font-weight: 720;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  margin-left: 16px;
}

.audit-diagram {
  display: grid;
  justify-items: center;
  gap: 28px;
  position: relative;
  padding: 0 10px;
}

.audit-mobile-flow {
  display: none;
}

.audit-diagram::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 61px;
  height: 222px;
  border-left: 1px solid rgba(44, 56, 64, 0.26);
}

.tree-node {
  display: grid;
  place-items: center;
  min-width: 150px;
  min-height: 52px;
  padding: 13px 18px;
  color: #1e2c37;
  border: 1px solid rgba(37, 50, 60, 0.35);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-align: center;
}

.tree-parent {
  min-width: 210px;
}

.tree-node.dashed {
  border-style: dashed;
}

.tree-row {
  display: grid;
  gap: 42px;
  width: 100%;
  justify-content: center;
}

.tree-row.two {
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  max-width: 420px;
}

.tree-row.three {
  grid-template-columns: repeat(3, minmax(125px, 1fr));
  max-width: 560px;
}

.audit-key {
  display: grid;
  gap: 48px;
  color: #1f303d;
  font-size: 15px;
}

.audit-key p {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
}

.audit-key span {
  width: 58px;
  border-top: 1px dashed rgba(42, 53, 61, 0.45);
}

.audit-outcome {
  margin-top: -5px;
  margin-bottom: 56px;
  color: #1c2b36;
  font-size: 17px;
  text-align: center;
}

.model {
  padding-top: 0;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--line);
}

.offer-cards article {
  min-height: 190px;
  padding: 26px 28px;
  background: var(--white);
}

.offer-cards span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.offer-cards h3 {
  margin: 0;
  color: #15202b;
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.offer-cards p {
  margin: 12px 0 0;
  color: #4a5966;
  font-size: 15px;
}

.model-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
}

.model-mobile-cards {
  display: none;
}

.model-mobile-title {
  display: none;
}

.model-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: #1b2833;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.model-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.model-table th,
.model-table td {
  padding: 17px 20px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}

.model-table thead th {
  font-weight: 760;
  text-align: center;
  border-top-width: 4px;
}

.model-table thead th:nth-child(2) {
  border-top-color: var(--teal);
}

.model-table thead th:nth-child(3) {
  border-top-color: var(--orange);
}

.model-table thead th:nth-child(4) {
  border-top-color: var(--green);
}

.model-table thead th:nth-child(5) {
  border-top-color: var(--blue);
}

.model-table tbody th {
  width: 180px;
  font-weight: 760;
}

.fit {
  padding-top: 0;
}

.fit-grid {
  margin-top: 42px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: center;
  padding: 20px max(55px, calc((100vw - 1160px) / 2)) 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(23, 167, 174, 0.15), transparent 30%),
    var(--navy);
}

.final-cta h2 {
  max-width: 540px;
  color: var(--white);
}

.final-cta p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.76);
}

.final-actions {
  display: flex;
  gap: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 70px;
  align-items: start;
  padding: 62px max(55px, calc((100vw - 1160px) / 2)) 72px;
  background: #f6f8fa;
}

.contact-copy h2 {
  max-width: 600px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.contact-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  position: relative;
  padding-left: 28px;
  color: #22303b;
  font-size: 16px;
}

.contact-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.audit-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(20, 38, 51, 0.13);
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.audit-form label {
  display: grid;
  gap: 8px;
}

.audit-form span {
  color: #24323d;
  font-size: 13px;
  font-weight: 800;
}

.audit-form input,
.audit-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(20, 38, 51, 0.2);
  border-radius: 3px;
  background: #fbfcfd;
  font: 15px/1.35 var(--sans);
}

.audit-form textarea {
  min-height: 118px;
  resize: vertical;
}

.audit-form button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1320px) {
  .site-header {
    width: min(100% - 36px, 1320px);
    grid-template-columns: auto 1fr;
  }

  .header-cta {
    display: none;
  }

  .hierarchy-map {
    width: 1120px;
    min-height: 390px;
    margin-bottom: -74px;
    transform: scale(0.9);
    transform-origin: top center;
  }

  .hero-copy {
    margin-left: auto;
  }
}

@media (max-width: 1180px) {

  .audit-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .audit-key {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 32px;
  }

  .symptom-grid,
  .fit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }

  .symptom-grid article:nth-child(2n),
  .fit-grid article:nth-child(2n) {
    border-right: 0;
  }

  .offer-cards,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    padding: 18px 0;
  }

  .brand {
    font-size: 23px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 38px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 3px;
    background: transparent;
  }

  .nav-toggle span:not(.visually-hidden),
  .nav-toggle span:not(.visually-hidden)::before,
  .nav-toggle span:not(.visually-hidden)::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .nav-toggle span:not(.visually-hidden) {
    position: relative;
  }

  .nav-toggle span:not(.visually-hidden)::before,
  .nav-toggle span:not(.visually-hidden)::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle span:not(.visually-hidden)::before {
    top: -7px;
  }

  .nav-toggle span:not(.visually-hidden)::after {
    top: 7px;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(7, 23, 34, 0.94);
  }

  .site-nav.is-open {
    display: flex;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    min-height: 0;
    padding: 88px 18px 46px;
  }

  .hierarchy-map {
    width: 760px;
    min-height: 360px;
    left: auto;
    transform: scale(0.72);
    transform-origin: top left;
    margin-bottom: -104px;
  }

  .map-shell {
    min-height: 300px;
  }

  .node {
    width: 142px;
    min-height: 52px;
    padding: 10px 11px;
  }

  .node strong {
    font-size: 11px;
  }

  .node span {
    font-size: 10px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11.5vw, 54px);
    letter-spacing: -0.045em;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .inline-actions,
  .final-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .section,
  .audit-outcome {
    width: min(100% - 36px, 1260px);
  }

  .section {
    padding: 44px 0;
  }

  .section-intro h2,
  .audit-copy h2,
  .final-cta h2 {
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .section-intro p,
  .audit-copy p,
  .final-cta p {
    font-size: 16px;
    line-height: 1.48;
  }

  .symptom-grid,
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .symptom-grid article,
  .fit-grid article,
  .symptom-grid article + article,
  .fit-grid article + article {
    min-height: auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #ffffff;
  }

  .line-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
  }

  .audit-section {
    gap: 28px;
    padding: 42px 18px 34px;
    overflow: hidden;
  }

  .audit-diagram {
    display: none;
  }

  .audit-mobile-flow {
    display: grid;
    gap: 12px;
    position: relative;
    padding: 6px 0 0 22px;
  }

  .audit-mobile-flow::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 76px;
    left: 8px;
    border-left: 1px dashed rgba(37, 50, 60, 0.34);
  }

  .audit-mobile-flow div {
    position: relative;
    padding: 13px 14px;
    color: #1e2c37;
    border: 1px solid rgba(37, 50, 60, 0.22);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 720;
  }

  .audit-mobile-flow div::before {
    content: "";
    position: absolute;
    left: -19px;
    top: 19px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--teal);
    border-radius: 50%;
    background: #f7f8f9;
  }

  .audit-mobile-flow p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
  }

  .audit-key {
    display: none;
  }

  .offer-cards {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .offer-cards article {
    min-height: auto;
    padding: 20px;
  }

  .offer-cards span {
    margin-bottom: 14px;
  }

  .offer-cards h3 {
    font-size: 18px;
  }

  .model-mobile-title {
    display: block;
    margin: 30px 0 0;
    color: #15202b;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .model-table-wrap {
    display: none;
  }

  .model-mobile-cards {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .model-mobile-cards article {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fbfcfd;
  }

  .model-mobile-cards h3 {
    margin: 0 0 16px;
    color: var(--teal);
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .model-mobile-cards dl {
    display: grid;
    gap: 5px;
    margin: 0;
  }

  .model-mobile-cards dt {
    margin-top: 8px;
    color: #192733;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .model-mobile-cards dt:first-child {
    margin-top: 0;
  }

  .model-mobile-cards dd {
    margin: 0;
    color: #394754;
    font-size: 15px;
    line-height: 1.42;
  }

  .fit {
    padding-top: 12px;
  }

  .audit-outcome {
    margin-top: 22px;
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 1.45;
  }

  .final-cta h2,
  .contact-copy h2 {
    max-width: 100%;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 34px 18px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 18px 50px;
  }

  .contact-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .contact-copy p,
  .contact-copy li {
    font-size: 16px;
  }

  .audit-form {
    padding: 20px;
  }
}

@media (max-width: 420px) {
  .hierarchy-map {
    transform: scale(0.46);
    margin-bottom: -176px;
  }

  .map-shell {
    min-height: 206px;
  }
}

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