/*
Theme Name: MH4Y
Text Domain: mh4y
*/


/* =====================
  Импорт шрифтов
  Google Fonts загружается через <link> в header.php (не @import — избегаем блокировки рендера)
====================== */

@font-face {
  font-family: 'Metrika';
  src: url('../fonts/Metrika-Regular.eot');
  src: url('../fonts/Metrika-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Metrika-Regular.woff2') format('woff2'),
    url('../fonts/Metrika-Regular.woff') format('woff'),
    url('./fonts/Metrika-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* =====================
  Глобальные переменные
====================== */
:root {
  --color-primary: #2563eb;
  --color-accent: #5bccf6;
  --color-success: #71c287;
  --color-bg: #f7f7f7;
  --color-dark: #363636;
  --color-text: #1f1f1f;
  --color-white: #fff;
  --color-grey: #c0c0c0;
  --color-muted: #6d6d6d;
  --color-extra-light-grey: #EFEFEF;
  --color-light: #707070;
  --color-blue: #28B9ED;
  --color-light-grey: #D9D9D9;
  --color-light-green: #DEE9E1;
  --color-black: #000;
  --color-light-blue: #EAF7FD;
  --color-blackish: #313131;

  --linear-gradient: linear-gradient(to right,
      #6CD2F2 0%,
      #71C287 100%);

  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --z-header: 100;
  --z-modal: 200;
  --container-width: 1440px;
  --font-main: 'Lato', sans-serif;
  --font-accent: 'Metrika', sans-serif;

  /* Адаптивные Шрифты */
  --fz-10-14: clamp(0.625rem, 0.5893rem + 0.1786vw, 0.875rem);
  --fz-24-56: clamp(1.5rem, 0.9286rem + 2.8571vw, 3.5rem);
  --fz-14-24: clamp(0.875rem, 0.7292rem + 0.7143vw, 1.5rem);
  --fz-20-24: clamp(1.25rem, 1.1786rem + 0.3571vw, 1.5rem);
  --fz-14-18: clamp(0.875rem, 0.8036rem + 0.3571vw, 1.125rem);
  --fz-32-48: clamp(2rem, 1.7143rem + 1.4286vw, 3rem);
  --fz-24-48: clamp(1.5rem, 1.0714rem + 2.1429vw, 3rem);
  --fz-14-20: clamp(0.875rem, 0.7679rem + 0.5357vw, 1.25rem);
  --fz-10-18: clamp(0.625rem, 0.5536rem + 0.3571vw, 1rem);
  --fz-12-16: clamp(0.75rem, 0.6786rem + 0.3571vw, 1rem);
  --fz-20-16: clamp(1.25rem, 1.1786rem + 0.3571vw, 1.5rem);
  --fz-18-32: clamp(1.125rem, 0.9792rem + 0.7143vw, 2rem);
}

/* =====================
  Общий сброс и базовые стили
====================== */

html {
  scroll-behavior: smooth;
}
html.is-scrolling {
  scroll-behavior: auto !important;
}

body {
  background: var(--color-bg);
  overflow-x: hidden;
  line-height: 1.3;
  margin: 0;
}

.container {
  position: static;
  box-sizing: border-box;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
  font: inherit;
  color: inherit;
  background: none;
}

/* Общие стили для слайдеров (используются в hero и team) */
.slick-slider {
  position: relative !important;
}

.slick-dots button:before {
  color: var(--color-accent) !important;
  font-size: 20px !important;
}

.slick-dots {
  bottom: -40px !important;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  width: auto;
  z-index: 5;
}

.slider-controls .slider-arrow {
  position: static;
  transform: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.slider-controls .slider-arrow--prev {
  background: url('../images/arrow-left.svg') center/contain no-repeat;
  width: 24px;
  height: 24px;
}

.slider-controls .slider-arrow--next {
  background: url('../images/arrow-right.svg') center/contain no-repeat;
  width: 24px;
  height: 24px;
}

.slider-controls .slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: static !important;
  bottom: auto !important;
  margin: 0 1rem;
}

.slider-controls .slick-dots--hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.slider-controls .slick-dots button:before {
  color: var(--color-accent) !important;
  font-size: 20px !important;
}

/* =====================
  Шапка (Header)
====================== */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-bg);
}

.header__container {
  position: static;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  font: inherit;
  color: inherit;
  background: none;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 auto;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: end;
  flex: 1 1 auto;
}

.header__switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.header__logo {
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__icons {
  display: flex;
  gap: 1rem;
}

.header__menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

.header__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.5rem 0.7rem;
  font-family: var(--font-main);
}

.header__link:hover {
  color: var(--color-accent);
}

/* Active / current page indicator */
.header__link--active,
.header__menu-item--active > .header__link {
  color: var(--color-accent);
  position: relative;
}

.header__link--active::after,
.header__menu-item--active > .header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.7rem;
  right: 0.7rem;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.header__link--dropdown {
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  padding: 1rem;
}

.header__link--dropdown:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.header__icon-menu {
  margin-right: 0.5rem;
  display: inline-block;
}

.header__icon-arrow {
  margin-left: 0.5rem;
  transition: transform 0.2s;
}

.header__menu-item--open .header__icon-arrow {
  transform: rotate(180deg);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 650px;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  background: var(--color-white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  list-style: none;
  margin-top: 1rem;
}

.header__dropdown-list {
  flex: 1 1 50%;
  min-width: 160px;
  padding-left: 0;
  list-style: none;
}

.header__menu-item--open .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header__menu-item--open .header__link {
  background: var(--color-dark);
}

.header__dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.header__dropdown-title {
  text-transform: uppercase;
  font-size: 20px;
  font-family: var(--font-accent);
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.7rem;
}

.header__dropdown-link {
  display: block;
  padding: 0.7rem;
  color: var(--color-dark);
  font-size: 18px;
  line-height: 1;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.header__dropdown-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Некликабельный текст (для комплексных услуг) */
.header__dropdown-text {
  display: block;
  padding: 0.7rem;
  color: var(--color-dark);
  font-size: 18px;
  line-height: 1;
  cursor: default;
}

.header__dropdown-sep {
  height: 1px;
  background: var(--color-grey);
  margin: 0.7rem 0 0.7rem 0;
  border: none;
  pointer-events: none;
}

.header__dropdown .header__dropdown-link:nth-child(9) {
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.7rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
  background: none;
}

.header__lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header__lang {
  background: none;
  border: none;
  color: var(--color-grey);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-xs);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  font-family: var(--font-main);
}

.header__lang--active {
  color: var(--color-dark);
}

.header__lang-sep {
  color: var(--color-grey);
  opacity: 0.6;
  user-select: none;
}

.header__cta {
  background: var(--color-white);
  color: var(--color-success);
  border: var(--color-success) 2px solid;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  font-size: 18px;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.header__cta:hover {
  background: var(--color-light-green);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  z-index: 120;
}

.header__container--mobile {
  display: none;
}

/* =====================
  Hero-секция
====================== */
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2rem auto;
  color: var(--color-white);
}

.hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.hero__btn {
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem 2rem;
  font-size: var(--fz-14-18);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  width: 100%;
  max-width: 300px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-main);
}

.hero__btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.hero__btn--secondary {
  background: var(--color-white);
  color: var(--color-dark);
}

.hero__btn--primary:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.hero__btn--secondary:hover {
  background: var(--color-extra-light-grey);
}

.hero__image {
  width: 400px;
  height: 320px;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
}

.hero__slider-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  border-radius: var(--radius-lg);
}

.hero__slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero__slider .slick-slide {
  margin: 0 10px;
}

.hero__slider .slick-list {
  margin: 0 -10px;
}

.hero__slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
  width: 100%;
}

.hero__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  pointer-events: none;
  transition: opacity 0.4s;
  gap: 2rem;
}

.hero__slide--active,
.slick-active.hero__slide {
  opacity: 1;
  pointer-events: auto;
}

.hero__main {
  width: 45%;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 0 3rem;
  height: 100%;
}

.hero__title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #222;
}

.hero__desc {
  font-size: var(--fz-14-24);
  color: var(--color-light);
  font-family: var(--font-main);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
}

.hero__visuals {
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  pointer-events: none;
  overflow: hidden;
}

.hero__visuals .hero__img {
  position: absolute;
  top: 0;
  object-fit: cover;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: var(--radius-md);
}

.hero__slider .slick-list,
.hero__slider .slick-track {
  height: 100% !important;
}

.hero__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: auto;
  z-index: 5;
}

.hero__controls .hero__arrow {
  position: static;
  transform: none;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__controls .hero__arrow:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #2563eb;
  border-right: 2px solid #2563eb;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

.hero__controls .hero__arrow--next:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero__controls .slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: static !important;
  bottom: auto !important;
  margin: 0 1rem;
}

.hero__controls .slick-dots li {
  margin: 0;
}

/* =====================
  Stats
====================== */
.stats {
  padding: 6rem 0 3rem 0;
  background: var(--color-bg);
}

.stats__list {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2rem 0.75rem;
  width: 100%;
}

.stats__value {
  font-size: var(--fz-32-48);
  font-family: var(--font-accent);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.stats__desc {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: var(--fz-14-24);
  color: var(--color-white);
  text-align: center;
}

.stats__value-img {
  max-height: 50px;
}

.stats__item:nth-child(even) {
  background: var(--color-accent);
  color: var(--color-white);
}

.stats__item:nth-child(even) .stats__value {
  color: var(--color-white);
}

.stats__item:nth-child(odd) .stats__desc {
  color: var(--color-white);
}

.stats__item:nth-child(odd) {
  background: var(--color-success);
}

/* =====================
  Services (custom grid)
====================== */
.services {
  padding: 2rem 0 4rem 0;
  background: var(--color-bg);
}

.services__title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  margin-bottom: 2.5rem;
  color: var(--color-dark);
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
}

.services__grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: nowrap;
}

.services__col {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

/* Блок "Консультации специалистов" - карточка со сплошным фоном */
.services__specialists-card {
  background: #E7F9FF;
  border-radius: var(--radius-md);
  padding: 20px 24px 50px 24px;
}

.services__specialists-title {
  font-family: var(--font-second);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-dark);
  text-transform: uppercase;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.services__specialists-list {
  display: flex;
  flex-direction: column;
}

.services__specialist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: var(--fz-14-20);
  font-family: var(--font-accent);
  color: var(--color-dark);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: color 0.2s;
}

.services__specialist-item:last-child {
  border-bottom: none;
}

.services__specialist-item:hover {
  color: var(--color-accent);
}

.services__specialist-item .services__icon {
  flex-shrink: 0;
}

/* Обычные карточки услуг */
.services__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 1rem 1.25rem;
  min-height: 118px;
  font-size: var(--fz-14-20);
  font-family: var(--font-accent);
  color: var(--color-dark);
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  text-transform: uppercase;
}

.services__item:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.services__item:hover .services__icon {
  filter: brightness(0) invert(1);
}

/* Некликабельные карточки услуг */
.services__item--static {
  cursor: default;
}

.services__item--static:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.services__item--static:hover .services__icon {
  filter: none;
}

.services__icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  background: url('../images/external-link.svg') center/contain no-repeat;
  margin-left: 1rem;
}

.services__btn {
  display: block;
  margin: 0 auto;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 1.5rem 2.5rem;
  font-size: var(--fz-14-18);
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
}

.services__btn:hover {
  background: var(--color-blue);
}

/* =====================
  Doctors
====================== */
.doctors {
  padding: 4rem 2rem;
  background: var(--color-white);
}

.doctors__title {
  font-size: 2rem;
  font-family: var(--font-accent);
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--color-dark);
}

.doctors__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.doctors__btn {
  background: var(--color-accent);
  color: var(--color-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.doctors__btn:hover {
  background: var(--color-success);
  color: var(--color-white);
}

.doctors__card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 2rem 1.5rem;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.doctors__card-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
}

.doctors__card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.doctors__card-spec {
  font-size: 1rem;
  color: var(--color-dark);
}

/* =====================
  Contact (custom)
====================== */
.contact {
  padding: 2.5rem 0;
  background: var(--color-bg);
}

.contact__container {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(90deg, #eaf7fd 0%, #bde6fa 100%);
  flex-direction: row-reverse;
}

.contact__left {
  flex: 1 1 50%;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-dark);
  text-transform: uppercase;
}

.contact__desc {
  font-size: var(--fz-14-18);
  color: var(--color-muted);
  margin: 0 0 3rem 0;
  font-family: var(--font-main);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
  overflow: hidden;
}

.contact__form p span {
  display: inherit;
  flex-wrap: wrap;
}

.contact__form p {
  display: flex;
  flex-direction: column;
}

.contact__input {
  border: none;
  border-radius: var(--radius-sm);
  padding: 1.2rem 2rem;
  font-size: var(--fz-14-18);
  color: var(--color-light);
  font-family: var(--font-main);
  background: #fff;
  border: 1px solid var(--color-light);
  width: 100%;
}

.contact__input:focus {
  outline: none;
}

.wpcf7 input[type="submit"].contact__submit,
input.contact__submit,
button.contact__submit {
  display: block;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem 2.5rem;
  font-size: var(--fz-14-18);
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  font-family: var(--font-main);
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.wpcf7 input[type="submit"].contact__submit:hover,
input.contact__submit:hover,
button.contact__submit:hover {
  background: var(--color-blue);
}

/* ── Shine sweep on buttons (global) ──────────────────── */
button.contact__submit,
.contact__submit,
.service-page__btn {
  position: relative;
  overflow: hidden;
}
button.contact__submit::after,
.service-page__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.30) 42%,
    rgba(255, 255, 255, 0.52) 50%,
    rgba(255, 255, 255, 0.30) 58%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  transition: none;
  z-index: 1;
}
button.contact__submit:hover::after,
.service-page__btn:hover::after {
  left: 160%;
  transition: left 0.58s ease;
}
/* ──────────────────────────────────────────────────────── */

