/* Checkup Page - Modern Clean Design */
/* Дизайн выполнен по аналогии со страницей офтальмологии: тёплый беж + изумрудный */

:root {
  --primary: #1B5E45;
  --primary-light: #2D7A5F;
  --primary-dark: #124734;
  --primary-soft: rgba(27, 94, 69, 0.08);
  --primary-medium: rgba(27, 94, 69, 0.15);
  --accent-blue: #4A90D9;
  --accent-teal: #5BB8B0;
  --bg-warm: #FEFCF8;
  --bg-cream: #FDF9F3;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --text-dark: #1A2E1A;
  --text-medium: #3D5A3D;
  --text-light: #6B8B6B;
  --shadow-soft: 0 4px 20px rgba(27, 94, 69, 0.08);
  --shadow-medium: 0 8px 32px rgba(27, 94, 69, 0.12);
  --shadow-strong: 0 20px 60px rgba(27, 94, 69, 0.15);
}

/* ========== Hero Section ========== */
.specialty-hero {
  background: linear-gradient(135deg, #FEFCF8 0%, #F0F7FF 50%, #E8F5F0 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.specialty-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;
}

.specialty-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;
}

@keyframes pulse-organic {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.specialty-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.specialty-hero__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */
.specialty-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 28px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.specialty-hero__badge-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--accent-blue), #6BA3E8);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 144, 217, 0.4);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 20px 5px rgba(74, 144, 217, 0.2);
  }
}

/* Typography */
.specialty-hero__title {
  font-size: 56px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.specialty-hero__title em {
  color: var(--primary);
  font-style: normal;
  position: relative;
}

.specialty-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;
}

.specialty-hero__subtitle {
  font-size: 20px;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 400;
}

/* Feature Cards */
.specialty-hero__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.specialty-hero__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
}

.specialty-hero__feature:hover {
  background: white;
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-medium);
  border-color: rgba(74, 144, 217, 0.2);
}

.specialty-hero__feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-blue), #6BA3E8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(74, 144, 217, 0.3);
}

.specialty-hero__feature span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

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

/* Hero Visual - Blob */
.specialty-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.hero__blob-bg {
  position: absolute;
  top: 16px;
  right: -18px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.09) 0%, rgba(27, 94, 69, 0.07) 100%);
  border-radius: 50% / 42%;
  animation: pulse-organic 8s ease-in-out infinite;
}

@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
  75% { border-radius: 60% 30% 60% 40% / 70% 40% 50% 60%; }
}

.hero__deco-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.1), rgba(27, 94, 69, 0.1));
}

.hero__deco-circle--1 {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -20px;
  animation: float-circle 7s ease-in-out infinite;
}

.hero__deco-circle--2 {
  width: 100px;
  height: 100px;
  bottom: -10px;
  left: -60px;
  animation: float-circle 5s ease-in-out infinite reverse;
}

.hero__deco-circle--3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: -70px;
  animation: float-circle 6s ease-in-out infinite;
}

@keyframes float-circle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero__image-container {
  position: relative;
  z-index: 1;
}

.hero__image-blob {
  border-radius: 50% / 38%;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(74, 144, 217, 0.25),
    0 10px 30px rgba(27, 94, 69, 0.1);
  border: 8px solid white;
  position: relative;
  aspect-ratio: 16 / 10;
}

.hero__image-blob::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(74, 144, 217, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero__image-blob:hover .hero__img {
  transform: scale(1.05);
}

.chk-hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8F5F0 0%, #D1E7DD 100%);
  color: var(--primary);
  font-size: 3.5rem;
}

/* ========== Section Header (общий) ========== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 400;
}

/* ========== Why Section (Почему выбирают) ========== */
.why-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, white 50%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.why-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.why-section__card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.why-section__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--primary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-section__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong);
  background: white;
}

.why-section__card:hover::before {
  transform: scaleX(1);
}

.why-section__card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-blue), #6BA3E8);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(74, 144, 217, 0.3);
  transition: transform 0.4s ease;
}

.why-section__card:nth-child(2) .why-section__card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 10px 30px rgba(27, 94, 69, 0.3);
}

