:root {
  --about-purple: #5e17eb;
  --about-purple-dark: #2f0a78;
  --about-yellow: #f9c809;
  --about-ink: #21173a;
  --about-copy: #665d76;
  --about-line: rgba(94, 23, 235, .13);
  --about-surface: #ffffff;
}

body.about-body {
  overflow-x: hidden;
  color: var(--about-ink);
  background: #faf9ff;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--about-purple);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.about-page {
  position: relative;
}

.about-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.about-hero.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(120px, 14vh, 140px) 24px clamp(24px, 4vh, 42px);
  text-align: left;
  background:
    linear-gradient(rgba(255, 255, 255, .72), rgba(255, 255, 255, .9)),
    radial-gradient(circle at 76% 28%, rgba(94, 23, 235, .18), transparent 38%);
}

.about-hero::before {
  opacity: .58;
}

.about-hero::after {
  opacity: .22;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(38px, 5vw, 72px);
}

.about-hero-copy {
  max-width: 700px;
}

.about-hero .eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--about-purple);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.about-hero .eyebrow {
  margin-bottom: 14px;
}

.about-hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(44px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -.058em;
}

.about-hero h1 span {
  color: var(--about-purple);
}

.about-hero .hero-copy {
  max-width: 670px;
  margin: 20px 0 0;
  color: var(--about-copy);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.58;
}

.hero-stripe-card {
  width: min(100%, 390px);
  justify-self: end;
  padding: 14px;
  border: 1px solid rgba(94, 23, 235, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(48, 18, 104, .1);
}

.hero-stripe-card .stripe-emblem {
  border-radius: 15px;
}

.hero-stripe-card .stripe-copy {
  padding: 15px 10px 7px;
}

.hero-stripe-card .program-badge {
  min-height: 28px;
  margin-bottom: 11px;
  padding: 0 11px;
  font-size: 10px;
  letter-spacing: .065em;
}

.hero-stripe-card h2 {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.24;
  letter-spacing: -.025em;
}

.hero-stripe-card .stripe-copy > p {
  margin-top: 12px;
  color: var(--about-copy);
  font-size: 12px;
  line-height: 1.58;
}

.hero-stripe-card .stripe-copy > p strong {
  color: #403653;
  font-weight: 700;
}

.outcome-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(94, 23, 235, .13);
  border-radius: 999px;
  color: #4b3e60;
  background: rgba(255, 255, 255, .7);
  box-shadow: inset 0 1px rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 700;
}

.outcome-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--about-yellow);
  box-shadow: 0 0 0 3px rgba(249, 200, 9, .16);
}

.process-board {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(94, 23, 235, .13);
  border-radius: 28px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 28px 80px rgba(67, 25, 145, .16), inset 0 1px rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}

.process-board::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(94, 23, 235, .13);
  filter: blur(12px);
}

.process-board-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.process-board-head span:first-child {
  color: #463956;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.process-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #5c5269;
  font-size: 10px;
  font-weight: 700;
}

.process-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
}

.process-track {
  position: relative;
  display: grid;
  gap: 12px;
}

.process-track::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 39px;
  bottom: 39px;
  left: 24px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(var(--about-yellow), var(--about-purple));
  opacity: .65;
}

.process-node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 10px 14px 10px 0;
  border: 1px solid rgba(94, 23, 235, .1);
  border-radius: 17px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 24px rgba(48, 18, 104, .06);
}

