:root {
  --ink: #222222;
  --body: #5c5c5c;
  --muted: #5c5c5c;
  --navy: #04384c;
  --navy-deep: #022d3d;
  --green: #137a52;
  --signal-green: #1f9c6c;
  --mint: #d9ebe3;
  --blue: #dce8ed;
  --neutral: #eef2f4;
  --line: #cfd9dd;
  --white: #ffffff;
  --shell: 1120px;
  --reading: 720px;
  --shadow: 0 18px 46px rgba(4, 56, 76, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--neutral);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
blockquote,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 700;
}

h1,
h2,
h3 {
  letter-spacing: -0.025em;
}

.workbench-shell,
.module-shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.narrow-copy,
.narrow-module-shell {
  max-width: var(--reading);
}

.workbench-header {
  border-bottom: 1px solid rgba(4, 56, 76, 0.16);
  background: rgba(255, 255, 255, 0.96);
}

.workbench-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.workbench-logo {
  width: 188px;
  height: auto;
}

.workbench-title {
  text-align: right;
  line-height: 1.45;
}

.workbench-title p {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.workbench-title span {
  color: var(--muted);
  font-size: 12px;
}

.workbench-intro {
  padding: 64px 0 56px;
  background: var(--white);
}

.workbench-kicker,
.section-label,
.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.workbench-intro h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 1.2;
}

.workbench-intro__lead {
  max-width: 780px;
  margin-bottom: 28px;
  color: var(--body);
  font-size: 17px;
}

.module-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 980px;
}

.module-index a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 6px 13px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.module-index a:hover,
.module-index a:focus-visible {
  border-color: var(--green);
  outline: 3px solid rgba(31, 156, 108, 0.22);
  outline-offset: 2px;
}

.module-index .module-index__demo {
  padding-inline: 18px;
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.catalog-note {
  margin: 24px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--signal-green);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.module-catalog {
  display: grid;
  gap: 26px;
  padding: 28px 0 64px;
}

.module-record {
  width: min(calc(100% - 48px), 1280px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #d7e0e3;
  background: var(--white);
  box-shadow: var(--shadow);
  scroll-margin-top: 16px;
}

.catalog-meta {
  display: grid;
  grid-template-columns: 88px 210px 96px minmax(0, 1fr);
  gap: 22px;
  padding: 15px 24px;
  color: #dfe9ec;
  background: var(--navy-deep);
}

.catalog-meta p {
  min-width: 0;
  margin: 0;
  line-height: 1.35;
}

.catalog-meta span {
  display: block;
  margin-bottom: 4px;
  color: #91aab3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.catalog-meta strong {
  display: block;
  color: var(--white);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.catalog-meta .draft-badge {
  display: inline-block;
  padding: 4px 8px;
  color: var(--navy-deep);
  background: var(--mint);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.07em;
}

.module-preview {
  padding: 64px 0;
  background: var(--white);
}

.module-preview h2 {
  max-width: 860px;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.38;
  text-wrap: balance;
}

.module-preview h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.module-preview p {
  color: var(--body);
}

.lead {
  font-size: 17px;
  line-height: 1.85;
}

.mobile-break {
  display: none;
}

.mobile-copy {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.button--primary {
  color: var(--white);
  background: var(--green);
}

.button--primary:hover {
  background: #0f6745;
}

.button--light {
  color: var(--navy-deep);
  background: var(--white);
}

.button--light:hover {
  color: var(--navy-deep);
  background: var(--neutral);
}

.button:focus-visible,
.text-link:focus-visible,
summary:focus-visible,
.related-list a:focus-visible {
  outline: 3px solid #65d3a7;
  outline-offset: 3px;
}

.section-summary {
  max-width: 360px;
  margin-bottom: 0;
}

.section-label--light {
  color: #8bdab9;
}

.hero-service {
  position: relative;
  overflow: hidden;
  padding: 68px 0;
  background: var(--neutral);
}

.hero-service::after {
  position: absolute;
  right: -80px;
  bottom: -58px;
  width: 380px;
  height: 180px;
  border-top: 18px solid var(--signal-green);
  border-left: 18px solid transparent;
  content: "";
  opacity: 0.12;
  transform: skewX(-26deg);
}

.hero-service__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 68px;
  align-items: center;
}

.hero-service__copy h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(38px, 4.2vw, 50px);
  line-height: 1.22;
}

.hero-service__visual {
  padding: 30px 28px 26px;
  border-top: 5px solid var(--signal-green);
  background: var(--navy);
  color: var(--white);
}

.hero-service__visual p {
  margin: 22px 0 0;
  color: #dce8ed;
  font-size: 14px;
}

.visual-axis {
  position: relative;
  display: grid;
  gap: 0;
}

.visual-axis::before {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.38);
  content: "";
}

.visual-axis span {
  position: relative;
  padding: 4px 0 4px 28px;
  font-size: 15px;
  font-weight: 700;
}

.visual-axis span::before {
  position: absolute;
  top: 13px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--signal-green);
  content: "";
}

.intro-section {
  background: var(--white);
}

.intro-section p:not(.section-label) {
  margin-bottom: 16px;
}

.intro-section p:last-child {
  margin-bottom: 0;
}

.benefits-section {
  background: var(--neutral);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #b9c9ce;
  border-bottom: 1px solid #b9c9ce;
}

.benefit-list article {
  padding: 26px 28px 24px 0;
}

.benefit-list article + article {
  padding-left: 28px;
  border-left: 1px solid #b9c9ce;
}

.benefit-list p {
  margin: 0;
  font-size: 15px;
}

.split-heading-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 72px;
}

.service-content {
  background: var(--white);
}

.service-rows {
  border-top: 2px solid var(--navy);
}

.service-rows article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.service-rows h3,
.service-rows p {
  margin-bottom: 0;
}

.service-rows p {
  margin-top: 4px;
  font-size: 15px;
}

.row-mark {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.supported-services {
  background: var(--blue);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #a9c0ca;
  border-left: 1px solid #a9c0ca;
}

.logo-grid > div {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 14px;
  border-right: 1px solid #a9c0ca;
  border-bottom: 1px solid #a9c0ca;
  background: rgba(255, 255, 255, 0.64);
  text-align: center;
}

.logo-grid strong {
  font-size: 14px;
}

.logo-placeholder {
  min-width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.module-footnote {
  margin: 18px 0 0;
  color: var(--muted) !important;
  font-size: 12px;
}

.content-price {
  background: var(--white);
}

.content-price__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  border: 1px solid var(--line);
}

.content-price__grid > div {
  padding: 32px 34px;
}

.content-price__grid > div + div {
  border-left: 1px solid var(--line);
}

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--line);
}

.plain-list li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal-green);
  content: "";
}

.price-summary {
  background: var(--mint);
}

