:root {
  --dc24-ink: #1a1a1c;
  --dc24-muted: #606668;
  --dc24-teal: #2b7e84;
  --dc24-teal-dark: #1d5f65;
  --dc24-mint: #eef4f3;
  --dc24-line: #d7e1df;
  --dc24-white: #ffffff;
  --dc24-charcoal: #1b1f1c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dc24-ink);
  background: var(--dc24-white);
  font-family: Lato, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.dc24-menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.dc24-container {
  width: min(1224px, calc(100% - 48px));
  margin: 0 auto;
}

.dc24-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 96px;
  border-bottom: 1px solid rgba(27, 31, 28, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.dc24-header__inner {
  display: flex;
  width: min(1224px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  align-items: center;
  gap: 28px;
}

.dc24-logo {
  width: 238px;
  flex: 0 0 auto;
}

.dc24-logo img {
  width: 100%;
  height: auto;
}

.dc24-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 26px;
}

.dc24-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--dc24-ink);
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}

.dc24-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--dc24-teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dc24-nav a:hover::after,
.dc24-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.dc24-header__cta {
  display: inline-flex;
  min-height: 50px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dc24-teal);
  border-radius: 6px;
  background: var(--dc24-teal);
  color: var(--dc24-white);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.dc24-header__cta:hover {
  border-color: var(--dc24-teal-dark);
  background: var(--dc24-teal-dark);
}

.dc24-menu-button,
.dc24-mobile-nav {
  display: none;
}

.dc24-hero {
  position: relative;
  display: grid;
  min-height: min(700px, calc(100svh - 132px));
  overflow: hidden;
  place-items: center;
  color: var(--dc24-white);
  isolation: isolate;
}

.dc24-hero__media,
.dc24-hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dc24-hero__media {
  object-fit: cover;
  object-position: center;
}

.dc24-hero__shade {
  z-index: -1;
  background: rgba(13, 31, 33, 0.68);
}

.dc24-hero__content {
  padding: 72px 0 82px;
  text-align: center;
}

.dc24-eyebrow {
  margin: 0 0 10px;
  color: var(--dc24-teal);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.dc24-eyebrow--light {
  color: #b9e1df;
}

.dc24-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 68px;
  line-height: 1.08;
  letter-spacing: 0;
}

.dc24-hero__promise {
  margin: 14px 0 0;
  color: #d4eeeb;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.dc24-hero__lead {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.55;
}

.dc24-hero__price {
  display: flex;
  margin: 28px 0 0;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.dc24-hero__price span {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}

.dc24-hero__price small {
  max-width: 190px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.dc24-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.dc24-button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.dc24-button:focus-visible,
.dc24-nav a:focus-visible,
.dc24-menu-button:focus-visible,
.dc24-mobile-nav a:focus-visible,
.dc24-contact-dock a:focus-visible,
.dc24-faq summary:focus-visible {
  outline: 3px solid rgba(72, 164, 170, 0.45);
  outline-offset: 3px;
}

.dc24-button--primary {
  border-color: var(--dc24-white);
  background: var(--dc24-white);
  color: var(--dc24-teal-dark);
}

.dc24-button--primary:hover {
  border-color: #d7ebe9;
  background: #d7ebe9;
}

.dc24-button--ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--dc24-white);
}

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

.dc24-button--dark {
  width: 100%;
  margin-top: 26px;
  background: var(--dc24-charcoal);
  color: var(--dc24-white);
}

.dc24-button--dark:hover {
  background: #090b0a;
}

.dc24-button--light {
  flex: 0 0 auto;
  border-color: var(--dc24-white);
  background: var(--dc24-white);
  color: var(--dc24-teal-dark);
}

.dc24-hero__disclaimer {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.dc24-hero__next {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  transform: translateX(-50%);
}

.dc24-hero__next img {
  width: 20px;
  filter: brightness(0) invert(1);
}

.dc24-fit,
.dc24-package,
.dc24-results,
.dc24-faq {
  padding: 96px 0;
}

.dc24-section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.dc24-section-heading--left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.dc24-section-heading h2,
.dc24-package h2,
.dc24-final-cta h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.16;
  letter-spacing: 0;
}