.wpcf7 input[type="submit"].contact__submit:focus {
  outline: none;
}

.contact__agreement,
.contact__agreement a {
  font-size: var(--fz-12-16);
  color: var(--color-muted);
  margin-top: 0.5rem;
  text-align: center;
  font-family: var(--font-main);
  font-weight: 400;
  transition: color 0.2s, text-decoration 0.2s;
}

.contact__agreement a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.contact__right {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: none;
  position: relative;
  min-width: 220px;
}

.contact__img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* =====================
  About (custom)
====================== */
.about {
  padding: 4rem 0;
}

.about__container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
}

.about__left {
  flex: 1 1 50%;
  min-width: 320px;
}

.about__right {
  flex: 1 1 50%;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__map-wrapper {
  position: relative;
  width: 100%;
}

.about__title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
  text-transform: uppercase;
}

.about__desc {
  font-size: var(--fz-14-18);
  font-family: var(--font-main);
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.about__contacts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: row;
  gap: 0.7rem;

}

.about__contacts--first .about__contact {
  flex: 1 1 50%;
}

.about__contact {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-muted);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: var(--fz-24-20);
}

.about__contact a {
  color: var(--color-muted);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: var(--fz-24-20);
  transition: color 0.2s, text-decoration 0.2s;
}

.about__contact a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.about__icon {
  display: inline-block;
  vertical-align: middle;
}

.about__socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.about__social img {
  display: block;
}

.about__map {
  width: 100%;
  min-width: 280px;
  height: 520px;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: opacity 1s;
}

.about__map--visible {
  opacity: 1;
}

.about__map-preloader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s;
}

.about__map-preloader--hide {
  opacity: 0;
  visibility: hidden;
}

.about__map-spinner {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__map-spinner svg {
  animation: preloader-spin 1.2s linear infinite;
  display: block;
}

@keyframes preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* =====================
  Features (gallery)
====================== */
.features {
  padding: 4rem 0;
}

.features__container {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  justify-content: space-between;
}

.features__content {
  flex: 1 1 50%;
  min-width: 320px;
}

.features__title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
  text-transform: uppercase;
}

.features__desc {
  font-size: var(--fz-14-18);
  font-family: var(--font-main);
  color: var(--color-muted);
  margin-bottom: 3rem;
}

.features__gallery {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 340px;
}

.features__gallery-row {
  display: flex;
  gap: 24px;
}

.features__gallery-row--half {
  position: relative;
  width: 50%;
  max-width: 50%;
  min-width: 220px;
  box-sizing: border-box;
  margin-bottom: 0;
  flex-direction: column;
  justify-content: flex-start;
}

.features__gallery-row.features__gallery-row--absolute {
  position: relative;
  height: 100%;
}

.features__gallery-row.features__gallery-row--absolute .features__img {
  position: absolute;
  bottom: -40%;
  right: 0;
  width: 120%;
  height: 140%;
}

.features__img {
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  background: var(--color-bg);
  transition: box-shadow 0.2s;
}

.features__img.features__img--full {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  height: 100%;
}

.features__gallery.features__gallery--secondary {
  flex-direction: row;
}

/* =====================
  Team (custom)
====================== */
.team {
  padding: 4rem 0;
  background: var(--color-bg);
}

.team__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.team__header {
  margin-bottom: 2.5rem;
}

.team__title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  font-weight: 400;
  margin: 0;
  color: var(--color-dark);
  text-transform: uppercase;
}

.team__desc {
  font-size: var(--fz-14-18);
  color: var(--color-muted);
  font-family: var(--font-main);
  margin-bottom: 1.5rem;
}

.team__tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  justify-content: flex-end;
}

.team__tag {
  background: var(--color-white);
  border: 1px solid var(--color-grey);
  color: var(--color-dark);
  border-radius: 24px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  pointer-events: none;
  transition: background 0.2s, color 0.2s;
}

.team__top {
  display: flex;
  justify-content: space-between;
}

.team__slider {
  margin-bottom: 3rem;
}

.team__slider:last-child {
  margin-bottom: 0;
}

.team__slider-wrapper {
  position: relative;
  overflow: visible;
}

.team__slider-title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  font-weight: 400;
  margin: 2rem 0;
  color: var(--color-dark);
  text-transform: uppercase;
}

.team__slider.team__slider--doctors {
  margin-bottom: 80px;
}

.team__slides.team__slides--admins .team__card-content {
  height: 180px;
}

.team__slider img {
  max-width: 320px;
}

.team__header-left {
  flex: 0 0 50%;
}

.team__header-right {
  flex: 0 0 50%;
  display: none;
}

.team__btn-all {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 1.25rem 2.5rem;
  font-size: var(--fz-14-18);
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-decoration: none;
  display: inline-block;
}

.team__btn-all:hover {
  background: var(--color-blue);
}

.team__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.team__list--grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team__list--grid .team__card {
  flex: 0 0 320px;
  min-width: 320px;
  max-width: 320px;
  overflow: hidden;
  margin: 0 1rem 2rem 1rem;
}

.team__card-inner {
  position: relative;
  height: 300px;
  margin-top: 100px;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  width: 100%;
}

.team__card {
  margin: 0 1rem;
  max-width: 320px;
  overflow: hidden;
}

.team__card-content {
  padding: 1rem;
  background: var(--color-white);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  height: 270px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.team__card--muted {
  opacity: 0.4;
}

.team__card-photo {
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  margin-bottom: 0;
  height: 115%;
}

.team__card-info {
  text-align: center;
  margin-bottom: 1rem;
}

.team__card-name {
  font-size: var(--fz-20-24);
  font-family: var(--font-accent);
  font-weight: 400;
  color: var(--color-dark);
  text-transform: uppercase;
}

.team__card-btn {
  display: none;
}

.team__card .team-popup__btn {
  display: inline-block;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 0.75rem 1.5rem;
  max-width: 100%;
}

.promo-card__btn {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  font-size: var(--fz-14-18);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 1rem auto;
}

.promo-card__btn:hover {
  background: var(--color-blue);
  color: var(--color-white);
  text-decoration: none;
}

.promo-card__actions {
  display: flex;
  margin-top: auto;
  padding-top: 1rem;
}

.team__card-tags {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  float: left;
  gap: 6px;
  z-index: 2;
  margin: 0 10px;
  justify-content: end;
  width: 90%;
}

.team__card-desc::first-letter {
  text-transform: uppercase;
}

.team__card-desc {
  font-size: var(--fz-14-18);
  color: var(--color-muted);
  font-family: var(--font-main);
  line-height: 1.4;
  margin: 1rem 0;
  height: 30px;
  text-transform: lowercase;
}

.team__card-tag {
  display: flex;
  align-items: center;
  background: #fff;
  color: var(--color-muted);
  border-radius: var(--radius-lg);
  font-size: var(--fz-10-14);
  font-family: var(--font-main);
  padding: 4px 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: none;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  height: 22px;
}

/* Doctor locations (reception places) */
.team__card-locations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1rem;
}

.team__card-locations-icon {
  flex-shrink: 0;
}

.team__card-locations-label {
  font-size: var(--fz-12-16);
  color: var(--color-muted);
  font-family: var(--font-main);
  white-space: nowrap;
}

.team__card-locations-list {
  display: flex;
  gap: 6px;
}

.team__card-location-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  font-size: var(--fz-10-14);
  color: var(--color-muted);
  font-family: var(--font-main);
  background: var(--color-white);
  white-space: nowrap;
}

/* =====================
  Footer (custom)
====================== */
.footer {
  background: var(--color-bg);
  color: var(--color-dark);
  padding: 2.5rem 0 1.5rem 0;
  border-top: 2px solid #e5e5e5;
  margin-top: auto;
}

/* sticky footer */
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer__container {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer__col {
  flex: 1 1 0;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  display: block;
  margin-bottom: 0.5rem;
  width: 140px;
  height: 70px;
}

.footer__copyright {
  font-size: var(--fz-12-16);
  color: var(--color-grey);
  font-family: var(--font-main);
  margin-bottom: 0.5rem;
}

.footer__agreement {
  color: var(--color-muted);
  font-size: var(--fz-12-16);
  text-decoration: none;
  margin-bottom: 2rem;
  font-family: var(--font-main);
  transition: color 0.2s, text-decoration 0.2s;
  font-weight: 500;
}

.footer__agreement:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer__social img {
  display: block;
  transition: box-shadow 0.2s;
}

.footer__col-title {
  margin-bottom: 0.5rem;
}

.footer__col-title a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: var(--fz-14-18);
  font-family: var(--font-accent);
  font-weight: 400;
  text-transform: uppercase;
}

.footer__col-title a:hover {
  color: var(--color-accent);
}

.footer__services-list {
  display: flex;
  gap: 2.5rem;
}

.footer__services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.footer__services a,
.footer__services-link {
  display: inline-block;
  color: var(--color-muted);
  text-decoration: none;
  font-size: var(--fz-14-18);
  font-family: var(--font-main);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer__services a:hover {
  color: var(--color-accent);
}

.footer__services-link--disabled {
  pointer-events: none;
  cursor: default;
  /* opacity: 0.5; */
}

.footer__col.footer__col--logo,
.footer__col.footer__col--info {
  flex: 0 0 25%;
}

.footer__col.footer__col--services .footer__col-title>a {
  pointer-events: none;
}

.header__menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  z-index: 190;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.header__menu-overlay.header__menu-overlay--active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* =====================
  Service Page (Услуга)
====================== */
.service-page__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2rem 0;
}

.service-page__hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.service-page__hero-content {
  flex: 1 1 50%;
  max-width: 50%;
}

.service-page__hero-img-wrapper {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page__title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  font-weight: 400;
  color: var(--color-black);
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
}

.service-page__desc {
  font-family: var(--font-main);
  font-size: var(--fz-14-18);
  color: var(--color-blackish);
  margin-bottom: 2rem;
}

.service-page__btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 1.25rem 2.5rem;
  font-size: var(--fz-14-18);
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  text-decoration: none;
}

.service-page__btn:hover {
  background: var(--color-blue);
}

.service-page__tags-wrapper {
  position: relative;
  margin-bottom: 4rem;
  background: var(--color-bg);
  padding: 4rem 0;
}

.service-page__tags-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200vw;
  height: 1px;
  background: var(--color-grey);
  z-index: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.service-page__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.service-page__tag {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-light-grey);
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
  font-size: var(--fz-14-18);
  font-family: var(--font-main);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.service-page__tag:hover {
  background: var(--color-bg);
}

.service-page__slider {
  margin: 0 auto;
  max-width: 100%;
}

.service-page__slider--reviews {
  margin-bottom: 8rem !important;
}

.service-page__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.service-page__how {
  margin-bottom: 4rem;
}

.service-page__how-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.service-page__how-text {
  flex: 1 1 50%;
  max-width: 50%;
}

.service-page__how-slider {
  flex: 1 1 50%;
  max-width: 50%;
}

.service-page__subtitle {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  font-weight: 400;
  color: var(--color-text);
  margin: 1.5rem 0;
  text-transform: uppercase;
}

.service-page__text {
  font-family: var(--font-main);
  color: var(--color-muted);
  font-size: var(--fz-14-18);
  margin-bottom: 1rem;
}

.service-page__list {
  font-family: var(--font-main);
  color: var(--color-muted);
  font-size: var(--fz-14-18);
  margin-bottom: 1rem;
}

.service-page__how-slider .slick-slide {
  margin: 0 10px;
}

.service-page__how-slider .slick-list {
  margin: 0 -10px;
}

.service-page__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.scroll-anchor {
  scroll-margin-top: 130px;
}

@media (max-width: 991px) {
  .scroll-anchor {
    scroll-margin-top: 100px;
  }
}

.service-content,
.service-hero,
.service-hero__content,
.service-hero__title,
.service-hero__desc,
.service-hero__btn,
.service-hero__img-wrapper,
.service-hero__img,
.service-tags,
.service-tags__list,
.service-tags__item {
  display: none;
}

.service-page__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

.service-page__hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.service-page__hero-content {
  flex: 1 1 50%;
  max-width: 50%;
}

.service-page__hero-img-wrapper {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page__desc {
  font-family: var(--font-main);
  font-size: var(--fz-14-18);
  text-transform: initial;
  color: var(--color-blackish);
  margin-bottom: 2rem;
}

.service-page__btn {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 1.25rem 2.5rem;
  font-size: var(--fz-14-18);
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
}

.service-page__btn:hover {
  background: var(--color-blue);
}

.service-page__tags-wrapper {
  position: relative;
  margin-bottom: 0;
}

.service-page__tags-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200vw;
  height: 1px;
  background: var(--color-grey);
  z-index: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.service-page__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.service-page__tag {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-light-grey);
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
  font-size: var(--fz-14-18);
  font-family: var(--font-main);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.service-page__tag:hover {
  background: var(--color-bg);
}

.service-page__price {
  margin-bottom: 4rem;
}

.service-page__price-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
}

.service-page__price-left {
  flex: 1 1 340px;
  max-width: 340px;
}

.service-page__price-title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 1.5rem 0;
}

.service-page__price-note {
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.service-page__price-table-wrapper {
  flex: 1;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 2rem;
}

.service-page__price-table {
  width: 100%;
  border-collapse: collapse;
}

.service-page__price-table th,
.service-page__price-table td {
  padding: 1rem;
  text-align: left;
  font-family: var(--font-main);
}

.service-page__price-table th {
  font-weight: 700;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-grey);
}

.service-page__price-table td {
  color: var(--color-muted);
}

