/* Specialized Checkup Page — дизайн в стиле страницы Check-up (CheckupPage.modern.css)
   Тёплый беж + изумрудный, glass-карточки, градиентные иконки */

/* ===== Hero ===== */
.spc-hero {
  background: linear-gradient(135deg, #FEFCF8 0%, #F0F7FF 50%, #E8F5F0 100%);
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: block;
  text-align: center;
}

.spc-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-organic 8s ease-in-out infinite;
}

.spc-hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-organic 10s ease-in-out infinite reverse;
}

.spc-hero__content {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.spc-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1B5E45;
  text-decoration: none;
  margin-bottom: 28px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px rgba(27, 94, 69, 0.08);
  transition: all 0.3s ease;
}

.spc-hero__back:hover {
  background: white;
  transform: translateX(-4px);
}

.spc-hero__title {
  font-size: 48px;
  font-weight: 400;
  color: #1A2E1A;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.spc-hero__title em {
  color: #1B5E45;
  font-style: normal;
  position: relative;
}

.spc-hero__title em::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, rgba(27, 94, 69, 0.2), rgba(74, 144, 217, 0.3));
  border-radius: 4px;
  z-index: -1;
}

.spc-hero__subtitle {
  font-size: 18px;
  color: #3D5A3D;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 32px;
  font-weight: 400;
}

.spc-hero__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.spc-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 22px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(27, 94, 69, 0.08);
  text-align: left;
  transition: all 0.3s ease;
}

.spc-hero__meta-item:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(27, 94, 69, 0.12);
}

.spc-hero__meta-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.spc-hero__meta-item strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #1A2E1A;
  line-height: 1.15;
}

.spc-hero__meta-item span {
  font-size: 13px;
  color: #6B8B6B;
}

.spc-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Список программ ===== */
.spc-programs {
  padding: 100px 0 120px;
  background: white;
  position: relative;
}

.spc-programs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 217, 0.1), transparent);
}

.spc-programs__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.spc-program {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 4px 20px rgba(27, 94, 69, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spc-program:hover {
  background: white;
  box-shadow: 0 20px 60px rgba(27, 94, 69, 0.15);
  transform: translateY(-4px);
}

.spc-program__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.spc-program__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(27, 94, 69, 0.1);
}

.spc-program__head-info {
  flex: 1;
  min-width: 240px;
}

.spc-program__number {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #4A90D9;
}

.spc-program__title {
  font-size: 22px;
  font-weight: 700;
  color: #1A2E1A;
  margin-bottom: 6px;
  line-height: 1.3;
}

.spc-program__short {
  font-size: 14px;
  color: #3D5A3D;
}

.spc-program__price {
  text-align: right;
  flex-shrink: 0;
}

.spc-program__price-old {
  display: block;
  font-size: 14px;
  color: #6B8B6B;
  text-decoration: line-through;
}

.spc-program__price-new {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #1B5E45;
  line-height: 1.2;
}

.spc-program__price-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #1B5E45;
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.2s ease;
}

.spc-program__price-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.spc-program__price-link i {
  font-size: 11px;
}

.spc-program__desc {
  margin-top: 20px;
  font-size: 15px;
  color: #3D5A3D;
  line-height: 1.8;
}

.spc-program__services {
  margin-top: 22px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.04), rgba(27, 94, 69, 0.04));
  border: 1px solid rgba(74, 144, 217, 0.1);
  border-radius: 16px;
}

.spc-program__services h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1A2E1A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spc-program__services h4 i {
  color: #1B5E45;
}

.spc-program__services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.spc-program__services li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #3D5A3D;
  line-height: 1.5;
}

.spc-program__services li i {
  color: #1B5E45;
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.spc-program__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.spc-program__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  color: #1B5E45;
  border: 2px solid #1B5E45;
  background: transparent;
  text-decoration: none;
  transition: all 0.2s ease;
  height: 56px;
  box-sizing: border-box;
}

.spc-program__phone:hover {
  background: #1B5E45;
  color: white;
}

/* ===== Другие направления (карточки как на странице чекапов) ===== */
.spc-other {
  padding: 100px 0;
  background: linear-gradient(180deg, #FEFCF8 0%, white 50%, #FEFCF8 100%);
  position: relative;
}

.spc-other .checkup-programs__specialized-grid {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* spec-card — копия стилей со страницы чекапов (на этой странице свои) */
.spc-other .checkup-programs__specialized-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .spc-other .checkup-programs__specialized-grid {
    grid-template-columns: 1fr;
  }
}

.spc-other .spec-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1.5px solid #D1E0D9;
  box-shadow: 0 2px 12px rgba(27, 94, 69, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.spc-other .spec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27, 94, 69, 0.12);
  border-color: var(--spec-color, #1B5E45);
}

.spc-other .spec-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spc-other .spec-card__icon {
  font-size: 1.5rem;
}

.spc-other .spec-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.spc-other .spec-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--spec-color, #1B5E45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spc-other .spec-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1A2E1A;
  font-family: 'Inter', sans-serif;
}

.spc-other .spec-card__desc {
  font-size: 0.8125rem;
  color: #7A9B7A;
}

.spc-other .spec-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F5FAF8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A9B7A;
  font-size: 0.75rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.spc-other .spec-card:hover .spec-card__arrow {
  background: var(--spec-color, #1B5E45);
  color: white;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .spc-hero {
    padding: 130px 0 70px;
  }

  .spc-hero__title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .spc-hero {
    padding: 110px 0 56px;
  }

  .spc-hero__title {
    font-size: 31px;
  }

  .spc-hero__subtitle {
    font-size: 16px;
  }

  .spc-hero__meta-item {
    flex: 1 1 100%;
  }

  .spc-program {
    padding: 24px;
  }

  .spc-program__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .spc-program__price {
    text-align: left;
  }

  .spc-program__services ul {
    grid-template-columns: 1fr;
  }

  .spc-program__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .spc-program__phone {
    justify-content: center;
  }
}