.dc24-section-heading > p:last-child,
.dc24-package__intro {
  margin: 16px 0 0;
  color: var(--dc24-muted);
  font-size: 18px;
  line-height: 1.6;
}

.dc24-fit__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.dc24-fit__grid article {
  padding-top: 22px;
  border-top: 2px solid var(--dc24-line);
}

.dc24-fit__grid article > span {
  color: var(--dc24-teal);
  font-size: 13px;
  font-weight: 700;
}

.dc24-fit__grid h3 {
  margin: 13px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.dc24-fit__grid p {
  margin: 0;
  color: var(--dc24-muted);
}

.dc24-package {
  background: var(--dc24-mint);
}

.dc24-package__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  align-items: start;
  gap: 72px;
}

.dc24-check-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  list-style: none;
}

.dc24-check-list li {
  display: flex;
  min-height: 56px;
  align-items: flex-start;
  gap: 12px;
  color: #353a3b;
}

.dc24-check-list img {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  flex: 0 0 auto;
  filter: invert(42%) sepia(26%) saturate(1010%) hue-rotate(136deg) brightness(91%);
}

.dc24-price-panel {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: var(--dc24-teal);
  color: var(--dc24-white);
}

.dc24-price-panel__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.dc24-price-panel__amount {
  margin: 8px 0 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.08;
  white-space: nowrap;
}

.dc24-price-panel__amount span {
  margin: 0 3px;
  color: #acd7d4;
}

.dc24-price-panel__amount small {
  font-size: 20px;
}

.dc24-price-panel__sub {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.dc24-price-panel__rule {
  height: 1px;
  margin: 26px 0;
  background: rgba(255, 255, 255, 0.25);
}

.dc24-price-panel h3 {
  margin: 0;
  font-size: 17px;
}

.dc24-price-panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.dc24-price-panel li + li {
  margin-top: 8px;
}

.dc24-process {
  padding: 96px 0 88px;
  background: var(--dc24-charcoal);
  color: var(--dc24-white);
}

.dc24-process .dc24-section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.dc24-process__steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
}

.dc24-process__steps li {
  min-height: 228px;
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.dc24-process__steps li:last-child {
  border-right: 0;
}

.dc24-process__steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(185, 225, 223, 0.55);
  border-radius: 50%;
  color: #b9e1df;
  font-weight: 700;
}

.dc24-process__steps h3 {
  margin: 22px 0 10px;
  font-size: 21px;
}

.dc24-process__steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.dc24-process__note {
  max-width: 820px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  text-align: center;
}

.dc24-results {
  background: #f8faf9;
  scroll-margin-top: 112px;
}

.dc24-results__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.dc24-case {
  overflow: hidden;
  border: 1px solid var(--dc24-line);
  border-radius: 8px;
  background: var(--dc24-white);
  box-shadow: 0 16px 40px rgba(24, 55, 58, 0.09);
}

.dc24-compare {
  --position: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d8e1df;
  isolation: isolate;
}

.dc24-compare__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.dc24-compare__image--before {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.dc24-compare__divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--dc24-white);
  transform: translateX(-1px);
  pointer-events: none;
}

.dc24-compare__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 3px solid var(--dc24-white);
  border-radius: 50%;
  background: var(--dc24-teal);
  box-shadow: 0 8px 22px rgba(17, 44, 47, 0.28);
  transform: translate(-50%, -50%);
}

.dc24-compare__handle img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.dc24-compare__range {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: col-resize;
  opacity: 0;
}

.dc24-compare:has(.dc24-compare__range:focus-visible) {
  outline: 3px solid rgba(43, 126, 132, 0.45);
  outline-offset: -3px;
}

.dc24-compare__label {
  position: absolute;
  z-index: 2;
  top: 14px;
  padding: 7px 9px;
  border-radius: 4px;
  background: rgba(15, 34, 36, 0.8);
  color: var(--dc24-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  pointer-events: none;
}

.dc24-compare__label--before {
  left: 14px;
}

.dc24-compare__label--after {
  right: 14px;
}

.dc24-case__caption {
  padding: 24px 26px 26px;
}

.dc24-case__caption h3 {
  margin: 0;
  font-size: 21px;
}

.dc24-case__caption p {
  margin: 7px 0 0;
  color: var(--dc24-muted);
}

.dc24-results__disclaimer {
  margin: 26px 0 0;
  color: #727879;
  font-size: 13px;
  text-align: center;
}

.dc24-faq__layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 80px;
}

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

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