.service-page__price-table td:last-child {
  text-align: right;
  color: var(--color-text);
  font-weight: 700;
}

/* Стили для слайдера отзывов */
.service-page__reviews {
  margin-bottom: 8rem;
}

.service-page__slider--reviews {
  position: relative;
  margin: 0 -12px;
  padding: 1rem 0;
}

.service-page__slider--reviews .slick-slide {
  margin: 0 12px;
}

.service-page__slider--reviews .slick-list {
  margin: 0 -12px;
  padding-bottom: 10px;
}

.service-page__review {
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.service-page__review-title {
  font-family: var(--font-accent);
  font-size: var(--fz-14-20);
  color: var(--color-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  height: 45px;
}

.service-page__review-text {
  font-family: var(--font-main);
  font-size: var(--fz-14-18);
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  height: 230px;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-page__review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
}

.service-page__review-author {
  color: var(--color-grey);
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
}

.service-page__review-date {
  color: var(--color-grey);
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
}

.service-info {
  max-width: 800px;
}

.service-page__text--mb-4 {
  margin-bottom: 4rem;
}

.service-page__text--mb-6 {
  margin-bottom: 6rem;
}

.breadcrumbs {
  background: transparent;
  margin: 0 0 2rem 0;
  font-family: var(--font-main);
  font-size: 16px;
}

.breadcrumbs__list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs__list>span:first-child {
  display: flex;
  gap: 0.5rem;
}

.breadcrumbs__item {
  color: var(--color-muted);
}

.breadcrumbs__item:not(:last-child)::after {
  content: '/';
  margin: 0 0.5rem;
  color: var(--color-muted);
}

.breadcrumbs__list a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs__list a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.breadcrumb_last {
  color: var(--color-muted);
}

.breadcrumbs-wrapper {
  margin: 2rem 0;
}

.service-page__price-mobile {
  display: none;
}

.gesy-team__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gesy-team__btn-all {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 1.25rem 2.5rem;
  font-size: var(--fz-14-18);
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
}

.gesy-team__btn-all:hover {
  background: #28B9ED;
}

.gesy-team__header .team__title {
  margin-bottom: 0;
  font-family: var(--font-accent);
  font-size: var(--fz-24-48);
  text-transform: uppercase;
  font-weight: 400;
  flex: 0 0 65%;
  min-width: 600px;
}

.gesy-faq {
  margin: 4rem 0;
}

.gesy-faq__title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  color: var(--color-text);
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 400;
}

.gesy-faq__block {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
}

.gesy-faq__question {
  width: 100%;
  background: none;
  border: none;
  font-size: var(--fz-18-32);
  font-family: var(--font-accent);
  color: var(--color-text);
  font-weight: 400;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  margin: 0;
}

.gesy-faq__question-text {
  flex: 1;
  margin-right: 1rem;
}

.gesy-faq__question-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.gesy-faq__question-icon::before,
.gesy-faq__question-icon::after {
  content: '';
  position: absolute;
  background: var(--color-accent);
  transition: transform 0.3s ease;
}

.gesy-faq__question-icon::before {
  width: 24px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.gesy-faq__question-icon::after {
  width: 2px;
  height: 24px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.gesy-faq__block--open .gesy-faq__question-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.gesy-faq__answer {
  font-size: var(--fz-14-18);
  font-family: var(--font-main);
  color: var(--color-muted);
  padding: 0 2rem 1.5rem 2rem;
  margin: 0;
  display: none;
  line-height: 1.6;
}

.gesy-intro {
  margin: 4rem 0;
}

.gesy-intro__row {
  display: flex;
  gap: 4rem;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.gesy-intro__col {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 50%;
}

.gesy-intro__title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  color: var(--color-text);
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 400;
}

.gesy-intro__list {
  font-size: var(--fz-14-18);
  font-family: var(--font-main);
  color: var(--color-muted);
  margin: 0 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.gesy-intro__list--num {
  list-style: decimal inside;
}

.gesy-intro__item {
  margin-bottom: 0.7rem;
  font-size: var(--fz-14-18);
  font-family: var(--font-main);
  color: var(--color-muted);
}

.gesy-intro__item:last-child {
  margin-bottom: 0;
}

.gesy-contact {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  text-align: center;
}

.gesy-contact__content {
  margin: 0 auto;
}

.gesy-contact__text {
  font-size: var(--fz-18-32);
  font-family: var(--font-accent);
  color: var(--color-text);
  text-transform: uppercase;
  max-width: 800px;
  margin: 2rem auto;
  line-height: 1.5;
}

.gesy-contact__btn {
  margin-bottom: 0;
}

.partner-benefits {
  margin: 4rem 0 0 0;
}

.partner-benefits__title {
  font-family: var(--font-accent);
  font-size: var(--fz-24-48);
  margin-bottom: 2.5rem;
  font-weight: 400;
  color: var(--color-dark);
}

.partner-benefits__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 6rem;
  max-width: 100%;
}

.partner-benefits__item {
  border-radius: var(--radius-md);
  padding: 1rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 170px;
  flex: 1 1 calc(50% - 3rem);
  max-width: 700px;
  min-width: 280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.partner-benefits__item--blue {
  background: var(--color-accent);
}

.partner-benefits__item--green {
  background: var(--color-success);
}

.partner-benefits__item-title {
  font-family: var(--font-accent);
  font-size: var(--fz-18-32);
  font-weight: 400;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  max-width: 100%;
}

.partner-steps__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-inline-start: 20px;
  margin: 0 0 2rem -12px;
}

.partner-benefits__item-desc {
  font-family: var(--font-main);
  font-size: var(--fz-14-20);
  max-width: 100%;
}

.partner-steps {
  margin: 0 0 3rem 0;
}

.partner-steps__container {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  align-items: flex-start;
}

.partner-steps__col {
  flex: 1 1 50%;
  min-width: 260px;
}

.partner-steps__title {
  font-family: var(--font-accent);
  font-size: var(--fz-24-48);
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 1.2rem 0;
  text-transform: uppercase;
}

.partner-steps__item {
  margin-bottom: 0.5rem;
  font-family: var(--font-main);
  font-size: var(--fz-14-18);
  color: var(--color-muted);
}

.partner-steps__item:last-child {
  margin-bottom: 0;
}

.promo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 4rem 0;
}

.promo-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 1.5rem 2rem;
  flex: 0 0 calc(50% - 28px);
  min-width: 320px;
  position: relative;
  margin-bottom: 0;
  box-sizing: border-box;
  min-height: 300px;
  max-width: 500px;
}

.promo-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.promo-card__logo img {
  display: block;
  width: auto;
  height: 80px;
  object-fit: contain;
}

.promo-card__name {
  font-family: var(--font-accent);
  font-size: var(--fz-14-18);
  font-weight: 400;
  color: var(--color-text);
  margin-right: auto;
  letter-spacing: 0.01em;
}

.promo-card__discount {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  min-width: 90px;
  text-align: center;
  margin-left: 1rem;
}

.promo-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 0;
}

.promo-card__contact {
  display: flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: var(--fz-14-18);
  color: var(--color-muted);
  gap: 1rem;
}

.promo-card__contact a {
  font-family: var(--font-main);
  font-size: var(--fz-14-18);
  color: var(--color-muted);
  text-decoration: none;
}

.promo-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 0.2rem;
  color: var(--color-muted);
  font-size: 1.1em;
}

.promo-list__title {
  font-family: var(--font-accent);
  font-size: var(--fz-24-48);
  font-weight: 400;
  color: var(--color-text);
  margin: 0.5rem;
  text-transform: uppercase;
  text-align: center;
}

/* =====================
  Попап специалиста (team-popup)
====================== */
.team-popup {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: none;
}

.team-popup[aria-hidden="false"] {
  display: flex;
}

body.team-popup-open {
  overflow: hidden;
}

.team-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31, 31, 31, 0.54);
  z-index: 1;
}

.team-popup__window {
  position: relative;
  box-sizing: border-box;
  z-index: 2;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  max-width: 1200px;
  width: calc(100% - 150px);
  max-height: 85vh;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.team-popup__close {
  background: none;
  border: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  cursor: pointer;
  padding: 5px;
  transition: opacity 0.2s;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
}

.team-popup__close:hover {
  opacity: 0.7;
}

.team-popup__content {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  width: 100%;
  align-items: flex-start;
  flex: 1 1 auto;
  min-height: 0;
}

.team-popup__photo-wrap {
  flex: 0 0 350px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.team-popup__photo {
  border-radius: var(--radius-md);
  object-fit: cover;
  background-image: var(--linear-gradient);
}

.team-popup__info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-bottom: 1rem;
}

.team-popup__name {
  font-family: var(--font-accent);
  font-size: var(--fz-24-48);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.team-popup-content {
  font-size: var(--fz-14-18);
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.team-popup__list--check {
  list-style: none;
  padding-left: 0;
}

.team-popup__list--check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.3rem;
}

.team-popup__list--check li:before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-size: 1.1rem;
}

.team-popup__btn {
  margin-top: 1.2rem;
  margin-bottom: 0;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem 2.5rem;
  font-size: var(--fz-14-18);
  max-width: 300px;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  font-family: var(--font-main);
  text-decoration: none;
  text-align: center;
}

.team-popup__btn:hover {
  background: var(--color-blue);
}

.hero__img.hero__img--mobile {
  display: none;
}

.about__branches {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about__branch {
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--color-accent);
  border-radius: 24px;
  background: var(--color-bg);
  color: var(--color-accent);
  font-family: var(--font-main);
  font-size: var(--fz-16-18);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}

.about__branch--active {
  background: var(--color-accent);
  color: #fff;
}

.about__branch:focus {
  outline: 2px solid var(--color-accent);
}

.hero__slide {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero__slider-preloader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;

}

.hero__slider-preloader--hide {
  opacity: 0;
  visibility: hidden;
}

.hero__slider-spinner {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__slider-spinner svg {
  animation: preloader-spin 1.2s linear infinite;
  display: block;
}

@keyframes preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* =====================
  Special Offers (Специальные предложения)
====================== */
.special-offers {
  padding: 2rem 0 0 0;
  background: var(--color-bg);
}

.special-offers__title {
  font-size: var(--fz-24-48);
  font-family: var(--font-accent);
  font-weight: 400;
  color: var(--color-dark);
  text-transform: uppercase;
  text-align: left;
  margin: 0 0 3rem 0;
}

.special-offers__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.special-offers__item {
  flex: 0 0 414px;
  max-width: 414px;
  background: var(--color-white);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.special-offers__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.special-offers__image {
  width: 100%;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 20px;
}

.special-offers__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.special-offers__item-title {
  font-size: var(--fz-20-24);
  font-family: var(--font-accent);
  font-weight: 400;
  color: var(--color-dark);
  text-transform: uppercase;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.special-offers__description {
  font-size: var(--fz-14-18);
  font-family: var(--font-main);
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex: 1;
}

.special-offers__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.special-offers__content .offer-popup__prices {
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.special-offers__content .offer-popup__price-note {
  width: 100%;
  max-width: 100%;
  font-size: var(--fz-12-14);
  margin-top: 0.3rem;
}

.special-offers__btn {
  display: inline-block;
  border-radius: var(--radius-sm);
  padding: 15px 24px;
  font-size: var(--fz-14-18);
  font-family: var(--font-main);
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.special-offers__btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.special-offers__btn--primary:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
}

.special-offers__btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.special-offers__btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* =====================
  Offer Popup (Попап предложения)
====================== */
.offer-popup {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: none;
}

.offer-popup[aria-hidden="false"] {
  display: flex;
}

body.offer-popup-open {
  overflow: hidden;
}

.offer-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31, 31, 31, 0.54);
  z-index: 1;
}

.offer-popup__window {
  position: relative;
  box-sizing: border-box;
  z-index: 2;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 3.5rem 2.5rem 3.5rem 2.5rem;
  max-width: 1200px;
  width: calc(100% - 40px);
  max-height: 85vh;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

.offer-popup__close {
  background: none;
  border: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  cursor: pointer;
  padding: 5px;
  transition: opacity 0.2s;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-popup__close:hover {
  opacity: 0.7;
}

.offer-popup__content {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  width: 100%;
  align-items: flex-start;
  flex: 1 1 auto;
  min-height: 0;
}

.offer-popup__photo-wrap {
  flex: 0 0 350px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.offer-popup__photo {
  border-radius: var(--radius-md);
  object-fit: contain;
  max-width: 100%;
  max-height: 350px;
}

.offer-popup__info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
}

.offer-popup__title {
  font-family: var(--font-accent);
  font-size: var(--fz-18-32);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-dark);
  margin: 0 0 0.5rem 0;
}

.offer-popup__description {
  font-size: var(--fz-12-16);
  color: var(--color-muted);
  line-height: 1.6;
  font-family: var(--font-main);
}

.offer-popup__description ul {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0;
}

.offer-popup__description li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.offer-popup__description li p {
  margin-bottom: 0;
}

.offer-popup__description li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #6D6D6D;
}

.offer-popup__prices {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 1rem;
  margin: 0.5rem 0 1rem 0;
}

.offer-popup__price--new {
  font-family: var(--font-main);
  font-size: var(--fz-18-32);
  font-weight: bold !important;
  color: #71C287;
  font-weight: 400;
}

.offer-popup__price--old {
  font-family: var(--font-main);
  font-weight: bold;
  font-size: var(--fz-14-18);
  color: #C0C0C0;
  text-decoration: line-through;
}

.offer-popup__price-note {
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
  color: #6D6D6D;
  line-height: 1.4;
}

.offer-popup__btn {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem 2rem;
  font-size: var(--fz-12-16);
  font-family: var(--font-main);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
  width: fit-content;
}

.offer-popup__btn:hover {
  background: var(--color-black);
}

/* === Maintenance BEM === */
.maintenance {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  font-family: var(--font-accent);
}

.maintenance__logo {
  width: 120px;
  margin-bottom: 32px;
}

.maintenance__header {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #222;
  letter-spacing: 1px;
}

.maintenance__desc {
  font-size: 1.2rem;
  color: #555;
}

/*
Error 404 Page
*/

.error-404 {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 450px);
  padding: 40px 0;
  overflow: hidden;
}

.error-404__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 100%;
}

.error-404__title {
  font-family: var(--font-accent);
  font-size: clamp(10rem, 8.5714rem + 7.1429vw, 15rem);
  color: var(--color-extra-light-grey);
  line-height: 1;
  margin: 0;
}

.error-404__info {
  max-width: 450px;
}

.error-404__subtitle {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: var(--fz-18-32);
  color: var(--color-dark);
  margin-top: 0;
  margin-bottom: 1rem;
}

.error-404__text {
  color: var(--color-muted);
  margin-bottom: 2rem;
  font-size: var(--fz-14-18);
  font-family: var(--font-main);
}

.error-404__button {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 32px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  font-family: var(--font-main);
}

.error-404__button:hover {
  background: var(--color-blue);
}

#hero-slider .slick-list {
  border-radius: var(--radius-md);
}