.process-node-index {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-left: 0;
  border: 1px solid rgba(94, 23, 235, .14);
  border-radius: 14px;
  color: var(--about-purple);
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

.process-node strong {
  display: block;
  color: #30263e;
  font-size: 14px;
  line-height: 1.3;
}

.process-node small {
  display: block;
  margin-top: 3px;
  color: #847a90;
  font-size: 10px;
  line-height: 1.4;
}

.process-node svg {
  width: 18px;
  height: 18px;
  color: var(--about-purple);
}

.about-section {
  position: relative;
  padding: 116px 0;
}

.about-section.services-section {
  background: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 48px;
  margin-bottom: 52px;
}

.section-heading h2,
.approach-copy h2,
.vision-copy h2,
.about-cta h2 {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.section-heading > p,
.approach-copy > p,
.stripe-copy > p,
.vision-copy > p {
  margin: 0;
  color: var(--about-copy);
  font-size: 16px;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 24px;
  background: linear-gradient(160deg, #fff, #fbf9ff);
  box-shadow: 0 18px 50px rgba(48, 18, 104, .07);
  transition: border-color .28s ease, box-shadow .28s ease;
}

.service-card::after {
  content: attr(data-index);
  position: absolute;
  top: 12px;
  right: 18px;
  color: rgba(94, 23, 235, .055);
  font-size: 116px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.08em;
}

.service-card:hover {
  border-color: rgba(94, 23, 235, .25);
  box-shadow: 0 26px 64px rgba(48, 18, 104, .11);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 52px;
  border: 1px solid rgba(94, 23, 235, .14);
  border-radius: 17px;
  color: var(--about-purple);
  background: rgba(94, 23, 235, .075);
}

.service-card:nth-child(2) .service-icon {
  color: #765a00;
  border-color: rgba(249, 200, 9, .3);
  background: rgba(249, 200, 9, .14);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 0 16px;
  color: #2f2540;
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: -.025em;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #6b6278;
  font-size: 14px;
  line-height: 1.72;
}

.service-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.service-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 2px solid transparent;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  transform: translateY(0);
  transition: filter .16s ease, box-shadow .12s ease, transform .12s ease;
}

.service-action-primary {
  color: #fff;
  border-color: #6d2bed;
  background: var(--about-purple);
  box-shadow: 0 5px 0 #3d0c9f;
}

.service-action-primary:hover {
  color: #fff;
  background: var(--about-purple);
  filter: brightness(1.04);
}

.service-action-secondary {
  color: var(--about-purple);
  border-color: #ddd3f2;
  background: #fff;
  box-shadow: 0 5px 0 #c5b7df;
}

.service-action-secondary:hover {
  color: var(--about-purple);
  background: #fff;
  filter: brightness(.985);
}

.service-action:active {
  transform: translateY(4px);
}

.service-action-primary:active {
  box-shadow: 0 1px 0 #3d0c9f;
}

.service-action-secondary:active {
  box-shadow: 0 1px 0 #c5b7df;
}

.service-action:focus-visible {
  outline: 3px solid rgba(94, 23, 235, .22);
  outline-offset: 4px;
}

.approach-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #faf9ff;
}

.approach-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 4vw, 58px);
  padding: clamp(38px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(94, 23, 235, .11);
  border-radius: 28px;
  color: var(--about-ink);
  background: #fff;
  box-shadow: 0 20px 56px rgba(48, 18, 104, .07);
}

.approach-panel::before {
  content: none;
}

.approach-copy,
.approach-vision,
.process-flow {
  position: relative;
  z-index: 1;
}

.approach-copy .section-kicker,
.approach-vision .section-kicker {
  color: var(--about-purple);
}

.approach-copy h2,
.approach-vision h2 {
  color: var(--about-ink);
}

.approach-panel .approach-copy h2,
.approach-panel .approach-vision h2 {
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.approach-copy > p,
.approach-vision > p {
  margin-top: 20px;
  color: var(--about-copy);
  font-size: 15px;
  line-height: 1.68;
}

.approach-vision {
  padding-left: clamp(28px, 3vw, 44px);
  border-left: 1px solid rgba(94, 23, 235, .12);
}

.process-flow {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 4px 0 0;
  padding: 36px 0 4px;
  border-top: 1px solid rgba(94, 23, 235, .11);
  list-style: none;
}

.process-flow li {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 0;
  padding: 0 clamp(10px, 1.5vw, 22px);
  text-align: center;
}

.process-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  left: calc(50% + 33px);
  width: calc(100% - 66px);
  height: 2px;
  background: rgba(94, 23, 235, .16);
}

