.cs-home {
  --cs-ink: #0a0e17;
  --cs-navy: #05060c;
  --cs-blue: #14294a;
  --cs-white: #ffffff;
  --cs-warm: #f7f8fa;
  --cs-muted-bg: #eceef2;
  --cs-border: #c8cdd6;
  --cs-border-light: #eceef2;
  --cs-copy: #5c6675;
  --cs-muted: #626b77;
  --cs-magenta: #ff2cb2;
  --cs-violet: #6f2cff;
  --cs-link: #0068eb;
  --cs-container: 86rem;
  min-height: 100vh;
  overflow: clip;
  background: var(--cs-white);
  color: var(--cs-ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

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

.cs-home h1,
.cs-home h2,
.cs-home h3,
.cs-home p,
.cs-home figure,
.cs-home ol {
  margin: 0;
}

.cs-home h1,
.cs-home h2,
.cs-home h3 {
  color: var(--cs-ink);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.cs-home a {
  color: inherit;
  text-decoration: none;
}

.cs-home img,
.cs-home video,
.cs-home svg {
  display: block;
  max-width: 100%;
}

.cs-home :focus-visible {
  outline: 3px solid #f21ea6;
  outline-offset: 3px;
}

.cs-container {
  width: min(calc(100% - clamp(2rem, 5vw, 5rem)), var(--cs-container));
  margin-inline: auto;
}

.cs-skip {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  background: var(--cs-navy);
  color: #fff !important;
  font-weight: 700;
  transform: translateY(-160%);
}

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

/* Header — deliberately mirrors the supplied site's restrained white chrome. */
.cs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--cs-border-light);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
}

.cs-header__inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cs-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.cs-brand img {
  width: auto;
  height: 4.125rem;
}

.cs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-left: auto;
}

.cs-nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  color: var(--cs-copy);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.cs-nav a:hover {
  background: var(--cs-muted-bg);
  color: var(--cs-ink);
}

.cs-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cs-mobile-nav {
  display: none;
  position: relative;
}

.cs-mobile-nav summary {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-content: center;
  gap: 0.28rem;
  border: 1px solid var(--cs-border);
  border-radius: 6px;
  list-style: none;
}

.cs-mobile-nav summary::-webkit-details-marker {
  display: none;
}

.cs-mobile-nav summary span {
  width: 1.15rem;
  height: 1.5px;
  background: var(--cs-ink);
}

.cs-mobile-nav nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: min(19rem, calc(100vw - 2rem));
  display: grid;
  padding: 0.75rem;
  border: 1px solid var(--cs-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(10, 14, 23, 0.16);
}

.cs-mobile-nav nav a {
  padding: 0.75rem 0.8rem;
  border-radius: 6px;
  color: var(--cs-copy);
  font-weight: 600;
}

.cs-mobile-nav nav a:hover {
  background: var(--cs-warm);
  color: var(--cs-ink);
}

/* Buttons */
.cs-button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: filter 180ms ease, background 180ms ease, border-color 180ms ease, transform 120ms ease;
}

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

.cs-button--small {
  min-height: 2.25rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
}

.cs-button--large {
  padding: 0.9rem 1.7rem;
  font-size: clamp(0.98rem, 0.85rem + 0.35vw, 1.17rem);
}

.cs-button--accent {
  background: linear-gradient(135deg, var(--cs-violet), #d6119a);
  color: #fff !important;
}

.cs-button--accent:hover {
  filter: brightness(1.09);
}

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

.cs-button--secondary:hover {
  border-color: var(--cs-copy);
  background: var(--cs-muted-bg);
}

.cs-button--ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(5, 6, 12, 0.65);
  color: #fff !important;
}

.cs-button--ghost:hover {
  background: rgba(5, 6, 12, 0.88);
}

/* Original full-width homepage video treatment. */
.cs-hero {
  background: var(--cs-navy);
}

.cs-hero__frame {
  position: relative;
  overflow: hidden;
  background: var(--cs-navy);
}

.cs-hero__video {
  width: 100%;
  height: auto;
  background: var(--cs-navy);
}

