.child-support {
  position: relative;
  padding: clamp(72px, 8vw, 112px) max(22px, calc((100vw - 1160px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 10%, rgba(255, 220, 103, .2), transparent 24%),
    radial-gradient(circle at 94% 88%, rgba(87, 210, 192, .16), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f8fcff 100%);
}

.child-support::before,
.child-support::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
}

.child-support::before {
  width: 180px;
  height: 180px;
  top: 35px;
  left: -105px;
  background: rgba(68, 126, 241, .08);
}

.child-support::after {
  width: 140px;
  height: 140px;
  right: -70px;
  bottom: 70px;
  background: rgba(255, 191, 70, .13);
}

.child-support__shell {
  width: min(1160px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.child-support__heading {
  max-width: 850px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
}

.child-support__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(36, 81, 220, .14);
  border-radius: 999px;
  background: rgba(235, 245, 255, .86);
  color: #2451dc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.25;
}

.child-support__heading h2 {
  max-width: 780px;
  margin: 0 auto 22px;
  color: #13213b;
  font-size: clamp(34px, 4.25vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.child-support__heading p {
  max-width: 830px;
  margin: 0 auto;
  color: #607089;
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.68;
  text-wrap: pretty;
}

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

.child-support__card {
  --card-accent: #4c73ec;
  --card-soft: #edf3ff;
  min-width: 0;
  min-height: 250px;
  padding: 28px 26px 26px;
  border: 1px solid rgba(112, 142, 201, .18);
  border-radius: 24px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 18px 45px rgba(44, 75, 138, .09);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  animation: child-support-enter .65s cubic-bezier(.22, 1, .36, 1) both;
}

.child-support__card:nth-child(2) { animation-delay: .05s; }
.child-support__card:nth-child(3) { animation-delay: .1s; }
.child-support__card:nth-child(4) { animation-delay: .15s; }
.child-support__card:nth-child(5) { animation-delay: .2s; }
.child-support__card:nth-child(6) { animation-delay: .25s; }

.child-support__card--sleep { --card-accent: #735ad9; --card-soft: #f1edff; }
.child-support__card--energy { --card-accent: #e99a17; --card-soft: #fff6dc; }
.child-support__card--immunity { --card-accent: #1ea86c; --card-soft: #e7f8ef; }
.child-support__card--growth { --card-accent: #2b9b90; --card-soft: #e6f8f6; }
.child-support__card--complete { --card-accent: #e86979; --card-soft: #fff0f3; }

.child-support__card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--card-accent) 32%, transparent);
  box-shadow: 0 24px 55px rgba(44, 75, 138, .15);
}

.child-support__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 14%, transparent);
  border-radius: 17px;
  background: var(--card-soft);
  color: var(--card-accent);
  font-size: 25px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.child-support__card h3 {
  margin: 0 0 12px;
  color: #172641;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.child-support__card p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.child-support__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.child-support__button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid #14b85e;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.child-support__button--primary {
  background: #14b85e;
  color: #fff;
  box-shadow: 0 12px 25px rgba(20, 184, 94, .23);
}

.child-support__button--secondary {
  background: #fff;
  color: #0e9550;
}

.child-support__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(20, 184, 94, .2);
}

.child-support__button:focus-visible {
  outline: 3px solid rgba(36, 81, 220, .35);
  outline-offset: 3px;
}

.child-support__notice {
  max-width: 850px;
  margin: 25px auto 0;
  color: #7b879a;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

@keyframes child-support-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .child-support__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .child-support__card { min-height: 238px; }
}

@media (max-width: 620px) {
  .child-support {
    padding: 64px 16px;
  }

  .child-support__heading {
    margin-bottom: 34px;
  }

  .child-support__eyebrow {
    max-width: 100%;
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: .1em;
  }

  .child-support__heading h2 {
    font-size: clamp(31px, 9.3vw, 40px);
    line-height: 1.08;
  }

  .child-support__heading p {
    font-size: 17px;
    line-height: 1.62;
  }

  .child-support__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .child-support__card {
    min-height: 0;
    padding: 23px 21px;
    border-radius: 21px;
  }

  .child-support__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 15px;
    font-size: 23px;
  }

  .child-support__card h3 { font-size: 20px; }
  .child-support__card p { font-size: 16px; }

  .child-support__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .child-support__button {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .child-support__notice {
    margin-top: 22px;
    padding-inline: 6px;
    font-size: 12px;
  }
}

/* 90-day routine evolution */
.evolution-90 {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 112px) max(20px, calc((100vw - 1160px) / 2));
  background: linear-gradient(135deg, #f6fbff 0%, #ffffff 52%, #f3fbf7 100%);
}
.evolution-90__shell {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 6vw, 84px);
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: center;
}
.evolution-90__visual { min-width: 0; }
.evolution-90__image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
  border: 1px solid rgba(72, 116, 209, .16);
  border-radius: 28px;
  background: #eaf5ff;
  box-shadow: 0 20px 50px rgba(44, 75, 138, .13);
}
.evolution-90__image-wrap img { width: 100%; height: 100%; display: block; object-fit: cover; }
.evolution-90__tag {
  display: inline-block;
  margin-bottom: 14px;
  color: #2451dc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.evolution-90__visual h2 {
  max-width: 520px;
  margin: 0 0 14px;
  color: #13213b;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.evolution-90__visual p { max-width: 520px; margin: 0; color: #607089; font-size: 17px; line-height: 1.65; }
.evolution-90__timeline { position: relative; min-width: 0; padding-left: 28px; }
.evolution-90__timeline::before { content: ""; position: absolute; left: 12px; top: 18px; bottom: 74px; width: 2px; background: linear-gradient(#78a2ff, #14b85e); }
.evolution-90__step { position: relative; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 18px; margin-bottom: 22px; }
.evolution-90__marker { z-index: 1; display: grid; place-items: center; width: 42px; height: 42px; border: 4px solid #fff; border-radius: 50%; background: #2e59df; color: #fff; font-size: 15px; font-weight: 900; box-shadow: 0 5px 16px rgba(46, 89, 223, .25); }
.evolution-90__content { padding: 20px 22px; border: 1px solid rgba(112, 142, 201, .2); border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 12px 30px rgba(44,75,138,.08); transition: transform .25s ease, box-shadow .25s ease; }
.evolution-90__content:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(44,75,138,.13); }
.evolution-90__period { color: #2451dc; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.evolution-90__content h3 { margin: 8px 0 8px; color: #172641; font-size: 21px; line-height: 1.2; }
.evolution-90__content p { margin: 0; color: #64748b; font-size: 16px; line-height: 1.55; }
.evolution-90__cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; margin: 2px 0 0 60px; padding: 14px 24px; border-radius: 999px; background: #14b85e; color: #fff; font-size: 16px; font-weight: 800; text-decoration: none; box-shadow: 0 12px 25px rgba(20,184,94,.22); transition: transform .25s ease, box-shadow .25s ease; }
.evolution-90__cta:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(20,184,94,.28); }
.evolution-90__cta:focus-visible { outline: 3px solid rgba(36,81,220,.35); outline-offset: 3px; }
@media (max-width: 760px) {
  .evolution-90 { padding: 64px 16px; }
  .evolution-90__shell { grid-template-columns: 1fr; gap: 34px; }
  .evolution-90__visual h2 { font-size: clamp(30px, 9vw, 40px); }
  .evolution-90__visual p { font-size: 16px; }
  .evolution-90__timeline { padding-left: 0; }
  .evolution-90__timeline::before { left: 20px; top: 18px; bottom: 70px; }
  .evolution-90__step { grid-template-columns: 42px minmax(0, 1fr); gap: 14px; }
  .evolution-90__content { padding: 17px 16px; }
  .evolution-90__content h3 { font-size: 19px; }
  .evolution-90__content p { font-size: 15px; }
  .evolution-90__cta { width: calc(100% - 56px); margin-left: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  .evolution-90__content, .evolution-90__cta { transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  .child-support__card,
  .child-support__button {
    animation: none;
    transition: none;
  }
}