.why-section__card:nth-child(3) .why-section__card-icon {
  background: linear-gradient(135deg, #5BB8B0, #3DA8A0);
  box-shadow: 0 10px 30px rgba(91, 184, 176, 0.3);
}

.why-section__card:nth-child(4) .why-section__card-icon {
  background: linear-gradient(135deg, #F4A261, #E89550);
  box-shadow: 0 10px 30px rgba(244, 162, 97, 0.3);
}

.why-section__card:nth-child(5) .why-section__card-icon {
  background: linear-gradient(135deg, #E76F51, #D45A3F);
  box-shadow: 0 10px 30px rgba(231, 111, 81, 0.3);
}

.why-section__card:nth-child(6) .why-section__card-icon {
  background: linear-gradient(135deg, #9B72AA, #7D5490);
  box-shadow: 0 10px 30px rgba(155, 114, 170, 0.3);
}

.why-section__card:hover .why-section__card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-section__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-section__card-text {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ========== Programs Section (Программы Check-up) ========== */
.programs-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

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

.programs-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.program-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong);
  background: white;
}

.program-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #E8F5F0 0%, #D1E7DD 100%);
}

.program-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-card__img {
  transform: scale(1.08);
}

.program-card__icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(27, 94, 69, 0.5);
}

.program-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(27, 94, 69, 0.3);
}

.program-card__body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-card__meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.program-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.program-card__desc {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.program-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.program-card__tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(74, 144, 217, 0.08);
  color: var(--primary);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
}

.program-card__tag--more {
  background: rgba(27, 94, 69, 0.06);
  color: var(--text-light);
}

.program-card__footer {
  padding: 22px 30px 26px;
  border-top: 1px solid rgba(74, 144, 217, 0.1);
}

.program-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.program-card__price-old {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}

.program-card__price-new {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

.program-card__price-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.2s ease;
}

.program-card__price-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.program-card__price-link i {
  font-size: 11px;
}

.program-card__btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.program-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 69, 0.35);
}

/* Hint */
.chk-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 18px 26px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.6;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
  text-align: center;
}

.chk-hint i {
  font-size: 18px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

/* ========== Steps Section (Как проходит) — стиль when-to-visit ========== */
.steps-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #F0F7FF 50%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}

.steps-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, rgba(74, 144, 217, 0.03), transparent);
}

.steps-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, var(--accent-blue), var(--primary));
  transition: height 0.4s ease;
  z-index: 0;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.step-card:hover::after {
  height: 6px;
}

.step-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-blue), #6BA3E8);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(74, 144, 217, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.step-card:nth-child(2) .step-card__icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 10px 30px rgba(27, 94, 69, 0.3);
}

.step-card:nth-child(3) .step-card__icon {
  background: linear-gradient(135deg, #5BB8B0, #3DA8A0);
  box-shadow: 0 10px 30px rgba(91, 184, 176, 0.3);
}

.step-card:nth-child(4) .step-card__icon {
  background: linear-gradient(135deg, #F4A261, #E89550);
  box-shadow: 0 10px 30px rgba(244, 162, 97, 0.3);
}

.step-card:hover .step-card__icon {
  transform: scale(1.15) rotate(10deg);
}

.step-card__number {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step-card__desc {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ========== Services Section (FAQ аккордеон) ========== */
.services-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

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

.services-section__accordion {
  max-width: 900px;
  margin: 60px auto 0;
}

.services-section__item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
}

.services-section__item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateX(4px);
}

.services-section__item--active {
  border-color: rgba(74, 144, 217, 0.3);
  box-shadow: var(--shadow-strong);
  background: white;
  transform: scale(1.01);
}

.services-section__header {
  width: 100%;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.services-section__header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.services-section__header-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.1), rgba(27, 94, 69, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-blue);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.services-section__item--active .services-section__header-icon {
  background: linear-gradient(135deg, var(--accent-blue), #6BA3E8);
  color: white;
  transform: scale(1.1);
}

.services-section__header-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.services-section__header-arrow {
  width: 44px;
  height: 44px;
  background: rgba(74, 144, 217, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-section__item--active .services-section__header-arrow {
  transform: rotate(180deg);
  background: var(--accent-blue);
  color: white;
}

.services-section__content {
  padding: 0 32px 32px;
}

.services-section__description {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ========== CTA Section ========== */
.chk-cta-section {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--bg-cream) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.chk-cta-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.when-to-visit__cta {
  text-align: center;
  margin-top: 0;
  padding: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 1;
}

.when-to-visit__cta-text {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 500;
}

.chk-cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.chk-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.chk-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  border: 2px solid var(--primary);
  background: transparent;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 56px;
  box-sizing: border-box;
}

.chk-cta-phone:hover {
  background: var(--primary);
  color: white;
}

/* ========== Reviews Section ========== */
.reviews-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-cream) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.reviews-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.reviews-section__card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-section__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  background: white;
}

.reviews-section__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.reviews-section__card-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-blue), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(74, 144, 217, 0.3);
}

.reviews-section__card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.reviews-section__card-rating {
  display: flex;
  gap: 4px;
}

.reviews-section__card-rating i {
  color: #ddd;
  font-size: 14px;
  transition: color 0.3s ease;
}

.reviews-section__card-rating i.filled {
  color: #E9C46A;
}

.reviews-section__card-text {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.reviews-section__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 144, 217, 0.1);
}