.price-summary__label {
  margin-bottom: 8px;
  color: var(--green) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.price-summary__main {
  margin-bottom: 12px;
  color: var(--navy) !important;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.content-price__action {
  margin-top: 24px;
}

.process-section {
  background: var(--neutral);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 24px;
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-list li::before {
  position: absolute;
  top: 34px;
  bottom: 0;
  left: 27px;
  width: 2px;
  background: #b8c8cd;
  content: "";
}

.process-list li:last-child::before {
  display: none;
}

.process-list li > span {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.process-list h3,
.process-list p {
  margin-bottom: 0;
}

.process-list p {
  margin-top: 3px;
  font-size: 15px;
}

.features-section {
  background: var(--white);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--navy);
}

.feature-list article {
  padding: 26px 28px 0 0;
}

.feature-list article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.feature-index {
  margin-bottom: 14px;
  color: var(--green) !important;
  font-size: 12px;
  font-weight: 800;
}

.feature-list article > p:last-child {
  margin-bottom: 0;
  font-size: 15px;
}

.price-section {
  color: var(--white);
  background: var(--navy-deep);
}

.price-section h2,
.price-section p,
.price-section dt,
.price-section dd {
  color: var(--white);
}

.price-lead {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 19px;
  font-weight: 700;
}

.price-definition {
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.price-definition > div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.price-definition dt {
  font-weight: 700;
}

.price-definition dd {
  margin: 0;
}

.centered-action {
  text-align: center;
}

.cases-section {
  background: var(--white);
}

.case-entry {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--line);
}

.case-entry header {
  padding: 28px 32px 28px 0;
}

.case-entry header p {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.case-entry dl {
  margin: 0;
  border-left: 1px solid var(--line);
}

.case-entry dl > div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 24px;
  border-bottom: 1px solid var(--line);
}

.case-entry dl > div:last-child {
  border-bottom: 0;
}

.case-entry dt {
  color: var(--navy);
  font-weight: 700;
}

.case-entry dd {
  color: var(--body);
}

.voices-section {
  background: var(--mint);
}

.voice-list {
  border-top: 1px solid #a8c4b7;
}

.voice-list figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 42px;
  align-items: end;
  margin: 0;
  padding: 25px 0;
  border-bottom: 1px solid #a8c4b7;
}

.voice-list blockquote {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.75;
}

.voice-list figcaption {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.team-section {
  background: var(--white);
}

.team-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.team-list article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--line);
}

.avatar-placeholder {
  width: 104px;
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--blue);
  font-size: 32px;
  font-weight: 800;
}

