.subscription-offer,
.therapist-services {
  --offer-navy: #112b55;
  width: min(calc(100vw - 64px), 1480px);
  margin-top: clamp(42px, 6vw, 72px);
  margin-left: 50%;
  transform: translateX(-50%);
}

.subscription-offer {
  position: relative;
  isolation: isolate;
  padding-top: 12px;
}

.subscription-offer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -24px -34px -28px;
  border-radius: 44px;
}

.subscription-offer__header,
.therapist-services__header {
  text-align: center;
}

.subscription-offer__header h2,
.therapist-services__header h2 {
  margin: 0;
  color: var(--offer-navy);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.subscription-offer__return-note {
  width: min(100%, 720px);
  margin: 16px auto 0;
  color: #52657f;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
}

.subscription-offer__return-note strong {
  color: var(--offer-navy);
}

.subscription-offer__panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(430px, 1.18fr);
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(30px, 3vw, 46px);
  border: 3px solid #2c82ed;
  border-radius: 34px;
  padding: clamp(28px, 3.5vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(31, 69, 120, 0.12);
}

.subscription-offer__summary {
  padding-right: clamp(18px, 3.2vw, 48px);
  border-right: 1px solid #d9e1ec;
}

.subscription-offer__intro,
.therapist-service-card__main {
  display: grid;
  grid-template-columns: clamp(150px, 14vw, 205px) minmax(0, 1fr);
  gap: clamp(22px, 2.5vw, 38px);
  align-items: center;
}

.subscription-offer__image,
.therapist-service-card__image {
  display: grid;
  aspect-ratio: 1;
  place-items: end center;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, #eaf6ff, #dceeff);
}

.subscription-offer__image img,
.therapist-service-card__image img {
  display: block;
  width: 94%;
  max-height: 98%;
  object-fit: contain;
  object-position: center bottom;
}

.subscription-offer__intro h3,
.subscription-offer__plans > h3,
.therapist-service-card h3 {
  color: var(--offer-navy);
  font-weight: 950;
}

.subscription-offer__intro h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 2.6vw, 43px);
  line-height: 1.08;
}

.subscription-offer__intro p {
  margin: 0;
  color: #263a5c;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.55;
}

.subscription-offer__benefits {
  display: grid;
  margin: clamp(26px, 3vw, 40px) 0 0;
  padding: 0;
  color: #20375d;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 750;
  line-height: 1.45;
  list-style: none;
}

.subscription-offer__benefits li {
  position: relative;
  min-height: 48px;
  padding: 11px 0 11px 48px;
  border-bottom: 1px solid #e4eaf2;
}

.subscription-offer__benefits li::before,
.therapist-service-card__copy li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2f86ec;
  color: #fff;
  font-weight: 950;
  line-height: 1;
}

.subscription-offer__benefits li::before {
  top: 11px;
  width: 29px;
  height: 29px;
  font-size: 18px;
}

.subscription-offer__plans > h3 {
  margin: 0 0 24px;
  font-size: clamp(20px, 1.8vw, 27px);
  text-align: center;
}

.subscription-offer__plan-list {
  display: grid;
  gap: 18px;
}