.header__dropdown-col:nth-child(2) {
  /* pointer-events intentionally not overridden — inherits from parent */
}

#services {
  scroll-margin-top: 50px;
}

.our-partner {
  margin: 50px 0 100px 0;
}

.team-popup__tags {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  list-style-type: none;
  padding-inline-start: 0;
}

.team-popup__tag {
  background: var(--color-white);
  border: 1px solid var(--color-grey);
  color: var(--color-dark);
  border-radius: 24px;
  padding: 0.5rem 1.5rem;
  font-size: var(--fz-14-18);
  cursor: pointer;
  pointer-events: none;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-main);
  height: 30px;
  display: flex;
  align-items: center;
}

.socials__item {
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 15px;
}

.hero__slide:first-child .hero__btn--secondary {
  display: none;
}

.lang-el .footer__col-title a {
  text-transform: inherit;
}

/* =====================
  Pressotherapy service landing
====================== */
.pressotherapy {
  color: var(--color-dark);
  overflow-x: clip;
}

.pressotherapy__hero {
  position: relative;
  padding: 1rem 0 4rem;
}

.pressotherapy__hero::before {
  content: '';
  position: absolute;
  inset: 0 0 18%;
  background: linear-gradient(112deg, #eaf7fd 0%, #ffffff 52%, #edf7ef 100%);
  z-index: 0;
}

.pressotherapy__hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.pressotherapy__hero-content,
.pressotherapy__hero-visual,
.pressotherapy__section-head,
.pressotherapy__cause-grid,
.pressotherapy__compare,
.pressotherapy__program-grid,
.pressotherapy__how-media,
.pressotherapy__how-content,
.pressotherapy__result-grid,
.pressotherapy__form-copy,
.pressotherapy__form-card {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pressotherapy.is-enhanced .pressotherapy__section-head,
.pressotherapy.is-enhanced .pressotherapy__cause-grid,
.pressotherapy.is-enhanced .pressotherapy__compare,
.pressotherapy.is-enhanced .pressotherapy__program-grid,
.pressotherapy.is-enhanced .pressotherapy__how-media,
.pressotherapy.is-enhanced .pressotherapy__how-content,
.pressotherapy.is-enhanced .pressotherapy__result-grid,
.pressotherapy.is-enhanced .pressotherapy__form-copy,
.pressotherapy.is-enhanced .pressotherapy__form-card {
  opacity: 0;
  transform: translateY(24px);
}

.pressotherapy.is-enhanced .is-visible,
.pressotherapy .is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form card + form copy must always be visible when popup is open — bypass scroll-animation */
.pressotherapy__form-section.is-open .pressotherapy__form-card,
.pressotherapy__form-section.is-open .pressotherapy__form-copy {
  opacity: 1 !important;
  transform: none !important;
}

.pressotherapy__eyebrow,
.pressotherapy__package-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(113, 194, 135, 0.16);
  color: #36784a;
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.pressotherapy__title,
.pressotherapy__section-title,
.pressotherapy__cta h2 {
  font-family: var(--font-accent);
  font-size: var(--fz-24-48);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-dark);
  margin: 0 0 1.25rem;
  line-height: 1.05;
}

.pressotherapy__lead,
.pressotherapy__section-desc,
.pressotherapy__cta p,
.pressotherapy__form-copy p {
  font-family: var(--font-main);
  font-size: var(--fz-14-18);
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0;
}

.pressotherapy__lead {
  max-width: 680px;
  margin-bottom: 2rem;
}

.pressotherapy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 2rem;
}

.pressotherapy__actions--end {
  justify-content: flex-end;
  margin-bottom: 0;
}

.pressotherapy__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-main);
  font-size: var(--fz-14-18);
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.pressotherapy__btn:hover {
  transform: translateY(-2px);
}

.pressotherapy__btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.pressotherapy__btn--primary:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
}

.pressotherapy__btn--ghost {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-light-grey);
}

.pressotherapy__btn--ghost:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.pressotherapy__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 720px;
}

.pressotherapy__metric {
  padding: 1rem;
  background: var(--color-white);
  border: 1px solid rgba(217, 217, 217, 0.7);
  border-radius: var(--radius-sm);
}

.pressotherapy__metric strong,
.pressotherapy__metric span {
  display: block;
}

.pressotherapy__metric strong {
  font-family: var(--font-accent);
  font-size: var(--fz-18-32);
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
}

.pressotherapy__metric span {
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
  color: var(--color-muted);
}

.pressotherapy__image-shell,
.pressotherapy__compare-item,
.pressotherapy__package-media {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-white);
}

.pressotherapy__image-shell {
  min-height: 360px;
}

.pressotherapy__image-shell--hero {
  min-height: 480px;
  box-shadow: 0 24px 60px rgba(40, 185, 237, 0.16);
}

.pressotherapy__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pressotherapy__image--missing {
  visibility: hidden;
}

.pressotherapy__image-shell.has-missing-image,
.pressotherapy__volume-item.has-missing-image,
.pressotherapy__cta-visual.has-missing-image {
  position: relative;
}

.pressotherapy__image-shell.has-missing-image::before,
.pressotherapy__volume-item.has-missing-image::before,
.pressotherapy__cta-visual.has-missing-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pressotherapy__nav {
  position: sticky;
  top: 92px;
  z-index: 20;
  margin: -1rem 0 3rem;
  background: rgba(247, 247, 247, 0.88);
  backdrop-filter: blur(12px);
}

.pressotherapy__nav-inner {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  scrollbar-width: none;
}

.pressotherapy__nav-inner::-webkit-scrollbar {
  display: none;
}

.pressotherapy__nav-link {
  flex: 0 0 auto;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--color-light-grey);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.pressotherapy__nav-link:hover {
  color: var(--color-white);
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.pressotherapy__section {
  margin: 5rem 0;
}

.pressotherapy__split,
.pressotherapy__how,
.pressotherapy__form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.pressotherapy__section-head {
  max-width: 560px;
}

.pressotherapy__section-head--center {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.pressotherapy__cause-grid,
.pressotherapy__program-grid,
.pressotherapy__result-grid {
  display: grid;
  gap: 1rem;
}

.pressotherapy__cause-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pressotherapy__cause-card,
.pressotherapy__program-card,
.pressotherapy__result-card,
.pressotherapy__package-card,
.pressotherapy__form-card {
  background: var(--color-white);
  border: 1px solid rgba(217, 217, 217, 0.74);
  border-radius: var(--radius-sm);
}

.pressotherapy__cause-card,
.pressotherapy__program-card,
.pressotherapy__result-card {
  padding: 1.35rem;
}

.pressotherapy__cause-card h3,
.pressotherapy__program-card h3,
.pressotherapy__step h3,
.pressotherapy__package-card h3,
.pressotherapy__result-card h3 {
  font-family: var(--font-accent);
  font-size: var(--fz-14-20);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-dark);
  margin: 0 0 0.75rem;
}

.pressotherapy__cause-card p,
.pressotherapy__program-card p,
.pressotherapy__step p,
.pressotherapy__result-card p,
.pressotherapy__package-list li {
  font-family: var(--font-main);
  font-size: var(--fz-14-18);
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0;
}

.pressotherapy__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.pressotherapy__compare-item {
  margin: 0;
  border: 1px solid rgba(217, 217, 217, 0.74);
}

.pressotherapy__compare-item img {
  aspect-ratio: 13 / 8;
}

.pressotherapy__compare-item figcaption {
  padding: 0.9rem 1rem;
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
  color: var(--color-muted);
}

.pressotherapy__program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pressotherapy__program-card {
  position: relative;
  min-height: 230px;
}

.pressotherapy__program-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.4rem;
  border-radius: var(--radius-sm);
  background: var(--color-light-blue);
  color: var(--color-blue);
  font-family: var(--font-accent);
  font-size: 20px;
}

.pressotherapy__section--how {
  padding: 4rem 0;
  background: linear-gradient(90deg, rgba(222, 233, 225, 0.72), rgba(234, 247, 253, 0.74));
}

.pressotherapy__how {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.pressotherapy__steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.pressotherapy__step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.pressotherapy__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-success);
  font-family: var(--font-accent);
  font-size: 22px;
}

.pressotherapy__package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 3rem;
}

.pressotherapy__package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: visible;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pressotherapy__package-card:hover,
.pressotherapy__package-card.is-selected {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 16px 36px rgba(40, 185, 237, 0.14);
}

.pressotherapy__package-media img {
  aspect-ratio: 21 / 12;
}

.pressotherapy__package-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.pressotherapy__package-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-extra-light-grey);
  border-bottom: 1px solid var(--color-extra-light-grey);
}

.pressotherapy__package-meta span,
.pressotherapy__package-meta strong {
  font-family: var(--font-main);
  font-size: var(--fz-14-18);
}

.pressotherapy__package-meta span {
  color: var(--color-muted);
}

.pressotherapy__package-meta strong {
  color: var(--color-success);
}

.pressotherapy__package-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  padding: 1.1rem 0;
  margin: 0 0 auto;
}

.pressotherapy__package-list li {
  position: relative;
  padding-left: 1.6rem;
}

.pressotherapy__package-list li::before,
.pressotherapy__result-card::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--color-success);
}

.pressotherapy__package-list li::before {
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
}

.pressotherapy__result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pressotherapy__result-card {
  position: relative;
  padding-left: 3.2rem;
}

.pressotherapy__result-card::before {
  left: 1.35rem;
  top: 1.55rem;
  width: 13px;
  height: 13px;
  box-shadow: 0 0 0 7px rgba(113, 194, 135, 0.16);
}

.pressotherapy__cta {
  margin: 5rem 0;
}

.pressotherapy__cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem;
  border-radius: var(--radius-sm);
  background: var(--color-dark);
}

.pressotherapy__cta h2,
.pressotherapy__cta p {
  color: var(--color-white);
}

.pressotherapy__cta p {
  max-width: 680px;
  opacity: 0.82;
}

.pressotherapy__form-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
}

.pressotherapy__form-card {
  position: relative;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(40, 185, 237, 0.12);
}

.pressotherapy__form-card.is-attention {
  animation: pressotherapy-attention 0.8s ease;
}

.pressotherapy__selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--color-light-blue);
}

.pressotherapy__selected span,
.pressotherapy__selected strong {
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
}

.pressotherapy__selected span {
  color: var(--color-muted);
}

.pressotherapy__selected strong {
  color: var(--color-dark);
  text-align: right;
}

.pressotherapy__cf7 .wpcf7-form {
  display: grid;
  gap: 1rem;
}

.pressotherapy__cf7 p {
  margin: 0;
}

.pressotherapy__cf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.pressotherapy__cf7 .contact__input {
  box-sizing: border-box;
  color: var(--color-dark);
  border-color: var(--color-light-grey);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pressotherapy__cf7 .contact__input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(91, 204, 246, 0.18);
  transform: translateY(-1px);
}

.pressotherapy__cf7 .contact__submit {
  margin-top: 0.2rem;
}

.pressotherapy__agreement,
.pressotherapy__form-missing {
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
  color: var(--color-muted);
  line-height: 1.5;
  text-align: center;
  margin: 1rem 0 0;
}

@keyframes pressotherapy-attention {
  0%, 100% {
    box-shadow: 0 16px 40px rgba(40, 185, 237, 0.12);
  }
  40% {
    box-shadow: 0 0 0 6px rgba(91, 204, 246, 0.2), 0 20px 44px rgba(40, 185, 237, 0.18);
  }
}

/* =====================
  Pressotherapy mockup alignment
====================== */
.pressotherapy {
  --pt-blue: #5bc7eb;
  --pt-blue-soft: #cceff9;
  --pt-blue-card: #a7e3f4;
  --pt-green: #67c480;
  --pt-mint: #19c8a7;
  --pt-red: #ef6262;
  background: #f7f7f7;
  padding-bottom: 5.2rem;
}

.pressotherapy .container {
  max-width: var(--container-width);
}

.pressotherapy__hero {
  padding: 1rem 0 3.7rem;
}

.pressotherapy__hero::before,
.pressotherapy__nav,
.pressotherapy__eyebrow,
.pressotherapy__metrics {
  display: none;
}

.pressotherapy__hero-inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 3.1rem;
  align-items: start;
}

.pressotherapy__title,
.pressotherapy__section-title,
.pressotherapy__cta h2,
.pressotherapy__volume-card h2,
.pressotherapy__method-card h3,
.pressotherapy__result-title-card h2,
.pressotherapy__package-card h3 {
  font-family: var(--font-accent);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-dark);
}