.cs-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(5, 6, 12, 0.18), rgba(5, 6, 12, 0.24) 45%, rgba(5, 6, 12, 0.58) 100%),
    linear-gradient(90deg, rgba(5, 6, 12, 0.35), transparent 68%);
  backdrop-filter: blur(2.5px) saturate(0.86);
}

.cs-hero__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--cs-navy);
  color: #fff;
}

.cs-hero__eyebrow {
  margin-bottom: 0.35em !important;
  color: var(--cs-magenta);
  font-size: clamp(0.86rem, 0.66rem + 0.9vw, 1.38rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cs-hero__overlay h1 {
  color: #fff;
  font-size: clamp(1.8rem, 0.66rem + 3.5vw, 4.1rem);
  font-weight: 700;
  line-height: 1.05;
}

.cs-hero__sub {
  margin-top: 0.4em !important;
  color: #e8ecf3;
  font-size: clamp(1.12rem, 0.84rem + 1.3vw, 1.8rem);
  line-height: 1.35;
}

.cs-hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cs-hero__actions .cs-button {
  min-width: 12rem;
  white-space: nowrap;
}

.cs-hero__toggle {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(5, 6, 12, 0.62);
  color: #fff;
}

.cs-hero__toggle:hover {
  background: rgba(5, 6, 12, 0.88);
}

.cs-hero__toggle svg {
  width: 1.45rem;
  height: 1.45rem;
}

/* Shared section language */
.cs-section {
  padding-block: clamp(4rem, 3rem + 4vw, 7rem);
}

.cs-section--subtle {
  background: var(--cs-warm);
}

.cs-eyebrow {
  margin-bottom: 0.65rem !important;
  color: var(--cs-violet);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.cs-section h2,
.cs-cta-strip h2,
.cs-final-cta h2 {
  font-size: clamp(1.85rem, 1.35rem + 1.55vw, 2.7rem);
}

.cs-section-head {
  max-width: 48rem;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

.cs-section-head > p:last-child {
  max-width: 43rem;
  margin-top: 1rem;
  color: var(--cs-copy);
  font-size: clamp(1rem, 0.92rem + 0.25vw, 1.13rem);
}

.cs-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cs-link) !important;
  font-weight: 700;
}

.cs-text-link span {
  transition: transform 180ms ease;
}

.cs-text-link:hover span {
  transform: translateX(3px);
}

/* Value proposition */
.cs-intro__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}

.cs-intro__lead > p {
  padding-left: 1.5rem;
  border-left: 2px solid var(--cs-magenta);
  color: var(--cs-copy);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.24rem);
}

.cs-outcomes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1vw + 0.6rem, 1.5rem);
}

.cs-outcome-card {
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  padding: clamp(1.4rem, 1rem + 1vw, 2rem);
  border: 1px solid var(--cs-border);
  border-radius: 16px;
  background: #fff;
}

.cs-icon {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  border-radius: 10px;
  background: var(--cs-navy);
  color: var(--cs-magenta);
}

.cs-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.cs-outcome-card h3 {
  font-size: clamp(1.15rem, 1.05rem + 0.35vw, 1.38rem);
}

.cs-outcome-card p {
  color: var(--cs-copy);
  font-size: 0.93rem;
}

.cs-section-link {
  margin-top: 1.8rem !important;
}

/* Audience routes */
.cs-audiences {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1vw + 0.6rem, 1.6rem);
}

.cs-audience-card {
  min-height: 27rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 1rem + 1.5vw, 2.5rem);
  border: 1px solid var(--cs-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(10, 14, 23, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.cs-audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--cs-magenta);
  box-shadow: 0 14px 38px rgba(10, 14, 23, 0.09);
}

.cs-audience-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
  padding-bottom: 3rem;
  color: var(--cs-violet);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cs-audience-card__top > span {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--cs-magenta);
  border-radius: 50%;
  color: var(--cs-blue);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  letter-spacing: 0;
}

.cs-audience-card h3 {
  max-width: 18ch;
  margin-bottom: 1rem !important;
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem);
}

.cs-audience-card > p {
  margin-bottom: 2rem !important;
  color: var(--cs-copy);
  font-size: 0.95rem;
}