.subscription-offer__plan {
  position: relative;
  display: grid;
  min-height: 78px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 3px solid transparent;
  border-radius: 17px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #3695f4, #2c80e8);
  color: #fff;
  box-shadow: 0 12px 25px rgba(40, 126, 225, 0.2);
  cursor: pointer;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.subscription-offer__plan:nth-child(3n) {
  background: linear-gradient(135deg, #9764e6, #7940d5);
}

.subscription-offer__plan:hover {
  transform: translateY(-1px);
}

.subscription-offer__plan:has(input:focus-visible) {
  outline: 4px solid rgba(47, 141, 244, 0.24);
  outline-offset: 3px;
}

.subscription-offer__plan:has(input:checked) {
  border-color: #fff;
  box-shadow: 0 0 0 3px #2681eb, 0 14px 28px rgba(40, 126, 225, 0.24);
}

.subscription-offer__plan input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.subscription-offer__radio {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid rgba(17, 43, 85, 0.25);
  border-radius: 50%;
  background: #fff;
}

.subscription-offer__plan input:checked + .subscription-offer__radio::after {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ff588b;
}

.subscription-offer__plan-title {
  font-size: clamp(19px, 1.7vw, 26px);
  font-weight: 900;
}

.subscription-offer__plan-prices {
  display: flex;
  gap: 15px;
  align-items: baseline;
  white-space: nowrap;
}

.subscription-offer__plan-prices strong {
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 950;
}

.subscription-offer__plan-prices del {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.2vw, 19px);
}

.subscription-offer__plan-badge {
  position: absolute;
  z-index: 2;
  top: -16px;
  left: 50%;
  border-radius: 999px;
  padding: 5px 18px;
  background: #eef3ff;
  color: #2f4163;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  transform: translateX(-50%);
}

.subscription-offer__submit {
  width: 100%;
  min-height: 72px;
  margin-top: 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #9962e8, #753bd3);
  box-shadow: 0 14px 28px rgba(117, 59, 211, 0.24);
  font-size: clamp(20px, 1.8vw, 28px);
}

.subscription-offer__submit:hover {
  background: linear-gradient(135deg, #8a54d9, #6930c3);
}

.subscription-offer__unavailable {
  color: #536176;
  font-weight: 750;
  text-align: center;
}

.subscription-offer__trust {
  display: flex;
  width: fit-content;
  max-width: min(100%, 800px);
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
  justify-content: center;
  margin: 22px auto 0;
  border: 1px solid rgba(244, 190, 103, 0.35);
  border-radius: 18px;
  padding: 14px 28px;
  background: rgba(255, 249, 236, 0.9);
  color: #25344e;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 700;
  text-align: center;
}

.subscription-offer__trust span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  background: #ff5f82;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}

.therapist-services {
  overflow: hidden;
  border-radius: 36px;
  padding: clamp(40px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 170, 192, 0.1), transparent 20%),
    radial-gradient(circle at 90% 75%, rgba(180, 151, 235, 0.12), transparent 24%),
    linear-gradient(135deg, #fffdfb, #fffaf8 48%, #fdfbff);
  box-shadow: 0 18px 50px rgba(79, 64, 51, 0.06);
}

.therapist-services__header p {
  margin: 18px auto 0;
  color: #5b687c;
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 700;
}

.therapist-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 32px);
  margin-top: clamp(34px, 4vw, 52px);
}