.dc24-faq summary {
  position: relative;
  padding: 23px 48px 23px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

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

.dc24-faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 20px;
  height: 20px;
  background: url("custom-assets/plus.svg") center / contain no-repeat;
  content: "";
  filter: invert(42%) sepia(26%) saturate(1010%) hue-rotate(136deg) brightness(91%);
  transform: translateY(-50%);
}

.dc24-faq details[open] summary::after {
  background-image: url("custom-assets/minus.svg");
}

.dc24-faq details p {
  margin: -5px 0 24px;
  padding-right: 48px;
  color: var(--dc24-muted);
}

.dc24-final-cta {
  padding: 76px 0;
  background: var(--dc24-teal);
  color: var(--dc24-white);
}

.dc24-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.dc24-final-cta h2 {
  max-width: 720px;
}

.dc24-final-cta p:last-child {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.dc24-footer {
  padding: 68px 0 20px;
  background: var(--dc24-charcoal);
  color: var(--dc24-white);
}

.dc24-footer__inner {
  display: grid;
  padding-bottom: 48px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 64px;
}

.dc24-footer__inner > div:first-child img {
  width: 250px;
  padding: 10px;
  background: var(--dc24-white);
}

.dc24-footer p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.dc24-footer h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.dc24-footer a {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.dc24-footer a:hover {
  color: var(--dc24-white);
}

.dc24-footer__legal {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.dc24-contact-dock {
  display: none;
}

@media (max-width: 1120px) {
  .dc24-header__inner {
    gap: 18px;
  }

  .dc24-logo {
    width: 205px;
  }

  .dc24-nav {
    gap: 17px;
  }

  .dc24-nav a {
    font-size: 14px;
  }

  .dc24-header__cta {
    padding: 0 18px;
  }

  .dc24-price-panel__amount {
    font-size: 38px;
  }
}

@media (max-width: 919px) {
  body {
    padding-bottom: 82px;
  }

  .dc24-container,
  .dc24-header__inner {
    width: min(100% - 32px, 1224px);
  }

  .dc24-header {
    height: 78px;
  }

  .dc24-logo {
    width: 190px;
  }

  .dc24-nav,
  .dc24-header__cta {
    display: none;
  }

  .dc24-menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    place-items: center;
    border: 1px solid var(--dc24-line);
    border-radius: 6px;
    background: var(--dc24-white);
    cursor: pointer;
  }

  .dc24-menu-button img {
    width: 24px;
    height: 24px;
  }

  .dc24-menu-button__close,
  .dc24-menu-button[aria-expanded="true"] .dc24-menu-button__open {
    display: none;
  }

  .dc24-menu-button[aria-expanded="true"] .dc24-menu-button__close {
    display: block;
  }

  .dc24-mobile-nav {
    position: fixed;
    z-index: 99;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 34px 24px 110px;
    flex-direction: column;
    gap: 2px;
    background: var(--dc24-white);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .dc24-mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .dc24-mobile-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--dc24-line);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
  }

  .dc24-mobile-nav a.is-active {
    color: var(--dc24-teal);
  }

  .dc24-mobile-nav__call {
    margin-top: 22px;
    border: 1px solid var(--dc24-teal) !important;
    border-radius: 6px;
    background: var(--dc24-teal);
    color: var(--dc24-white);
    text-align: center;
  }

  .dc24-hero {
    min-height: min(700px, calc(100svh - 124px));
  }

  .dc24-hero__media {
    object-position: 55% center;
  }

  .dc24-hero__content {
    padding: 58px 0 68px;
  }

  .dc24-hero h1 {
    font-size: 48px;
  }

  .dc24-fit,
  .dc24-package,
  .dc24-results,
  .dc24-faq {
    padding: 76px 0;
  }

  .dc24-section-heading h2,
  .dc24-package h2,
  .dc24-final-cta h2 {
    font-size: 38px;
  }

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

  .dc24-package__layout,
  .dc24-faq__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .dc24-process__steps li:nth-child(2) {
    border-right: 0;
  }

  .dc24-process__steps li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .dc24-results__grid {
    grid-template-columns: 1fr;
  }

  .dc24-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .dc24-footer__inner {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 32px;
  }

  .dc24-contact-dock {
    position: fixed;
    z-index: 120;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    min-height: 62px;
    padding: 5px;
    gap: 6px;
    border: 1px solid rgba(28, 72, 76, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 38px rgba(20, 48, 51, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .dc24-contact-dock__action {
    display: flex;
    min-width: 0;
    min-height: 50px;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }

  .dc24-contact-dock__action img {
    width: 22px;
    height: 22px;
  }

  .dc24-contact-dock__action--messenger {
    border: 1px solid #b9d4d6;
    background: #f4f9f9;
    color: #163f43;
  }

  .dc24-contact-dock__action--call {
    border: 1px solid var(--dc24-teal);
    background: var(--dc24-teal);
    color: var(--dc24-white);
  }

  .dc24-contact-dock__action--call img {
    filter: brightness(0) invert(1);
  }
}

@media (max-width: 640px) {
  .dc24-header {
    height: 72px;
  }

  .dc24-logo {
    width: 168px;
  }

  .dc24-mobile-nav {
    top: 72px;
  }

  .dc24-hero {
    min-height: min(770px, calc(100svh - 186px));
  }

  .dc24-hero__content {
    padding: 46px 0 60px;
  }

  .dc24-hero h1 {
    font-size: 42px;
  }

  .dc24-hero__promise {
    font-size: 22px;
  }

  .dc24-hero__lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .dc24-hero__price {
    margin-top: 22px;
    flex-direction: column;
    gap: 4px;
  }

  .dc24-hero__price span {
    font-size: 24px;
  }

  .dc24-hero__price small {
    max-width: none;
    text-align: center;
  }

  .dc24-actions {
    margin-top: 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .dc24-button {
    width: 100%;
  }

  .dc24-hero__next {
    display: none;
  }

  .dc24-fit,
  .dc24-package,
  .dc24-results,
  .dc24-faq {
    padding: 64px 0;
  }

  .dc24-section-heading {
    margin-bottom: 34px;
  }

  .dc24-section-heading h2,
  .dc24-package h2,
  .dc24-final-cta h2 {
    font-size: 34px;
  }

  .dc24-section-heading > p:last-child,
  .dc24-package__intro {
    font-size: 16px;
  }

  .dc24-fit__grid,
  .dc24-check-list,
  .dc24-process__steps {
    grid-template-columns: 1fr;
  }

  .dc24-fit__grid {
    gap: 26px;
  }

  .dc24-check-list {
    gap: 13px;
  }

  .dc24-check-list li {
    min-height: 0;
  }

  .dc24-price-panel {
    padding: 28px 24px;
  }

  .dc24-price-panel__amount {
    font-size: 37px;
  }

  .dc24-process {
    padding: 64px 0;
  }

  .dc24-process__steps li,
  .dc24-process__steps li:nth-child(2),
  .dc24-process__steps li:nth-child(n + 3) {
    min-height: 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
  }

  .dc24-case__caption {
    padding: 21px 20px 23px;
  }

  .dc24-compare__label {
    top: 10px;
    max-width: 130px;
  }

  .dc24-compare__label--before {
    left: 10px;
  }

  .dc24-compare__label--after {
    right: 10px;
  }

  .dc24-faq__layout {
    gap: 24px;
  }

  .dc24-faq summary {
    padding-right: 38px;
    font-size: 17px;
  }

  .dc24-faq details p {
    padding-right: 0;
  }

  .dc24-final-cta {
    padding: 58px 0;
  }

  .dc24-footer {
    padding-top: 54px;
  }

  .dc24-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 370px) {
  .dc24-logo {
    width: 150px;
  }

  .dc24-hero h1 {
    font-size: 37px;
  }

  .dc24-contact-dock__action {
    font-size: 13px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