.pressotherapy__title {
  max-width: 620px;
  margin: 0 0 0.85rem;
  font-size: clamp(38px, 3.6vw, 52px);
  line-height: 0.98;
}

.pressotherapy__lead {
  max-width: 560px;
  margin: 0 0 1rem;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.5;
}

.pressotherapy__check-list,
.pressotherapy__arrow-list {
  display: grid;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pressotherapy__check-list--hero {
  margin-bottom: 1.55rem;
}

.pressotherapy__check-list li,
.pressotherapy__arrow-list li {
  position: relative;
  padding-left: 1.25rem;
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-dark);
}

.pressotherapy__check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.55rem;
  height: 0.9rem;
  border-right: 2px solid var(--pt-mint);
  border-bottom: 2px solid var(--pt-mint);
  transform: translateY(-50%) rotate(42deg);
}

.pressotherapy__arrow-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid var(--pt-red);
}

.pressotherapy__actions {
  gap: 0.7rem;
  margin: 0;
}

.pressotherapy__btn {
  min-width: 205px;
  min-height: 46px;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.1;
  box-sizing: border-box;
}

.pressotherapy__btn--primary {
  background: var(--pt-blue);
  border-color: var(--pt-blue);
}

.pressotherapy__btn--primary:hover {
  background: #35b9e6;
  border-color: #35b9e6;
}

.pressotherapy__btn--ghost {
  background: var(--color-white);
  color: var(--pt-blue);
  border-color: var(--pt-blue);
}

.pressotherapy__btn--ghost:hover {
  background: var(--pt-blue);
  color: var(--color-white);
}

.pressotherapy__image-shell,
.pressotherapy__package-media {
  border-radius: 8px;
  background: var(--pt-blue-soft);
  border: 0;
}

.pressotherapy__image-shell--hero {
  min-height: 350px;
  aspect-ratio: 1.62 / 1;
  box-shadow: none;
}

.pressotherapy__image-shell--hero img {
  object-position: center 42%;
}

.pressotherapy__image-shell--how {
  width: min(100%, 420px);
  flex: 1;
  min-height: 200px;
  margin-top: 1.7rem;
}

.pressotherapy__image-shell--how.has-missing-image::before {
  background:
    radial-gradient(ellipse at 36% 58%, rgba(255, 216, 190, 0.95) 0 60px, transparent 61px),
    linear-gradient(12deg, transparent 43%, #4d596f 44% 57%, transparent 58%) 43% 48% / 58% 28% no-repeat,
    radial-gradient(ellipse at 70% 70%, #4d596f 0 58px, transparent 59px),
    radial-gradient(ellipse at 50% 88%, rgba(255, 255, 255, 0.9) 0 55%, transparent 56%);
}

.pressotherapy__section {
  margin: 0;
}

.pressotherapy__section--volume {
  margin-top: 1rem;
  margin-bottom: 4.2rem;
}

.pressotherapy__volume-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  overflow: visible;
}

.pressotherapy__volume-item {
  position: relative;
  min-height: 380px;
  padding: 48px 0;
  box-sizing: border-box;
  overflow: visible;
}

.pressotherapy__body-image {
  position: absolute;
  left: var(--vol-left, 18px);
  top: 50%;
  z-index: 2;
  width: var(--vol-img, 175px);
  height: var(--vol-img-h, 360px);
  object-fit: contain;
  object-position: top;
  transform: translateY(-50%);
}

.pressotherapy__volume-item.has-missing-image::before {
  left: 4px;
  top: 6px;
  right: auto;
  bottom: auto;
  width: 170px;
  height: 318px;
  border-radius: 46% 46% 38% 38%;
  background:
    radial-gradient(circle at 50% 8%, #ffd2bc 0 19px, transparent 20px),
    radial-gradient(ellipse at 50% 33%, #10bfc0 0 54px, transparent 55px),
    radial-gradient(ellipse at 31% 58%, #ffd2bc 0 13px, transparent 14px),
    radial-gradient(ellipse at 69% 58%, #ffd2bc 0 13px, transparent 14px),
    linear-gradient(#ffd2bc 0 0) 42% 78% / 18px 112px no-repeat,
    linear-gradient(#ffd2bc 0 0) 58% 78% / 18px 112px no-repeat,
    radial-gradient(ellipse at 50% 58%, #ffd2bc 0 45px, transparent 46px);
}

.pressotherapy__volume-item--program.has-missing-image::before {
  width: 150px;
  background:
    radial-gradient(circle at 50% 8%, #ffd2bc 0 18px, transparent 19px),
    radial-gradient(ellipse at 50% 33%, #10bfc0 0 42px, transparent 43px),
    radial-gradient(ellipse at 31% 57%, #ffd2bc 0 10px, transparent 11px),
    radial-gradient(ellipse at 69% 57%, #ffd2bc 0 10px, transparent 11px),
    linear-gradient(#ffd2bc 0 0) 43% 78% / 15px 112px no-repeat,
    linear-gradient(#ffd2bc 0 0) 57% 78% / 15px 112px no-repeat,
    radial-gradient(ellipse at 50% 58%, #ffd2bc 0 34px, transparent 35px);
}

.pressotherapy__volume-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0;
  padding: 2rem 2rem 2rem calc(var(--vol-img, 145px) + 1.2rem);
  border-radius: 8px;
  box-sizing: border-box;
}

.pressotherapy__volume-card--white {
  background: var(--color-white);
}

.pressotherapy__volume-card--blue {
  background: var(--pt-blue-card);
}

.pressotherapy__volume-card h2 {
  margin: 0 0 1rem;
  font-size: 31px;
  line-height: 1.05;
}

.pressotherapy__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--pt-blue);
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 1.1;
}

.pressotherapy__section--how {
  padding: 0;
  margin-bottom: 5.4rem;
  background: transparent;
}

.pressotherapy__how-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.75fr);
  gap: 3.2rem;
  align-items: stretch;
}

.pressotherapy__how-copy {
  display: flex;
  flex-direction: column;
}

.pressotherapy__section-title {
  margin: 0 0 1rem;
  font-size: clamp(34px, 3.35vw, 46px);
  line-height: 0.98;
}

.pressotherapy__section-title--packages {
  margin-bottom: 2rem;
}

.pressotherapy__section-desc {
  max-width: 520px;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.5;
}

.pressotherapy__method {
  display: grid;
  grid-template-rows: minmax(0, 1.1fr) minmax(0, 0.82fr);
  gap: 1rem;
  padding-top: 0.15rem;
}

.pressotherapy__method-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  text-align: center;
  color: var(--color-white);
}

.pressotherapy__method-card--blue {
  min-height: 0;
  padding: 2rem 2.2rem;
  background: var(--pt-blue);
}

.pressotherapy__method-card--green {
  min-height: 0;
  padding: 2rem 2.2rem;
  background: var(--pt-green);
}

.pressotherapy__method-card h3 {
  margin: 0 0 1rem;
  color: var(--color-white);
  font-size: 30px;
  line-height: 1.05;
}

.pressotherapy__method-card--green h3 {
  max-width: 430px;
  margin-right: auto;
  margin-left: auto;
}

.pressotherapy__method-card p {
  max-width: 510px;
  margin: 0 auto;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
}

.pressotherapy__method-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.pressotherapy__method-pills span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1;
}

.pressotherapy__package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-bottom: 5.2rem;
}

.pressotherapy__package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--color-white);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.pressotherapy__package-card:hover,
.pressotherapy__package-card.is-selected {
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(40, 185, 237, 0.16);
  transform: translateY(-4px);
}

.pressotherapy__package-media {
  position: relative;
  display: block;
  margin: 15px 15px 0;
  aspect-ratio: 1.24 / 1;
  min-height: 230px;
  overflow: hidden;
}

.pressotherapy__package-card--light .pressotherapy__package-media {
  background: #7bd9f4;
}

.pressotherapy__package-card--pro .pressotherapy__package-media {
  background: #94dfaa;
}

.pressotherapy__package-card--maximum .pressotherapy__package-media {
  background: #19c7be;
}

.pressotherapy__package-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.pressotherapy__package-media.has-missing-image::before {
  background:
    radial-gradient(circle at 50% 18%, #ffd2bc 0 26px, transparent 27px),
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.86) 0 78px, transparent 79px),
    radial-gradient(ellipse at 50% 88%, rgba(25, 200, 167, 0.28) 0 58%, transparent 59%);
}

.pressotherapy__package-card--maximum .pressotherapy__package-media img {
  object-position: 72% center;
}

.pressotherapy__package-media span {
  position: absolute;
  left: 50%;
  bottom: -13px;
  max-width: calc(100% - 30px);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--pt-mint);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pressotherapy__package-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2.2rem 1.45rem 1.5rem;
  text-align: center;
}

.pressotherapy__package-card h3 {
  margin: 0 0 0.35rem;
  font-size: 31px;
  line-height: 1.05;
}

.pressotherapy__package-subtitle {
  margin: 0 0 1.25rem;
  font-family: var(--font-accent);
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-dark);
}

.pressotherapy__package-note {
  min-height: 48px;
  margin: 0;
  padding: 1.15rem 0;
  border-top: 1px solid var(--color-grey);
  border-bottom: 1px solid var(--color-grey);
  color: var(--color-dark);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.45;
}

.pressotherapy__package-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1.15rem 0 1rem;
}

.pressotherapy__package-features div {
  position: relative;
  padding-top: 1.5rem;
}

.pressotherapy__package-features div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.55rem;
  height: 0.9rem;
  border-right: 2px solid var(--pt-mint);
  border-bottom: 2px solid var(--pt-mint);
  transform: translateX(-50%) rotate(42deg);
}

.pressotherapy__package-features strong,
.pressotherapy__package-features span {
  display: block;
  color: var(--color-dark);
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
}

.pressotherapy__package-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: -0.25rem 0 0.8rem;
}

.pressotherapy__package-badges span {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--color-light-grey);
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: 11px;
  line-height: 1.1;
  color: var(--color-dark);
}

.pressotherapy__package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: auto;
}

.pressotherapy__price {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.pressotherapy__price strong {
  color: var(--pt-green);
  font-family: var(--font-main);
  font-size: 22px;
  line-height: 1;
}

.pressotherapy__price span {
  color: var(--color-muted);
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1;
  text-decoration: line-through;
}

.pressotherapy__package-footer .pressotherapy__btn {
  min-width: 0;
  min-height: 42px;
  padding: 0.75rem 1rem;
  font-size: 13px;
}

.pressotherapy__section--results {
  margin-bottom: 5rem;
}

.pressotherapy__result-layout {
  display: grid;
  grid-template-columns: repeat(30, minmax(0, 1fr));
  gap: 1.1rem;
}

.pressotherapy__result-title-card,
.pressotherapy__result-card {
  min-height: 142px;
  background: var(--color-white);
  border: 0;
  border-radius: 8px;
}

.pressotherapy__result-title-card {
  grid-column: span 10;
  display: flex;
  align-items: center;
  padding: 1.7rem 2.8rem;
  box-sizing: border-box;
}

.pressotherapy__result-card:nth-of-type(-n + 4) {
  grid-column: span 5;
}

.pressotherapy__result-card:nth-of-type(n + 5) {
  grid-column: span 6;
}

.pressotherapy__result-title-card h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.02;
}

.pressotherapy__result-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem;
  text-align: center;
  box-sizing: border-box;
}

.pressotherapy__result-card::before {
  display: none;
}

.pressotherapy__result-card p {
  margin: 0;
  color: var(--color-dark);
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.35;
}

.pressotherapy__result-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  color: var(--pt-mint);
}

.pressotherapy__result-icon::before,
.pressotherapy__result-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pressotherapy__result-icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.pressotherapy__result-icon--pin::before {
  width: 34px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.pressotherapy__result-icon--pin::after {
  width: 2px;
  height: 34px;
  background: currentColor;
  transform: translate(-50%, -58%) rotate(45deg);
}

.pressotherapy__result-icon--leg::before {
  width: 12px;
  height: 32px;
  border-radius: 12px 12px 5px 5px;
  background: currentColor;
  transform: translate(-65%, -58%) rotate(-7deg);
}

.pressotherapy__result-icon--leg::after {
  width: 24px;
  height: 10px;
  border-radius: 12px;
  background: currentColor;
  transform: translate(-30%, 64%);
}

.pressotherapy__result-icon--waist::before {
  width: 34px;
  height: 38px;
  border: 6px solid currentColor;
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-radius: 45% 45% 30% 30%;
}

.pressotherapy__result-icon--skin::before {
  width: 34px;
  height: 24px;
  border-radius: 4px;
  background: repeating-linear-gradient(to bottom, currentColor 0 3px, transparent 3px 7px);
}

.pressotherapy__result-icon--drop-circle::before,
.pressotherapy__result-icon--drop::before {
  width: 25px;
  height: 25px;
  border-radius: 50% 50% 50% 5px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pressotherapy__result-icon--drop-circle::after {
  width: 36px;
  height: 36px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.pressotherapy__result-icon--grid::before,
.pressotherapy__result-icon--cells::before {
  width: 34px;
  height: 28px;
  border-radius: 3px;
  background: repeating-linear-gradient(to right, currentColor 0 7px, transparent 7px 10px), repeating-linear-gradient(to bottom, currentColor 0 7px, transparent 7px 10px);
  opacity: 0.95;
}

.pressotherapy__result-icon--spark::before {
  width: 32px;
  height: 32px;
  background: currentColor;
  clip-path: polygon(45% 0, 58% 32%, 92% 16%, 68% 48%, 100% 57%, 64% 64%, 82% 100%, 50% 73%, 20% 100%, 33% 62%, 0 54%, 33% 45%, 14% 14%);
}

.pressotherapy__result-icon--flow::before {
  width: 34px;
  height: 18px;
  border: 4px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}

.pressotherapy__cta {
  margin: 0 0 5rem;
}

.pressotherapy__cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.8fr);
  gap: 2.2rem;
  align-items: center;
  min-height: 390px;
  padding: 3.2rem 5.8rem 0;
  overflow: visible;
  border-radius: 8px;
  background: var(--pt-blue-soft);
}

.pressotherapy__cta h2 {
  max-width: 540px;
  margin: 0 0 1rem;
  color: var(--color-dark);
  font-size: clamp(38px, 3.8vw, 52px);
  line-height: 0.98;
}

.pressotherapy__cta p {
  max-width: 480px;
  margin: 0 0 1.7rem;
  color: var(--color-dark);
  opacity: 1;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
}

.pressotherapy__cta .pressotherapy__actions {
  display: grid;
  width: min(100%, 345px);
  gap: 0.7rem;
}

.pressotherapy__cta .pressotherapy__btn {
  width: 100%;
}

.pressotherapy__cta-visual {
  align-self: end;
  height: clamp(400px, 35vw, 490px);
  margin-top: -120px;
  position: relative;
  z-index: 3;
}

.pressotherapy__cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.pressotherapy__form-section {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.pressotherapy__form-section.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.pressotherapy__form-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 45, 52, 0.55);
}