.cs-audience-card > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--cs-border-light);
  color: var(--cs-link);
  font-size: 0.92rem;
}

/* Workflow */
.cs-workflow__intro {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.65fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4.5rem);
}

.cs-workflow__intro > div:last-child > p {
  margin-bottom: 1rem !important;
  color: var(--cs-copy);
  font-size: 1.08rem;
}

.cs-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 0;
  list-style: none;
}

.cs-steps::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  right: 1.35rem;
  height: 1px;
  background: linear-gradient(90deg, var(--cs-magenta), var(--cs-violet));
}

.cs-steps li {
  position: relative;
  padding-right: 0.5rem;
}

.cs-steps li > span {
  position: relative;
  z-index: 1;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  border: 1px solid var(--cs-magenta);
  border-radius: 50%;
  background: #fff;
  color: var(--cs-blue);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

.cs-steps h3 {
  margin-bottom: 0.6rem !important;
  font-size: 1.15rem;
}

.cs-steps p {
  color: var(--cs-copy);
  font-size: 0.9rem;
}

/* Existing secondary film */
.cs-film .cs-section-head {
  max-width: 50rem;
}

.cs-film figure {
  width: min(100%, 52rem);
  margin-inline: auto;
}

.cs-film video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border: 1px solid var(--cs-border);
  border-radius: 16px;
  background: var(--cs-navy);
  box-shadow: 0 12px 40px rgba(10, 14, 23, 0.12);
}

.cs-film figcaption {
  margin-top: 0.75rem;
  color: var(--cs-muted);
  font-size: 0.82rem;
  text-align: center;
}

/* Conversion strip */
.cs-cta-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(112deg, #05060c 0%, #16101d 58%, #291028 100%);
  color: #fff;
}

.cs-cta-strip::after {
  content: "";
  position: absolute;
  top: -16rem;
  right: -10rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 44, 178, 0.17), transparent 67%);
}

.cs-cta-strip__inner {
  position: relative;
  z-index: 1;
  min-height: 19rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding-block: clamp(3rem, 2rem + 3vw, 5rem);
}

.cs-cta-strip__inner > div {
  max-width: 48rem;
}

.cs-cta-strip h2,
.cs-final-cta h2 {
  color: #fff;
}

.cs-cta-strip h2 {
  margin-bottom: 0.8rem !important;
}

.cs-cta-strip__inner > div > p:last-child {
  max-width: 42rem;
  color: #aeb8c8;
  font-size: 1.05rem;
}

.cs-cta-strip .cs-eyebrow,
.cs-final-cta .cs-eyebrow {
  color: var(--cs-magenta);
}

/* Proof */
.cs-proof__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.cs-proof__grid article {
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.6rem, 1rem + 1.4vw, 2.5rem);
  border: 1px solid var(--cs-border);
  border-radius: 16px;
  background: #fff;
}

.cs-card-label {
  margin: 0.6rem 0 0.65rem !important;
  color: var(--cs-violet);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cs-proof__grid h3 {
  max-width: 27ch;
  margin-bottom: 1rem !important;
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem);
}

.cs-proof__grid article > p:not(.cs-card-label) {
  max-width: 47rem;
  margin-bottom: 2rem !important;
  color: var(--cs-copy);
}

.cs-proof__grid .cs-text-link {
  margin-top: auto;
}

.cs-proof__note {
  margin-top: 1.25rem !important;
  color: var(--cs-muted);
  font-size: 0.83rem;
}

/* FAQ */
.cs-faq__layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.cs-faq__layout .cs-section-head {
  position: sticky;
  top: 7rem;
  margin: 0;
}

.cs-faq__list {
  border-top: 1px solid var(--cs-border);
}

.cs-faq__list details {
  border-bottom: 1px solid var(--cs-border);
}

.cs-faq__list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  color: var(--cs-ink);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

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

.cs-faq__list summary span {
  width: 2rem;
  height: 2rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--cs-border);
  border-radius: 50%;
  color: var(--cs-violet);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.cs-faq__list details[open] summary span {
  transform: rotate(45deg);
}

.cs-faq__list details > p {
  max-width: 48rem;
  padding: 0 3.75rem 1.5rem 0;
  color: var(--cs-copy);
}