.therapist-service-card {
  display: flex;
  min-width: 0;
  min-height: 585px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid #dcd3f4;
  border-radius: 30px;
  padding: clamp(26px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(77, 64, 110, 0.06);
}

.therapist-service-card--lessons {
  border-color: #f6cbd8;
}

.therapist-service-card__image {
  background: linear-gradient(145deg, #f0ebff, #e8ddff);
}

.therapist-service-card--lessons .therapist-service-card__image {
  background: linear-gradient(145deg, #fff0f4, #ffe1e9);
}

.therapist-service-card h3 {
  margin: 4px 0 16px;
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.08;
}

.therapist-service-card__copy > p {
  margin: 0;
  color: #40506a;
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 700;
  line-height: 1.55;
}

.therapist-service-card__copy ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  color: #294064;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 750;
  list-style: none;
}

.therapist-service-card__copy li {
  position: relative;
  padding-left: 32px;
}

.therapist-service-card__copy li::before {
  top: 0;
  width: 22px;
  height: 22px;
  background: #a980e9;
  font-size: 13px;
}

.therapist-service-card--lessons .therapist-service-card__copy li::before {
  background: #fa7fa7;
}

.therapist-service-card__footer {
  display: grid;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid #e8e2f4;
}

.therapist-service-card__price {
  margin: 0;
  color: var(--offer-navy);
  font-size: clamp(30px, 2.6vw, 43px);
  font-weight: 950;
  text-align: center;
}

.therapist-service-card__button {
  min-height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ad82eb, #9965e1);
  box-shadow: 0 12px 24px rgba(153, 101, 225, 0.2);
  font-size: clamp(17px, 1.5vw, 22px);
}

.therapist-service-card--lessons .therapist-service-card__button {
  background: linear-gradient(135deg, #f77ca4, #ef5f91);
}

.therapist-service-card__note {
  display: grid;
  min-height: 70px;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0;
  border-radius: 17px;
  padding: 14px 20px;
  background: #f7f2ff;
  color: #46546b;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
}

.therapist-service-card--lessons .therapist-service-card__note {
  background: #fff2f6;
}

.therapist-service-card__note-icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .therapist-service-card__main {
    display: block;
  }

  .therapist-service-card__image {
    width: 150px;
    margin: 0 auto 20px;
  }

  .therapist-service-card h3,
  .therapist-service-card__copy > p {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .subscription-offer,
  .therapist-services {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .subscription-offer__panel,
  .therapist-services__grid {
    grid-template-columns: 1fr;
  }

  .subscription-offer__summary {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 0;
  }

  .therapist-service-card {
    min-height: 0;
  }

  .therapist-service-card__main {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .therapist-service-card__image {
    width: auto;
    margin: 0;
  }

  .therapist-service-card h3,
  .therapist-service-card__copy > p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .subscription-offer,
  .therapist-services {
    margin-top: 30px;
  }

  .subscription-offer__header h2,
  .therapist-services__header h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .subscription-offer__panel {
    gap: 24px;
    margin-top: 22px;
    border-width: 2px;
    border-radius: 24px;
    padding: 20px 16px;
  }

  .subscription-offer__intro {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 16px;
  }

  .subscription-offer__intro h3 {
    margin-bottom: 8px;
    font-size: 25px;
  }

  .subscription-offer__intro p,
  .subscription-offer__benefits {
    font-size: 14px;
  }

  .subscription-offer__plan {
    min-height: 68px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 11px;
    border-width: 2px;
    padding: 12px 14px;
  }

  .subscription-offer__radio {
    width: 31px;
    height: 31px;
  }

  .subscription-offer__plan-title {
    font-size: 17px;
  }

  .subscription-offer__plan-prices {
    grid-column: 2;
    justify-self: start;
  }

  .subscription-offer__submit {
    min-height: 56px;
    margin-top: 22px;
    font-size: 18px;
  }

  .subscription-offer__trust {
    padding: 12px 14px;
    font-size: 13px;
  }

  .therapist-services {
    border-radius: 24px;
    padding: 30px 14px 16px;
  }

  .therapist-services__header p {
    margin-top: 12px;
    font-size: 15px;
  }

  .therapist-services__grid {
    gap: 16px;
    margin-top: 24px;
  }

  .therapist-service-card {
    gap: 22px;
    border-radius: 22px;
    padding: 20px 16px;
  }

  .therapist-service-card__main {
    display: block;
  }

  .therapist-service-card__image {
    width: 130px;
    margin: 0 auto 16px;
  }

  .therapist-service-card h3,
  .therapist-service-card__copy > p {
    text-align: center;
  }

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

  .therapist-service-card__copy ul {
    margin-top: 20px;
    font-size: 14px;
  }

  .therapist-service-card__price {
    font-size: 30px;
  }
}

/* Subscription offer proportions from the approved desktop mockup. */
.subscription-offer {
  width: min(calc(100vw - 32px), 1480px);
  padding-top: 0;
}

.subscription-offer::before {
  inset: -12px 0 -20px;
  border-radius: 38px;
}

.subscription-offer__header,
.subscription-offer__panel,
.subscription-offer__trust {
  position: relative;
  z-index: 1;
}

.subscription-offer__side-art {
  position: absolute;
  z-index: 0;
  bottom: 0;
  display: block;
  width: auto;
  height: calc(100% + clamp(76px, 6.3vw, 94px));
  pointer-events: none;
  user-select: none;
}

.subscription-offer__side-art--left {
  right: 100%;
}

.subscription-offer__side-art--right {
  left: 100%;
}

.subscription-offer__header h2 {
  font-size: clamp(36px, 3.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.subscription-offer__panel-stage {
  position: relative;
  z-index: 0;
  width: min(78vw, 1308px);
  margin: clamp(28px, 2.8vw, 40px) auto 0;
  isolation: isolate;
}

.subscription-offer__panel {
  width: 100%;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 0;
  margin: 0;
  border-width: 3px;
  border-radius: 32px;
  padding: clamp(24px, 1.8vw, 30px);
}

.subscription-offer__summary {
  padding-right: clamp(28px, 3vw, 46px);
}

.subscription-offer__intro {
  grid-template-columns: clamp(145px, 11vw, 180px) minmax(0, 1fr);
  gap: clamp(20px, 2vw, 32px);
}

.subscription-offer__image {
  width: 100%;
  max-width: 180px;
  justify-self: center;
}

.subscription-offer__intro h3 {
  margin-bottom: 14px;
  font-size: clamp(27px, 2.05vw, 34px);
  line-height: 1.1;
  white-space: nowrap;
}

.subscription-offer__intro p {
  font-size: clamp(14px, 1.06vw, 17px);
  font-weight: 650;
  line-height: 1.52;
}

.subscription-offer__benefits {
  margin-top: clamp(24px, 2.1vw, 32px);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 700;
}

.subscription-offer__benefits li {
  min-height: 43px;
  padding: 9px 0 9px 42px;
}

.subscription-offer__benefits li:last-child {
  border-bottom: 0;
}

.subscription-offer__benefits li::before {
  top: 8px;
  left: 2px;
  width: 26px;
  height: 26px;
  font-size: 16px;
}

.subscription-offer__plans {
  padding: 0 clamp(18px, 1.5vw, 24px) 0 clamp(24px, 2vw, 30px);
}

.subscription-offer__plans > h3 {
  margin-bottom: 24px;
  font-size: clamp(18px, 1.35vw, 22px);
}

.subscription-offer__plan-list {
  gap: clamp(22px, 1.8vw, 29px);
}

.subscription-offer__plan {
  min-height: clamp(66px, 4.75vw, 78px);
  grid-template-columns: 38px minmax(120px, 1fr) auto auto;
  gap: clamp(10px, 1.2vw, 18px);
  border-width: 2px;
  border-radius: 15px;
  padding: 10px 16px;
  box-shadow: 0 9px 18px rgba(40, 126, 225, 0.16);
}

.subscription-offer__plan:nth-child(3n) {
  background: linear-gradient(135deg, #3695f4, #2c80e8);
}

.subscription-offer__plan--best-value {
  background: linear-gradient(135deg, #9560e4, #7a42d5) !important;
  box-shadow: 0 9px 18px rgba(121, 64, 213, 0.17);
}

.subscription-offer__plan:has(input:checked) {
  border-color: #fff;
  box-shadow: 0 0 0 3px #2681eb, 0 10px 22px rgba(40, 126, 225, 0.2);
}

.subscription-offer__radio {
  width: 36px;
  height: 36px;
}

.subscription-offer__plan input:checked + .subscription-offer__radio::after {
  width: 16px;
  height: 16px;
}

.subscription-offer__plan-title {
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 850;
  white-space: nowrap;
}

.subscription-offer__plan-prices {
  gap: 12px;
}

.subscription-offer__plan-prices strong {
  font-size: clamp(21px, 1.65vw, 27px);
}

.subscription-offer__plan-prices del {
  font-size: clamp(13px, 1vw, 17px);
}

.subscription-offer__plan-badge {
  top: -14px;
  min-width: 138px;
  border: 1px solid rgba(176, 187, 220, 0.3);
  padding: 4px 15px;
  background: linear-gradient(180deg, #f8f9ff 0%, #e3e8fa 100%);
  box-shadow: 0 3px 8px rgba(69, 85, 127, 0.08);
  font-size: clamp(11px, 0.85vw, 14px);
  font-weight: 750;
  text-align: center;
}

.subscription-offer__discount {
  display: inline-flex;
  min-width: 58px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 5px 9px;
  background: #ff5f88;
  color: #fff;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.subscription-offer__submit {
  min-height: clamp(62px, 4.8vw, 76px);
  margin-top: clamp(24px, 2.1vw, 32px);
  border-radius: 14px;
  font-size: clamp(19px, 1.55vw, 25px);
}

.subscription-offer__trust {
  display: grid;
  width: min(690px, calc(100% - 32px));
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  justify-content: stretch;
  margin-top: 18px;
  border-radius: 18px;
  padding: 11px 24px;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.22;
  text-align: left;
}

.subscription-offer__trust .subscription-offer__trust-icon {
  display: grid;
  width: 44px;
  height: 48px;
  place-items: center;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(145deg, #ff718d, #e64364);
  clip-path: polygon(50% 0, 92% 15%, 84% 67%, 50% 100%, 16% 67%, 8% 15%);
  font-size: 23px;
}

.subscription-offer__trust .subscription-offer__trust-copy,
.subscription-offer__trust-copy span {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.subscription-offer__trust-copy strong {
  display: block;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .subscription-offer__side-art {
    display: none;
  }

  .subscription-offer__panel-stage {
    width: min(760px, 100%);
  }

  .subscription-offer__panel {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .subscription-offer__summary {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 0;
  }

  .subscription-offer__plans {
    padding: 28px 0 0;
  }
}

@media (max-width: 620px) {
  .subscription-offer {
    width: 100%;
  }

  .subscription-offer__header h2 {
    font-size: clamp(29px, 8.4vw, 36px);
  }

  .subscription-offer__panel-stage,
  .subscription-offer__panel {
    width: 100%;
  }

  .subscription-offer__panel {
    padding: 20px 16px;
  }

  .subscription-offer__intro {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .subscription-offer__intro h3 {
    font-size: 23px;
    white-space: normal;
  }

  .subscription-offer__plans {
    padding-top: 24px;
  }

  .subscription-offer__plan-list {
    gap: 20px;
  }

  .subscription-offer__plan {
    min-height: 58px;
    grid-template-columns: 28px minmax(48px, 1fr) auto auto;
    gap: 7px;
    padding: 8px 10px;
  }

  .subscription-offer__radio {
    grid-row: 1;
    width: 28px;
    height: 28px;
  }

  .subscription-offer__plan-title {
    grid-column: 2;
    font-size: 15px;
    white-space: nowrap;
  }

  .subscription-offer__plan-prices {
    grid-column: 3;
    gap: 6px;
    justify-self: end;
  }

  .subscription-offer__plan-prices strong {
    font-size: 17px;
  }

  .subscription-offer__plan-prices del {
    font-size: 11px;
  }

  .subscription-offer__discount {
    grid-row: 1;
    grid-column: 4;
    min-width: 44px;
    min-height: 30px;
    padding: 4px 6px;
    font-size: 11px;
  }

  .subscription-offer__plan-badge {
    top: -11px;
    min-width: 118px;
    font-size: 10px;
  }

  .subscription-offer__submit {
    min-height: 54px;
    margin-top: 22px;
    font-size: 18px;
  }

  .subscription-offer__trust {
    width: 100%;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 13px;
    font-size: 12px;
  }

  .subscription-offer__trust .subscription-offer__trust-icon {
    width: 36px;
    height: 40px;
    font-size: 19px;
  }
}

/* Speech therapist services proportions from the approved desktop mockup. */
.therapist-services {
  position: relative;
  isolation: isolate;
  width: min(calc(100vw - 24px), 1648px);
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(38px, 2.8vw, 46px) clamp(76px, 7.6vw, 125px) clamp(42px, 3vw, 50px);
  background: linear-gradient(135deg, #fffdfb, #fffaf8 52%, #fdfbff);
}

.therapist-services__header,
.therapist-services__grid {
  position: relative;
  z-index: 1;
}

.therapist-services__art {
  position: absolute;
  z-index: 0;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.therapist-services__art--left-icon {
  top: 14.5%;
  left: 14.2%;
  width: clamp(34px, 2.55vw, 43px);
}

.therapist-services__art--right-icon {
  top: 14.2%;
  right: 13.7%;
  width: clamp(38px, 2.85vw, 48px);
}

.therapist-services__art--left-sky {
  top: 59%;
  left: 0;
  width: clamp(108px, 8vw, 135px);
}

.therapist-services__art--right-sky {
  top: 48%;
  right: 0;
  width: clamp(115px, 8.55vw, 144px);
}

.therapist-services__header h2 {
  font-size: clamp(38px, 3.15vw, 52px);
  letter-spacing: -0.025em;
}

.therapist-services__header p {
  margin-top: 16px;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.35;
}

.therapist-services__grid {
  gap: clamp(22px, 1.7vw, 28px);
  margin-top: clamp(34px, 2.55vw, 42px);
}

.therapist-service-card {
  min-height: clamp(540px, 39vw, 570px);
  gap: 20px;
  border-radius: 24px;
  padding: clamp(26px, 2vw, 34px);
}

.therapist-service-card__main {
  grid-template-columns: clamp(172px, 12vw, 200px) minmax(0, 1fr);
  gap: clamp(22px, 1.8vw, 30px);
  align-items: start;
}

.therapist-service-card h3 {
  margin: 3px 0 13px;
  font-size: clamp(27px, 2vw, 34px);
  line-height: 1.08;
}

.therapist-service-card__copy > p {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.5;
}

.therapist-service-card__copy ul {
  gap: 10px;
  margin-top: 22px;
  font-size: clamp(13px, 0.95vw, 15px);
}

.therapist-service-card__copy li {
  min-height: 20px;
  padding-left: 29px;
}

.therapist-service-card__copy li::before {
  width: 20px;
  height: 20px;
  font-size: 12px;
}

.therapist-service-card__footer {
  gap: 14px;
  padding-top: 22px;
}

.therapist-service-card__price {
  font-size: clamp(30px, 2.25vw, 38px);
  line-height: 1;
}

.therapist-service-card__button {
  min-height: 52px;
  border-radius: 13px;
  font-size: clamp(16px, 1.25vw, 20px);
}

.therapist-service-card__note {
  min-height: 70px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: clamp(12px, 0.92vw, 14px);
  line-height: 1.45;
}

.therapist-service-card__note-icon {
  width: 34px;
  height: 34px;
}

@media (max-width: 1180px) {
  .therapist-services {
    padding-right: clamp(34px, 5vw, 58px);
    padding-left: clamp(34px, 5vw, 58px);
  }

  .therapist-service-card {
    min-height: 540px;
  }

  .therapist-service-card__main {
    display: block;
  }

  .therapist-service-card__image {
    width: 142px;
    margin: 0 auto 17px;
  }

  .therapist-service-card h3,
  .therapist-service-card__copy > p {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .therapist-services {
    width: 100%;
    padding: 34px 24px 28px;
  }

  .therapist-services__art {
    display: none;
  }

  .therapist-services__grid {
    width: min(660px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .therapist-service-card {
    min-height: 0;
  }

  .therapist-service-card__main {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .therapist-service-card__image {
    width: auto;
    margin: 0;
  }

  .therapist-service-card h3,
  .therapist-service-card__copy > p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .therapist-services {
    border-radius: 22px;
    padding: 28px 14px 18px;
  }

  .therapist-services__header h2 {
    font-size: 33px;
  }

  .therapist-services__header p {
    margin-top: 10px;
    font-size: 14px;
  }

  .therapist-services__grid {
    gap: 15px;
    margin-top: 22px;
  }

  .therapist-service-card {
    gap: 18px;
    border-radius: 20px;
    padding: 18px 15px;
  }

  .therapist-service-card__main {
    display: block;
  }

  .therapist-service-card__image {
    width: 116px;
    margin: 0 auto 14px;
  }

  .therapist-service-card h3,
  .therapist-service-card__copy > p {
    text-align: center;
  }

  .therapist-service-card h3 {
    margin-bottom: 9px;
    font-size: 24px;
  }

  .therapist-service-card__copy > p,
  .therapist-service-card__copy ul {
    font-size: 13px;
  }

  .therapist-service-card__copy ul {
    gap: 8px;
    margin-top: 16px;
  }

  .therapist-service-card__footer {
    gap: 12px;
    padding-top: 18px;
  }

  .therapist-service-card__price {
    font-size: 28px;
  }

  .therapist-service-card__button {
    min-height: 48px;
    font-size: 16px;
  }

  .therapist-service-card__note {
    min-height: 62px;
    padding: 10px 13px;
    font-size: 12px;
  }
}