.pressotherapy__form-section .container {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: 0;
}

body.pressotherapy-form-open {
  overflow: hidden;
}

.pressotherapy__form-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 2.4rem;
  background: var(--color-white);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(40, 185, 237, 0.12);
}

.pressotherapy__form-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--pt-blue-soft);
  cursor: pointer;
}

.pressotherapy__form-close::before,
.pressotherapy__form-close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--color-dark);
  transform-origin: center;
}

.pressotherapy__form-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.pressotherapy__form-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pressotherapy__form-copy {
  margin-bottom: 1.2rem;
  text-align: center;
}

.pressotherapy__form-copy .pressotherapy__section-title,
.pressotherapy__form-copy .pressotherapy__section-desc {
  max-width: 100%;
}

.pressotherapy__selected {
  border-radius: 8px;
}

/* =========================================================
   Pressotherapy v4 — refined holistic polish
   ========================================================= */
.pressotherapy {
  --pt-radius-sm: 14px;
  --pt-radius-md: 22px;
  --pt-radius-lg: 32px;
  --pt-section-gap: clamp(2.6rem, 4.5vw, 4.5rem);
  --pt-card-gap: clamp(1rem, 1.5vw, 1.6rem);
}

/* Tightened breadcrumbs → hero rhythm */
.breadcrumbs-wrapper + main.pressotherapy {
  padding-top: 0;
}
/* tighter bottom margin on breadcrumbs when followed by pressotherapy hero */
.pressotherapy-page .breadcrumbs-wrapper,
body:has(main.pressotherapy) .breadcrumbs-wrapper {
  margin-bottom: 0.5rem;
}
.pressotherapy .pressotherapy__hero {
  padding-top: 0.3rem;
  padding-bottom: 2.5rem;
}

/* Consistent vertical rhythm between sections */
.pressotherapy__section--volume,
.pressotherapy__section--how,
.pressotherapy__section--results,
.pressotherapy__cta,
.pressotherapy #pressotherapy-packages {
  margin-top: 0;
  margin-bottom: var(--pt-section-gap);
}
.pressotherapy__section.pressotherapy__cta {
  margin-bottom: clamp(1.6rem, 3vw, 3rem);
}

/* ── 1) HERO — equal column heights ─────────────────────── */
.pressotherapy__hero-inner {
  align-items: stretch;
  gap: clamp(2rem, 4vw, 4rem);
}
.pressotherapy__hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pressotherapy__hero-visual {
  display: flex;
}
.pressotherapy__image-shell--hero {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--pt-radius-md);
  box-shadow: 0 24px 60px rgba(40, 185, 237, 0.16);
}
.pressotherapy__image-shell--hero img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

/* ── 2) "Почему объёмы" — image overlaps left of full-width card ── */
.pressotherapy__volume-grid {
  gap: clamp(1.6rem, 2.5vw, 2.8rem);
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pressotherapy__volume-item {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 320px;
  overflow: visible;
}
.pressotherapy__body-image {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  height: auto;
  max-height: 125%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}
/* Card: full column width, left-padding makes room for the body image */
.pressotherapy__volume-card {
  width: 100%;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  min-height: 280px;
  padding: 2.2rem 2.2rem 2.2rem 160px;
  border-radius: var(--pt-radius-lg);
  box-shadow: 0 12px 32px rgba(40, 185, 237, 0.06);
}
.pressotherapy__volume-card h2 {
  font-size: clamp(20px, 1.7vw, 26px);
  margin: 0;
  line-height: 1.15;
}
.pressotherapy__volume-card .pressotherapy__pill {
  align-self: flex-start;
}
/* override base list styles inside volume cards */
.pressotherapy__volume-card .pressotherapy__arrow-list,
.pressotherapy__volume-card .pressotherapy__check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pressotherapy__volume-card .pressotherapy__arrow-list li,
.pressotherapy__volume-card .pressotherapy__check-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 15px;
  line-height: 1.4;
}
/* Clear inherited CSS-triangle / CSS-checkmark and use separate bullets */
.pressotherapy__volume-card .pressotherapy__arrow-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 1.3rem;
  height: 0.8rem;
  /* clear base triangle borders */
  border: none;
  transform: none;
  background: url(../images/pressotherapy/icons/12.svg) center/contain no-repeat;
}
.pressotherapy__volume-card .pressotherapy__check-list li::before {
  content: '';
  position: absolute;
  left: 0.15rem;
  top: 0.22em;
  width: 0.45rem;
  height: 0.8rem;
  border-right: 2px solid var(--pt-mint);
  border-bottom: 2px solid var(--pt-mint);
  background: none;
  transform: rotate(42deg);
}

