/* Check-Up program: visual language aligned with native MD templates */
check_content.checkup_v2 {
  gap: 2.8rem;
  font-size: 15px;
  line-height: 1.45;
  color: #333;
  align-items: stretch;
}

check_content.checkup_v2 p {
  line-height: 1.45;
}

.cu_section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.cu_section + .cu_section {
  margin-top: .5rem;
}

.cu_title {
  margin: 0;
  text-align: center;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: #233742;
}

.cu_section .cu_title {
  margin-bottom: .35rem;
}

.cu_title::after {
  content: "";
  display: block;
  width: 5rem;
  height: 2px;
  margin: 1rem auto 0;
  background: #2bb2a3;
}

.cu_subtitle {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  color: #555;
  font-size: 15px;
}

.cu_grid {
  display: grid;
  gap: 1rem;
}

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

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

.cu_grid_timeline .cu_card_wide {
  grid-column: 1 / -1;
}

.cu_card,
.cu_panel {
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 0 .75rem rgb(0 0 0 / .04);
}

.cu_card_head {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .65rem;
}

.cu_panel_head {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .65rem;
}

.cu_icon {
  font-size: 20px;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #bfe9e4;
  background: #f4fbfa;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .85);
  flex: 0 0 44px;
}

.cu_icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.cu_card_title,
.cu_panel_title {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  color: #233742;
}

.cu_card_text {
  margin: 0;
  color: #333;
  font-size: 15px;
}

.cu_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.cu_list li {
  position: relative;
  padding: .65rem 0 .65rem 1.35rem;
  border-bottom: 1px solid #dbdbdb;
  color: #333;
}

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

.cu_list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .65rem;
  color: #2bb2a3;
  font-weight: 700;
}

.cu_list_money li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
}

.cu_list_money li strong {
  white-space: nowrap;
  font-size: 17px;
  line-height: 1.2;
}

.cu_price_footer {
  margin-top: .65rem;
  padding-top: .65rem;
  border-top: 1px solid #dbdbdb;
  display: grid;
  gap: .35rem;
}

.cu_price_footer p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  color: #333;
}

.cu_price_footer strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: #233742;
}

.cu_price_footer .cu_price_main {
  color: #2bb2a3;
}

.cu_price_footer .cu_price_old {
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  color: #e56773;
}

.cu_price_footer .cu_sum_program .cu_price_main {
  font-size: 32px;
}

.cu_price_footer p:first-child strong {
  color: #e56773;
}

.cu_note {
  color: #666;
  font-size: 13px;
}

.cu_stats_box {
  background: #eaf5f4;
  border: 1px solid #cfe8e5;
  border-radius: 1rem;
  padding: 1.5rem;
  width: 100%;
}

.cu_stats_title {
  margin: 0 0 .9rem 0;
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 700;
  color: #233742;
}

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

.cu_stat_item {
  text-align: center;
  padding: .5rem;
}

.cu_stat_value {
  margin-bottom: .35rem;
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  color: #2bb2a3;
}

.cu_stat_text {
  color: #333;
  font-size: 15px;
}

.cu_faq {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  width: 100%;
}

.cu_faq_item {
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  outline: none;
  box-shadow: none;
}

.cu_faq_item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  color: #233742;
  border-bottom: none;
  outline: none;
  box-shadow: none;
}

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

.cu_faq_item:focus,
.cu_faq_item:focus-visible,
.cu_faq_item summary:focus,
.cu_faq_item summary:focus-visible {
  outline: none;
  box-shadow: none;
}

.cu_faq_item summary::after {
  content: "▾";
  flex: 0 0 auto;
  color: #e56773;
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease;
}

.cu_faq_item[open] summary::after {
  transform: rotate(180deg);
}

.cu_faq_body {
  padding: 1rem 1.2rem 1.15rem;
  color: #333;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .cu_title {
    font-size: 34px;
  }

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

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

@media (max-width: 640px) {
  check_content.checkup_v2 {
    gap: 2rem;
  }

  .cu_title {
    font-size: 27px;
  }

  .cu_subtitle {
    font-size: 14px;
  }

  .cu_grid_2,
  .cu_grid_3,
  .cu_stats_grid {
    grid-template-columns: 1fr;
  }

  .cu_card,
  .cu_panel,
  .cu_stats_box,
  .cu_faq_item {
    border-radius: .85rem;
  }

  .cu_card_title,
  .cu_panel_title,
  .cu_faq_item summary {
    font-size: 16px;
  }

  .cu_icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .cu_icon img {
    width: 22px;
    height: 22px;
  }

  .cu_price_footer p {
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
  }

  .cu_price_footer strong {
    font-size: 23px;
  }

  .cu_price_footer .cu_price_old {
    font-size: 19px;
  }

  .cu_price_footer .cu_sum_program .cu_price_main {
    font-size: 26px;
  }

  .cu_stats_title {
    font-size: 22px;
  }

  .cu_stat_value {
    font-size: 40px;
  }
}
