/* Services hub page */

.MPH_services_intro {
  padding: clamp(56px, 8vw, 88px) 0 clamp(40px, 6vw, 56px);
  background: #fff;
  text-align: center;
}

.MPH_services_intro .MPH_services_eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5ca8ff;
}

.MPH_services_intro h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  color: #344276;
  margin: 0 auto 16px;
  max-width: 720px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.08);
}

.MPH_services_intro p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #5f6472;
}

.MPH_services_grid_sec {
  padding: 0 0 clamp(64px, 8vw, 96px);
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}

.MPH_services_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.MPH_service_card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(24px, 3vw, 32px);
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(52, 66, 118, 0.08);
  box-shadow: 0 10px 32px rgba(16, 20, 47, 0.06);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.25s ease;
}

.MPH_service_card:hover {
  transform: translateY(-6px);
  border-color: rgba(92, 168, 255, 0.35);
  box-shadow: 0 18px 40px rgba(52, 66, 118, 0.12);
}

.MPH_service_card__tag {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #344276;
  background: rgba(126, 192, 255, 0.35);
  border-radius: 6px;
}

.MPH_service_card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #7ec0ff 0%, #344276 100%);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(52, 66, 118, 0.2);
}

.MPH_service_card h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  color: #344276;
  margin: 0 0 10px;
  line-height: 1.25;
}

.MPH_service_card p {
  flex: 1;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.65;
  color: #5f6472;
}

.MPH_service_card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #344276;
  transition: gap 0.25s ease, color 0.2s ease;
}

.MPH_service_card:hover .MPH_service_card__link {
  gap: 12px;
  color: #5ca8ff;
}

.MPH_services_process {
  padding: clamp(56px, 7vw, 80px) 0;
  background: #344276;
  color: #fff;
}

.MPH_services_process .MPH_services_eyebrow {
  color: #7ec0ff;
}

.MPH_services_process_head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 52px);
}

.MPH_services_process_head h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 12px;
  text-shadow: none;
}

.MPH_services_process_head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.MPH_services_steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.MPH_services_step {
  text-align: center;
  padding: 24px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.MPH_services_step_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  color: #344276;
  background: linear-gradient(145deg, #7ec0ff, #fff);
}

.MPH_services_step h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: #fff;
}

.MPH_services_step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.MPH_services_cta {
  padding: clamp(56px, 7vw, 80px) 0;
  background: #f5f5f5;
  text-align: center;
}

.MPH_services_cta h2 {
  font-size: clamp(26px, 3vw, 34px);
  color: #344276;
  margin: 0 0 12px;
}

.MPH_services_cta p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: #5f6472;
  font-size: 15px;
  line-height: 1.65;
}

.MPH_services_cta_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 991px) {
  .MPH_services_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .MPH_services_steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .MPH_services_grid {
    grid-template-columns: 1fr;
  }
}