/* ── 3) "Как работает" — NO background, right column full width ── */
.pressotherapy__section--how {
  padding: clamp(2rem, 3.5vw, 3rem) 0;
  background: transparent;
}
.pressotherapy__how-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.pressotherapy__how-copy {
  justify-content: flex-start;
  gap: 0.5rem;
  height: 100%;
}
.pressotherapy__how-copy .pressotherapy__section-title {
  margin-bottom: 0;
}
.pressotherapy__image-shell--how {
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: none;
  aspect-ratio: unset;
  margin-top: 0;
  border-radius: var(--pt-radius-md);
  overflow: hidden;
  background: transparent;
}
.pressotherapy__image-shell--how img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.pressotherapy__method {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  min-height: 100%;
  align-self: stretch;
  margin-left: 0;
  padding-top: 0;
}
.pressotherapy__method-card {
  min-height: 0;
}
.pressotherapy__method-card {
  flex: 1;
  border-radius: var(--pt-radius-md);
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pressotherapy__method-card h3 {
  font-size: clamp(22px, 2vw, 28px);
}
.pressotherapy__method-card p {
  font-size: 15px;
}
.pressotherapy__method-card--blue { background: #5BCCF6; color: #fff; }
.pressotherapy__method-card--green { background: #71C287; color: #fff; }
/* Frosted pill labels on darker card backgrounds */
.pressotherapy__method-pills span {
  background: rgba(255, 255, 255, 0.88);
  color: #1e3a4a;
}

/* ── 4) PACKAGES — restored tag pill, refined card ──── */
.pressotherapy__package-grid {
  gap: clamp(1.1rem, 1.6vw, 1.6rem);
  margin-bottom: 0;
}
.pressotherapy__package-card {
  border-radius: var(--pt-radius-md);
  overflow: visible;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.pressotherapy__package-card:hover,
.pressotherapy__package-card.is-selected {
  transform: none;
  box-shadow: 0 16px 36px rgba(40, 185, 237, 0.14);
  border-color: transparent;
}
.pressotherapy__package-card.is-selected {
  outline: 2px solid var(--pt-mint);
  outline-offset: -2px;
}
.pressotherapy__package-media {
  position: relative;
  margin: 14px 14px 0;
  border-radius: calc(var(--pt-radius-md) - 8px);
  overflow: visible;
  aspect-ratio: 1.28 / 1;
  min-height: 220px;
}
.pressotherapy__package-media img {
  border-radius: inherit;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pressotherapy__package-tag-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 0 0.95rem;
  position: relative;
  z-index: 5;
}
.pressotherapy__package-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pressotherapy__package-body {
  padding: 1.9rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pressotherapy__package-body h3 {
  text-align: center;
  margin: 0 0 0.3rem;
}
.pressotherapy__package-subtitle {
  margin: 0 0 0.6rem;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.pressotherapy__package-note {
  min-height: 4.5em;
  padding: 1rem 0;
  border-color: rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 14.5px;
  color: #555;
  margin: 0;
}
.pressotherapy__package-features {
  padding: 1.1rem 0 0.8rem;
}
.pressotherapy__package-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.pressotherapy__package-footer {
  margin-top: auto;
}

/* ── 5) RESULTS — 5-col grid: title + 4 cards / 5 cards ── */
.pressotherapy__result-layout {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.pressotherapy__result-title-card,
.pressotherapy__result-card,
.pressotherapy__result-card:nth-of-type(-n + 4),
.pressotherapy__result-card:nth-of-type(n + 5) {
  grid-column: span 1;
  border-radius: var(--pt-radius-md);
  min-height: 168px;
}
.pressotherapy__result-title-card {
  grid-column: span 1;
  padding: 1.6rem 1.6rem;
  background: linear-gradient(135deg, rgba(91, 199, 235, 0.12), rgba(103, 196, 128, 0.10));
  display: flex;
  align-items: center;
}
.pressotherapy__result-title-card h2 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.1;
  margin: 0;
}
.pressotherapy__result-card {
  padding: 1.4rem 1rem;
  gap: 0.7rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pressotherapy__result-card p {
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
}
.pressotherapy__result-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(25, 200, 167, 0.12);
}
.pressotherapy__result-icon::before,
.pressotherapy__result-icon::after {
  display: none !important;
  content: none !important;
}
.pressotherapy__result-icon img {
  width: 36px;
  height: 36px;
}

/* ── 6) CTA — taller, organic spacing ─────────────────── */
.pressotherapy__cta-inner {
  border-radius: var(--pt-radius-lg);
  padding: clamp(2.4rem, 4vw, 3.6rem) clamp(2.4rem, 4vw, 4.5rem);
  min-height: 360px;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.pressotherapy__cta-copy {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.pressotherapy__cta-copy h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.1;
}
.pressotherapy__cta-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
.pressotherapy__cta .pressotherapy__actions {
  margin-top: 0.4rem;
}
.pressotherapy__cta-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.pressotherapy__cta-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--pt-radius-md);
}

/* ── Tablet ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pressotherapy__how-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .pressotherapy__result-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pressotherapy__result-title-card {
    grid-column: span 3;
    min-height: 0;
    padding: 1.2rem 1.6rem;
  }
  .pressotherapy__result-title-card h2 {
    font-size: 22px;
  }
}

/* ── Mobile tightening ─────────────────────────────────── */
@media (max-width: 760px) {
  .pressotherapy__hero-inner,
  .pressotherapy__volume-grid,
  .pressotherapy__package-grid,
  .pressotherapy__cta-inner {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .pressotherapy__volume-item {
    --vol-img:  clamp(85px, 22vw, 120px);
    --vol-img-h: clamp(180px, 44vw, 250px);
    --vol-left: 10px;
    padding: clamp(18px, 4vw, 30px) 0;
  }
  .pressotherapy__volume-card {
    padding: 1.1rem 1.2rem 1.1rem calc(var(--vol-left, 10px) + var(--vol-img, 100px) + 0.9rem);
    min-height: 0;
  }
  .pressotherapy__result-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pressotherapy__result-title-card {
    grid-column: span 2;
  }
  .pressotherapy__cta-inner {
    padding: 2rem 1.4rem;
    min-height: 0;
  }
  .pressotherapy__cta-visual {
    justify-content: center;
  }
}

/* ── Final pressotherapy visual pass: reference alignment ── */
.pressotherapy {
  --pt-blue: #5BCCF6;
  --pt-green: #71C287;
  --pt-mint: #19c8a7;
}
.pressotherapy .pressotherapy__hero {
  padding-bottom: clamp(3rem, 4.5vw, 4.6rem);
}
.pressotherapy__section--volume {
  margin-bottom: clamp(4.1rem, 5.2vw, 5.5rem);
}
.pressotherapy__volume-grid {
  gap: clamp(1.4rem, 2.2vw, 2.2rem);
}
.pressotherapy__volume-item {
  --vol-img:  clamp(140px, 16vw, 195px);
  --vol-img-h: clamp(300px, 30vw, 420px);
  --vol-left: clamp(14px, 1.8vw, 24px);
  min-height: var(--vol-img-h);
  padding: clamp(42px, 5vw, 64px) 0;
  overflow: visible;
}
.pressotherapy__body-image {
  position: absolute;
  left: var(--vol-left, 18px);
  top: 50%;
  transform: translateY(-50%);
  width: var(--vol-img, 175px);
  height: var(--vol-img-h, 360px);
  max-height: none;
  object-fit: contain;
  object-position: center top;
  z-index: 2;
  pointer-events: none;
}
.pressotherapy__volume-card {
  margin-left: 0;
  width: 100%;
  min-height: 0;
  padding: clamp(1.6rem, 2.4vw, 2.4rem)
            clamp(1.6rem, 2.4vw, 2.4rem)
            clamp(1.6rem, 2.4vw, 2.4rem)
            calc(var(--vol-left, 18px) + var(--vol-img, 175px) + clamp(1rem, 1.5vw, 1.6rem));
  border-radius: 16px;
  box-sizing: border-box;
}
.pressotherapy__volume-card h2 {
  max-width: 330px;
  font-size: clamp(25px, 2.1vw, 33px);
}
.pressotherapy__volume-card .pressotherapy__arrow-list li::before {
  top: 0.45em;
  width: 1.3rem;
  height: 0.8rem;
  background: url(../images/pressotherapy/icons/12.svg) center/contain no-repeat;
}
.pressotherapy__volume-card .pressotherapy__check-list li::before {
  top: 0.25em;
  width: 0.45rem;
  height: 0.8rem;
  border-right: 2.5px solid var(--pt-mint);
  border-bottom: 2.5px solid var(--pt-mint);
  background: none;
  transform: rotate(42deg);
}
.pressotherapy__section--how {
  padding: 0;
  margin-bottom: clamp(4.2rem, 5.2vw, 5.6rem);
}
.pressotherapy__how-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4vw, 4.4rem);
}
.pressotherapy__how-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}
.pressotherapy__section--how .pressotherapy__section-title {
  max-width: 390px;
  font-size: clamp(35px, 3.2vw, 48px);
}
.pressotherapy__section--how .pressotherapy__section-desc {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.45;
}
.pressotherapy__image-shell--how {
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: none;
  margin-top: 0;
  border-radius: 16px;
}
.pressotherapy__method {
  align-self: stretch;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.pressotherapy__method-card {
  min-height: 0;
  border-radius: 16px;
  padding: clamp(1.4rem, 2vw, 1.95rem) clamp(1.8rem, 3vw, 3rem);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pressotherapy__method-card--blue {
  background: #5BCCF6;
}
.pressotherapy__method-card--green {
  background: #71C287;
}
.pressotherapy__method-card h3,
.pressotherapy__method-card p,
.pressotherapy__method-card--blue h3,
.pressotherapy__method-card--blue p,
.pressotherapy__method-card--green h3,
.pressotherapy__method-card--green p {
  color: #fff;
}
.pressotherapy__method-card h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(22px, 1.75vw, 28px);
  line-height: 1.04;
  font-weight: 700;
}
.pressotherapy__method-card p {
  max-width: 560px;
  font-size: 14.5px;
  line-height: 1.45;
}
.pressotherapy__method-pills span {
  background: rgba(255, 255, 255, 0.9);
  color: #205c6d;
  font-weight: 600;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 12px;
  padding: 0.35rem 0.75rem;
}
#pressotherapy-packages .container {
  max-width: var(--container-width, 1180px);
  width: 100%;
}
.pressotherapy__section-title--packages {
  margin-bottom: clamp(1.7rem, 2.5vw, 2.35rem);
}
.pressotherapy__package-grid {
  gap: clamp(1.35rem, 2vw, 2rem);
  width: 100%;
}
.pressotherapy__package-card {
  border-radius: 22px;
  overflow: visible;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: box-shadow 0.32s ease, border-color 0.32s ease;
}
.pressotherapy__package-card:hover {
  box-shadow: 0 12px 32px rgba(47, 176, 224, 0.14);
  border-color: rgba(91, 204, 246, 0.25);
}
.pressotherapy__package-card::before {
  display: none;
}
.pressotherapy__package-media {
  margin: 16px 16px 0;
  aspect-ratio: 1.42 / 1;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
}
.pressotherapy__package-media img {
  transition: none;
  will-change: auto;
}
.pressotherapy__package-tag-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 0 0.95rem;
  position: relative;
  z-index: 5;
}
.pressotherapy__package-tag {
  display: inline-block;
  padding: 0.55rem 1.5rem;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: #fff;
  border-radius: 999px;
  white-space: nowrap;
  background: linear-gradient(135deg, #74d6f8 0%, #2fb0e0 100%);
  box-shadow: 0 4px 14px rgba(47, 176, 224, 0.38);
  text-shadow: 0 1px 3px rgba(0,0,0,0.10);
}
.pressotherapy__package-card--pro .pressotherapy__package-tag {
  background: linear-gradient(135deg, #82ce97 0%, #3aaa63 100%);
  box-shadow: 0 4px 14px rgba(58, 170, 99, 0.36);
}
.pressotherapy__package-card--maximum .pressotherapy__package-tag {
  background: linear-gradient(135deg, #19c8a7 0%, #0da8c0 100%);
  box-shadow: 0 4px 14px rgba(13, 168, 192, 0.34);
}
.pressotherapy__package-body {
  padding: 1.5rem 1.35rem 1.35rem;
}
.pressotherapy__package-body h3 {
  min-height: 1.75em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.2rem;
  font-size: clamp(24px, 2vw, 30px);
}
.pressotherapy__package-subtitle {
  min-height: 1.2em;
  margin-bottom: 0.55rem;
}
.pressotherapy__package-note {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45em;
  padding: 0.82rem 0;
}
.pressotherapy__package-features {
  align-items: start;
  padding: 0.95rem 0 0.82rem;
}
.pressotherapy__package-features div {
  padding-top: 1.35rem;
}
.pressotherapy__package-badges {
  justify-content: center;
  min-height: 28px;
  margin: -0.05rem 0 0.6rem;
}
.pressotherapy__package-footer {
  min-height: 42px;
}
.pressotherapy__package-footer .pressotherapy__btn {
  min-width: 132px;
  min-height: 38px;
  padding: 0.65rem 0.9rem;
  white-space: nowrap;
}
.pressotherapy__section--results {
  margin-top: clamp(4.5rem, 7vw, 7.5rem);
  margin-bottom: clamp(4.5rem, 7vw, 7.5rem);
}
.pressotherapy__result-layout {
  grid-template-columns: repeat(30, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.35vw, 1.2rem);
}
.pressotherapy__result-title-card,
.pressotherapy__result-card {
  min-height: clamp(148px, 10vw, 168px);
  border-radius: 18px;
}
.pressotherapy__result-title-card {
  grid-column: span 10;
  background: #eaf8f7;
  padding: 1.6rem 1.55rem;
}
.pressotherapy__result-card:nth-of-type(-n + 4) {
  grid-column: span 5;
}
.pressotherapy__result-card:nth-of-type(n + 5) {
  grid-column: span 6;
}
.pressotherapy__result-title-card h2 {
  font-size: clamp(26px, 2.25vw, 36px);
}
.pressotherapy__result-card {
  padding: 1.2rem 1rem;
}
.pressotherapy__result-icon {
  width: 58px;
  height: 58px;
  background: rgba(25, 200, 167, 0.13);
}
.pressotherapy__result-icon img {
  width: 38px;
  height: 38px;
}
.pressotherapy__result-card p {
  max-width: 190px;
  font-size: 15px;
  line-height: 1.35;
}
.pressotherapy__cta-inner {
  max-width: var(--container-width, 1180px);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: stretch;
  min-height: clamp(360px, 36vw, 460px);
  padding: clamp(2.7rem, 4.5vw, 4.3rem) clamp(2.5rem, 5vw, 5.5rem) 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.pressotherapy__cta-copy {
  padding-bottom: clamp(2.7rem, 4.5vw, 4.3rem);
}
.pressotherapy__cta-copy h2 {
  max-width: 580px;
  font-size: clamp(36px, 3.8vw, 52px);
}
.pressotherapy__cta-copy p {
  max-width: 520px;
  font-size: 17px;
}
.pressotherapy__cta .pressotherapy__actions {
  display: grid;
  width: 100%;
  max-width: 420px;
  gap: 0.7rem;
  margin-top: 0.6rem;
}
.pressotherapy__cta .pressotherapy__btn {
  width: 100%;
  padding-top: 0.82rem;
  padding-bottom: 0.82rem;
  font-size: 14px;
  letter-spacing: 0.055em;
}
.pressotherapy__cta .pressotherapy__btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--color-dark);
  backdrop-filter: blur(6px);
}
.pressotherapy__cta .pressotherapy__btn--primary {
  box-shadow: 0 6px 20px rgba(47, 176, 224, 0.30);
}
.pressotherapy__cta-visual {
  align-self: stretch;
  position: relative;
  overflow: visible;
  margin: 0;
  padding: 0;
}
.pressotherapy__cta-visual img {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 115%;
  height: 118%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
}
.pressotherapy__form-section {
  padding: clamp(14px, 3vw, 30px);
}
.pressotherapy__form-section.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pressotherapy__form-overlay {
  background: rgba(28, 43, 50, 0.62);
  backdrop-filter: blur(4px);
}
.pressotherapy__form-section .container {
  width: min(100%, 700px);
}
.pressotherapy__form-card {
  max-width: 680px;
  padding: clamp(1.45rem, 3.5vw, 2.55rem);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(18, 80, 104, 0.20);
}
.pressotherapy__form-close {
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: #e6f8fd;
}
.pressotherapy__form-copy {
  max-width: 540px;
  margin: 0 auto 1.25rem;
}
.pressotherapy__form-copy .pressotherapy__section-title {
  margin-bottom: 0.75rem;
  font-size: clamp(34px, 4vw, 48px);
}
.pressotherapy__selected {
  align-items: center;
  padding: 0.95rem 1.1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: #eaf8ff;
}
.pressotherapy__cf7 .wpcf7-form {
  gap: 0.75rem;
}
.pressotherapy__cf7 .contact__input {
  min-height: 58px;
  border-radius: 8px;
  font-size: 16px;
}
.pressotherapy__cf7 .contact__input.wpcf7-not-valid {
  border-color: #ef6262;
  box-shadow: 0 0 0 3px rgba(239, 98, 98, 0.12);
}
.pressotherapy__cf7 .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.35rem;
  color: #c83f3f;
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.3;
}
.pressotherapy__cf7 .wpcf7-response-output {
  display: none !important;
}
.pressotherapy__form-status {
  display: none;
  position: relative;
  margin: 0 0 1rem;
  padding: 0.95rem 1rem 0.95rem 3rem;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.4;
}
.pressotherapy__form-status::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
}
.pressotherapy__form-status:focus {
  outline: none;
}
.pressotherapy__cf7 .ajax-loader {
  display: none !important;
}
.pressotherapy__form-card {
  position: relative;
}
.pressotherapy__form-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
  z-index: 10;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pressotherapy__form-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border: 4px solid var(--pt-mint);
  border-top-color: transparent;
  border-radius: 50%;
  margin-top: -24px;
  margin-left: -24px;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  animation: pt-spin 0.8s linear infinite;
}
.pressotherapy__form-card.is-submitting::after,
.pressotherapy__form-card.is-submitting::before {
  opacity: 1;
  pointer-events: auto;
}
@keyframes pt-spin {
  to { transform: rotate(360deg); }
}
.pressotherapy__form-card.is-submitting .contact__submit {
  opacity: 0.72 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}
.pressotherapy__form-card.is-invalid .pressotherapy__form-status,
.pressotherapy__form-card.is-failed .pressotherapy__form-status,
.pressotherapy__form-card.is-sent .pressotherapy__form-status {
  display: block;
}
.pressotherapy__form-card.is-invalid .pressotherapy__form-status,
.pressotherapy__form-card.is-failed .pressotherapy__form-status {
  background: #fff5f5;
  color: #9d2d2d;
  border: 1px solid rgba(239, 98, 98, 0.28);
}
.pressotherapy__form-card.is-invalid .pressotherapy__form-status::before,
.pressotherapy__form-card.is-failed .pressotherapy__form-status::before {
  background: #ef6262;
}
/* Fully aesthetic premium sent state: hides inputs, displays gorgeous centered success key */
.pressotherapy__form-card.is-sent .pressotherapy__cf7,
.pressotherapy__form-card.is-sent .pressotherapy__custom-form,
.pressotherapy__form-card.is-sent .pressotherapy__selected,
.pressotherapy__form-card.is-sent .pressotherapy__form-copy,
.pressotherapy__form-card.is-sent .pressotherapy__agreement {
  display: none !important;
}
.pressotherapy__form-card.is-sent .pressotherapy__form-status {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none !important;
  background: transparent !important;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  margin: 0;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  color: #1a3c24;
  line-height: 1.45;
  animation: pt-fade-in 0.4s ease both;
}
.pressotherapy__form-card.is-sent .pressotherapy__form-status::before {
  content: '' !important;
  position: static !important;
  display: block !important;
  width: 90px !important;
  height: 90px !important;
  margin: 0 auto 1.8rem !important;
  border-radius: 50% !important;
  background: var(--pt-mint) url('data:image/svg+xml;utf8,<svg width="40" height="30" viewBox="0 0 40 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 14.5L14.5 25L36 4" stroke="white" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/45% no-repeat !important;
  box-shadow: 0 12px 32px rgba(25, 200, 167, 0.32) !important;
  animation: pt-bounce-scale 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.pressotherapy__agreement {
  margin-top: 1.15rem;
}

/* ── Custom form fields ──────────────────────────────────── */
.pressotherapy__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.pressotherapy__field {
  display: flex;
  flex-direction: column;
}
.pressotherapy__input {
  width: 100%;
  min-height: 54px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 0 1rem;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--color-dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.pressotherapy__input::placeholder {
  color: #aab0b8;
}
.pressotherapy__input:focus {
  outline: none;
  border-color: var(--pt-mint);
  box-shadow: 0 0 0 3px rgba(25, 200, 167, 0.14);
}
.pressotherapy__submit-btn {
  width: 100%;
  margin-bottom: 0.9rem;
}

/* ── Privacy checkbox ───────────────────────────────────── */
.pressotherapy__agreement-row {
  margin-top: 0;
}
.pressotherapy__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
}
.pressotherapy__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(0, 0, 0, 0.22);
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
}
.pressotherapy__checkbox:checked {
  background: var(--pt-mint);
  border-color: var(--pt-mint);
}
.pressotherapy__checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 7px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(42deg);
}
.pressotherapy__checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(25, 200, 167, 0.22);
}
.pressotherapy__agreement-row.is-error .pressotherapy__checkbox {
  border-color: #ef6262;
  box-shadow: 0 0 0 3px rgba(239, 98, 98, 0.18);
  animation: pt-shake 0.35s ease both;
}
.pressotherapy__agreement-note {
  margin-top: 0.55rem;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-muted);
  text-align: center;
}
.pressotherapy__agreement-note a {
  color: var(--pt-mint);
  text-decoration: underline;
}
.pressotherapy__agreement-note a:hover {
  color: var(--color-dark);
}