.reviews-section__card-program {
  font-size: 13px;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

/* ========== Doctors Section ========== */
.checkup-doctors {
  padding: 100px 0;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.checkup-doctors::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.checkup-doctors__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.checkup-doctors__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.checkup-doctors__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.checkup-doctors__subtitle {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 400;
}

/* ========== Contacts ========== */
.checkup-contacts {
  padding: 60px 0;
  background: #E8F5F0;
}

.checkup-contacts__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Modal ========== */
.chk-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 26, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 1.5rem;
}

.chk-modal__content {
  background: white;
  border-radius: 28px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(27, 94, 69, 0.25);
}

.chk-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-dark);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.chk-modal__close:hover {
  transform: rotate(90deg);
  color: var(--primary);
}

.chk-modal__header {
  height: 150px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.chk-modal__header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.chk-modal__icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

.chk-modal__body {
  padding: 2rem;
}

.chk-modal__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-blue), #6BA3E8);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.chk-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.chk-modal__desc {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

.chk-modal__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: linear-gradient(135deg, #E8F5F0 0%, #F5FAF8 100%);
  border-radius: 16px;
  margin-bottom: 14px;
}

.chk-modal__price-old {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}

.chk-modal__price-new {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.chk-modal__price-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.2s ease;
}

.chk-modal__price-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.chk-modal__price-link i {
  font-size: 11px;
}

.chk-modal__services {
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.03), rgba(27, 94, 69, 0.03));
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(74, 144, 217, 0.08);
}

.chk-modal__services h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.chk-modal__services li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-medium);
}

.chk-modal__services li i {
  color: var(--accent-blue);
  font-size: 12px;
  width: 20px;
  height: 20px;
  background: rgba(74, 144, 217, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chk-modal__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.chk-modal__actions .btn {
  flex: 1;
  min-width: 180px;
}

.chk-modal__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: var(--primary);
  border: 2px solid var(--primary);
  background: transparent;
  text-decoration: none;
  transition: all 0.2s ease;
  height: 56px;
  box-sizing: border-box;
}

.chk-modal__phone:hover {
  background: var(--primary);
  color: white;
}

/* Category programs inside modal */
.chk-category-programs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.chk-category-program {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chk-category-program:hover {
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-medium);
  transform: translateX(4px);
}

.chk-category-program__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chk-category-program__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.1), rgba(27, 94, 69, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.chk-category-program__info {
  flex: 1;
  min-width: 0;
}

.chk-category-program__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.chk-category-program__desc {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.5;
}

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

.chk-category-program__price-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.chk-category-program__price-old {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
  white-space: nowrap;
}

.chk-category-program__price-link {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  opacity: 0.8;
}

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

.chk-category-program__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(74, 144, 217, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.chk-category-program:hover .chk-category-program__arrow {
  background: var(--primary);
  color: white;
}

/* Полное описание при наведении на программу (в модалке категории) */
.chk-category-program__full {
  margin-top: 14px;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--primary);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  animation: categoryFullIn 0.2s ease;
}

@keyframes categoryFullIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.chk-category-program__full-desc {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 12px;
}

.chk-category-program__services {
  border-top: 1px solid #E8F5F0;
  padding-top: 12px;
}

.chk-category-program__services-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.chk-category-program__services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
}

.chk-category-program__services-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-medium);
}

.chk-category-program__services-list li i {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 12px;
}

/* ========== Responsive ========== */
@media (max-width: 1280px) {
  .steps-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .specialty-hero__content {
    gap: 26px;
  }

  .specialty-hero__title {
    font-size: 44px;
  }

  .specialty-hero__features {
    max-width: 500px;
  }

  .hero__image-wrapper {
    max-width: 520px;
  }

  .why-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .specialty-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .specialty-hero__title {
    font-size: 34px;
  }

  .specialty-hero__features {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .why-section__grid,
  .programs-section__grid {
    grid-template-columns: 1fr;
  }

  .steps-section__grid {
    grid-template-columns: 1fr;
  }

  .reviews-section__grid {
    grid-template-columns: 1fr;
  }

  .when-to-visit__cta {
    padding: 36px 24px 44px;
    overflow: hidden;
  }

  .chk-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .chk-modal__services ul {
    grid-template-columns: 1fr;
  }

  .chk-category-program__services-list {
    grid-template-columns: 1fr;
  }

  .chk-modal__actions {
    flex-direction: column;
  }

  .chk-modal__actions .btn {
    min-width: 100%;
  }

  .chk-modal__price {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .chk-modal__price-link {
    margin-left: 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-section__card,
.program-card,
.services-section__item,
.reviews-section__card,
.step-card {
  animation: fadeInUp 0.6s ease forwards;
}