/* Final CTA and existing-style footer */
.cs-final-cta {
  background: var(--cs-navy);
  color: #fff;
}

.cs-final-cta .cs-container {
  padding-block: clamp(4rem, 3rem + 3vw, 6rem);
}

.cs-final-cta h2 {
  max-width: 22ch;
  margin-bottom: 1rem !important;
}

.cs-final-cta > div > p:not(.cs-eyebrow) {
  max-width: 48rem;
  color: #aeb8c8;
  font-size: 1.05rem;
}

.cs-final-cta > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.cs-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0e17;
  color: #9aa6ba;
}

.cs-footer__top {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 2fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding-block: clamp(3.5rem, 2.5rem + 3vw, 5.5rem);
}

.cs-brand--light img {
  height: 4.875rem;
}

.cs-footer__positioning > p {
  max-width: 28rem;
  margin-top: 1.25rem !important;
  font-size: 0.94rem;
}

.cs-footer__groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.cs-footer__groups > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.cs-footer__groups h2 {
  margin-bottom: 0.4rem !important;
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.cs-footer__groups a,
.cs-footer__bottom a {
  color: #9aa6ba;
  font-size: 0.84rem;
}

.cs-footer__groups a:hover,
.cs-footer__bottom a:hover {
  color: #fff;
}

.cs-footer__bottom {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cs-footer__bottom p {
  font-size: 0.82rem;
}

.cs-footer__bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

@media (min-width: 48rem) {
  .cs-hero__video {
    height: min(56.25vw, calc(100svh - 4.5rem));
    min-height: 22rem;
    object-fit: cover;
  }

  .cs-hero__overlay {
    position: absolute;
    left: 10%;
    right: clamp(1.5rem, 4.7vw, 5rem);
    bottom: 20%;
    padding: 0;
    background: none;
    gap: clamp(0.9rem, 0.4rem + 1.2vw, 1.6rem);
  }

  .cs-hero__overlay h1 {
    white-space: nowrap;
  }

  .cs-hero__eyebrow,
  .cs-hero__overlay h1,
  .cs-hero__sub {
    text-shadow: 0 2px 14px rgba(5, 6, 12, 0.8), 0 1px 3px rgba(5, 6, 12, 0.9);
  }
}

@media (max-width: 74rem) {
  .cs-nav {
    display: none;
  }

  .cs-mobile-nav {
    display: block;
  }

  .cs-header__actions {
    margin-left: auto;
  }

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

  .cs-outcome-card {
    min-height: 14rem;
  }

  .cs-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 2.5rem;
  }

  .cs-steps::before {
    display: none;
  }
}

@media (max-width: 58rem) {
  .cs-intro__lead,
  .cs-workflow__intro,
  .cs-faq__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .cs-intro__lead > p {
    max-width: 46rem;
  }

  .cs-audiences {
    grid-template-columns: 1fr;
  }

  .cs-audience-card {
    min-height: 0;
  }

  .cs-audience-card__top {
    margin-bottom: 2rem;
    padding-bottom: 0;
  }

  .cs-proof__grid {
    grid-template-columns: 1fr;
  }

  .cs-proof__grid article {
    min-height: 21rem;
  }

  .cs-faq__layout .cs-section-head {
    position: static;
  }

  .cs-cta-strip__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cs-cta-strip__inner > .cs-button {
    justify-self: start;
  }

  .cs-footer__top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 42rem) {
  .cs-container {
    width: min(calc(100% - 2rem), var(--cs-container));
  }

  .cs-header__actions {
    display: none;
  }

  .cs-brand img {
    height: 3.75rem;
  }

  .cs-hero__scrim {
    bottom: auto;
    height: 56.25vw;
  }

  .cs-hero__actions {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .cs-hero__actions .cs-button {
    width: 100%;
  }

  .cs-outcomes,
  .cs-steps {
    grid-template-columns: 1fr;
  }

  .cs-outcome-card {
    min-height: 0;
  }

  .cs-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
  }

  .cs-steps li > span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .cs-faq__list summary {
    font-size: 0.97rem;
  }

  .cs-footer__groups {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

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

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