@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin-wght-normal.a30ddcd34970.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color: #111219;
  background: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --blue: #0433ff;
  --blue-hover: #0026d6;
  --coral: #f26762;
  --ink: #111219;
  --muted: #52545d;
  --line: #d8d9de;
  --soft: #f6f6f3;
  --white: #ffffff;
  --shell: 82rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 2rem;
}

body {
  margin: 0;
  min-width: 20rem;
  min-height: 100vh;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.22em;
}

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

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

address {
  font-style: normal;
}

.shell {
  width: min(var(--shell), calc(100% - 5rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
}

.site-header__inner {
  min-height: 7rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand-link,
.brand {
  display: inline-flex;
  width: fit-content;
}

.brand {
  align-items: center;
  gap: 0.55rem;
}

.brand__mark {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.brand__name {
  font-size: 2.05rem;
  font-weight: 730;
  letter-spacing: -0.045em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 2.2vw, 2.4rem);
  font-size: 0.96rem;
  font-weight: 570;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
}

.desktop-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after,
.site-footer nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.direct-contact {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.contact-icon {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  transition: background 150ms ease, border-color 150ms ease;
}

.contact-icon:hover,
.contact-icon:focus-visible {
  background: var(--soft);
  border-color: var(--line);
}

.contact-icon img {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-icon__tooltip {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  z-index: 20;
  padding: 0.45rem 0.6rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 630;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -0.2rem);
  transition: opacity 120ms ease, transform 120ms ease;
}

.contact-icon:hover .contact-icon__tooltip,
.contact-icon:focus-visible .contact-icon__tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.button {
  min-height: 3.55rem;
  padding: 0.95rem 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 0.92rem;
  font-weight: 650;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--small {
  min-height: 3.1rem;
  padding-inline: 1.3rem;
}

.button--secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button--secondary:hover {
  color: var(--blue);
  background: var(--white);
  border-color: var(--blue);
}

.mobile-section-nav {
  display: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue);
  font-size: 0.72rem;
  line-height: 1.3;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 1.35rem;
  height: 0.18rem;
  background: var(--coral);
}

.text-link,
.back-link {
  width: fit-content;
  display: inline-block;
  padding-block: 0.25rem 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.92rem;
  font-weight: 650;
}

.text-link:hover,
.text-link:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  color: var(--blue);
}

.hero {
  padding-top: 4.1rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  column-gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}

.hero__content {
  max-width: 48rem;
  padding-block: 1.4rem 5.4rem;
}

.hero h1 {
  margin-top: 1.85rem;
  font-size: clamp(3.7rem, 5.4vw, 5.9rem);
  line-height: 0.98;
  font-weight: 720;
  letter-spacing: -0.067em;
}

.hero h1 > span {
  display: block;
}

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

.hero__lead {
  max-width: 38rem;
  margin-top: 2.2rem;
  color: #31333a;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.58;
}

.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.hero__visual {
  display: grid;
  place-items: center;
}

.hero__visual {
  min-height: 34rem;
}

.hero__visual img {
  width: 38rem;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: 7rem;
}

.section-heading--single {
  grid-template-columns: 1fr;
}

.section-heading h2,
.contact h2,
.page-hero h1,
.prose-layout > aside h2 {
  margin-top: 1.4rem;
  font-size: clamp(2.7rem, 3.8vw, 4.3rem);
  line-height: 1.02;
  font-weight: 710;
  letter-spacing: -0.058em;
}

.page-hero h1,
.article-hero h1,
.legal-page h1 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-heading > p {
  max-width: 26rem;
  padding-bottom: 0.4rem;
  color: #393b42;
  font-size: 1rem;
  line-height: 1.7;
}

.value {
  padding: 6.2rem 0 6.6rem;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4.5rem;
  padding: 0;
  list-style: none;
}

.value-card {
  min-height: 14rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.value-card + .value-card {
  border-left: 0;
}

.value-card__number,
.step__number,
.format-card__number,
.content-block__number,
.article-card__number {
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.value-card__number,
.format-card__number {
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.value-card h3,
.format-card h3 {
  margin-top: 2rem;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.value-card p,
.format-card p {
  max-width: 21rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.process {
  padding: 6.6rem 0 6.9rem;
  background: var(--soft);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
  margin-top: 5rem;
  padding: 0;
  list-style: none;
}

.step {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.step__number {
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 520;
  letter-spacing: -0.06em;
}

.step h3 {
  margin-top: 1.25rem;
  font-size: 1.15rem;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.step p {
  margin-top: 0.8rem;
  color: #464850;
  font-size: 0.88rem;
  line-height: 1.68;
}

.pricing {
  padding: 6.4rem 0 6.8rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 4.5rem;
}

.price-card {
  min-height: 21rem;
  padding: 2.5rem;
  border: 1px solid var(--line);
}

.price-card + .price-card {
  border-left: 0;
}

.price-card--primary {
  border-top: 0.22rem solid var(--coral);
}

.price-card__label {
  font-size: 0.82rem;
  font-weight: 730;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card__price {
  margin-top: 3.4rem;
  color: var(--blue);
  font-size: clamp(3.8rem, 5.8vw, 5.8rem);
  line-height: 0.95;
  font-weight: 670;
  letter-spacing: -0.065em;
}

.price-card__unit,
.price-card__note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.price-list {
  margin: 2.7rem 0 0;
}

.price-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.price-list dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.price-list dt strong,
.price-list dt small {
  display: block;
}

.price-list dt strong {
  color: var(--ink);
  font-weight: 650;
}

.price-list dt small {
  margin-top: 0.15rem;
  font-size: 0.74rem;
}

.price-list dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 690;
}

.pricing-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.pricing-facts li {
  padding: 0.55rem 0.75rem;
  color: #3d3f47;
  background: var(--soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.pricing-notes {
  max-width: 52rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.pricing-notes p + p {
  margin-top: 0.6rem;
}

.pricing-notes strong {
  color: var(--ink);
}

.pricing-pending {
  margin-top: 4rem;
  padding: 2rem;
  color: var(--muted);
  background: var(--soft);
  border-left: 0.22rem solid var(--coral);
}

.guides {
  padding: 6.2rem 0 6.6rem;
  border-top: 1px solid var(--line);
}

.guide-list {
  margin-top: 3rem;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.guide-row {
  min-height: 5.4rem;
  display: grid;
  grid-template-columns: minmax(8rem, 0.34fr) 1fr auto;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  transition: color 150ms ease, padding 150ms ease, background 150ms ease;
}

.guide-row:hover,
.guide-row:focus-visible {
  padding-inline: 0.8rem;
  color: var(--blue);
  background: #fafafa;
}

.guide-row__label {
  color: #5d606a;
  font-size: 0.76rem;
  font-weight: 690;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-row__title {
  font-size: 1rem;
  font-weight: 570;
}

.guide-row__action {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.contact__panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5rem;
  min-height: 19rem;
  padding-block: 4.7rem;
}

.contact h2 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 3.9vw, 4.5rem);
}

.contact p:not(.eyebrow) {
  max-width: 37rem;
  margin-top: 1.2rem;
  color: #494b53;
  line-height: 1.68;
}

.contact__action {
  min-width: 18rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.contact__mail {
  align-self: center;
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.contact__mail:hover,
.contact__mail:focus-visible {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.page-hero {
  padding: 7.5rem 0 8rem;
  border-top: 1px solid var(--line);
}

.page-hero--service {
  padding-block: 6.5rem 7rem;
  background: var(--soft);
}

.page-hero--service h1 {
  max-width: 14ch;
  overflow-wrap: normal;
  hyphens: none;
}

.page-hero--compact {
  min-height: 65vh;
  display: grid;
  align-items: center;
}

.page-hero__narrow {
  max-width: 65rem;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(4rem, 7vw, 7rem);
}

.page-hero__lead {
  max-width: 48rem;
  margin-top: 2rem;
  color: #3c3e46;
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.7;
}

.page-hero .button {
  margin-top: 2.4rem;
}

.page-hero .hero__actions .button {
  margin-top: 0;
}

.content-section {
  padding: 7rem 0;
}

.formats {
  padding: 6.5rem 0 6.8rem;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4.5rem;
}

.format-card {
  min-height: 14rem;
  padding: 2rem;
  border: 1px solid var(--line);
}

.format-card + .format-card {
  border-left: 0;
}

.content-section--soft {
  background: var(--soft);
}

.prose-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: start;
}

.prose-layout > aside {
  position: sticky;
  top: 2rem;
}

.prose-layout > aside h2 {
  max-width: 9ch;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
}

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

.content-block {
  display: grid;
  grid-template-columns: 4rem 1fr;
  column-gap: 1.5rem;
  padding-block: 2.7rem;
  border-bottom: 1px solid var(--line);
}

.content-block__number {
  padding-top: 0.28rem;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.content-block h3,
.content-block p {
  grid-column: 2;
}

.content-block h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.content-block p {
  max-width: 44rem;
  margin-top: 1rem;
  color: #43454d;
  line-height: 1.78;
}

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

.article-card {
  display: grid;
  grid-template-columns: minmax(5rem, 0.22fr) 1fr;
  gap: 2rem;
  padding-block: 4rem;
  border-bottom: 1px solid var(--line);
}

.article-card__number {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 520;
  letter-spacing: -0.06em;
}

.article-card h2 {
  max-width: 18ch;
  margin-top: 1.2rem;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.article-card h2 a:hover,
.article-card h2 a:focus-visible {
  color: var(--blue);
}

.article-card div > p:not(.eyebrow) {
  max-width: 44rem;
  margin-top: 1.4rem;
  color: #45474f;
  line-height: 1.72;
}

.article-card .text-link {
  margin-top: 1.6rem;
}

.article-hero {
  padding: 5rem 0 6.5rem;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.article-hero__inner {
  max-width: 67rem;
}

.article-hero .eyebrow {
  margin-top: 4rem;
}

.article-hero h1 {
  max-width: 14ch;
  margin-top: 1.4rem;
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: 0.99;
  font-weight: 710;
  letter-spacing: -0.065em;
}

.article-hero__lead {
  max-width: 47rem;
  margin-top: 2rem;
  color: #3d3f47;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.article-body {
  display: grid;
  grid-template-columns: minmax(13rem, 0.38fr) minmax(0, 0.92fr);
  gap: clamp(4rem, 9vw, 9rem);
  padding-block: 7rem;
}

.article-toc {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.article-toc > p {
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-toc ol {
  margin-top: 1.2rem;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.article-toc li + li {
  margin-top: 0.7rem;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
}

.article-copy section {
  scroll-margin-top: 2rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}

.article-copy section + section {
  padding-top: 4rem;
}

.article-copy h2 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.article-copy p:not(.content-block__number) {
  max-width: 46rem;
  margin-top: 1.3rem;
  color: #35373e;
  font-size: 1.02rem;
  line-height: 1.82;
}

.legal-page {
  padding: 5rem 0 7.5rem;
  border-top: 1px solid var(--line);
}

.legal-page__inner {
  max-width: 58rem;
}

.legal-page .eyebrow {
  margin-top: 4rem;
}

.legal-page h1 {
  margin-top: 1.35rem;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  line-height: 1;
  font-weight: 710;
  letter-spacing: -0.065em;
}

.legal-intro {
  max-width: 44rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-page section {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.025em;
}

.legal-page p,
.legal-page address {
  max-width: 48rem;
  margin-top: 1rem;
  color: #3f4149;
  line-height: 1.78;
}

.legal-page a:not(.back-link) {
  color: var(--blue);
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer__inner {
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.site-footer .brand__mark {
  width: 3.05rem;
  height: 3.05rem;
}

.site-footer .brand__name {
  font-size: 1.55rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 4rem);
  font-size: 0.86rem;
  font-weight: 570;
}

@media (max-width: 61.25rem) {
  .shell {
    width: min(100% - 3rem, var(--shell));
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .site-header__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0.8rem;
  }

  .site-header__inner > .brand-link {
    margin-bottom: 0.8rem;
  }

  .mobile-section-nav {
    grid-column: 1 / -1;
    width: 100%;
    padding-block: 0.75rem 0.9rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 620;
    white-space: nowrap;
  }

  .mobile-section-nav a {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    column-gap: 2.2rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 6.8vw, 4.8rem);
  }

  .hero__visual {
    min-height: 27rem;
  }

  .section-heading {
    gap: 3rem;
  }

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

}

@media (max-width: 45rem) {
  .shell {
    width: min(100% - 2rem, var(--shell));
  }

  .brand__mark {
    width: 2.5rem;
    height: 2.5rem;
  }

  .brand__name {
    font-size: 1.35rem;
  }

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

  .hero__content {
    padding-block: 1rem 2.5rem;
  }

  .hero h1 {
    margin-top: 1.35rem;
    font-size: clamp(2.9rem, 12vw, 4rem);
  }

  .hero__lead {
    margin-top: 1.6rem;
    font-size: 1.04rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.1rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__visual {
    display: none;
  }

  .value,
  .process,
  .pricing,
  .guides,
  .content-section,
  .formats {
    padding-block: 4.5rem;
  }

  .section-heading,
  .prose-layout {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .section-heading h2,
  .contact h2,
  .prose-layout > aside h2 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .value-grid,
  .pricing-grid,
  .format-grid {
    grid-template-columns: 1fr;
    margin-top: 3.2rem;
  }

  .value-card,
  .price-card,
  .format-card {
    min-height: 0;
  }

  .value-card + .value-card,
  .price-card + .price-card,
  .format-card + .format-card {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3.4rem;
  }

  .step {
    padding-block: 1.8rem;
  }

  .step p {
    max-width: 32rem;
  }

  .guide-row {
    min-height: 5rem;
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .guide-row__label {
    display: none;
  }

  .contact__panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 4.4rem;
  }

  .contact__action {
    min-width: 0;
  }

  .page-hero,
  .page-hero--service,
  .article-hero {
    padding-block: 4.5rem;
  }

  .page-hero h1,
  .article-hero h1,
  .legal-page h1 {
    font-size: clamp(2.7rem, 11.5vw, 4rem);
  }

  .page-hero--service h1 {
    font-size: clamp(2.6rem, 10.5vw, 3.8rem);
  }

  .prose-layout > aside {
    position: static;
  }

  .content-block {
    grid-template-columns: 2.5rem 1fr;
    column-gap: 0.8rem;
  }

  .article-card {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .article-card__number {
    font-size: 2.4rem;
  }

  .article-body {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-block: 4.5rem;
  }

  .article-toc {
    position: static;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
  }

  .legal-page {
    padding-block: 4rem 5rem;
  }

  .legal-page .eyebrow,
  .article-hero .eyebrow {
    margin-top: 3rem;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 2rem;
  }

  .site-footer nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.2rem;
  }
}

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