.process-flow span {
  position: relative;
  z-index: 1;
  display: grid;
  place-content: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--about-purple);
  border-radius: 50%;
  color: var(--about-purple);
  background: #fff;
  box-shadow: 0 0 0 7px #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.process-flow small {
  margin-top: 22px;
  color: var(--about-purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

.process-flow strong {
  display: block;
  max-width: 220px;
  margin-top: 10px;
  color: #372b47;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.38;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.value-item {
  min-height: 126px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .085);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}

.value-item span {
  display: block;
  margin-bottom: 25px;
  color: var(--about-yellow);
  font-size: 11px;
  font-weight: 800;
}

.value-item strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.3;
}

.stripe-section {
  background: #fff;
}

.stripe-card {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
  padding: clamp(36px, 6vw, 76px);
  border: 1px solid var(--about-line);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #f8f5ff);
  box-shadow: 0 24px 70px rgba(48, 18, 104, .08);
}

.stripe-emblem {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 25px;
  background: #fff;
}

.stripe-emblem img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stripe-copy .program-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  margin-bottom: 20px;
  padding: 0 13px;
  border: 1px solid rgba(99, 91, 255, .2);
  border-radius: 999px;
  color: #544dd3;
  background: rgba(99, 91, 255, .08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stripe-copy .program-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  transform-origin: center;
  animation: liveStatusBreath 2.2s cubic-bezier(.4, 0, .2, 1) infinite;
  will-change: transform, box-shadow;
}

.stripe-copy > p {
  margin-top: 24px;
}

.stripe-copy > p strong {
  color: var(--about-ink);
}

.vision-section {
  padding-top: 96px;
  padding-bottom: 126px;
  background: #faf9ff;
}

.vision-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.vision-copy > p {
  margin-top: 26px;
}

.vision-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vision-step {
  min-height: 150px;
  padding: 23px;
  border: 1px solid var(--about-line);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(48, 18, 104, .06);
}

.vision-step span {
  display: block;
  margin-bottom: 30px;
  color: var(--about-purple);
  font-size: 11px;
  font-weight: 800;
}

.vision-step strong {
  display: block;
  color: #372b47;
  font-size: 16px;
  line-height: 1.4;
}

.about-cta-section {
  padding: 0 0 120px;
  background: #faf9ff;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(34px, 5vw, 60px);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(48, 18, 104, .08);
}

.about-cta h2 {
  max-width: 770px;
  font-size: clamp(32px, 3.7vw, 52px);
}

.about-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 174px;
  min-height: 54px;
  padding: 0 22px;
  border: 2px solid #6d2bed;
  border-bottom: 5px solid #3d0c9f;
  border-radius: 16px;
  color: #fff;
  background: var(--about-purple);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  transform: translateY(0);
  transition: filter .16s ease, border-width .12s ease, transform .12s ease;
}

.about-cta-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.about-cta-link:hover {
  color: #fff;
  background: var(--about-purple);
  filter: brightness(1.04);
}

.about-cta-link:focus-visible {
  background: var(--about-purple);
  outline: 3px solid rgba(94, 23, 235, .18);
  outline-offset: 3px;
}

.about-cta-link:active {
  border-bottom-width: 2px;
  filter: brightness(.96);
  transform: translateY(3px);
}

.about-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, .72);
  background: #21173a;
}

.about-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.about-footer-brand strong {
  color: #fff;
  font-size: 14px;
}

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

@media (max-width: 1080px) {
  .about-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    gap: 32px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }
}