.team-role {
  margin-bottom: 4px;
  color: var(--green) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.team-list p:last-child {
  margin-bottom: 0;
  font-size: 14px;
}

.faq-section {
  background: var(--neutral);
}

.faq-list {
  border-top: 2px solid var(--navy);
}

.faq-list details {
  border-bottom: 1px solid #bdcbd0;
}

.faq-list summary {
  position: relative;
  padding: 20px 52px 20px 42px;
  color: var(--navy);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::before {
  position: absolute;
  top: 20px;
  left: 4px;
  color: var(--green);
  content: "Q";
  font-size: 15px;
  font-weight: 800;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 8px;
  content: "+";
  font-size: 20px;
  font-weight: 500;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 52px 22px 42px;
  color: var(--body);
}

.related-section {
  background: var(--white);
}

.related-list {
  border-top: 2px solid var(--navy);
}

.related-list a {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 36px;
  gap: 22px;
  align-items: center;
  min-height: 78px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.related-list a:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.related-list span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.related-list i {
  color: var(--navy);
  font-size: 22px;
  font-style: normal;
}

.final-cta {
  color: var(--white);
  background: var(--navy);
}

.final-cta__inner {
  max-width: 820px;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta__inner > p:not(.section-label) {
  margin-bottom: 26px;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.text-link {
  font-weight: 700;
  text-underline-offset: 4px;
}

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

.full-stack {
  width: min(calc(100% - 48px), 1280px);
  margin: 0 auto 72px;
  border: 1px solid #b8c8cd;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(4, 56, 76, 0.13);
  scroll-margin-top: 16px;
}

.full-stack__header {
  width: 100%;
  max-width: none;
  padding: 28px 32px;
  color: var(--white);
  background: #1b2529;
}

.full-stack__header p,
.full-stack__header h2,
.full-stack__header span {
  color: var(--white);
}

.full-stack__header p {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.full-stack__header h2 {
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1.4;
}

.full-stack__header span {
  color: #c8d3d7;
  font-size: 12px;
}

.full-stack .module-preview + .module-preview {
  border-top: 1px solid rgba(4, 56, 76, 0.08);
}

.workbench-footer {
  padding: 30px 0;
  color: var(--white);
  background: var(--navy);
}

.workbench-footer .workbench-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.workbench-footer p {
  margin: 0;
  font-size: 12px;
}

@media (max-width: 820px) {
  .workbench-shell,
  .module-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .catalog-meta {
    grid-template-columns: 78px 1fr 90px;
  }

  .catalog-meta p:last-child {
    grid-column: 1 / -1;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-service__layout,
  .split-heading-layout,
  .content-price__grid,
  .case-entry {
    grid-template-columns: 1fr;
  }

  .hero-service__layout,
  .split-heading-layout {
    gap: 38px;
  }

  .content-price__grid > div + div,
  .case-entry dl {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-list,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .benefit-list article,
  .benefit-list article + article,
  .feature-list article,
  .feature-list article + article {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid #b9c9ce;
  }

  .team-list {
    grid-template-columns: 1fr;
  }

  .voice-list figure {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .voice-list figcaption {
    text-align: left;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
    line-height: 1.78;
  }

  .workbench-shell,
  .module-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .workbench-header__inner {
    min-height: 72px;
    gap: 14px;
  }

  .workbench-logo {
    width: 142px;
  }

  .workbench-title p {
    font-size: 10px;
  }

  .workbench-title span {
    display: none;
  }

  .workbench-intro {
    padding: 44px 0 42px;
  }

  .workbench-intro h1 {
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 1.28;
  }

  .workbench-intro__lead {
    font-size: 16px;
  }

  .module-index {
    gap: 6px;
  }

  .module-index a {
    min-width: 52px;
    min-height: 44px;
    padding: 7px 10px;
  }

  .module-index .module-index__demo {
    width: 100%;
  }

  .module-catalog {
    gap: 20px;
    padding: 20px 0 52px;
  }

  .module-record,
  .full-stack {
    width: calc(100% - 24px);
  }

  .catalog-meta {
    grid-template-columns: 62px minmax(0, 1fr) 72px;
    gap: 12px;
    padding: 14px 16px;
  }

  .catalog-meta span {
    white-space: nowrap;
    letter-spacing: 0.06em;
  }

  .catalog-meta strong {
    font-size: 10px;
  }

  .catalog-meta p:last-child strong {
    font-size: 11px;
  }

  .module-preview {
    padding: 48px 0;
  }

  .module-preview h2 {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 1.42;
  }

  .module-preview h3 {
    font-size: 19px;
  }

  .mobile-break {
    display: inline;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .hero-service {
    padding: 48px 0;
  }

  .hero-service__layout {
    gap: 32px;
  }

  .hero-service__copy h2 {
    font-size: 34px;
    line-height: 1.34;
  }

  .hero-service__visual {
    padding: 24px 22px 22px;
  }

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

  .split-heading-layout {
    gap: 28px;
  }

  .service-rows article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid > div {
    min-height: 124px;
    padding: 18px 8px;
  }

  .logo-grid strong {
    font-size: 13px;
  }

  .content-price__grid > div {
    padding: 26px 22px;
  }

  .price-summary__main {
    font-size: 21px;
  }

  .price-definition > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .case-entry header {
    padding: 24px 0;
  }

  .case-entry dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  .voice-list blockquote {
    font-size: 17px;
  }

  .team-list article {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
  }

  .avatar-placeholder {
    width: 82px;
    height: 100px;
  }

  .faq-list summary {
    padding: 18px 38px 18px 34px;
    font-size: 16px;
  }

  .faq-list summary::before {
    top: 18px;
    left: 0;
  }

  .faq-list summary::after {
    top: 18px;
    right: 2px;
  }

  .faq-list details p {
    padding: 0 38px 20px 34px;
  }

  .related-list a {
    grid-template-columns: 1fr 24px;
    gap: 8px 14px;
    min-height: 86px;
  }

  .related-list span {
    grid-column: 1 / -1;
  }

  .related-list i {
    grid-column: 2;
    grid-row: 2;
  }

  .cta-group {
    gap: 16px;
  }

  .full-stack {
    margin-bottom: 52px;
  }

  .full-stack__header {
    width: 100%;
    padding: 22px 20px;
  }

  .full-stack__header h2 {
    font-size: 23px;
  }

  .workbench-footer .workbench-shell {
    display: grid;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}

/* Issue #89 Visual REJECT rebuild: CORE 8 only. */
.workbench-intro {
  padding: 38px 0 34px;
}

.workbench-intro h1 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.45;
}

.workbench-intro__lead {
  margin-bottom: 18px;
  font-size: 15px;
}

.module-index {
  gap: 16px;
}

.module-index a,
.module-index .module-index__demo {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  color: #5c5c5c;
  background: transparent;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.module-record:not(.module-record--core) {
  display: none;
}

.module-record--core {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-meta--core {
  width: min(calc(100% - 80px), 1200px);
  display: block;
  margin-inline: auto;
  padding: 18px 0 10px;
  border-top: 1px solid rgba(4, 56, 76, 0.2);
  color: #5c5c5c;
  background: transparent;
}

.catalog-meta--core p {
  display: flex;
  align-items: center;
  gap: 9px;
}

.catalog-meta--core span,
.catalog-meta--core strong {
  display: inline;
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.core-shell {
  width: min(calc(100% - 80px), 1200px);
  margin-inline: auto;
}

.core-module {
  --asc-base: #ffffff;
  --asc-neutral: #eef2f4;
  --asc-navy: #04384c;
  --asc-text: #222222;
  --asc-muted: #5c5c5c;
  --asc-action: #137a52;
  --asc-signal: #1f9c6c;
  --asc-line: rgba(4, 56, 76, 0.2);
  --asc-measure-wide: 960px;
  --asc-measure-narrow: 680px;
  padding: 60px 0;
  color: var(--asc-text);
  background: var(--asc-base);
}

.core-module h2 {
  max-width: none;
  margin: 0 0 32px;
  color: var(--asc-navy);
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
}

.core-module h3,
.core-module p,
.core-module dt,
.core-module dd {
  color: var(--asc-text);
}

.core-module .button {
  min-width: 260px;
  min-height: 56px;
  border: 0;
  border-radius: 6px;
  font-size: 16px;
}

.core-module .button--primary {
  color: #ffffff;
  background: var(--asc-action);
}

.core-module .button--primary:hover {
  background: var(--asc-action);
  text-decoration: underline;
}

.core-module .button--primary:focus-visible,
.core-module .final-cta__secondary:focus-visible {
  outline: 3px solid var(--asc-signal);
  outline-offset: 4px;
}

.core-module.hero-service {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 48px 0;
  background: var(--asc-base);
}

.core-module.hero-service::after {
  display: none;
}

.core-module .hero-service__layout {
  position: relative;
  z-index: 1;
  display: block;
}

.core-module .hero-service__copy {
  width: 58%;
  max-width: 680px;
}

.core-module.hero-service[data-module-variant="SUBSERVICE_COMPACT"] .hero-service__copy {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__copy {
  width: min(52%, 620px);
}

.core-module .hero-service__visual,
.core-module .hero-service__visual img {
  width: 100%;
}

.core-module .hero-service__visual {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: 61%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #f4f1ea;
  color: inherit;
}

.core-module .hero-service__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--asc-base) 0%,
    rgba(255, 255, 255, 0.96) 12%,
    rgba(255, 255, 255, 0.74) 28%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(255, 255, 255, 0) 68%
  );
  content: "";
  pointer-events: none;
}

.core-module .hero-service__visual img {
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% center;
}

.core-module .hero-service__copy h1,
.core-module .hero-service__copy h2 {
  margin: 0 0 22px;
  color: var(--asc-navy);
  font-size: 48px;
  line-height: 1.32;
  text-align: left;
}

.core-module.hero-service[data-module-variant="SUBSERVICE_COMPACT"] .hero-service__copy h1,
.core-module.hero-service[data-module-variant="SUBSERVICE_COMPACT"] .hero-service__copy h2 {
  text-align: center;
}

.core-module .hero-service__desktop-break {
  display: none;
}

@media (min-width: 961px) {
  .core-module.hero-service[data-module-variant="SUBSERVICE_COMPACT"] {
    padding-block: 64px;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) {
    min-height: 452px;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__layout {
    transform: translateY(32px);
  }

  .core-module .hero-service__copy h1,
  .core-module .hero-service__copy h2 {
    font-size: 52px;
    line-height: 1.3;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__copy h1,
  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__copy h2 {
    margin-bottom: 30px;
  }

  .core-module .hero-service__copy h1:has(> .hero-service__desktop-break) {
    width: 720px;
    max-width: none;
  }

  .core-module .hero-service__desktop-break {
    display: initial;
  }
}

.core-module .hero-service__eyebrow {
  margin-bottom: 14px;
  color: var(--asc-action);
}

.core-module.hero-service[data-module-variant="SUBSERVICE_COMPACT"][data-optional-elements*="HERO_COMMERCIAL_BADGES"] {
  padding-block: 28px 16px;
}

.core-module.hero-service:is([data-module-variant="SUBSERVICE_COMPACT"], [data-module-variant="DEFAULT"]) .hero-commercial-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 8px;
  width: min(100%, var(--asc-measure-narrow));
  margin: 12px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.core-module.hero-service:is([data-module-variant="SUBSERVICE_COMPACT"], [data-module-variant="DEFAULT"]) .hero-commercial-badges > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 6px;
  border: 1px solid var(--asc-line);
  background: var(--asc-neutral);
}

.core-module.hero-service:is([data-module-variant="SUBSERVICE_COMPACT"], [data-module-variant="DEFAULT"]) .hero-commercial-badges dt,
.core-module.hero-service:is([data-module-variant="SUBSERVICE_COMPACT"], [data-module-variant="DEFAULT"]) .hero-commercial-badges dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.core-module.hero-service:is([data-module-variant="SUBSERVICE_COMPACT"], [data-module-variant="DEFAULT"]) .hero-commercial-badges dt {
  color: var(--asc-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.core-module.hero-service:is([data-module-variant="SUBSERVICE_COMPACT"], [data-module-variant="DEFAULT"]) .hero-commercial-badges dd {
  color: var(--asc-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 520px) {
  .core-module.hero-service[data-module-variant="SUBSERVICE_COMPACT"][data-optional-elements*="HERO_COMMERCIAL_BADGES"] {
    padding-block: 24px 12px;
  }

  .core-module.hero-service:is([data-module-variant="SUBSERVICE_COMPACT"], [data-module-variant="DEFAULT"]) .hero-commercial-badges > div {
    padding-inline: 4px;
  }
}

.core-module.intro-section {
  padding: 60px 0;
  background: color-mix(in srgb, var(--asc-neutral) 38%, var(--asc-base));
}

.intro-section__inner {
  text-align: center;
}

.core-module .intro-section__inner h2 {
  margin-bottom: 24px;
}

.core-module .intro-section__inner p {
  max-width: var(--asc-measure-wide);
  margin: 0 auto;
  color: var(--asc-muted);
  line-height: 1.9;
}

.core-module.intro-section[data-module-variant="CONTRAST"] {
  padding: 30px 0;
  background: var(--asc-navy);
}

.core-module.intro-section[data-module-variant="CONTRAST"] .intro-section__inner h2 {
  margin-bottom: 14px;
  color: var(--asc-base);
}

.core-module.intro-section[data-module-variant="CONTRAST"] .intro-section__inner p {
  color: var(--asc-neutral);
}

.core-module.service-content {
  background: var(--asc-base);
}

.core-module .service-content__action {
  margin-top: 32px;
}

.service-content__inner {
  max-width: 1200px;
}

.service-content__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 32px 48px;
  border-radius: 12px;
  background: var(--asc-neutral);
  list-style: none;
}

.service-content__list li {
  position: relative;
  grid-column: 2;
  padding: 8px 0 8px 24px;
}

.service-content__list li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--asc-signal);
  content: "";
}

.service-content__list strong,
.service-content__list span {
  display: block;
  line-height: 1.8;
}

.service-content__list span {
  margin-top: 2px;
  color: var(--asc-muted);
}

.core-module.supported-services {
  background: var(--asc-base);
}

.supported-services__inner h2 {
  text-align: left;
}

.service-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-right: 1px solid var(--asc-line);
  border-bottom: 1px solid var(--asc-line);
  list-style: none;
}

.service-nav li {
  min-width: 0;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 22px;
  border-top: 1px solid var(--asc-line);
  border-left: 1px solid var(--asc-line);
}

.service-nav img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-nav strong {
  color: var(--asc-navy);
  font-size: 17px;
  line-height: 1.55;
}

.core-module.process-section {
  background: var(--asc-base);
}

.process-section__inner {
  max-width: 1200px;
}

.core-module .process-list {
  border-top: 1px solid var(--asc-line);
}

.core-module .process-list li {
  display: grid;
  grid-template-columns: 90px 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--asc-line);
}

.core-module .process-list li::before {
  display: none;
}

.core-module .process-list li > span {
  width: auto;
  height: auto;
  display: block;
  color: var(--asc-signal);
  background: transparent;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
}

.core-module .process-list h3 {
  margin: 0;
  color: var(--asc-navy);
  font-size: 20px;
  line-height: 1.55;
}

.core-module .process-list p {
  margin: 0;
  color: var(--asc-muted);
  font-size: 15px;
  line-height: 1.9;
}

.core-module.price-section {
  color: var(--asc-text);
  background: var(--asc-base);
}

.price-section__inner {
  max-width: 960px;
}

.core-module .price-layout {
  display: block;
  margin-bottom: 36px;
}

.core-module .price-estimate,
.core-module .price-conditions {
  margin: 0;
}

.core-module .price-estimate {
  margin-bottom: 24px;
}

.core-module .price-estimate > div {
  margin: 0;
}

.core-module[data-price-mode="explicit-price"] .price-estimate > div {
  padding: 28px 24px 30px;
  border-top: 2px solid var(--asc-navy);
  border-bottom: 1px solid var(--asc-line);
  background: var(--asc-neutral);
  text-align: center;
}

.core-module[data-price-mode="estimate-only"] .price-estimate > div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: baseline;
  gap: 28px;
  padding: 16px 0;
  border-top: 0;
  border-bottom: 1px solid var(--asc-line);
  background: transparent;
}

.core-module[data-price-mode="estimate-only"] .price-section__inner {
  max-width: var(--asc-measure-wide);
}

.core-module[data-price-mode="estimate-only"] .price-layout {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.core-module[data-price-mode="estimate-only"] .price-estimate {
  margin-bottom: 0;
}

.core-module .price-estimate dt,
.core-module .price-estimate dd,
.core-module .price-conditions dt,
.core-module .price-conditions dd {
  margin: 0;
  padding: 0;
  border: 0;
}

.core-module .price-estimate dt {
  color: var(--asc-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.core-module .price-estimate dd {
  color: var(--asc-navy);
  font-weight: 700;
}

.core-module[data-price-mode="explicit-price"] .price-estimate dt,
.core-module[data-price-mode="explicit-price"] .price-estimate dd {
  text-align: center;
}

.core-module[data-price-mode="explicit-price"] .price-estimate dd {
  margin-top: 8px;
  font-size: clamp(26px, 2.3vw, 32px);
  line-height: 1.45;
}

.core-module[data-price-mode="estimate-only"] .price-estimate dd {
  font-size: 16px;
  line-height: 1.65;
  text-align: left;
}

.core-module[data-price-mode="estimate-only"] .price-estimate dt {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
  text-align: left;
}

.core-module .price-conditions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap: 28px;
  border: 0;
}

.core-module .price-conditions > div {
  display: block;
  min-width: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--asc-line);
}

.core-module[data-price-mode="estimate-only"] .price-conditions {
  display: block;
}

.core-module[data-price-mode="estimate-only"] .price-conditions > div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: baseline;
  gap: 28px;
}

.core-module[data-price-mode="estimate-only"] .price-conditions > div:last-child {
  border-bottom: 0;
}

.core-module .price-conditions dt,
.core-module .price-conditions dd {
  text-align: left;
}

.core-module .price-conditions dt {
  color: var(--asc-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.core-module[data-price-mode="estimate-only"] .price-conditions dt {
  font-weight: 600;
}

.core-module .price-conditions dd {
  margin-top: 6px;
  color: var(--asc-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.core-module .price-notes {
  margin: 20px 0 0;
  padding: 0;
  color: var(--asc-muted);
  font-size: 13px;
  line-height: 1.75;
  list-style: none;
}

.core-module .price-notes li + li {
  margin-top: 5px;
}

.core-module .price-lead {
  max-width: var(--asc-measure-wide);
  margin: -18px auto 28px;
  padding: 0;
  color: var(--asc-muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 640px) {
  .core-module .price-conditions {
    grid-template-columns: 1fr;
  }

  .core-module[data-price-mode="estimate-only"] .price-estimate > div,
  .core-module[data-price-mode="estimate-only"] .price-conditions > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
}

.core-module.faq-section {
  background: var(--asc-base);
}

.faq-section__inner {
  max-width: 960px;
}

.core-module .faq-list {
  border-top: 1px solid var(--asc-line);
}

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

.core-module .faq-list summary {
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 22px 56px 22px 48px;
  color: var(--asc-text);
  font-size: 17px;
}

.core-module .faq-list summary::before {
  top: 26px;
  left: 8px;
  color: var(--asc-signal);
}

.core-module .faq-list summary::after {
  top: 24px;
  right: 10px;
}

.core-module .faq-list details p {
  padding: 0 56px 24px 48px;
  color: var(--asc-muted);
}

.core-module.final-cta {
  color: var(--asc-text);
  background: var(--asc-neutral);
}

.core-module .final-cta__inner {
  max-width: 760px;
  text-align: center;
}

.core-module .final-cta__inner h2 {
  margin-bottom: 18px;
}

.core-module .final-cta__inner > p {
  margin: 0;
  color: var(--asc-muted);
  line-height: 1.8;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.final-cta__secondary {
  color: var(--asc-navy);
  font-size: 14px;
  text-underline-offset: 3px;
}

.full-stack {
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.full-stack__header {
  padding: 20px 40px 14px;
  border-top: 1px solid rgba(4, 56, 76, 0.2);
  color: #5c5c5c;
  background: #fff;
}

.full-stack__header p,
.full-stack__header h2,
.full-stack__header span,
.full-stack__header strong {
  color: inherit;
}

.full-stack__header p {
  display: flex;
  gap: 9px;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.full-stack__header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

@media (min-width: 521px) and (max-width: 960px) {
  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 64px 0 0;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__layout {
    order: 1;
    padding-bottom: 36px;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__copy {
    width: 100%;
    max-width: 720px;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__visual {
    position: relative;
    order: 2;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__visual::after {
    background: linear-gradient(
      180deg,
      var(--asc-base) 0%,
      rgba(255, 255, 255, 0.88) 10%,
      rgba(255, 255, 255, 0.2) 24%,
      rgba(255, 255, 255, 0) 40%
    );
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__visual img {
    height: auto;
    aspect-ratio: 3 / 1;
    object-position: 58% 52%;
  }
}

@media (max-width: 520px) {
  .workbench-intro {
    padding: 30px 0 28px;
  }

  .workbench-intro h1 {
    font-size: 24px;
  }

  .module-index {
    gap: 10px 14px;
  }

  .module-index a,
  .module-index .module-index__demo {
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 0;
  }

  .catalog-meta--core,
  .core-shell {
    width: calc(100% - 32px);
  }

  .catalog-meta--core {
    padding: 14px 0 8px;
  }

  .catalog-meta--core p {
    gap: 7px;
  }

  .catalog-meta--core span,
  .catalog-meta--core strong {
    font-size: 10px;
  }

  .core-module {
    padding: 48px 0;
  }

  .core-module h2 {
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 1.5;
  }

  .core-module .button {
    min-width: 0;
    width: 100%;
    min-height: 56px;
  }

  .core-module.hero-service {
    min-height: 0;
    padding: 40px 0;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 40px 0 0;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__layout {
    order: 1;
    padding-bottom: 20px;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__copy {
    width: 100%;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__visual {
    position: relative;
    order: 2;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__visual::after {
    background: linear-gradient(
      180deg,
      var(--asc-base) 0%,
      rgba(255, 255, 255, 0.88) 12%,
      rgba(255, 255, 255, 0.24) 30%,
      rgba(255, 255, 255, 0) 48%
    );
  }

  .core-module.hero-service:has(> .hero-service__visual:not([hidden])) .hero-service__visual img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .core-module .hero-service__copy {
    width: 100%;
  }

  .core-module .hero-service__copy h1,
  .core-module .hero-service__copy h2 {
    margin-bottom: 22px;
    font-size: 44px;
    line-height: 1.32;
  }

  .core-module.intro-section {
    padding: 44px 0;
  }

  .core-module.intro-section[data-module-variant="CONTRAST"] {
    padding: 28px 0;
  }

  .core-module .service-content__action {
    margin-top: 28px;
  }

  .core-module .intro-section__inner p {
    line-height: 1.9;
    text-align: left;
  }

  .service-content__list {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 22px 18px;
    border-radius: 8px;
  }

  .service-content__list li {
    grid-column: 1;
    padding: 12px 0 12px 20px;
  }

  .service-content__list li::before {
    top: 22px;
  }

  .service-content__list strong,
  .service-content__list span {
    display: block;
  }

  .service-content__list span {
    margin-top: 4px;
  }

  .supported-services__inner h2 {
    text-align: left;
  }

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

  .service-nav li {
    min-height: 104px;
    gap: 10px;
    padding: 16px 14px;
  }

  .service-nav img {
    width: 30px;
    height: 30px;
  }

  .service-nav strong {
    font-size: 14px;
  }

  .core-module .process-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px 14px;
    padding: 24px 0;
  }

  .core-module .process-list li > span {
    font-size: 22px;
  }

  .core-module .process-list h3 {
    font-size: 18px;
  }

  .core-module .process-list p {
    grid-column: 2;
    font-size: 15px;
  }

  .core-module .price-lead {
    margin: -12px auto 24px;
    padding: 0;
    font-size: 15px;
    line-height: 1.8;
  }

  .core-module .faq-list summary {
    min-height: 76px;
    padding: 20px 40px 20px 36px;
    font-size: 15px;
  }

  .core-module .faq-list summary::before {
    top: 23px;
    left: 2px;
  }

  .core-module .faq-list summary::after {
    top: 21px;
    right: 2px;
  }

  .core-module .faq-list details p {
    padding: 0 40px 22px 36px;
  }

  .final-cta__actions {
    gap: 14px;
    margin-top: 24px;
  }

  .full-stack__header {
    width: calc(100% - 8px);
    padding: 14px 0 10px;
  }
}

/* PR #93 Human feedback 5519649121: full-width surfaces + specified DRAFT extensions. */
:root {
  --shell: 1200px;
  --workbench-canvas: #e2e6e8;
}

body,
.module-catalog {
  background: var(--workbench-canvas);
}

.module-catalog {
  gap: 26px;
}

.module-record,
.full-stack {
  width: 100%;
  max-width: none;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.module-record:not(.module-record--core):not(.module-record--visible) {
  display: none;
}

.module-record:not(.module-record--core).module-record--visible {
  display: block;
  overflow: visible;
}

.catalog-meta--core,
.catalog-meta--visible,
.core-shell {
  width: min(calc(100% - 64px), 1200px);
  margin-inline: auto;
}

.catalog-meta--visible {
  display: block;
  padding: 18px 0 10px;
  border-top: 1px solid rgba(4, 56, 76, 0.2);
  color: #5c5c5c;
  background: transparent;
}

.catalog-meta--visible p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.catalog-meta--visible span,
.catalog-meta--visible strong {
  display: inline;
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.core-module,
.draft-module {
  --asc-base: #ffffff;
  --asc-neutral: #eef2f4;
  --asc-navy: #04384c;
  --asc-text: #222222;
  --asc-muted: #5c5c5c;
  --asc-action: #137a52;
  --asc-signal: #1f9c6c;
  --asc-line: rgba(4, 56, 76, 0.2);
  width: 100%;
  padding: 60px 0;
  color: var(--asc-text);
}

.draft-module h2 {
  max-width: none;
  margin: 0 0 36px;
  color: var(--asc-navy);
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
}

.draft-module h3,
.draft-module p {
  color: var(--asc-text);
}

.service-content__inner {
  max-width: 1000px;
}

.service-content__list {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--asc-line);
  border-radius: 0;
  background: transparent;
}

.service-content__list li {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: 36px;
  grid-column: auto;
  padding: 28px 0;
  border-bottom: 1px solid var(--asc-line);
}

.service-content__list li::before {
  display: none;
}

.service-content__list strong {
  padding-left: 0;
  color: var(--asc-navy);
  font-size: 18px;
  line-height: 1.6;
}

.service-content__list strong::before {
  display: none;
  content: none;
}

.service-content__list span {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.supported-services__inner h2 {
  text-align: center;
}

.service-nav li {
  min-height: 180px;
  justify-content: flex-start;
  gap: 8px;
  padding: 24px 22px;
}

.service-nav li > :first-child {
  margin-top: 0;
}

.service-nav img {
  margin-bottom: 6px;
}

.service-nav--compact li {
  min-height: 120px;
  gap: 8px;
  padding: 18px 20px;
}

.service-nav--compact img {
  object-fit: contain;
}

.service-nav p {
  margin: 0;
  color: var(--asc-muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-nav a {
  margin-top: auto;
  color: var(--asc-action);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 3px;
}

/* PR #93 Human feedback 5520124630: catalog canvas and remaining visual checks only. */
.service-nav .service-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border: 1px solid var(--asc-action);
  border-radius: 4px;
  background: var(--asc-base);
  line-height: 1.4;
  text-decoration: none;
}

.core-module.final-cta {
  padding: 60px 0;
  color: #ffffff;
  background: var(--asc-navy);
}

.core-module .final-cta__inner h2,
.core-module .final-cta__inner > p,
.core-module .final-cta__secondary {
  color: #ffffff;
}

.benefits-section {
  background: var(--asc-neutral);
}

.core-module[data-surface="base"] {
  background: var(--asc-base);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  border: 0;
}

.benefit-list article,
.benefit-list article + article {
  padding: 0;
  border: 0;
  text-align: center;
}

.benefit-list h3 {
  margin-bottom: 12px;
  color: var(--asc-navy);
  font-size: 21px;
}

.benefit-list__accent {
  width: 30px;
  height: 4px;
  display: block;
  margin: 0 auto 16px;
  background: var(--asc-signal);
}

.benefit-list p {
  margin: 0;
  color: var(--asc-muted);
  font-size: 15px;
  line-height: 1.9;
}

.process-detail {
  background: var(--asc-neutral);
}

.process-detail__inner {
  max-width: 1080px;
}

.process-detail__list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-detail__list::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 2px;
  background: rgba(31, 156, 108, 0.38);
  content: "";
}

.process-detail__list li {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px 24px;
  align-items: start;
  padding: 24px 0;
}

.process-detail__list li::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 92px;
  height: 1px;
  background: var(--asc-line);
  content: "";
}

.process-detail__list li:last-child::after {
  display: none;
}

.process-detail__number {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--asc-navy);
  background: var(--asc-base);
  border: 2px solid var(--asc-signal);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.process-detail__list h3,
.process-detail__list p {
  margin: 0;
}

.process-detail__list h3 {
  grid-column: 2;
  color: var(--asc-navy);
  font-size: 21px;
  line-height: 1.55;
}

.process-detail__list p {
  grid-column: 2;
  max-width: 820px;
  color: var(--asc-muted);
  font-size: 15px;
  line-height: 1.9;
}

.process-detail__note {
  max-width: 800px;
  margin: 36px 0 0 116px;
  padding-top: 24px;
  border-top: 1px solid var(--asc-line);
}

.process-detail__note h3,
.process-detail__note p {
  margin: 0;
}

.process-detail__note h3 {
  color: var(--asc-navy);
  font-size: 16px;
  line-height: 1.6;
}

.process-detail__note p {
  margin-top: 8px;
  color: var(--asc-muted);
  font-size: 14px;
  line-height: 1.85;
}

.features-section {
  background: var(--asc-neutral);
}

.features-section__inner {
  max-width: 1080px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--asc-navy);
}

.feature-list article,
.feature-list article + article {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(260px, 340px) minmax(0, 1fr);
  align-content: start;
  align-items: start;
  gap: 24px;
  padding: 28px 0 28px 28px;
  border: 0;
  border-bottom: 1px solid var(--asc-line);
}

.feature-list article {
  min-height: 0;
  height: auto;
}

.feature-list article::before {
  position: absolute;
  inset: 28px auto 28px 0;
  width: 4px;
  background: var(--asc-signal);
  content: "";
}

.feature-index {
  grid-column: 1;
  margin: 0;
  color: var(--asc-navy) !important;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-list h3 {
  grid-column: 2;
  margin: 0;
  color: var(--asc-navy);
  font-size: 22px;
  line-height: 1.55;
}

.feature-list article > p:last-child {
  grid-column: 3;
  margin: 0;
  color: var(--asc-muted);
  font-size: 15px;
  line-height: 1.9;
}

.cases-section {
  background: var(--asc-neutral);
}

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

.case-card__image {
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--asc-line);
  border-radius: 8px;
  color: var(--asc-muted);
  background: #ffffff;
  font-size: 13px;
}

.case-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  color: var(--asc-navy);
  font-size: 12px;
  font-weight: 700;
}

.case-card__meta time {
  flex: 0 0 auto;
  color: var(--asc-muted);
  font-weight: 400;
}

.case-card h3 {
  margin-bottom: 8px;
  color: var(--asc-navy);
  font-size: 18px;
}

.case-card > p,
.cases-section__note {
  margin: 0;
  color: var(--asc-muted);
  font-size: 12px;
}

.cases-section__note {
  margin-top: 16px;
  text-align: center;
}

.cases-section__action {
  margin-top: 28px;
}

.cases-section__action .button {
  width: auto;
  min-width: 240px;
}

.related-section {
  background: var(--asc-neutral);
}

.related-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px;
  background: var(--asc-navy);
}

.related-groups section {
  min-width: 0;
  min-height: 250px;
  padding: 26px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.related-groups section:first-child {
  border-left: 0;
}

.related-groups h3 {
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff;
  font-size: 18px;
}

.related-groups ul {
  margin: 0;
  padding-left: 20px;
  color: #ffffff;
}

.related-groups li + li {
  margin-top: 8px;
}

.related-groups a {
  color: #ffffff;
  font-size: 14px;
  text-underline-offset: 3px;
}

.form-module {
  padding: 36px 0 40px;
  background: var(--asc-neutral);
}

.form-module__inner {
  max-width: 720px;
}

.catalog-form {
  width: 100%;
  margin: 0 auto;
}

.catalog-form--document {
  max-width: 520px;
}

.catalog-form__intro {
  margin-bottom: 18px;
  text-align: center;
}

.catalog-form__intro h2 {
  margin-bottom: 4px;
}

.catalog-form__intro p {
  margin: 0;
  color: var(--asc-muted);
  font-size: 14px;
  line-height: 1.7;
}

.catalog-form__name-row,
.catalog-form__two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.catalog-form__name-row {
  margin-bottom: 10px;
}

.catalog-field {
  display: block;
  margin-bottom: 10px;
}

.catalog-field > span,
.catalog-options legend {
  display: block;
  margin-bottom: 3px;
  color: var(--asc-text);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.catalog-field small,
.catalog-field em {
  margin-left: 5px;
  color: var(--asc-action);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.catalog-field em {
  color: var(--asc-muted);
}

.catalog-field input,
.catalog-field textarea {
  width: 100%;
  border: 1px solid var(--asc-line);
  border-radius: 4px;
  color: var(--asc-text);
  background: var(--asc-base);
  font: inherit;
  font-size: 15px;
}

.catalog-field input {
  height: 42px;
  padding: 8px 12px;
}

.catalog-field textarea {
  min-height: 68px;
  padding: 9px 12px;
  line-height: 1.6;
  resize: vertical;
}

.catalog-field input:focus-visible,
.catalog-field textarea:focus-visible,
.catalog-consent input:focus-visible,
.catalog-options input:focus-visible {
  outline: 3px solid rgba(31, 156, 108, 0.24);
  outline-offset: 2px;
}

.catalog-consent {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 2px 0 12px;
  color: var(--asc-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.catalog-consent input,
.catalog-options input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--asc-action);
}

.catalog-consent a {
  color: var(--asc-action);
  text-underline-offset: 3px;
}

.catalog-options {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
}

.catalog-options > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.catalog-options label {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--asc-text);
  font-size: 12px;
  line-height: 1.6;
}

.catalog-form__submit {
  display: flex;
  width: min(100%, 300px);
  min-height: 50px;
  margin: 2px auto 0;
  border: 0;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}

.catalog-form--document .catalog-form__submit {
  width: 100%;
}

.catalog-form__note {
  margin: 8px 0 0;
  color: var(--asc-muted);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.comparison-section__lead {
  max-width: 780px;
  margin: -14px auto 30px;
  color: var(--asc-muted) !important;
  line-height: 1.9;
  text-align: center;
}

.comparison-section {
  background: var(--asc-base);
}

.comparison-section__inner {
  max-width: 1120px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 16px;
  border: 1px solid var(--asc-line);
  color: var(--asc-text);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--asc-navy);
  background: var(--asc-neutral);
  font-size: 15px;
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  width: 18%;
}

.comparison-table tbody th {
  color: var(--asc-navy);
  background: rgba(238, 242, 244, 0.55);
}

.full-stack {
  margin-bottom: 72px;
  overflow: visible;
}

.full-stack__header {
  width: min(calc(100% - 64px), 1200px);
  margin-inline: auto;
  padding: 20px 0 14px;
}

.page-template-library {
  margin-bottom: 72px;
}

.page-template-record {
  width: 100%;
  margin: 0;
  overflow: hidden;
  scroll-margin-top: 16px;
}

.page-template-meta {
  width: min(calc(100% - 64px), 1200px);
  margin-inline: auto;
  padding: 20px 0 14px;
  border-top: 1px solid rgba(4, 56, 76, 0.2);
}

.page-template-meta p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: var(--body);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.thanks-page {
  --asc-base: #ffffff;
  --asc-neutral: #eef2f4;
  --asc-navy: #04384c;
  --asc-text: #222222;
  --asc-muted: #5c5c5c;
  --asc-action: #137a52;
  --asc-signal: #1f9c6c;
  width: 100%;
  background: var(--asc-base);
}

.thanks-page .button--primary {
  color: var(--asc-base);
  background: var(--asc-action);
}

.thanks-page .button--primary:hover {
  background: var(--asc-action);
}

.thanks-page__inner {
  width: min(calc(100% - 64px), 1200px);
  margin-inline: auto;
  padding: 72px 0 76px;
}

.thanks-page__content {
  max-width: 760px;
}

.thanks-page--contact .thanks-page__content {
  margin-inline: auto;
  text-align: center;
}

.thanks-page h2 {
  margin: 0 0 54px;
  color: var(--asc-navy);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.45;
}

.thanks-page__lead {
  margin: 0 0 24px;
  color: var(--asc-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
}

.thanks-page__body {
  margin-bottom: 28px;
}

.thanks-page__body p {
  margin: 0;
  color: var(--asc-text);
  font-size: 16px;
  line-height: 1.9;
}

.thanks-page__body p + p {
  margin-top: 4px;
}

.thanks-page__primary {
  width: min(100%, 300px);
  min-height: 54px;
}

.thanks-page__note {
  margin: 16px 0 0;
  color: var(--asc-muted);
  font-size: 13px;
  line-height: 1.8;
}

.thanks-page__secondary {
  display: inline-block;
  margin-top: 22px;
  color: var(--asc-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-color: var(--asc-signal);
  text-underline-offset: 5px;
}

.thanks-page--contact .thanks-page__inner {
  padding-top: 88px;
  padding-bottom: 96px;
}

.thanks-page--contact h2 {
  margin-bottom: 32px;
}

.thanks-page--contact .thanks-page__lead {
  margin-bottom: 18px;
}

.thanks-page--contact .thanks-page__body {
  margin-bottom: 18px;
}

@media (max-width: 820px) {
  .process-detail__list li {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 8px 20px;
  }

  .process-detail__list li::after {
    left: 74px;
  }

  .process-detail__note {
    margin-left: 94px;
  }

  .case-grid {
    gap: 24px;
  }

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

  .related-groups section:nth-child(odd) {
    border-left: 0;
  }

  .related-groups section:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .service-content__list li {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
  }

  .feature-list article,
  .feature-list article + article {
    grid-template-columns: 60px minmax(200px, 240px) minmax(0, 1fr);
    gap: 18px;
    padding-left: 24px;
  }
}

@media (max-width: 520px) {
  .module-record,
  .full-stack {
    width: 100%;
  }

  .catalog-meta--core,
  .catalog-meta--visible,
  .core-shell,
  .full-stack__header {
    width: calc(100% - 40px);
  }

  .catalog-meta--visible {
    padding: 14px 0 8px;
  }

  .catalog-meta--visible p {
    gap: 7px;
  }

  .catalog-meta--visible span,
  .catalog-meta--visible strong {
    font-size: 10px;
  }

  .draft-module {
    padding: 48px 0;
  }

  .draft-module h2 {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .service-content__list {
    padding: 0;
    background: transparent;
    border-top: 1px solid var(--asc-line);
    border-bottom: 0;
  }

  .service-content__list li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
    border-bottom: 1px solid var(--asc-line);
  }

  .service-content__list strong {
    padding-left: 0;
    font-size: 17px;
  }

  .service-content__list span {
    margin: 0;
    font-size: 14px;
  }

  .service-nav li {
    min-height: 166px;
    padding: 18px 14px;
  }

  .service-nav--compact li {
    min-height: 112px;
    padding: 16px 14px;
  }

  .service-nav p,
  .service-nav a {
    font-size: 12px;
  }

  .service-nav strong {
    font-size: 15px;
  }

  .core-module .price-layout {
    margin-bottom: 28px;
  }

  .core-module .price-conditions > div {
    padding: 16px 0;
  }

  .core-module[data-price-mode="explicit-price"] .price-estimate > div {
    padding: 24px 18px 26px;
  }

  .core-module[data-price-mode="explicit-price"] .price-estimate dd {
    font-size: 26px;
  }

  .core-module.final-cta {
    padding: 48px 0;
  }

  .benefit-list {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .benefit-list article,
  .benefit-list article + article {
    padding: 0;
    border: 0;
  }

  .process-detail__list li {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 6px 14px;
    padding: 20px 0;
  }

  .process-detail__list::before {
    top: 22px;
    bottom: 22px;
    left: 20px;
  }

  .process-detail__list li::after {
    left: 56px;
  }

  .process-detail__number {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .process-detail__list h3 {
    font-size: 18px;
  }

  .process-detail__list p {
    font-size: 14px;
  }

  .process-detail__note {
    margin: 28px 0 0 70px;
    padding-top: 20px;
  }

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

  .feature-list article,
  .feature-list article + article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px 14px;
    padding: 22px 0 22px 20px;
    border-bottom: 1px solid var(--asc-line);
  }

  .feature-list article::before {
    inset: 22px auto 22px 0;
  }

  .feature-index {
    font-size: 28px;
  }

  .feature-list h3 {
    font-size: 18px;
  }

  .feature-list article > p:last-child {
    grid-column: 1 / -1;
    margin-top: 12px;
    font-size: 14px;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cases-section__action .button {
    width: 100%;
    min-width: 0;
  }

  .related-groups {
    grid-template-columns: 1fr;
  }

  .related-groups section,
  .related-groups section:first-child,
  .related-groups section:nth-child(odd),
  .related-groups section:nth-child(n + 3) {
    min-height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .related-groups section:first-child {
    border-top: 0;
  }

  .form-module {
    padding: 24px 0 28px;
  }

  .form-module__inner {
    width: min(calc(100% - 40px), 720px);
  }

  .catalog-form__intro {
    margin-bottom: 14px;
  }

  .catalog-form__intro h2 {
    margin-bottom: 3px;
    font-size: 23px;
  }

  .catalog-form__intro p {
    font-size: 12px;
  }

  .catalog-form__name-row,
  .catalog-form__two-column {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .catalog-form__name-row {
    margin-bottom: 0;
  }

  .catalog-field {
    margin-bottom: 7px;
  }

  .catalog-field > span,
  .catalog-options legend {
    margin-bottom: 2px;
    font-size: 12px;
  }

  .catalog-field input {
    height: 39px;
    padding: 6px 10px;
    font-size: 14px;
  }

  .catalog-field textarea {
    min-height: 58px;
    padding: 7px 10px;
    font-size: 14px;
  }

  .catalog-options {
    margin-bottom: 7px;
  }

  .catalog-options > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px 10px;
  }

  .catalog-options label {
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.45;
  }

  .catalog-options input {
    margin-top: 1px;
  }

  .catalog-consent {
    margin: 1px 0 9px;
    font-size: 11px;
  }

  .catalog-form__submit {
    width: 100%;
    min-height: 46px;
    font-size: 14px;
  }

  .catalog-form__note {
    margin-top: 5px;
    font-size: 10px;
  }

  .comparison-section__lead {
    margin: -10px auto 24px;
    font-size: 14px;
    text-align: left;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .comparison-table tbody tr {
    padding: 20px 0;
    border-top: 1px solid var(--asc-line);
  }

  .comparison-table tbody tr:last-child {
    border-bottom: 1px solid var(--asc-line);
  }

  .comparison-table tbody th {
    width: auto;
    padding: 0 0 12px;
    border: 0;
    background: transparent;
    font-size: 17px;
  }

  .comparison-table tbody td {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border: 0;
    border-top: 1px solid rgba(4, 56, 76, 0.1);
    font-size: 13px;
  }

  .comparison-table tbody td::before {
    color: var(--asc-navy);
    content: attr(data-label);
    font-weight: 700;
  }

  .full-stack {
    margin-bottom: 52px;
  }

  .page-template-library {
    margin-bottom: 52px;
  }

  .page-template-meta,
  .thanks-page__inner {
    width: calc(100% - 40px);
  }

  .page-template-meta {
    padding: 14px 0 8px;
  }

  .page-template-meta p {
    gap: 7px;
    font-size: 10px;
  }

  .thanks-page__inner,
  .thanks-page--contact .thanks-page__inner {
    padding: 48px 0 56px;
  }

  .thanks-page h2,
  .thanks-page--contact h2 {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 1.45;
  }

  .thanks-page__lead,
  .thanks-page--contact .thanks-page__lead {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.7;
  }

  .thanks-page__body,
  .thanks-page--contact .thanks-page__body {
    margin-bottom: 24px;
  }

  .thanks-page__body p {
    font-size: 14px;
    line-height: 1.85;
  }

  .thanks-page__primary {
    width: 100%;
    min-height: 50px;
  }

  .thanks-page__note {
    margin-top: 14px;
    font-size: 12px;
  }

  .thanks-page__secondary {
    margin-top: 20px;
    font-size: 13px;
  }
}