/* ── Contact method toggle ──────────────────────────── */
/* Single-column form */
.pressotherapy__fields {
  grid-template-columns: 1fr;
}
/* Contact field: compact single-row layout */
.pressotherapy__field--contact {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.45rem;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  padding: 0;
}
.pressotherapy__field--contact:focus-within {
  border: none;
  box-shadow: none;
}
/* Label hidden in compact row mode */
.pt-contact-method-label {
  display: none;
}
/* Segmented control group */
.pt-contact-toggle {
  display: flex;
  flex-shrink: 0;
  gap: 0;
  margin: 0;
  border: 1.5px solid #d4e5f0;
  border-radius: 9px;
  overflow: hidden;
  background: #f5fafc;
}
.pt-contact-toggle__btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 0.9rem;
  min-height: 48px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #8ab0c4;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.pt-contact-toggle__btn:first-child {
  border-right: 1px solid #d4e5f0;
}
.pt-toggle-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  transition: opacity 0.18s ease;
}
.pt-contact-toggle__btn:not(.pt-contact-toggle__btn--active) .pt-toggle-icon {
  opacity: 0.38;
}
/* Anti-spam honeypot — hidden from humans */
.pressotherapy__honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}
.pt-contact-toggle__btn--active {
  background: #e6f4fb;
  color: #1782b0;
}
.pt-contact-toggle__btn:hover:not(.pt-contact-toggle__btn--active) {
  background: #eef7fc;
  color: #4da8c8;
}
/* Phone input: stretches to fill remaining space */
.pressotherapy__field--contact .contact__input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 9px !important;
  min-height: 48px;
}
.pressotherapy__field--contact .contact__input:focus {
  border-color: var(--pt-mint) !important;
  box-shadow: 0 0 0 3px rgba(25, 200, 167, 0.14) !important;
}

/* ── Button hover animation ────────────────────────────── */
.pressotherapy__btn {
  position: relative;
  overflow: hidden;
}
.pressotherapy__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.32) 40%,
    rgba(255, 255, 255, 0.56) 50%,
    rgba(255, 255, 255, 0.32) 60%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  transition: none;
  z-index: 1;
}
.pressotherapy__btn:hover::after {
  left: 160%;
  transition: left 0.58s ease;
}
.pressotherapy__btn--primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(47, 176, 224, 0.40);
}

@keyframes pt-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(-3px); }
  80%       { transform: translateX(3px); }
}

@keyframes pt-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pt-bounce-scale {
  from { opacity: 0; transform: scale(0.3); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1100px) {
  .pressotherapy__volume-grid,
  .pressotherapy__how-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .pressotherapy__volume-item {
    max-width: 680px;
  }
  .pressotherapy__result-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pressotherapy__result-title-card {
    grid-column: span 3;
  }
  .pressotherapy__cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .pressotherapy__cta-visual {
    display: none;
  }
  /* HOW section: cap image height when single-column */
  .pressotherapy__image-shell--how {
    flex: none;
    height: clamp(240px, 45vw, 360px);
  }
}

@media (max-width: 760px) {
  .pressotherapy .pressotherapy__hero {
    padding-bottom: 2.7rem;
  }
  .pressotherapy__volume-item {
    min-height: 270px;
    padding: 32px 0;
  }
  .pressotherapy__body-image {
    height: 250px;
  }
  .pressotherapy__volume-card {
    padding: 1.45rem 1.25rem 1.45rem 112px;
    min-height: 206px;
  }
  .pressotherapy__package-body h3 {
    min-height: 0;
  }
  .pressotherapy__package-subtitle {
    min-height: 0;
  }
  .pressotherapy__package-note {
    min-height: 0;
  }
  /* MOBILE: kill all min-heights & flex stretch causing empty space inside cards */
  .pressotherapy__package-card {
    min-height: 0 !important;
  }
  .pressotherapy__package-body {
    flex: 0 1 auto !important;
    padding: 1.1rem 1.15rem 1.25rem !important;
  }
  .pressotherapy__package-note {
    padding: 0.7rem 0 !important;
  }
  .pressotherapy__package-features {
    padding: 0.7rem 0 0.4rem !important;
  }
  .pressotherapy__package-features div {
    padding-top: 1.2rem !important;
  }
  .pressotherapy__package-badges {
    min-height: 0 !important;
    margin: 0 0 0.5rem !important;
  }
  .pressotherapy__package-footer {
    min-height: 0 !important;
    margin-top: 0.6rem !important;
  }
  .pressotherapy__package-body h3 {
    min-height: 0 !important;
    margin-bottom: 0.15rem !important;
  }
  .pressotherapy__result-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pressotherapy__result-title-card,
  .pressotherapy__result-card,
  .pressotherapy__result-card:nth-of-type(-n + 4),
  .pressotherapy__result-card:nth-of-type(n + 5) {
    grid-column: span 1;
  }
  .pressotherapy__result-title-card,
  .pressotherapy__result-card {
    min-height: 0 !important;
  }
  .pressotherapy__result-title-card {
    grid-column: span 2;
    justify-content: center;
    text-align: center;
  }
  .pressotherapy__result-card {
    padding: 0.85rem;
  }
  .pressotherapy__cta-inner {
    padding: 2.2rem 1.45rem;
  }
  .pressotherapy__form-copy .pressotherapy__section-title {
    padding-right: 2.4rem;
  }
  .pressotherapy__selected {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .pressotherapy__selected strong {
    text-align: left;
  }
  .pressotherapy__fields {
    grid-template-columns: 1fr;
  }
}

/* ── Header dropdown link indicator (clickable vs not) ─── */
.header__dropdown-link {
  position: relative;
  padding-left: 1.4rem;
}
.header__dropdown-link::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateY(-50%);
  transition: background 0.2s, transform 0.2s;
}
.header__dropdown-link:hover::before {
  background: var(--color-white);
  transform: translateY(-50%) scale(1.25);
}
.header__dropdown-text {
  opacity: 0.65;
}

/* ── Greek header: compact nav to fit longer words ── */
.lang-el .header__link {
  font-size: 16px;
  padding: 0.5rem 0.45rem;
  letter-spacing: -0.01em;
}
.lang-el .header__link--dropdown {
  font-size: 13px;
  padding: 0.85rem 0.75rem;
  letter-spacing: 0;
}
.lang-el .header__left {
  gap: 0.75rem;
}
.lang-el .header__right {
  gap: 1.25rem;
}
.lang-el .header__switcher {
  gap: 0.4rem;
}
.lang-el .header__cta {
  font-size: 15px;
  padding: 0.7rem 1rem;
  white-space: nowrap;
}

/* =====================
   Blog archive
====================== */
.blog {
  padding-bottom: 4rem;
}

.blog__title {
  font-family: var(--font-accent);
  font-size: var(--fz-24-48);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 2.5rem 0;
}

/* ---------- card (shared) ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s;
}

.blog-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

/* ---------- featured card ---------- */
.blog-card--featured {
  flex-direction: row;
  margin-bottom: 2rem;
}

.blog-card__img-wrap--featured {
  flex: 0 0 42%;
  max-width: 42%;
  min-height: 320px;
  padding: 15px;
  aspect-ratio: auto;
}
.blog-card__img-wrap--featured .blog-card__img,
.blog-card__img-wrap--featured .blog-card__img-placeholder {
  border-radius: calc(var(--radius-lg) - 15px);
}

.blog-card__body--featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start !important;
  padding: 2.5rem 3rem;
  flex: 1;
}

.blog-card__body--featured .blog-card__date {
  align-self: flex-start;
}

.blog-card__heading--featured {
  font-size: var(--fz-18-32);
  margin: 0.75rem 0 1rem 0;
  text-align: left;
}

/* ---------- image ---------- */
.blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 15px;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-lg) - 15px);
}

.blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-extra-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius-lg) - 15px);
}

.blog-card__img-placeholder-icon {
  width: 48%;
  max-width: 140px;
  height: auto;
  opacity: .55;
}

/* ---------- body ---------- */
.blog-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* ---------- date badge ---------- */
.blog-card__date {
  display: inline-block;
  align-self: center;
  border: 1px solid var(--color-grey);
  border-radius: 20px;
  padding: 0.2rem 0.9rem;
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  white-space: nowrap;
}

/* ---------- heading ---------- */
.blog-card__heading {
  font-family: var(--font-accent);
  font-size: var(--fz-14-20);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0.75rem 0 0.5rem 0;
  line-height: 1.3;
  text-align: center;
}

/* ---------- excerpt ---------- */
.blog-card__excerpt {
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ---------- pagination ---------- */
.blog__pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  font-family: var(--font-main);
}

.blog__pagination a,
.blog__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  color: var(--color-dark);
  transition: background 0.2s, color 0.2s;
}

.blog__pagination a:hover {
  background: var(--color-extra-light-grey);
}

.blog__pagination .current {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ── Blog empty state ─────────────────────────────────────────── */
.blog__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 32px 80px;
  margin: 8px 0 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #fff 0%, rgba(91, 204, 246, .1) 100%);
  border: 1.5px solid rgba(37, 99, 235, .1);
}
.blog__empty-icon-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5bccf6 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  margin-bottom: 28px;
  box-shadow: 0 12px 32px rgba(37, 99, 235, .2);
}
.blog__empty-skeletons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 36px;
}
.blog__empty-skeleton {
  height: 10px;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(91, 204, 246, .4) 0%, rgba(37, 99, 235, .1) 100%);
}
.blog__empty-skeleton:nth-child(1) { width: 220px; }
.blog__empty-skeleton:nth-child(2) { width: 160px; }
.blog__empty-skeleton:nth-child(3) { width: 195px; }
.blog__empty-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 10px;
  letter-spacing: -.01em;
  font-family: var(--font-main);
}
.blog__empty-sub {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-family: var(--font-main);
  margin: 0;
  max-width: 320px;
  line-height: 1.7;
}

/* =====================
   Blog single post
====================== */
.blog-post {
  padding-bottom: 0;
}

/* ── Hero ── */
.blog-post__hero {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.blog-post__hero-text {
  flex: 1 1 58%;
}
.blog-post__hero-text .blog-card__date {
  margin-bottom: 1rem;
}
.blog-post__title {
  font-family: var(--font-accent);
  font-size: var(--fz-24-48);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 1rem 0 1.5rem 0;
  line-height: 1.15;
}
.blog-post__hero-text p {
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
  color: var(--color-dark);
  line-height: 1.7;
  margin: 0 0 1rem 0;
}
.blog-post__hero-img {
  flex: 0 0 38%;
  max-width: 38%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blog-post__hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.blog-post__hero-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
}

/* ── Content sections (2 col) ── */
.blog-post__section {
  display: flex;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid #e5e5e5;
}
.blog-post__section-left {
  flex: 0 0 30%;
  max-width: 30%;
}
.blog-post__section-heading {
  font-family: var(--font-accent);
  font-size: var(--fz-14-24);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 1.25rem 0;
  line-height: 1.25;
}
.blog-post__section-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}
.blog-post__section-right {
  flex: 1;
  min-width: 0;
}
.blog-post__section-right p {
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
  color: var(--color-dark);
  line-height: 1.7;
  margin: 0 0 1rem 0;
}
.blog-post__section-right ul,
.blog-post__section-right ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem 0;
}
.blog-post__section-right li {
  font-family: var(--font-main);
  font-size: var(--fz-12-16);
  color: var(--color-dark);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.blog-post__section-right li::marker {
  color: var(--color-muted);
}
.blog-post__section-right strong {
  font-weight: 700;
  color: var(--color-text);
}

/* ── Share ── */
.blog-post__share {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid #e5e5e5;
}
.blog-post__share-title {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 1rem 0;
  letter-spacing: .01em;
}
.blog-post__share-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-post__share-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  transition: transform .18s, box-shadow .18s;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.blog-post__share-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.blog-post__share-link:active {
  transform: translateY(0);
}
.blog-post__share-link svg {
  flex-shrink: 0;
}
.blog-post__share-link--tg       { background: #2AABEE; }
.blog-post__share-link--wa       { background: #25D366; }
.blog-post__share-link--fb       { background: #1877F2; }
.blog-post__share-link--x        { background: #000;    }
.blog-post__share-link--copy     { background: var(--color-extra-light-grey); color: var(--color-text); }
.blog-post__share-link--copy:hover { background: #e0e0e0; }
.blog-post__share-link--copied   { background: var(--color-success) !important; color: #fff !important; }

/* ── Related articles ── */
.blog-post__related {
  background: var(--color-bg);
  padding: 3rem 0 4rem;
}
.blog-post__related-title {
  font-family: var(--font-accent);
  font-size: var(--fz-24-48);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 2rem 0;
}

/* ── Performance Optimizations ── */
@media (min-width: 768px) {
  .pressotherapy__section {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
  }
}

/* ── Mobile: kill heavy backdrop-filter on scrolling sticky elements (mortal for FPS) ── */
@media (max-width: 991px) {
  .pressotherapy__nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(247, 247, 247, 0.96) !important;
  }
  .pressotherapy__cta .pressotherapy__btn--ghost {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}