@media (max-width: 820px) {
  .about-shell {
    width: min(720px, calc(100% - 32px));
  }

  .about-hero.hero {
    min-height: auto;
    padding: 132px 16px 84px;
  }

  .about-hero-inner,
  .section-heading,
  .approach-panel,
  .stripe-card,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-inner {
    gap: 46px;
  }

  .about-hero-copy {
    max-width: none;
  }

  .hero-stripe-card {
    width: min(100%, 560px);
    justify-self: start;
  }

  .about-hero h1 {
    max-width: 700px;
    font-size: clamp(42px, 9vw, 64px);
  }

  .about-hero .hero-copy {
    max-width: 680px;
  }

  .process-board {
    width: min(100%, 560px);
  }

  .about-section {
    padding: 84px 0;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 38px;
  }

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

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .service-icon {
    margin-bottom: 38px;
  }

  .approach-panel {
    gap: 42px;
  }

  .approach-vision {
    padding-top: 34px;
    padding-left: 0;
    border-top: 1px solid rgba(94, 23, 235, .11);
    border-left: 0;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 32px;
  }

  .process-flow li {
    align-items: flex-start;
    min-height: 112px;
    padding: 0 0 26px 78px;
    text-align: left;
  }

  .process-flow li:not(:last-child)::after {
    top: 59px;
    bottom: 7px;
    left: 25px;
    width: 2px;
    height: auto;
  }

  .process-flow span {
    position: absolute;
    top: 0;
    left: 0;
  }

  .process-flow small {
    margin-top: 4px;
  }

  .process-flow strong {
    max-width: 440px;
  }

  .stripe-card,
  .vision-grid {
    gap: 42px;
  }

  .stripe-emblem {
    min-height: 0;
  }

  .about-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .about-shell {
    width: calc(100% - 28px);
  }

  .about-hero.hero {
    padding: 118px 14px 68px;
  }

  .about-hero h1 {
    font-size: clamp(36px, 11.2vw, 50px);
    line-height: 1.04;
    letter-spacing: -.052em;
  }

  .about-hero .hero-copy {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.68;
  }

  .outcome-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-list li {
    justify-content: center;
    padding: 0 9px;
    font-size: 10px;
  }

  .process-board {
    padding: 16px;
    border-radius: 22px;
  }

  .process-node {
    grid-template-columns: 42px 1fr 16px;
    gap: 10px;
    min-height: 66px;
    padding-right: 10px;
  }

  .process-node-index {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .process-track::before {
    left: 21px;
  }

  .process-node strong {
    font-size: 12px;
  }

  .process-node small {
    font-size: 9px;
  }

  .about-section {
    padding: 68px 0;
  }

  .section-heading h2,
  .approach-copy h2,
  .vision-copy h2,
  .about-cta h2 {
    font-size: clamp(32px, 9.4vw, 44px);
  }

  .section-heading > p,
  .approach-copy > p,
  .stripe-copy > p,
  .vision-copy > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .service-card {
    padding: 24px;
    border-radius: 21px;
  }

  .service-card h3 {
    font-size: 21px;
  }

  .approach-panel,
  .stripe-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .value-grid,
  .vision-steps {
    grid-template-columns: 1fr;
  }

  .hero-stripe-card {
    padding: 10px;
    border-radius: 20px;
  }

  .hero-stripe-card .stripe-copy {
    padding: 11px 5px 3px;
  }

  .hero-stripe-card h2 {
    font-size: 19px;
    line-height: 1.24;
  }

  .hero-stripe-card .stripe-copy > p {
    margin-top: 11px;
    font-size: 12px;
    line-height: 1.56;
  }

  .process-flow {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .process-flow li {
    min-height: 108px;
  }

  .value-item,
  .vision-step {
    min-height: 112px;
  }

  .about-cta-section {
    padding-bottom: 76px;
  }

  .about-cta {
    padding: 28px 22px;
    border-radius: 23px;
  }

  .about-cta-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .about-cta-link,
  .skip-link {
    transition: none !important;
  }

  .service-card:hover {
    transform: none;
  }

  .stripe-copy .program-badge::before {
    animation: none;
  }
}
