@font-face {
  font-family: 'Open Sans Hebrew';
  src: url('fonts/OpenSansHebrew-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Marion';
  src: url('fonts/Marion-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans Hebrew';
  src: url('fonts/OpenSansHebrew-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body, h1, h2, h3, h4, h5, h6, .header__nav a, .footer__nav a, .contacts-modal__logo-text, .contacts-modal__info, .contacts-modal h2, .review-card__name, .review-card__text, .doctor__info, .service-card, .about__text, .footer__contacts {
  font-family: 'Open Sans Hebrew', Arial, sans-serif;
  font-weight: bold;
}

h1, h2, h3 {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 900;
}

.btn, .header__cta {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 16px 28px 8px 28px;
  border: 1.5px solid #000;
  color: #000;
  box-shadow: 0 2px 6px #0002;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  background: #fff;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.btn__icon {
  width: 1.3em;
  height: 1.3em;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  fill: currentColor;
  stroke: currentColor;
}
.header__cta {
  background: #e91e63;
  color: #fff;
  padding: 10px 28px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px #e91e6322, 0 0 16px 2px #e91e63aa;
  border: 2px solid #e91e63;
  transition: background 0.2s, color 0.2s, border 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__cta:hover {
  background: #fff;
  color: #e91e63;
  border: 2px solid #e91e63;
}
.header__cta:active {
  background: #ffb6d5;
  color: #e91e63;
  border: 2px solid #e91e63;
}
.btn--primary {
  background: #fff;
  color: #000;
  border: 1.5px solid #000;
  margin-bottom: 48px;
}
.btn--primary:hover {
  background: #FFC0CE;
  color: #000;
  border: 1.5px solid #000;
}
.btn--primary:active {
  background: #EC748F;
  color: #000;
  border: 1.5px solid #000;
}
.btn--secondary {
  background: #fff;
  color: #e91e63;
  border: 2px solid #e91e63;
  margin-top: 16px;
}
.btn--secondary:hover {
  background: #FFC0CE !important;
}
.btn--secondary:active {
  background: #EC748F !important;
}

/* General Styles */
body {
  margin: 0;
  background: #fff;
  color: #222;
  overflow-x: hidden;
  padding-top: 60px;
}

html {
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  margin: 0 0 16px 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

.blue {
  color: #0C83D2;
  font-weight: 900;
}

/* Header */
.header, .header__container {
  overflow: visible;
}
.header {
  background: #fff;
  border-bottom: 1.5px solid #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  height: 60px;
}
.header__logo {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-weight: 900;
  font-size: 1.2rem;
  position: relative;
  height: 68px;
}
.header__logo img {
  height: 120px;
  position: absolute;
  left: -18px;
  bottom: -40px;
  z-index: 101;
  background: none;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.45));
}
.header__logo span {
  margin-left: 180px;
  align-self: center;
  display: flex;
  align-items: center;
  height: 100%;
}
.header__nav {
  display: flex;
  gap: 48px;
}
.header__nav a {
  text-decoration: none;
  color: #222;
  font-size: 1rem;
  transition: color 0.2s;
}
.header__nav a:hover {
  color: #e91e63;
}
.header__cta {
  background: #e91e63;
  color: #fff;
  padding: 10px 28px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px #e91e6322, 0 0 16px 2px #e91e63aa;
  border: 2px solid #e91e63;
  transition: background 0.2s, color 0.2s, border 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__cta:hover {
  background: #fff;
  color: #e91e63;
  border: 2px solid #e91e63;
}
.header__cta:active {
  background: #ffb6d5;
  color: #e91e63;
  border: 2px solid #e91e63;
}

/* Hero Section */
.hero {
  background: url('images/hero-bg.png') center/cover no-repeat;
  padding: 48px 0 80px 0;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  z-index: 3;
}

.hero__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hero__content {
  flex: 1 1 400px;
  min-width: 320px;
  z-index: 2;
}
.hero__content h1 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  margin-top: 80px;
}
.hero__subtitle {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 48px;
  text-transform: uppercase;
  font-weight: bold !important;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn--primary {
  background: #fff;
  color: #000;
  border: 1.5px solid #000;
  margin-bottom: 48px;
}
.btn--primary:hover {
  background: #FFC0CE;
  color: #000;
  border: 1.5px solid #000;
}
.btn--primary:active {
  background: #EC748F;
  color: #000;
  border: 1.5px solid #000;
}
.btn--secondary {
  background: #fff;
  color: #e91e63;
  border: 2px solid #e91e63;
  margin-top: 16px;
}
.btn--secondary:hover {
  background: #FFC0CE !important;
}
.btn--secondary:active {
  background: #EC748F !important;
}
.hero__contacts {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  margin-bottom: 48px;
}
.hero__contacts li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__image {
  flex: 1 1 320px;
  min-width: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero__image img {
  max-width: 320px;
  width: 100%;
  border-radius: 32px;
  box-shadow: none;
  margin-left: -40px;
  margin-top: 12px;
  opacity: 0;
  animation: floatInRight 1.1s cubic-bezier(0.77,0,0.175,1) forwards;
  animation-delay: 0.2s;
}
.decor {
  position: absolute;
  z-index: 2;
}
.decor--toothbrush {
  top: 24px;
  right: -32px;
  width: 48px;
}
.decor--toothpaste {
  bottom: 30px;
  left: -110px;
  width: 180px;
}

.hero__image .decor--toothbrush {
  width: 240px !important;
  max-width: none;
  right: 0px;
  top: 100px;
}

.hero__image .decor--toothbrush,
.hero__image .decor--toothpaste {
  opacity: 0;
  animation: floatInRight 1.1s cubic-bezier(0.77,0,0.175,1) forwards;
}

.hero__image .decor--toothbrush {
  animation-delay: 0.5s;
}
.hero__image .decor--toothpaste {
  animation-delay: 0.8s;
}

/* Desktop positioning for toothpaste - move slightly up and to the left */
@media (min-width: 601px) {
  .hero__image .decor--toothpaste {
    bottom: 70px;
    left: -125px;
  }
}

/* About Section */
.about {
  background: #fff;
  padding: 48px 0 80px 0;
  margin-bottom: 40px;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}

.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  z-index: 1;
}

.about__container {
  text-align: left;
  overflow: visible;
  margin-top: 140px;
}
.about__container h2,
.about__text,
.about__text h3,
.about__text p,
.about__verified {
  text-transform: uppercase;
}
.about__container h2 {
  margin-top: 64px;
  letter-spacing: 0.04em;
  line-height: 2.1;
}
.about__content {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-top: 24px;
  position: relative;
}
.about__text {
  flex: 1;
  margin-top: 0;
}
.about__text h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  margin-top: 24px;
}
.about__text p {
  font-family: 'PT Sans', Arial, sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  margin-bottom: 16px;
  line-height: 1.6;
  text-transform: uppercase;
}
.about__verified {
  color: #0C83D2;
  font-family: 'Nunito', Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 2rem !important;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* More specific override */
.about .about__verified {
  font-weight: 700 !important;
  font-family: 'Nunito', Arial, sans-serif !important;
}

.about__verified-icon {
  width: 1.3em;
  height: 1.3em;
  display: inline-block;
  margin-left: 6px;
  color: #0C83D2 !important;
}
.about__bg-bar {
  position: absolute;
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 40px);
  height: 420px;
  background: url('images/about-bg.png') center/cover no-repeat;
  border-radius: 24px;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.about__bg-bar--second {
  background: url('images/about-bgb.png') center/cover no-repeat;
  transform: translate(150%, -50%);
  z-index: 1;
  width: calc(100vw - 40px);
}

.about__bg-bar.slide-to-second {
  transform: translate(-150%, -50%);
}

.about__bg-bar--second.slide-to-second {
  transform: translate(-50%, -50%);
}

.about__bg-bar.slide-to-first {
  transform: translate(150%, -50%);
}

.about__bg-bar--second.slide-to-first {
  transform: translate(-50%, -50%);
}

.about__bg-bar.reset-to-first {
  transform: translate(-50%, -50%);
}

.about__bg-bar--second.reset-to-first {
  transform: translate(150%, -50%);
}

.about__toothbrush-decor {
  position: absolute;
  right: -80px;
  bottom: -60px;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}

.about__top-decor {
  display: block;
  position: absolute;
  width: 100vw;
  max-width: 100%;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.about__toothpaste {
  width: 350px;
  height: auto;
  position: absolute;
  right: -50px;
  top: 0px;
  transform: translateX(0px);
  z-index: 10;
}

.about__tooth {
  width: 140px;
  height: auto;
  position: absolute;
  right: 400px;
  top: -40px;
  z-index: 0;
  /* Adjust these values as needed for best visual alignment */
}

/* Doctor Section */
.doctor {
  background: #fff;
  padding: 60px 0 48px 0;
  overflow-x: hidden;
}
.doctor__container {
  text-align: left;
  position: relative;
}
.doctor__card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  padding: 32px;
  margin-top: 24px;
  gap: 32px;
  position: relative;
  border: 1.5px solid #000;
  min-height: 380px;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.doctor__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}
.doctor__card--blue .doctor__name {
  color: #0C83D2;
}
.doctor__card--blue {
  background-image: none;
}
.doctor__photo {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 12px #e91e6322;
}
.doctor__photo--large {
  width: 340px;
  height: 480px;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: none;
  margin-top: -40px;
  margin-bottom: 8px;
}
.doctor__info {
  flex: 1;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.doctor__name {
  color: #e91e63;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: left;
}
.doctor__info p {
  font-family: 'Open Sans Hebrew', Arial, sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.8;
}
.doctor__controls-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  margin-top: -18px;
  position: relative;
  z-index: 10;
  margin-left: 140px;
  pointer-events: auto;
}
.doctor__slider {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
}
.doctor__slider .doctor__card {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}
.doctor__slider .doctor__card.active {
  opacity: 1;
  pointer-events: auto;
  position: absolute;
  z-index: 1;
}
.doctor__slider .doctor__card.slide-in-left {
  opacity: 1;
  transform: translateX(-100%);
  animation: slideInLeft 0.5s forwards;
}
.doctor__slider .doctor__card.slide-in-right {
  opacity: 1;
  transform: translateX(100%);
  animation: slideInRight 0.5s forwards;
}
.doctor__slider .doctor__card.slide-out-left {
  opacity: 0;
  transform: translateX(-100%);
  animation: slideOutLeft 0.5s forwards;
}
.doctor__slider .doctor__card.slide-out-right {
  opacity: 0;
  transform: translateX(100%);
  animation: slideOutRight 0.5s forwards;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-100%); }
}
@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100%); }
}

/* Services Section */
.services {
  background: none;
  padding: 48px 0;
  position: relative;
}
.services__bg-bar {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 10px);
  max-width: calc(100vw - 10px);
  height: 1000px;
  background: url('images/services-bg.png') center/cover no-repeat;
  border-radius: 24px;
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 2px 12px #e91e6322;
}
.services__container {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  z-index: 1;
}
.services__cards, .service-card {
  position: relative;
  z-index: 1;
}
section.services h2 {
  margin-bottom: 24px;
}
.services__subtitle {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 1.5rem;
  margin-top: 16px;
  margin-bottom: 56px;
  font-weight: normal;
  line-height: 1.5;
  color: #222;
}
.services__subtitle b {
  font-weight: bold;
  text-transform: uppercase;
}
.services__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
  margin-top: 0;
}
.service-card-group {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s cubic-bezier(0.77,0,0.175,1), transform 0.6s cubic-bezier(0.77,0,0.175,1);
}

.service-card-group.slide-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card-group--wide {
  grid-column: span 2;
}

.service-card-group--center {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 600px;
  margin: 0 auto;
}

.service-card__icon--small {
  width: 32px !important;
  height: 32px !important;
}

.services__card-btn-row {
  margin-top: 0px;
  display: flex;
  justify-content: center;
}
.service-card {
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  padding: 38px 32px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  min-width: 0;
  border: 1.2px solid #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .service-card-group:last-child .service-card {
    padding-bottom: 20px;
  }
}
.service-card .service-card__topbar {
  display: flex;
  align-items: center;
  position: relative;
  background: #EC748F;
  border-radius: 999px;
  border: 1.2px solid #000;
  padding: 0 34px 0 24px !important;
  height: 64px !important;
  margin-bottom: 24px;
  width: calc(100% + 68px) !important;
  margin-left: -34px !important;
  margin-right: -34px !important;
  margin-top: -44px;
  box-sizing: border-box;
  gap: 18px;
}
.service-card__icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  background: #fff;
  border-radius: 50%;
  border: 1.2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 0;
  margin-right: 0;
  box-sizing: border-box;
}
.service-card__icon img {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto;
  padding: 0;
}
.service-card__title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #000;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}
.service-card p {
  font-family: 'PT Sans', Arial, sans-serif;
  font-weight: normal;
  font-size: 1.15rem;
  line-height: 1.7;
  text-transform: uppercase;
}
.services .btn {
  border: 1.5px solid #000 !important;
  color: #000 !important;
}
.service-card__icon--large {
  width: 40px !important;
  height: 40px !important;
}
.service-card__icon--xlarge {
  width: 48px !important;
  height: 48px !important;
}
.services__card-btn-row .btn--secondary {
  border-radius: 999px;
  border: 1.5px solid #000;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 16px 10px 28px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding-right: 44px !important;
  min-width: 210px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
.services__card-btn-row .btn__icon {
  width: 1.7em;
  height: 1.7em;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
  vertical-align: middle;
  pointer-events: none;
}

/* Reviews Section */
.reviews {
  background: #fff;
  padding: 48px 0;
}
.reviews__container {
  position: relative;
}
.reviews__slider {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
}
.reviews__arrows-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.reviews__arrows-row .slider-arrow {
  pointer-events: auto;
}
.reviews__all-btn-wrapper {
  position: relative;
  width: 100%;
  margin-top: 18px;
  height: 0;
}
.reviews__all-btn {
  position: absolute;
  left: 48%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 2;
  margin: 0;
  padding: 5px 16px 4px 28px !important;
}
.reviews__cards-row {
  display: flex;
  flex: 1;
  gap: 32px;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.reviews__bg-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 170px;
  background: url('images/review-bg.png') center/cover no-repeat;
  border-radius: 8px;
  z-index: 0;
  width: calc(100vw - 4px);
  pointer-events: none;
}
.reviews__cards-row {
  position: relative;
  z-index: 1;
}
.slider-arrow {
  background: #fff;
  color: #000;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Marion', 'Times New Roman', Times, serif;
  font-weight: bold;
  transition: background 0.2s, color 0.2s, border 0.2s;
  padding: 0;
  gap: 0;
  border: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
.slider-arrow__icon {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto;
}
.slider-arrow:hover {
  background: #FFC0CE;
  color: #000;
  border: 2px solid #e91e63;
}
.slider-arrow:active {
  background: #EC748F;
  color: #000;
  border: 2px solid #e91e63;
}
.slider-arrow--left,
.slider-arrow--right {
  margin: 0;
  align-self: center;
}
.slider-arrow__icon {
  width: 44px;
  height: 44px;
  display: block;
  padding: 0;
  margin: 0;
  fill: currentColor;
  stroke: currentColor;
}
.slider-arrow__icon--left {
  transform: scaleX(-1);
}
.review-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  padding: 10px 8px;
  flex: 1 1 0;
  min-width: 0;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  border: 1px solid #000;
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1), opacity 0.5s cubic-bezier(0.77,0,0.175,1), box-shadow 0.3s ease;
  opacity: 1;
  transform: translateX(0);
  cursor: default;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}
.review-card.slide-in-left {
  opacity: 1;
  transform: translateX(-100%);
  animation: slideInLeft 0.5s forwards;
}
.review-card.slide-in-right {
  opacity: 1;
  transform: translateX(100%);
  animation: slideInRight 0.5s forwards;
}
.review-card.slide-out-left {
  opacity: 0;
  transform: translateX(-100%);
  animation: slideOutLeft 0.5s forwards;
}
.review-card.slide-out-right {
  opacity: 0;
  transform: translateX(100%);
  animation: slideOutRight 0.5s forwards;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-100%); }
}
@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100%); }
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.review-card__avatar {
  background: #e91e63;
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  margin-bottom: 0;
}
.review-card__name {
  font-size: 0.75rem;
  margin-bottom: 0;
  font-family: 'Open Sans Hebrew', Arial, sans-serif;
  font-weight: normal;
}
.review-card__stars {
  color: #ffb400;
  font-size: 0.75rem;
  margin-bottom: 2px;
  font-family: 'Open Sans Hebrew', Arial, sans-serif;
  font-weight: normal;
}
.review-card__text {
  font-size: 0.75rem;
  margin-top: 1px;
  word-break: break-word;
  font-family: 'Open Sans Hebrew', Arial, sans-serif;
  font-weight: normal;
}
.reviews__all-btn {
  border: 1.5px solid #000 !important;
  color: #000 !important;
  padding: 5px 16px 4px 28px !important;
  min-width: unset;
  font-size: 1rem;
  background: #fff;
  margin: 16px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
.reviews__all-btn .btn__icon {
  margin-left: 8px;
  vertical-align: -0.2em;
  position: relative;
  top: 0px;
  width: 1.7em;
  height: 1.7em;
}
.reviews__all-btn:hover {
  background: #FFC0CE !important;
}
.reviews__all-btn:active {
  background: #EC748F !important;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #EC748F 0%, #EC748F 10%, #FFC0CE 100%);
  padding: 10px 0 32px 0;
  color: #222;
  border-top: 1.5px solid #000;
}
.footer__container {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.2fr 1.5fr;
  gap: 0 32px;
  align-items: flex-start;
  padding: 24px 0 0 0;
}
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.footer__col--logo-nav {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.footer__logo-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 170px;
  margin-top: -30px;
}
.footer__under-logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 165px;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.04));
}
.footer__logo {
  position: relative;
  z-index: 2;
  height: 120px;
  width: auto;
  margin-top: 18px;
}
.footer__copyright-small {
  font-size: 0.55rem;
  color: #222;
  margin-top: 0;
  text-align: center;
  font-family: 'Open Sans Hebrew', Arial, sans-serif;
  font-weight: normal;
}
.footer__copyright-small.desktop-only { display: block; }
.footer__copyright-small.mobile-only { display: none; }
@media (max-width: 600px) {
  .footer__copyright-small.desktop-only { display: none !important; }
  .footer__copyright-small.mobile-only { display: block !important; width: 100% !important; text-align: left !important; margin: 8px 0 0 0 !important; padding: 0 0 12px 0 !important; font-size: 14px !important; background: none !important; border: none !important; }
}
.footer__heading {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
  margin-top: 0;
  letter-spacing: 0.01em;
  text-align: left;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}
.footer__nav a {
  color: #222;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  box-sizing: border-box;
}
.footer__nav a:hover {
  color: #e91e63;
}
.instagram-link {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
.instagram-link:hover {
  color: #e91e63;
}
.footer__contacts {
  font-size: 0.95rem;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}
.footer__contacts > div {
  gap: 7px;
  align-items: center;
  display: flex;
  justify-content: flex-start;
  font-family: 'Nunito', Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-align: left !important;
  width: 100%;
  box-sizing: border-box;
}
.icon-circle--footer {
  background: transparent;
  border: 2px solid #000;
  margin-right: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -10px;
}
.icon-svg {
  width: 32px;
  height: 32px;
}
.footer__col--map {
  align-items: flex-start;
}
.footer__map-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border: 1px solid #000;
  width: 210px;
  height: 110px;
}
.footer__map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  display: block;
}
@media (max-width: 1100px) {
  .footer__container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  .footer__col--logo-nav { grid-column: 1 / 2; }
  .footer__col--nav { grid-column: 2 / 3; }
  .footer__col--contacts { grid-column: 3 / 4; }
  .footer__col--map { grid-column: 1 / 4; margin-top: 32px; }
  .footer__map-card iframe { width: 100%; height: 120px; }
}
@media (max-width: 900px) {
  .footer__container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  .footer__col--logo-nav { grid-column: 1 / 2; }
  .footer__col--nav { grid-column: 2 / 3; }
  .footer__col--contacts { grid-column: 3 / 4; }
  .footer__col--map { grid-column: 1 / 4; margin-top: 32px; }
  .footer__map-card iframe { width: 100%; height: 120px; }
}
@media (max-width: 600px) {
  .header__container {
    height: 56px;
    min-height: 56px;
    padding: 0;
    position: relative;
  }
  .header__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    margin-bottom: 0;
    position: relative;
    left: 0;
    padding: 0;
  }
  .header__logo img {
    height: 56px !important;
    margin-right: 2px !important;
  }
  .header__logo span {
    margin-left: 0 !important;
  }
  .header__hamburger {
    position: absolute !important;
    top: 4px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    z-index: 1100;
  }
  .header__hamburger img {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    margin: 0 !important;
  }
  .header__hamburger:first-of-type {
    left: 0 !important;
    right: auto !important;
    background: #fff !important;
    border: 1.2px solid #000 !important;
  }
  .header__hamburger:last-of-type {
    right: 0 !important;
    left: auto !important;
    background: #e91e63 !important;
    border: 2px solid #e91e63 !important;
  }
  .header__hamburger:last-of-type img {
    filter: brightness(0) invert(1) !important;
  }
  .header__cta {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    right: 12px !important;
    top: 12px !important;
    border-radius: 50% !important;
    border-width: 2px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
    box-shadow: 0 2px 8px #e91e6322, 0 0 16px 2px #e91e63aa !important;
    background: #e91e63 !important;
    color: #fff !important;
    overflow: hidden !important;
  }
  .header__cta .btn__icon,
  .header__cta img {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    display: block !important;
  }
  .header__cta span,
  .header__cta svg:not(.btn__icon),
  .header__cta text {
    display: none !important;
  }

  /* Hero Section */
  .hero {
    padding: 24px 0 32px 0;
    background-position: center top;
  }
  .hero__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
  }
  .hero__content {
    width: 100%;
    padding: 0;
    align-items: center;
    text-align: center;
  }
  .hero__content h1 {
    font-size: 1.5rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .hero__contacts {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    font-size: 0.95rem;
  }
  .hero__image {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .hero__image img {
    max-width: 90vw;
    height: auto;
  }
  .decor--toothbrush, .decor--toothpaste {
    display: none;
  }

  /* About Section */
  .about__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
  }
  .about__content {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .about__text {
    text-align: center;
    font-size: 1rem;
  }
  .about__video-placeholder {
    width: 100%;
    min-width: 0;
    margin: 0 auto;
  }
  .about__video-placeholder video {
    width: 100%;
    height: auto;
    min-width: 0;
  }
  .about__bg-bar, .about__bg-bar--second {
    display: none;
  }

  /* Services Section */
  .services__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
  }
  .services__cards {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .service-card-group {
    width: 100%;
    margin-bottom: 18px;
  }
  .service-card {
    flex-direction: column;
    align-items: center;
    padding: 18px 8px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .service-card__topbar {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .service-card__icon img {
    width: 40px;
    height: 40px;
  }
  .service-card__title {
    font-size: 1.1rem;
    text-align: center;
  }
  .service-card p {
    font-size: 0.98rem;
    text-align: center;
  }
  .services__card-btn-row {
    justify-content: center;
    margin-top: 10px;
  }

  /* Doctor Section */
  .doctor__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
  }
  .doctor__slider {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .doctor__card {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 12px 16px 48px 16px !important;
    margin-bottom: 24px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    min-height: 600px !important;
    height: 600px !important;
    overflow: visible !important;
  }
  .doctor__container {
    overflow: visible !important;
  }
  .doctor__photo, .doctor__photo--large {
    width: 280px !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
  .doctor__info {
    text-align: left !important;
    padding: 0 !important;
    width: 100% !important;
    margin-top: -8px !important;
  }
  .doctor__name {
    font-size: 1.2rem !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
    text-align: left !important;
  }
  .doctor__info p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
  }
  .doctor__controls-row {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }

  /* Reviews Section */
  .reviews__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
  }
  .reviews__cards-row {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .review-card {
    width: 100%;
    min-width: 0;
    margin-bottom: 18px;
    font-size: 1rem;
  }
  .reviews__all-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1rem;
    padding: 12px 0;
  }

  /* Footer */
  .footer__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
    gap: 18px;
  }
  .footer__col {
    width: 100%;
    margin-bottom: 18px;
    align-items: center;
    text-align: center;
  }
  .footer__logo-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer__logo, .footer__under-logo {
    height: 48px;
    width: auto;
  }
  .footer__heading {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .footer__nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .footer__contacts {
    font-size: 0.98rem;
    gap: 6px;
  }
  .footer__map-card {
    width: 105% !important;
    margin-left: -8px !important;
    box-sizing: border-box !important;
  }
  .footer__map-card iframe {
    width: 100%;
    height: 90px;
  }
  .yehor-btn {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
  }
  .yehor-btn img {
    width: 36px;
    height: 36px;
  }

  /* Modals (Signup, Contacts, Yehor) */
  .signup-modal__content,
  .contacts-modal,
  .yehor-modal__content {
    min-width: 0;
    width: 98vw;
    max-width: 98vw;
    padding: 16px 4vw;
    font-size: 1rem;
  }
  .signup-modal__logo-side img,
  .contacts-modal__logo,
  .yehor-modal__avatar img {
    width: 48px;
    height: 48px;
  }
  .signup-modal__close,
  .contacts-modal__close,
  .yehor-modal__close {
    top: 6px;
    right: 10px;
    font-size: 1.5em;
  }
  .signup-modal__form-side h2,
  .contacts-modal h2,
  .yehor-modal__main {
    font-size: 1.1em;
  }
  .signup-modal__form-side p,
  .contacts-modal__info,
  .yehor-modal__sub {
    font-size: 0.98em;
  }

  .header__logo img {
    margin-right: 2px;
  }
  .header__logo span {
    margin-left: 0;
    font-size: 0.85rem;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .desktop-signup-btn {
    display: none !important;
  }
}
@media (min-width: 601px) {
  .header__hamburger:last-of-type {
    display: none !important;
  }
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.2px solid #000;
  background: #fff;
  margin-right: 10px;
  box-sizing: border-box;
  position: relative;
}
/*
.icon-circle--footer {
  background: transparent;
  border: 2px solid #000;
  margin-right: 10px;
}
.footer__contacts > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.icon-svg {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  display: block;
  margin: 0;
}
*/

.contacts-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(236, 116, 143, 0.35);
  z-index: 1000;
}
.contacts-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 48%;
  transform: translate(-48%, -50%);
  z-index: 1001;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px #e91e6322, 0 0 32px 4px #e91e6388;
  padding: 40px 32px 32px 32px;
  min-width: 360px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.77,0,0.175,1);
  border: 1.5px solid #000;
}
.contacts-modal.open {
  opacity: 1;
  pointer-events: auto;
  animation: fadeInModal 0.4s cubic-bezier(0.77,0,0.175,1);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translate(-48%, -54%); }
  to { opacity: 1; transform: translate(-48%, -50%); }
}
.contacts-modal__logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  margin-left: -12px;
}
.contacts-modal__logo {
  width: 110px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 0;
}
.contacts-modal__logo-text {
  font-size: 1.3rem;
  color: #e91e63;
  letter-spacing: 1px;
}
.contacts-modal h2 {
  text-align: left;
  margin: 32px 0 32px 0;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 900;
}
.contacts-modal__info {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  font-size: 0.95rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
}
.contacts-modal__info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
}
.contacts-modal__close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #e91e63;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s;
}
.contacts-modal__close:hover {
  color: #000;
}
@media (max-width: 650px) {
  .contacts-modal {
    min-width: 0;
    max-width: 95vw;
    padding: 18px 4vw 18px 4vw;
  }
  .contacts-modal__logo {
    width: 75px;
    height: 50px;
  }
  .contacts-modal__logo-text {
    font-size: 1rem;
  }
}

.header__nav a, .footer__nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
}

.hero__contacts > li {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
}

.reviews__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  background: #fff;
  border-radius: 50%;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
  display: inline-block;
}
.reviews__dot--active {
  background: #000;
  border-color: #000;
}

.reviews__controls-row {
  display: flex;
  align-items: center;
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 18px auto 0 auto;
  left: 3%;
}
.reviews__controls-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-start;
}
.reviews__all-btn {
  position: absolute;
  left: 48%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 2;
  margin: 0;
}

.footer__nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  margin-right: 0;
  position: relative;
  top: -1.5px;
}
.footer__nav-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__col--nav,
.footer__col--contacts {
  align-items: flex-start;
  margin-top: 0;
  padding-top: 0;
}

.footer__col--nav > .footer__heading,
.footer__col--contacts > .footer__heading {
  margin-bottom: 14px !important;
  margin-top: 0 !important;
}
.footer__col--nav,
.footer__col--contacts {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.footer__contacts-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
  border: 1px solid #000;
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
}
.footer__contacts-icon img {
  width: 15px;
  height: 15px;
  display: block;
}

.reviews__subtitle {
  margin-bottom: 32px;
  font-weight: normal !important;
  font-family: 'PT Sans', Arial, sans-serif !important;
  font-size: 1.5rem;
}
.reviews__subtitle b {
  font-weight: bold;
}
.reviews-modal__subtitle {
  font-family: 'PT Sans', Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #222;
  text-align: left;
  margin: 0 0 10px 0;
  letter-spacing: 0.04em;
}

.reviews__tooth-decor {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 170px;
  transform: translateY(-90%);
  z-index: 0;
  margin-right: calc(16.66% - 75px);
}

section.reviews h2 {
  margin-bottom: 24px;
}

.btn__icon--therapy {
  margin-left: 18px !important;
}

.btn--therapy-longer {
  min-width: 280px;
}

.services__tooth-decor {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 420px;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-18deg);
  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.32));
}

.doctor__card--blue .about__toothbrush-decor {
  width: 270px;
  bottom: -10px;
  right: -140px;
  transform: rotate(-10deg);
}

/* Signup Modal Styles */
.signup-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 48%;
  transform: translate(-48%, -50%);
  z-index: 1001;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px #e91e6322, 0 0 32px 4px #e91e6388;
  padding: 40px 32px 32px 32px;
  min-width: 360px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.77,0,0.175,1);
  border: 1.5px solid #000;
}
.signup-modal.active {
  opacity: 1;
  pointer-events: auto;
  display: flex;
  animation: fadeInModal 0.4s cubic-bezier(0.77,0,0.175,1);
}
.signup-modal__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  position: relative;
}
.signup-modal__form-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #222;
  padding: 0;
  margin-top: 12px;
}
.signup-modal__form-side h2 {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  margin: 32px 0 16px 0;
  text-transform: uppercase;
  color: #222;
}
.signup-modal__form-side p {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #222;
}
.signup-modal__form-side form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 420px;
}
.signup-modal__form-side input,
.signup-modal__form-side button {
  width: 100%;
  box-sizing: border-box;
}
.signup-modal__form-side input {
  font-size: 1.1rem;
  padding: 14px;
  border-radius: 12px;
  border: 1.5px solid #bbb;
  outline: none;
}
.signup-modal__form-side button {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  background: #e91e63;
  color: #fff;
  border: 2px solid #e91e63;
  box-shadow: 0 2px 8px #e91e6322, 0 0 16px 2px #e91e63aa;
  border-radius: 24px;
  padding: 16px 0;
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.signup-modal__form-side button:hover {
  background: #fff;
  color: #e91e63;
  border: 2px solid #e91e63;
}
.signup-modal__form-side button:active {
  background: #ffb6d5;
  color: #e91e63;
  border: 2px solid #e91e63;
}
.signup-modal__logo-side {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 0 0;
  padding: 0;
}
.signup-modal__logo-side img {
  max-width: 120px;
  width: 100%;
  height: auto;
  margin-left: -8px;
}
.signup-modal__close {
  position: absolute;
  top: -16px;
  right: -6px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #e91e63;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s;
}
.signup-modal__close:hover {
  color: #000;
}
@media (max-width: 650px) {
  .signup-modal {
    min-width: 0;
    max-width: 95vw;
    padding: 18px 4vw 18px 4vw;
  }
  .signup-modal__logo-side img {
    max-width: 120px;
  }
  .signup-modal__form-side h2 {
    font-size: 1.1rem;
  }
}

.signup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(236, 116, 143, 0.35);
  z-index: 1000;
}

.signup-modal__logo-text {
  font-size: 1.3rem;
  color: #e91e63;
  letter-spacing: 1px;
  margin-left: 16px;
  font-weight: bold;
  align-self: center;
  font-family: inherit;
}

@keyframes floatInRight {
  from {
    opacity: 0;
    transform: translateX(120px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.about__video-placeholder {
  width: 440px;
  min-height: 660px;
  background: url('images/video-bg.png') center/cover no-repeat;
  border-radius: 24px;
  border: 1.5px solid #000;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  box-sizing: border-box;
  align-self: flex-start;
  margin-top: -140px;
  padding: 2px;
  position: relative;
  background: url('images/about-mp4-bg.jpg') center/cover no-repeat !important;
  background-color: transparent !important;
  transition: box-shadow 0.3s ease;
  cursor: default;
}

.about__video-placeholder:hover {
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.6), 0 0 0 3px rgba(233, 30, 99, 0.4);
}

.about__video-placeholder video {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: none;
}

.service-hero {
  padding: 120px 0 60px 0;
  background: #fff;
}
.service-title {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 24px;
  color: #0C83D2;
  text-transform: uppercase;
}
.service-subtitle {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 0;
  text-transform: uppercase;
}
.service-content {
  padding: 60px 0;
  background: #fff;
}
.service-description {
  margin-bottom: 40px;
}
.service-description h2 {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: #0C83D2;
  text-transform: uppercase;
}
.service-description p {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.service-benefits {
  padding: 60px 0;
  background: #f8f9fa;
}
.service-benefits h2 {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 32px;
  color: #0C83D2;
  text-transform: uppercase;
}
.service-benefits ul {
  list-style: none;
  padding: 0;
}
.service-benefits li {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-left: 4px !important;
  position: relative;
  color: #444;
  text-transform: uppercase;
}
.service-benefits li:before {
  content: none !important;
}
.service-cta {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
.service-cta h2 {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #0C83D2;
  text-transform: uppercase;
}
.service-cta p {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #666;
  text-transform: uppercase;
}

/* Service CTA Button (matches topbar color, hover, active, but hero width) */
.service-cta__button {
  background: #e91e63;
  color: #fff;
  border: 2px solid #e91e63;
  box-shadow: 0 2px 8px #e91e6322, 0 0 16px 2px #e91e63aa;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  max-width: 220px;
  vertical-align: middle;
}
.service-cta__button .btn__icon {
  fill: #fff !important;
  stroke: #fff !important;
  color: #fff !important;
}
.service-cta__button:hover {
  background: #fff;
  color: #e91e63;
  border: 2px solid #e91e63;
}
.service-cta__button:hover .btn__icon {
  fill: #e91e63 !important;
  stroke: #e91e63 !important;
  color: #e91e63 !important;
}
.service-cta__button:active {
  background: #ffb6d5;
  color: #e91e63;
  border: 2px solid #e91e63;
}
.service-cta__button:active .btn__icon {
  fill: #e91e63 !important;
  stroke: #e91e63 !important;
  color: #e91e63 !important;
}
.service-cta__button, .service-cta__button .btn__icon {
  position: relative;
  top: -1px;
}

/* Service page non-title text color */
.service-content p,
.service-benefits p,
.service-benefits li,
.service-cta p,
.service-description p,
.service-description li {
  color: #000 !important;
}

.service-subtitle {
  color: #000 !important;
}

.service-benefits__list li,
.service-benefits li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0 !important;
  margin-bottom: 22px !important;
}
.advantage-row {
  display: flex;
  align-items: center;
}
.advantage-toggle {
  margin-right: 0 !important;
  margin-top: 0 !important;
}
.advantage-text {
  display: inline-block;
  margin-top: 0 !important;
}

.advantage-detail {
  margin-top: 8px;
  margin-left: 0 !important;
  padding-left: 16px !important;
  font-size: 1em;
  color: #333;
  padding: 12px;
  border-left: 3px solid #0C83D2;
  background-color: #fff;
  border-radius: 12px;
  font-weight: 400;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.77,0,0.175,1), opacity 0.3s cubic-bezier(0.77,0,0.175,1);
}
.advantage-detail[hidden] {
  display: block !important;
  max-height: 0 !important;
  opacity: 0 !important;
}
.advantage-detail:not([hidden]) {
  max-height: 300px;
  opacity: 1;
  transition: max-height 0.4s cubic-bezier(0.77,0,0.175,1), opacity 0.3s cubic-bezier(0.77,0,0.175,1);
}

.service-important {
  background: #ffb6d5;
  padding: 28px 0 18px 0;
  border-radius: 18px;
  margin-bottom: 32px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
.service-important h3 {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-important p {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.reviews-modal {
  min-width: 600px;
  max-width: 900px;
  align-items: flex-start;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f3b6c7 transparent;
}
.reviews-modal::-webkit-scrollbar {
  width: 2px;
  background: transparent;
}
.reviews-modal::-webkit-scrollbar-thumb {
  background: #f3b6c7;
  border-radius: 8px;
}
.reviews-modal::-webkit-scrollbar-track {
  background: transparent;
}
.reviews-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
  width: 100%;
  margin-top: 18px;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  .container,
  .hero__container,
  .about__container,
  .services__container,
  .contact__container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
  }

  .hero__text,
  .about__text,
  .service,
  .contact__form {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
  }

  img,
  svg {
    max-width: 100%;
    height: auto;
  }

  .header__nav {
    flex-direction: column;
    gap: 10px;
  }

  .signup__window,
  .contact__window {
    width: 90%;
    left: 5% !important;
    transform: none !important;
  }

  .footer {
    padding: 30px 20px;
    font-size: 14px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .button,
  .cta-button {
    font-size: 16px;
    padding: 12px 20px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .header__container {
    height: 56px;
    min-height: 56px;
    padding: 0;
    position: relative;
  }
  .header__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    margin-bottom: 0;
    position: relative;
    left: 0;
    padding: 0;
  }
  .header__logo img {
    height: 56px !important;
    margin-right: 2px !important;
  }
  .header__logo span {
    margin-left: 0 !important;
  }
  .header__hamburger {
    position: absolute !important;
    top: 4px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    z-index: 1100;
  }
  .header__hamburger img {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    margin: 0 !important;
  }
  .header__hamburger:first-of-type {
    left: 0 !important;
    right: auto !important;
    background: #fff !important;
    border: 1.2px solid #000 !important;
  }
  .header__hamburger:last-of-type {
    right: 0 !important;
    left: auto !important;
    background: #e91e63 !important;
    border: 2px solid #e91e63 !important;
  }
  .header__hamburger:last-of-type img {
    filter: brightness(0) invert(1) !important;
  }
  .header__cta {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    right: 12px !important;
    top: 12px !important;
    border-radius: 50% !important;
    border-width: 2px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
    box-shadow: 0 2px 8px #e91e6322, 0 0 16px 2px #e91e63aa !important;
    background: #e91e63 !important;
    color: #fff !important;
    overflow: hidden !important;
  }
  .header__cta .btn__icon,
  .header__cta img {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    display: block !important;
  }
  .header__cta span,
  .header__cta svg:not(.btn__icon),
  .header__cta text {
    display: none !important;
  }

  /* Hero Section */
  .hero {
    padding: 24px 0 32px 0;
    background-position: center top;
  }
  .hero__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
  }
  .hero__content {
    width: 100%;
    padding: 0;
    align-items: center;
    text-align: center;
  }
  .hero__content h1 {
    font-size: 1.5rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .hero__contacts {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    font-size: 0.95rem;
  }
  .hero__image {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .hero__image img {
    max-width: 90vw;
    height: auto;
  }
  .decor--toothbrush, .decor--toothpaste {
    display: none;
  }

  /* About Section */
  .about__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
  }
  .about__content {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .about__text {
    text-align: center;
    font-size: 1rem;
  }
  .about__video-placeholder {
    width: 100%;
    min-width: 0;
    margin: 0 auto;
  }
  .about__video-placeholder video {
    width: 100%;
    height: auto;
    min-width: 0;
  }
  .about__bg-bar, .about__bg-bar--second {
    display: none;
  }

  /* Services Section */
  .services__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
  }
  .services__cards {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .service-card-group {
    width: 100%;
    margin-bottom: 18px;
  }
  .service-card {
    flex-direction: column;
    align-items: center;
    padding: 18px 8px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .service-card__topbar {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .service-card__icon img {
    width: 40px;
    height: 40px;
  }
  .service-card__title {
    font-size: 1.1rem;
    text-align: center;
  }
  .service-card p {
    font-size: 0.98rem;
    text-align: center;
  }
  .services__card-btn-row {
    justify-content: center;
    margin-top: 10px;
  }

  /* Doctor Section */
  .doctor__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
  }
  .doctor__slider {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .doctor__card {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 12px 16px 48px 16px !important;
    margin-bottom: 24px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    min-height: 600px !important;
    height: 600px !important;
    overflow: visible !important;
  }
  .doctor__container {
    overflow: visible !important;
  }
  .doctor__photo, .doctor__photo--large {
    width: 280px !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
  .doctor__info {
    text-align: left !important;
    padding: 0 !important;
    width: 100% !important;
    margin-top: -8px !important;
  }
  .doctor__name {
    font-size: 1.2rem !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
    text-align: left !important;
  }
  .doctor__info p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
  }
  .doctor__controls-row {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }

  /* Reviews Section */
  .reviews__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
  }
  .reviews__cards-row {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .review-card {
    width: 100%;
    min-width: 0;
    margin-bottom: 18px;
    font-size: 1rem;
  }
  .reviews__all-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1rem;
    padding: 12px 0;
  }

  /* Footer */
  .footer__container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
    gap: 18px;
  }
  .footer__col {
    width: 100%;
    margin-bottom: 18px;
    align-items: center;
    text-align: center;
  }
  .footer__logo-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer__logo, .footer__under-logo {
    height: 48px;
    width: auto;
  }
  .footer__heading {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .footer__nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .footer__contacts {
    font-size: 0.98rem;
    gap: 6px;
  }
  .footer__map-card {
    width: 105% !important;
    margin-left: -8px !important;
    box-sizing: border-box !important;
  }
  .footer__map-card iframe {
    width: 100%;
    height: 90px;
  }
  .yehor-btn {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
  }
  .yehor-btn img {
    width: 36px;
    height: 36px;
  }

  /* Modals (Signup, Contacts, Yehor) */
  .signup-modal__content,
  .contacts-modal,
  .yehor-modal__content {
    min-width: 0;
    width: 98vw;
    max-width: 98vw;
    padding: 16px 4vw;
    font-size: 1rem;
  }
  .signup-modal__logo-side img,
  .contacts-modal__logo,
  .yehor-modal__avatar img {
    width: 48px;
    height: 48px;
  }
  .signup-modal__close,
  .contacts-modal__close,
  .yehor-modal__close {
    top: 6px;
    right: 10px;
    font-size: 1.5em;
  }
  .signup-modal__form-side h2,
  .contacts-modal h2,
  .yehor-modal__main {
    font-size: 1.1em;
  }
  .signup-modal__form-side p,
  .contacts-modal__info,
  .yehor-modal__sub {
    font-size: 0.98em;
  }

  .header__logo img {
    margin-right: 2px;
  }
  .header__logo span {
    margin-left: 0;
    font-size: 0.85rem;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer__contacts .address-text {
    font-family: 'Nunito', Arial, sans-serif !important;
    font-weight: 900 !important;
  }
}

@media (max-width: 900px) {
  .desktop-signup-btn {
    display: none !important;
  }
  .header__container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    position: relative;
  }
  .header__logo {
    display: flex !important;
    align-items: center !important;
    height: 56px !important;
    position: static !important;
    justify-content: flex-start !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .header__logo img {
    height: 40px !important;
    position: static !important;
    left: unset !important;
    bottom: unset !important;
    margin: 0 !important;
    filter: none !important;
    background: none !important;
    box-shadow: none !important;
  }
  .header__logo span {
    margin-left: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    align-self: center !important;
    display: inline-block !important;
    height: auto !important;
  }
}
@media (min-width: 901px) {
  .header__hamburger:last-of-type {
    display: none !important;
  }
}

@media (max-width: 900px) {
  /* HEADER: Burger menu and nav */
  .header__nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 12px 0 12px 24px;
    border-bottom: 1.5px solid #eee;
    z-index: 1099;
  }
  .header.nav-open .header__nav {
    display: flex;
  }
  .header__hamburger {
    display: flex !important;
  }
  .header__nav a {
    padding: 16px 0;
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .header__nav a:last-child {
    border-bottom: none;
  }
  .header__cta {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    background: #e91e63;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 8px;
    box-shadow: 0 2px 8px #e91e6322, 0 0 16px 2px #e91e63aa;
    border: 2px solid #e91e63;
    font-size: 0;
  }
  .header__cta .btn__icon,
  .header__cta img {
    width: 22px;
    height: 22px;
    margin: 0 0 0 -8px;
    display: block;
  }
  .header__cta span,
  .header__cta svg:not(.btn__icon),
  .header__cta text {
    display: none !important;
  }

  /* FOOTER: Stack columns, reduce size */
  .footer__container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 24px !important;
    padding: 16px 0 !important;
  }
  .footer__col {
    width: 100% !important;
    margin-bottom: 16px !important;
    text-align: center !important;
  }
  .footer__logo-wrapper img {
    max-width: 80px !important;
    height: auto !important;
  }
  .footer__heading {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
  }
  .footer__nav a {
    font-size: 1rem !important;
    padding: 10px 0 !important;
    display: block !important;
  }
  .footer__nav-icon svg {
    width: 18px !important;
    height: 18px !important;
    margin-right: 4px !important;
  }
  .footer__contacts > div {
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 0.95rem !important;
  }
  .footer__map-card iframe {
    width: 100% !important;
    height: 120px !important;
  }

  /* CARDS: Stack and space */
  .services__cards,
  .doctor__slider,
  .reviews__cards-row {
    flex-direction: column !important;
    gap: 18px !important;
    width: 100% !important;
    align-items: stretch !important;
  }
  .service-card,
  .doctor__card,
  .review-card {
    width: 100% !important;
    margin: 0 0 18px 0 !important;
    box-sizing: border-box !important;
    font-size: 0.98rem !important;
  }
  .service-card__title,
  .doctor__name,
  .review-card__name {
    font-size: 1.1rem !important;
  }
  .service-card__icon img,
  .doctor__photo img,
  .review-card__avatar img {
    max-width: 60px !important;
    height: auto !important;
  }
  .service-card .btn,
  .doctor__card .btn,
  .review-card .btn {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 10px 0 !important;
    margin-top: 8px !important;
  }
}

@media (max-width: 600px) {
  /* Even smaller font and tighter spacing for very small screens */
  .header__nav a {
    font-size: 1rem;
    padding: 14px 0;
  }
  .footer__heading {
    font-size: 1rem !important;
  }
  .footer__nav a {
    font-size: 0.95rem !important;
  }
  .service-card__title,
  .doctor__name,
  .review-card__name {
    font-size: 1rem !important;
  }
  .service-card,
  .doctor__card,
  .review-card {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 900px) {
  .header__cta.signup-btn {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .signup-modal {
    min-width: 0 !important;
    max-width: 95vw !important;
    width: 95vw !important;
    padding: 16px 4vw 16px 4vw !important;
    border-radius: 16px !important;
  }
  .signup-modal__content {
    padding: 0 !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  .signup-modal__logo-side img {
    width: 60px !important;
    height: auto !important;
    margin-bottom: 8px !important;
  }
  .signup-modal__logo-text {
    font-size: 1rem !important;
  }
  .signup-modal__form-side h2 {
    font-size: 1.1rem !important;
    margin: 12px 0 8px 0 !important;
  }
  .signup-modal__form-side p {
    font-size: 0.95rem !important;
    margin-bottom: 10px !important;
  }
  .signup-modal__form-side input,
  .signup-modal__form-side button {
    font-size: 1rem !important;
    padding: 8px 10px !important;
    margin-bottom: 8px !important;
  }
  .signup-modal__close {
    font-size: 1.5rem !important;
    top: 8px !important;
    right: 12px !important;
  }
}

@media (max-width: 600px) {
  .signup-modal {
    max-width: 99vw !important;
    width: 99vw !important;
    padding: 8px 1vw 8px 1vw !important;
    border-radius: 10px !important;
  }
  .signup-modal__logo-side img {
    width: 40px !important;
  }
  .signup-modal__logo-text {
    font-size: 0.9rem !important;
  }
  .signup-modal__form-side h2 {
    font-size: 1rem !important;
  }
  .signup-modal__form-side p {
    font-size: 0.9rem !important;
  }
  .signup-modal__form-side input,
  .signup-modal__form-side button {
    font-size: 0.95rem !important;
    padding: 6px 8px !important;
  }
  .signup-modal__close {
    font-size: 1.2rem !important;
    top: 4px !important;
    right: 6px !important;
  }
}

@media (max-width: 900px) {
  .signup-modal {
    max-width: 90vw !important;
    width: 90vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 600px) {
  .signup-modal {
    max-width: 96vw !important;
    width: 96vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 900px) {
  .signup-modal__form-side input,
  .signup-modal__form-side button {
    width: 90% !important;
    max-width: 320px !important;
    display: block !important;
    margin-left: 16px !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 900px) {
  .signup-modal {
    margin-left: 8px !important;
  }
}
@media (max-width: 600px) {
  .signup-modal {
    margin-left: 4px !important;
  }
}

@media (max-width: 900px) {
  .signup-modal__logo-side,
  .signup-modal__logo-text,
  .signup-modal__form-side h2,
  .signup-modal__form-side p {
    margin-left: 16px !important;
    text-align: left !important;
  }
}

@media (max-width: 900px) {
  .signup-modal__logo-side img {
    width: 72px !important;
    height: auto !important;
    margin-top: 16px !important;
  }
  .signup-modal__logo-text {
    margin-top: 16px !important;
  }
}

@media (max-width: 900px) {
  .signup-modal__close {
    left: 8px !important;
    right: unset !important;
    top: 8px !important;
  }
}
@media (max-width: 600px) {
  .signup-modal__close {
    left: 4px !important;
    right: unset !important;
    top: 4px !important;
  }
}

@media (max-width: 900px) {
  .signup-modal {
    overflow: visible !important;
    max-height: none !important;
  }
  .signup-modal__content {
    overflow: visible !important;
    max-height: none !important;
  }
}

@media (max-width: 900px) {
  .signup-modal {
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    position: fixed !important;
    margin: 0 !important;
  }
}

@media (max-width: 900px) {
  .signup-modal {
    margin: 0 !important;
  }
}

@media (max-width: 900px) {
  .signup-modal {
    position: relative !important;
  }
}

@media (max-width: 900px) {
  .signup-modal {
    position: fixed !important;
    z-index: 1001 !important;
  }
  .signup-modal__close {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    left: unset !important;
    z-index: 1002 !important;
    display: block !important;
  }
}
@media (max-width: 600px) {
  .signup-modal__close {
    top: 4px !important;
    right: 4px !important;
  }
}

@media (max-width: 900px) {
  html body .signup-modal .signup-modal__close {
    right: 32px !important;
    left: unset !important;
    top: 12px !important;
    position: absolute !important;
    z-index: 1002 !important;
  }
}

@media (max-width: 900px) {
  html body .signup-modal .signup-modal__close {
    font-size: 2.6rem !important;
  }
}

@media (max-width: 900px) {
  html body .signup-modal .signup-modal__form-side input {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal {
    min-width: 0 !important;
    max-width: 90vw !important;
    width: 90vw !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    position: fixed !important;
    margin: 0 !important;
    border-radius: 16px !important;
    padding: 16px 4vw 16px 4vw !important;
    box-sizing: border-box !important;
    z-index: 1001 !important;
  }
  .contacts-modal__logo {
    width: 72px !important;
    height: auto !important;
    margin-top: 16px !important;
    margin-left: 16px !important;
  }
  .contacts-modal__logo-text {
    font-size: 1rem !important;
    margin-top: 16px !important;
    margin-left: 16px !important;
    text-align: left !important;
  }
  .contacts-modal h2 {
    font-size: 1.1rem !important;
    margin: 12px 0 8px 16px !important;
    text-align: left !important;
  }
  .contacts-modal__info {
    margin-left: 16px !important;
    font-size: 0.95rem !important;
    text-align: left !important;
  }
  .contacts-modal__info-row {
    margin-left: 16px !important;
    font-size: 0.95rem !important;
    text-align: left !important;
  }
}
@media (max-width: 600px) {
  .contacts-modal {
    max-width: 96vw !important;
    width: 96vw !important;
    padding: 8px 1vw 8px 1vw !important;
    border-radius: 10px !important;
  }
  .contacts-modal__logo {
    width: 40px !important;
    margin-top: 8px !important;
    margin-left: 8px !important;
  }
  .contacts-modal__logo-text {
    font-size: 0.9rem !important;
    margin-top: 8px !important;
    margin-left: 8px !important;
  }
  .contacts-modal h2 {
    font-size: 1rem !important;
    margin: 8px 0 6px 8px !important;
  }
  .contacts-modal__info,
  .contacts-modal__info-row {
    margin-left: 8px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal__logo-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .contacts-modal__logo {
    width: 72px !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
  }
  .contacts-modal__logo-text {
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    color: #e91e63 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal__logo-row,
  .contacts-modal__logo,
  .contacts-modal__logo-text,
  .contacts-modal h2,
  .contacts-modal__info,
  .contacts-modal__info-row,
  .contacts-modal__info-row span,
  .contacts-modal__info-row a {
    margin-left: 16px !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal__info-row {
    font-size: 0.9rem !important;
    margin-left: 16px !important;
    align-items: center !important;
    text-align: left !important;
  }
  .contacts-modal__info-row .icon-circle {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    margin-right: 8px !important;
  }
  .contacts-modal__info-row img,
  .contacts-modal__info-row svg {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
  }
  .contacts-modal__info-row span,
  .contacts-modal__info-row a {
    font-size: 0.9rem !important;
    text-align: left !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal h2 {
    margin-left: 16px !important;
    text-align: left !important;
  }
}

@media (max-width: 900px) {
  html body .contacts-modal h2 {
    margin-left: 0 !important;
    padding-left: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }
}

@media (max-width: 900px) {
  html body .contacts-modal h2 {
    padding-left: 32px !important;
  }
}

@media (max-width: 900px) {
  html body .contacts-modal h2 {
    padding-left: 48px !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal {
    padding-left: 8px !important;
  }
  .contacts-modal__logo-row,
  .contacts-modal__logo,
  .contacts-modal__logo-text,
  .contacts-modal h2,
  .contacts-modal__info,
  .contacts-modal__info-row,
  .contacts-modal__info-row span,
  .contacts-modal__info-row a {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal__info-row .icon-circle {
    margin-left: 14px !important;
  }
}

@media (max-width: 900px) {
  html body .contacts-modal h2 {
    padding-left: 32px !important;
  }
}

@media (max-width: 900px) {
  html body .contacts-modal h2 {
    padding-left: 24px !important;
  }
}

@media (max-width: 900px) {
  html body .contacts-modal h2 {
    padding-left: 18px !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal__close {
    font-size: 2.6rem !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal {
    min-height: 420px !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal {
    min-height: 340px !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal {
    min-height: 290px !important;
  }
}

@media (max-width: 900px) {
  .contacts-modal {
    min-height: 260px !important;
  }
}

@media (max-width: 900px) {
  .header__logo img {
    height: 52px !important;
  }
  .header__logo span {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 900px) {
  .header__logo span {
    margin-left: 2px !important;
  }
}

@media (max-width: 900px) {
  .header__logo span {
    margin-left: 0.5px !important;
  }
}

@media (max-width: 900px) {
  .header__hamburger,
  .header__cta {
    top: 10px !important;
  }
}

@media (max-width: 900px) {
  .header__logo span {
    margin-left: -4px !important;
  }
}

@media (max-width: 900px) {
  .header__logo span {
    margin-left: -8px !important;
  }
}

@media (max-width: 900px) {
  .header__logo {
    margin-left: 4px !important;
  }
}

@media (max-width: 900px) {
  html body .header__logo {
    margin-left: -14px !important;
  }
}

@media (max-width: 900px) {
  .header__nav {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    top: 56px !important;
    border-radius: 0 0 12px 12px !important;
    z-index: 1200 !important;
    transform: translateY(-32px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 0.35s cubic-bezier(0.77,0,0.175,1), opacity 0.35s cubic-bezier(0.77,0,0.175,1) !important;
    display: block !important;
  }
  .header.nav-open .header__nav {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 900px) {
  .header__nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .header__nav a {
    display: block !important;
    width: 100% !important;
  }
}

@media (max-width: 900px) {
  .header__nav a {
    text-align: left !important;
    padding-left: 16px !important;
  }
}

@media (max-width: 900px) {
  .header__nav a {
    padding-left: 6px !important;
  }
}

@media (max-width: 900px) {
  html body .header__nav {
    top: 60px !important;
  }
}

@media (max-width: 900px) {
  .footer__map-card {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 120px !important;
    max-width: 220px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer__map-card iframe {
    flex: 1 1 auto !important;
    width: 0 !important;
    height: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }
  .yehor-btn {
    margin-left: 12px !important;
  }
}

@media (max-width: 900px) {
  .footer__map-card {
    height: 120px !important;
  }
  .footer__map-card iframe {
    height: 100% !important;
  }
}

@media (max-width: 900px) {
  .footer__map-row {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    margin: 0 auto 16px auto !important;
  }
  .footer__map-card {
    max-width: 220px !important;
    height: 120px !important;
    margin: 0 !important;
    display: block !important;
    position: static !important;
  }
  .footer__map-card iframe {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }
  .yehor-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.1rem !important;
    padding: 0 !important;
    margin-left: 8px !important;
    margin-top: 0 !important;
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 900px) {
  .footer__logo-wrapper {
    position: relative !important;
  }
  .footer__under-logo {
    position: absolute !important;
    left: 8px !important;
    top: -28px !important;
    z-index: 0 !important;
    display: block !important;
  }
  .footer__logo {
    position: absolute !important;
    left: 8px !important;
    top: -10px !important;
    z-index: 1 !important;
    display: block !important;
  }
}

@media (max-width: 900px) {
  .footer__under-logo {
    top: -10px !important;
    left: -8px !important;
  }
}

@media (max-width: 900px) {
  .footer__under-logo {
    width: 90px !important;
  }
}

@media (max-width: 900px) {
  html body .footer__under-logo {
    width: 120px !important;
    min-width: 120px !important;
    max-width: none !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 900px) {
  .footer__logo-wrapper {
    position: relative !important;
  }
  .footer__logo {
    position: absolute !important;
    left: 50% !important;
    top: -10px !important;
    transform: translateX(-50%) !important;
    z-index: 1 !important;
    display: block !important;
  }
}

@media (max-width: 900px) {
  .footer__logo {
    width: 70px !important;
    left: 50% !important;
    top: -10px !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 900px) {
  html body .footer__logo {
    width: 110px !important;
    min-width: 110px !important;
    max-width: none !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 900px) {
  html body .footer__logo {
    left: -63px !important;
    top: -65px !important;
    position: absolute !important;
    transform: scale(1.15) !important;
  }
}

@media (max-width: 900px) {
  .footer__col--nav,
  .footer__col--contacts,
  .footer__col--map {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer__nav,
  .footer__contacts {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .footer__heading {
    font-size: 0.7rem !important;
    margin: 12px 0 4px 0 !important;
    text-align: left !important;
  }
  .footer__nav a {
    font-size: 0.7rem !important;
    margin-bottom: 3px !important;
    padding-left: 0 !important;
    text-align: left !important;
  }
  .footer__contacts > div {
    margin-bottom: 3px !important;
    font-size: 0.7rem !important;
    align-items: center !important;
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
  .footer__contacts-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    margin-right: 8px !important;
    margin-left: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    border: 1.2px solid #000 !important;
    background: #fff !important;
    box-sizing: border-box !important;
    position: relative !important;
    flex-shrink: 0 !important;
  }
  .footer__contacts-icon img,
  .footer__contacts-icon svg {
    width: 13px !important;
    height: 13px !important;
    margin: 0 !important;
    display: block !important;
  }
  .footer__contacts a,
  .footer__contacts span {
    font-size: 0.7rem !important;
    vertical-align: middle !important;
  }
}

@media (max-width: 900px) {
  .footer__container {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    gap: 0 !important;
    width: 100% !important;
  }
  .footer__col--logo-nav,
  .footer__col--map {
    display: none !important;
  }
  .footer__col--nav,
  .footer__col--contacts {
    width: 50% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer__col--nav {
    padding-right: 8px !important;
  }
  .footer__col--contacts {
    padding-left: 8px !important;
  }
}

@media (max-width: 900px) {
  .footer__container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  .footer__row {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer__col--nav,
  .footer__col--contacts {
    width: 50% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer__col--nav {
    padding-right: 8px !important;
  }
  .footer__col--contacts {
    padding-left: 8px !important;
  }
  .footer__col--map {
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer__container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding-left: 16px !important;
    padding-right: 0 !important;
  }
  .footer__col--logo-nav,
  .footer__col--nav,
  .footer__col--contacts {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer__logo-wrapper {
    margin-top: 18px !important;
    margin-bottom: 8px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
  }
  .footer__logo,
  .footer__under-logo {
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: static !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
  }
  .footer__copyright-small {
    margin: 4px 0 12px 0 !important;
    text-align: left !important;
    font-size: 0.7rem !important;
  }
  .footer__heading {
    margin: 0 0 6px 0 !important;
    font-size: 0.8rem !important;
    text-align: left !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
  }
  .footer__col--nav {
    margin-bottom: 0 !important;
  }
  .footer__nav {
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
  .footer__nav a {
    display: block !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #222 !important;
    text-align: left !important;
    margin: 0 0 2px 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
    background: none !important;
  }
  .footer__nav-icon {
    display: none !important;
  }
  .footer__col--contacts {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
  .footer__col--contacts > .footer__heading {
    margin-bottom: 2px !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }
  .footer__col--contacts > .footer__contacts {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    padding: 0 !important;
    gap: 6px !important;
  }
  .footer__contacts {
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }
  .footer__contacts > div {
    display: flex !important;
    align-items: center !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #222 !important;
    margin: 0 0 2px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    gap: 8px !important;
  }
  .footer__contacts > div .instagram-link,
  .footer__contacts .instagram-link {
    font-weight: 700 !important;
  }
  .footer__contacts-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin: 0 6px 0 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    background: none !important;
    box-sizing: border-box !important;
    position: static !important;
  }
  .footer__contacts-icon img,
  .footer__contacts-icon svg {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    display: block !important;
  }
}

/* Remove nav link icons for mobile */
@media (max-width: 900px) {
  .footer__nav-icon {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .footer__contacts {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .footer__contacts > div {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .footer__contacts-icon {
    margin-left: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer__container {
    padding-left: 0 !important;
  }
  .footer__col--contacts {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .footer__contacts {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .footer__contacts > div {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .footer__contacts-icon {
    margin-left: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer__container,
  .footer__col--contacts,
  .footer__contacts,
  .footer__contacts > div {
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .footer__contacts {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  .footer__contacts > div {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }
  .footer__contacts-icon {
    margin-left: 0 !important;
    margin-right: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 900px) {
  .footer__contacts > div {
    font-size: 0.78rem !important;
    font-weight: 400 !important;
  }
  .footer__contacts > div a,
  .footer__contacts > div span:not(.footer__contacts-icon),
  .footer__contacts > div > *:not(.footer__contacts-icon) {
    font-size: 0.78rem !important;
    font-weight: 400 !important;
  }
}

@media (max-width: 900px) {
  .footer__nav a {
    font-size: 0.78rem !important;
    font-weight: 400 !important;
  }
}

@media (max-width: 900px) {
  .footer__heading {
    margin-bottom: 0 !important;
  }
  .footer__heading + .footer__nav,
  .footer__heading + .footer__contacts,
  .footer__heading + .footer__map-card {
    margin-top: 8px !important;
  }
  .footer__nav,
  .footer__contacts,
  .footer__map-card {
    margin-top: 0 !important;
  }
  .footer__nav > *:first-child,
  .footer__contacts > *:first-child,
  .footer__map-card > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer__row {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .footer__col--nav,
  .footer__col--contacts {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .footer__heading {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer__col--nav .footer__heading + .footer__nav {
    margin-top: 4px !important;
  }
  .footer__heading + .footer__contacts,
  .footer__heading + .footer__map-card {
    margin-top: 8px !important;
  }
}

@media (max-width: 900px) {
  .footer__col--nav .footer__heading {
    margin-bottom: 4px !important;
  }
  .footer__col--contacts .footer__heading,
  .footer__col--map .footer__heading {
    margin-bottom: 8px !important;
  }
}

@media (max-width: 900px) {
  .footer__heading {
    margin-bottom: 6px !important;
  }
  .footer__nav,
  .footer__contacts,
  .footer__map-card {
    margin-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer__container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .footer__row {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .footer__col--map {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer__logo-wrapper {
    margin-bottom: 4px !important;
  }
  .footer__copyright-small {
    margin-top: 0 !important;
  }
  .footer__row {
    margin-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer__container,
  .footer__logo-wrapper,
  .footer__logo,
  .footer__under-logo,
  .footer__copyright-small {
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer,
  .footer__container,
  .footer__logo-wrapper,
  .footer__logo,
  .footer__under-logo,
  .footer__copyright-small,
  .footer__row,
  .footer__col--nav,
  .footer__col--contacts,
  .footer__col--map,
  .footer__map-card {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .footer {
    min-height: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer__logo,
  .footer__under-logo {
    display: none !important;
  }
  .footer__container,
  .footer__copyright-small,
  .footer__row,
  .footer__col--nav,
  .footer__col--contacts,
  .footer__col--map {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer__logo-wrapper {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .footer__map-card {
    position: relative !important;
  }
  .yehor-btn {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    transform: none !important;
    margin: 0 !important;
    z-index: 2 !important;
  }
  .footer__copyright-small {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    margin: 12px 0 0 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 600px) {
  .footer__col--logo-nav {
    display: none !important;
  }
  .footer__copyright-small {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    margin: 8px 0 0 0 !important;
    padding: 0 0 12px 0 !important;
    font-size: 14px !important;
    background: none !important;
    border: none !important;
  }
  .footer__col--map {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .footer__map-card {
    margin-bottom: 4px !important;
  }
  .footer {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    min-height: 0 !important;
  }
}

@media (max-width: 600px) {
  .footer__copyright-small.mobile-only {
    font-size: 9px !important;
  }
}

@media (max-width: 600px) {
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    background-color: #fff !important;
  }
  .footer {
    background: linear-gradient(90deg, #EC748F 0%, #EC748F 10%, #FFC0CE 100%) !important;
    border-bottom: none !important;
    box-shadow: none !important;
    min-height: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 600px) {
  .yehor-btn {
    bottom: -20px !important;
  }
}

.yehor-modal {
  display: none;
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1002 !important;
  background: none !important;
  transition: opacity 0.3s !important;
  opacity: 0 !important;
  box-sizing: border-box !important;
}
.yehor-modal.open {
  display: flex !important;
  opacity: 1 !important;
}
.yehor-modal__content {
  margin: 0 auto !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  position: relative !important;
  transform: none !important;
  opacity: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 95vw !important;
  min-width: 0 !important;
}

@media (max-width: 600px) {
  .footer__row {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  .footer__col--nav,
  .footer__col--contacts {
    width: 50% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 600px) {
  .footer__container {
    display: block !important;
  }
  .footer__col--nav,
  .footer__col--contacts {
    display: inline-block !important;
    width: 50% !important;
    vertical-align: top !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .footer__col--nav {
    float: left !important;
  }
  .footer__col--contacts {
    float: right !important;
  }
  .footer__col--map,
  .footer__copyright-small.mobile-only {
    clear: both !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts > div,
  .footer__contacts a,
  .footer__contacts span {
    font-size: 0.7rem !important;
    line-height: 1.1 !important;
  }
  .footer__contacts > div .instagram-link,
  .footer__contacts .instagram-link {
    font-weight: 700 !important;
  }
  .footer__contacts-icon,
  .footer__contacts-icon img,
  .footer__contacts-icon svg {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
  }
  .footer__nav a {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 600px) {
  .footer__nav a,
  .footer__contacts > div,
  .footer__contacts a,
  .footer__contacts span {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
  }
  .footer__contacts > div .instagram-link,
  .footer__contacts .instagram-link {
    font-weight: 700 !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts > div {
    margin-bottom: 1px !important;
  }
  .footer__contacts-icon {
    vertical-align: -2px !important;
    position: relative !important;
    top: -1px !important;
  }
}

@media (max-width: 600px) {
  .footer__nav a {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 600px) {
  .footer__nav-check {
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 4px !important;
  }
  .footer__nav-check img {
    width: 12px !important;
    height: 12px !important;
    display: inline-block !important;
    vertical-align: middle !important;
  }
}

@media (min-width: 601px) {
  .footer__nav-check {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .footer__nav a {
    margin-bottom: 8px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts > div.address-contact {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }
  .footer__contacts .address-text {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    display: inline !important;
  }
}

@media (max-width: 600px) {
  .footer__col--contacts {
    transform: translateX(-8px) !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts .address-text {
    white-space: nowrap !important;
    display: inline-block !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts {
    gap: 10px !important;
  }
  .footer__contacts > div {
    margin-bottom: 8px !important;
  }
}

@media (min-width: 601px) {
  .footer__nav-check {
    vertical-align: -2px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts > div,
  .footer__contacts a,
  .footer__contacts span,
  .footer__nav a {
    font-weight: 700 !important;
  }
  .footer__contacts > div .instagram-link,
  .footer__contacts .instagram-link {
    font-weight: 700 !important;
  }
  .footer {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts .address-text {
    font-weight: 700 !important;
  }
}

@media (max-width: 600px) {
  .footer__col--contacts .address-contact .address-text {
    font-family: 'Nunito', Arial, sans-serif !important;
    font-weight: 700 !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts > div {
    gap: 3px !important;
  }
  .footer__contacts-icon {
    margin-right: 3px !important;
  }
}

@media (max-width: 600px) {
  .footer__map-card {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 98vw !important;
    max-width: 100% !important;
    margin: 16px auto 0 auto !important;
    box-sizing: border-box !important;
    float: none !important;
    clear: both !important;
    padding: 2px !important;
    border-radius: 16px !important;
    background: #fff !important;
  }
  .footer__map-card iframe {
    border: 1.5px solid #000 !important;
    border-radius: 14px !important;
    width: 100% !important;
    height: 120px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }
}

@media (max-width: 600px) {
  .footer__map-card {
    border: none !important;
  }
  .footer__map-card iframe {
    border: 1.5px solid #000 !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 600px) {
  .footer__map-card iframe {
    box-sizing: border-box !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 600px) {
  .footer__map-card {
    background: linear-gradient(90deg, #EC748F 0%, #EC748F 10%, #FFC0CE 100%) !important;
  }
  .footer__map-card iframe {
    width: 100% !important;
    height: 100% !important;
  }
}

@media (max-width: 600px) {
  .footer__map-card {
    margin-left: -4px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts {
    margin-top: -4px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts {
    margin-top: -12px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts {
    margin-top: -18px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts > div {
    margin-top: -6px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts > div {
    margin-top: -3px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts > div {
    margin-bottom: 9px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts > div {
    margin-bottom: 12px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts > div {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 600px) {
  .mobile-footer-logo {
    display: block !important;
    position: absolute !important;
    top: 8px !important;
    left: 12px !important;
    width: 54px !important;
    height: auto !important;
    z-index: 10 !important;
  }
  .footer {
    position: relative !important;
    padding-top: 64px !important;
  }
}

@media (min-width: 601px) {
  .mobile-footer-logo {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .mobile-footer-logo {
    width: 72px !important;
  }
}

@media (max-width: 600px) {
  .mobile-footer-logo {
    top: 2px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    border: 1.5px solid #000 !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 600px) {
  .footer__map-card {
    width: 100vw !important;
    margin-left: 0 !important;
    margin-right: -8px !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts-icon {
    border: 1px solid #000 !important;
  }
}

@media (max-width: 600px) {
  .footer__contacts-icon {
    background: transparent !important;
  }
}

@media (max-width: 600px) {
  .footer__nav a {
    padding-top: 2px !important;
  }
}

@media (max-width: 600px) {
  .footer__nav a {
    margin-top: 3px !important;
  }
}

@media (max-width: 600px) {
  .footer__nav a {
    margin-top: 0 !important;
  }
  .footer__nav a:first-child {
    margin-top: 4px !important;
  }
}

@media (max-width: 600px) {
  .footer__nav a:last-child {
    margin-top: 4px !important;
  }
}

@media (max-width: 600px) {
  .footer__nav a:nth-child(2) {
    margin-top: 3px !important;
  }
}

@media (max-width: 600px) {
  .hero__container {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0 8px !important;
  }
  .hero__content {
    width: 100% !important;
    padding: 0 !important;
    align-items: flex-start !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .hero__content h1,
  .hero__subtitle,
  .hero__contacts,
  .hero__contacts > li,
  .btn.signup-btn {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 600px) {
  .hero__content h1 {
    margin-bottom: 8px !important;
  }
  .hero__subtitle {
    margin-bottom: 24px !important;
  }
  .btn.signup-btn {
    margin-top: 0 !important;
  }
}

@media (max-width: 600px) {
  .btn.signup-btn {
    font-size: 0.9rem !important;
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 12px !important;
    min-width: 42vw !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    justify-content: center !important;
  }
  .btn.signup-btn img.btn__icon {
    width: 17px !important;
    height: 17px !important;
    margin-left: 4px !important;
    vertical-align: middle !important;
    display: inline-block !important;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 12px 0 18px 0 !important;
  }
  .hero__contacts {
    font-size: 0.92rem !important;
    gap: 6px !important;
    margin-top: 10px !important;
  }
  .hero__contacts > li {
    gap: 4px !important;
    font-size: 0.92rem !important;
    min-height: 28px !important;
    padding: 0 !important;
  }
  .icon-circle {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    border-width: 1.2px !important;
    margin-right: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .icon-svg {
    width: 13px !important;
    height: 13px !important;
    display: block !important;
  }
}

@media (max-width: 600px) {
  .icon-circle {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }
  .icon-svg {
    width: 22px !important;
    height: 22px !important;
  }
}

@media (max-width: 600px) {
  .icon-circle {
    border-width: 1.2px !important;
  }
}

@media (max-width: 600px) {
  .hero__contacts > li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
}

@media (max-width: 600px) {
  .decor--toothbrush,
  .decor--toothpaste {
    display: block !important;
  }
}

@media (max-width: 600px) {
  .hero__image img {
    margin-top: -24px !important;
  }
  .decor--toothbrush {
    top: 0px !important;
    right: -18px !important;
  }
  .decor--toothpaste {
    bottom: 10px !important;
    left: -60px !important;
  }
}

@media (max-width: 600px) {
  .hero__image img {
    max-width: 60vw !important;
    width: 100% !important;
  }
  .decor--toothbrush {
    width: 32vw !important;
    max-width: 90px !important;
  }
  .decor--toothpaste {
    width: 38vw !important;
    max-width: 110px !important;
  }
}

@media (max-width: 600px) {
  .decor--toothbrush {
    width: 36px !important;
    max-width: 36px !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothbrush {
    width: 145px !important;
    max-width: 145px !important;
  }
}

@media (max-width: 600px) {
  .hero__image img:first-child {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothbrush {
    top: 95px !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothpaste {
    width: 120px !important;
    max-width: 120px !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothpaste {
    width: 200px !important;
    max-width: 200px !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothpaste {
    left: -30px !important;
    bottom: 60px !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothpaste {
    transform: rotate(-18deg) !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothpaste {
    left: 0px !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothpaste {
    bottom: 30px !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothpaste {
    bottom: -10px !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothpaste {
    bottom: 0px !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothpaste {
    bottom: 80px !important;
    left: -25px !important;
  }
}

@media (max-width: 600px) {
  .hero__image .decor--toothpaste {
    transform: rotate(-28deg) !important;
  }
}

@media (max-width: 600px) {
  .about__container {
    text-align: left !important;
    align-items: flex-start !important;
  }
  .about__content {
    align-items: flex-start !important;
  }
  .about__text {
    text-align: left !important;
  }
  .about__text h3,
  .about__text p,
  .about__verified {
    text-align: left !important;
  }
}

@media (max-width: 600px) {
  .about__container {
    margin-top: -20px !important;
    padding-top: 0 !important;
  }
  .about__text {
    margin-top: -10px !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 600px) {
  .about__text h3 {
    font-size: 1rem !important;
  }
}

@media (max-width: 600px) {
  .about__text p {
    font-size: 1rem !important;
  }
}

@media (max-width: 600px) {
  .about__video-placeholder {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
  }
  .about__video-placeholder .video-mobile {
    width: 102% !important;
    max-width: 102% !important;
    height: 102% !important;
    margin-left: -1% !important;
    margin-top: -1% !important;
    object-fit: cover !important;
    border-radius: 24px !important;
    border: 1.5px solid #000 !important;
    box-sizing: border-box !important;
    display: block !important;
  }
}

@media (max-width: 600px) {
  .about__video-placeholder {
    padding: 0 !important;
    min-height: 180px !important;
    height: auto !important;
  }
  .about__video-placeholder video {
    width: 90% !important;
    display: block;
    margin: 0 auto;
  }
  .about::after {
    display: none !important;
  }
  .about {
    background: #fff !important;
    margin-bottom: 35px !important;
    padding-bottom: 0 !important;
  }
  .doctor {
    background: #fff !important;
    margin-top: 0 !important;
    padding-top: 48px !important;
  }
  .about__container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .doctor__container h2 {
    font-size: 1.5rem !important;
    text-align: left !important;
    margin-bottom: 24px !important;
    line-height: 1.3 !important;
  }
  .doctor__card {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 12px 16px 48px 16px !important;
    margin-bottom: 24px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    min-height: 600px !important;
    height: 600px !important;
    overflow: visible !important;
  }
  .doctor__container {
    overflow: visible !important;
  }
  .doctor__photo, .doctor__photo--large {
    width: 280px !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
  .doctor__info {
    text-align: left !important;
    padding: 0 !important;
    width: 100% !important;
    margin-top: -8px !important;
  }
  .doctor__name {
    font-size: 1.2rem !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
    text-align: left !important;
  }
  .doctor__info p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
  }
  .doctor__controls-row {
    justify-content: center !important;
    gap: 16px !important;
    margin-top: 32px !important;
    display: flex !important;
    align-items: center !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .slider-arrow {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 2px solid #e91e63 !important;
    background: #fff !important;
  }
  .slider-arrow__icon {
    width: 20px !important;
    height: 20px !important;
  }
  .about__toothbrush-decor {
    display: none !important;
  }
}

.doctor__slider,
.doctor__container,
.doctor {
  overflow: visible !important;
}

@media (max-width: 600px) {
  .slider-arrow {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 2px solid #fff !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25) !important;
    padding: 0 !important;
  }
  .doctor__controls-row .slider-arrow__icon {
    width: 48px !important;
    height: 48px !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 600px) {
  .doctor__photo, .doctor__photo--large {
    width: 240px !important;
    height: 192px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
    margin-top: 32px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
}

@media (max-width: 600px) {
  .doctor__card {
    padding-top: 16px !important;
  }
  .doctor__card--blue {
    padding-top: 16px !important;
  }
  .doctor__card--blue picture {
    margin-top: -18px !important;
  }
  .doctor__card--blue .doctor__info {
    margin-top: -12px !important;
  }
  .doctor__photo, .doctor__photo--large {
    width: 100% !important;
    height: auto !important;
    max-width: 420px !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    margin: 0 auto 8px auto !important;
    display: block !important;
  }
  .services__tooth-decor {
    display: none !important;
  }
  .services__container h2,
  .services__subtitle {
    text-align: left !important;
  }
}

@media (max-width: 600px) {
  .doctor-bg {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 110%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    display: block;
  }
  .doctor-bg.active {
    opacity: 1;
  }
  .doctor-bg-female {
    background-image: url('images/about-bg.png');
  }
  .doctor-bg-male {
    background-image: url('images/about-bgb.png');
  }
  .doctor__slider {
    position: relative;
  }
  .doctor__card {
    position: relative;
    z-index: 1;
    background: #fff;
  }
  /* Force first background to be visible initially */
  .doctor-bg-female {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .services__container h2 {
    text-align: left !important;
  }
  .services__container h2 .blue::before {
    content: "\A";
    white-space: pre;
  }
  .services__subtitle {
    font-size: 1rem !important;
  }
  .services__cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  .service-card-group {
    width: 100% !important;
  }
  .service-card .service-card__topbar {
    height: 52px !important;
    padding: 0 16px 0 12px !important;
    width: calc(100% + 20px) !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
    margin-top: -22px !important;
  }
  .service-card__icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    margin-left: -20px !important;
  }
  .service-card__title {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin-left: 0 !important;
  }
  .service-card__icon img {
    width: 24px !important;
    height: 24px !important;
  }
  .service-card__title {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 600px) {
  .service-card .service-card__topbar {
    position: relative !important;
    justify-content: flex-start !important;
    padding-left: 0 !important;
    padding-right: 16px !important;
  }
  .service-card__icon {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .service-card__title {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 600px) {
  .services__card-btn-row {
    margin-top: 0 !important;
  }
  .service-card {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .service-card-group {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .services__cards {
    gap: 0 !important;
  }
  .services__cards .service-card-group:not(:last-child) {
    margin-bottom: 24px !important;
  }
  .services__card-btn-row .btn--secondary {
    font-size: 0.95rem !important;
    padding: 3px 12px 3px 12px !important;
    min-width: 0 !important;
    height: 30px !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    gap: 6px !important;
  }
  .services__card-btn-row .btn__icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    margin-left: 0 !important;
    vertical-align: middle !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 600px) {
  .services__subtitle {
    margin-bottom: 12px !important;
  }
  .services__cards .service-card-group:first-child {
    margin-top: 12px !important;
  }
  .services__card-btn-row {
    margin-top: 0 !important;
  }
  .service-card {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .service-card-group {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .services__cards {
    gap: 0 !important;
  }
  .services__cards .service-card-group:not(:last-child) {
    margin-bottom: 24px !important;
  }
  .services__card-btn-row .btn--secondary {
    font-size: 0.95rem !important;
    padding: 3px 12px 3px 12px !important;
    min-width: 0 !important;
    height: 30px !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    gap: 6px !important;
  }
  .services__card-btn-row .btn__icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    margin-left: 0 !important;
    vertical-align: middle !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 600px) {
  .service-card p {
    margin-top: 8px !important;
  }
}

@media (max-width: 600px) {
  .services__card-btn-row .btn--secondary {
    height: 28px !important;
    padding: 2px 12px 2px 12px !important;
  }
}

@media (max-width: 600px) {
  .services {
    background-color: transparent !important;
    background-image: url('images/services-bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
}

@media (max-width: 600px) {
  .services__bg-bar {
    display: block !important;
    height: 48px !important;
    min-height: 0 !important;
    max-height: 48px !important;
    top: 20% !important;
    bottom: auto !important;
  }
}

@media (max-width: 600px) {
  .services__bg-bar {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .services {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

@media (max-width: 600px) {
  .services {
    background-size: 120px auto !important;
  }
}

@media (max-width: 600px) {
  .services {
    background-image: none !important;
  }
}

@media (max-width: 600px) {
  body .services,
  body .services__container,
  body .services__cards {
    background: transparent !important;
    background-color: transparent !important;
  }
}

@media (max-width: 600px) {
  .hero {
    background-image: url('images/hero-bg-mobile.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
}

@media (max-width: 600px) {
  .services {
    position: relative !important;
    z-index: 1;
  }
  .services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('images/services-bg-mobile.png') center/120% no-repeat;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
  }
  .services > * {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 600px) {
  .services::before {
    background: url('images/services-bg-mobile.png') center/230% no-repeat;
    border-radius: 32px;
    top: 140px;
    bottom: -60px;
  }
}

@media (max-width: 600px) {
  .services__card-btn-row .btn--secondary {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    display: inline-flex !important;
    justify-content: center !important;
    position: relative !important;
    padding-right: 44px !important;
  }
  .services__card-btn-row .btn__icon {
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 600px) {
  .reviews__subtitle,
  section.reviews h2 {
    text-align: left !important;
  }
}

@media (max-width: 600px) {
  .reviews__subtitle {
    font-size: 1rem !important;
  }
}

@media (max-width: 600px) {
  .reviews__tooth-decor {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .reviews__all-btn {
    font-size: 0.95rem !important;
    padding: 6px 16px 6px 16px !important;
    min-width: 0 !important;
    max-width: 180px !important;
    height: 36px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
  }
  .reviews__all-btn .btn__icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    vertical-align: middle !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 0 !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: rotate(270deg) !important;
  }
}

@media (max-width: 600px) {
  .reviews__all-btn {
    height: 30px !important;
    padding: 2px 16px 2px 16px !important;
  }
}

@media (max-width: 600px) {
  .reviews__controls-row {
    width: 100% !important;
    left: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .reviews__controls-group {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .reviews__pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    position: absolute !important;
    top: 60px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    margin: 0 !important;
  }
  
  .reviews__controls-group .slider-arrow__icon {
    width: 48px !important;
    height: 48px !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
    margin: 0 auto !important;
  }
  
  .reviews__bg-bar {
    display: none !important;
  }
  
  .reviews {
    position: relative !important;
  }
  
  .reviews::before {
    content: '' !important;
    position: absolute !important;
    top: 250px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 120px !important;
    background: url('images/review-bg-mobile.png') center/cover no-repeat !important;
    border-radius: 12px !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }
  
  .reviews > * {
    position: relative !important;
    z-index: 1 !important;
  }
  
  .review-card__stars {
    text-align: left !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  
  .review-card__text {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  
  .reviews-modal__grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .reviews-modal .review-card {
    padding: 10px 8px !important;
    height: auto !important;
    min-height: 200px !important;
    max-height: 250px !important;
    margin: 0 auto !important;
    max-width: 370px !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
  }
  
  .reviews-modal .review-card__text {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 6 !important;
    -webkit-box-orient: vertical !important;
    line-height: 1.4 !important;
  }
  

  

  
  .reviews__arrows-row {
    position: relative !important;
    right: 0 !important;
    left: auto !important;
    bottom: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 6px !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

.video-mobile { display: none !important; }
.video-desktop { display: block !important; }

@media (max-width: 600px) {
  .video-mobile { display: block !important; }
  .video-desktop { display: none !important; }
}

@media (max-width: 600px) {
  .about__video-placeholder .video-mobile {
    width: calc(100% + 2px) !important;
    max-width: calc(100% + 2px) !important;
    height: calc(100% + 2px) !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: cover !important;
    border-radius: 24px !important;
    border: 1.5px solid #000 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 600px) {
  .about__video-placeholder {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
  }
}

@media (max-width: 600px) {
  .about__video-placeholder::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 38px;
    border-radius: 0 0 24px 24px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.36) 60%,
      rgba(255,255,255,0.7) 100%
    );
  }
}

@media (max-width: 600px) {
  .reviews-modal__subtitle {
    margin-left: 12px !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 600px) {
  .reviews-modal .review-card {
    max-width: 370px !important;
  }
}

@media (max-width: 600px) {
  .reviews-modal h2 {
    margin-left: 12px !important;
  }
}

@media (max-width: 600px) {
  .reviews-modal {
    padding-left: 12px !important;
  }
  .reviews-modal h2,
  .reviews-modal__subtitle {
    margin-left: 0 !important;
  }
}

@media (max-width: 600px) {
  .reviews-modal {
    padding-left: 0 !important;
  }
  .reviews-modal h2 {
    margin-left: 0 !important;
  }
  .reviews-modal__subtitle {
    margin-left: 16px !important;
  }
}

@media (max-width: 600px) {
  .service-cta__button {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    min-height: 48px !important;
    font-size: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 220px !important;
    margin: 0 auto 18px auto !important;
    gap: 8px !important;
  }
  .service-cta__button .btn__icon, .service-cta__button svg {
    display: inline-block !important;
    vertical-align: middle !important;
    margin-left: 8px !important;
    margin-right: 0 !important;
    position: static !important;
  }
}

@media (max-width: 600px) {
  a.service-cta__button,
  button.service-cta__button {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    min-height: 54px !important;
    height: 54px !important;
    font-size: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 160px !important;
    margin: 0 auto 18px auto !important;
    gap: 8px !important;
  }
  a.service-cta__button .btn__icon,
  button.service-cta__button .btn__icon,
  a.service-cta__button svg,
  button.service-cta__button svg {
    display: inline-block !important;
    vertical-align: middle !important;
    margin-left: 8px !important;
    margin-right: 0 !important;
    position: static !important;
  }
}

@media (max-width: 600px) {
  .service-important p {
    font-size: 1rem !important;
  }
}

@media (max-width: 600px) {
  .service-description p {
    font-size: 1rem !important;
  }
}

@media (max-width: 600px) {
  .advantage-detail {
    font-size: 1rem !important;
  }
}

@media (max-width: 600px) {
  .service-cta p {
    font-size: 1rem !important;
  }
}

@media (max-width: 600px) {
  .service-important h3 {
    font-size: 1.6rem !important;
  }
}

@media (max-width: 600px) {
  .service-important {
    padding: 16px 0 10px 0 !important;
    margin-bottom: 20px !important;
  }
  
  .service-important .container {
    padding: 0 20px !important;
  }
}

@media (max-width: 600px) {
  .service-title {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 600px) {
  .service-benefits h2 {
    font-size: 1.6rem !important;
  }
}

@media (max-width: 600px) {
  .service-cta h2 {
    font-size: 1.6rem !important;
  }
}

@media (max-width: 600px) {
  .service-benefits {
    padding: 40px 0 !important;
  }
}

@media (max-width: 600px) {
  .yehor-modal__close {
    font-size: 2.4rem !important;
    width: 56px !important;
    height: 56px !important;
    top: 8px !important;
    right: 8px !important;
  }
}

@media (max-width: 600px) {
  #contacts-nav-btn {
    color: #e91e63 !important;
  }
}

.burger-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
}
.burger-bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #444;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.77,0,0.175,1);
}
.burger-bar:nth-child(1) {
  top: 1.5px;
}
.burger-bar:nth-child(2) {
  top: 7.5px;
}
.burger-bar:nth-child(3) {
  top: 13.5px;
}
.header.nav-open .burger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header.nav-open .burger-bar:nth-child(2) {
  opacity: 0;
}
.header.nav-open .burger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 600px) {
  .service-card__icon img {
    width: 32px !important;
    height: 32px !important;
  }
  .service-card-group:nth-child(1) .service-card__icon img {
    width: 28px !important;
    height: 28px !important;
  }
  .service-card-group:nth-child(2) .service-card__icon img {
    width: 24px !important;
    height: 24px !important;
  }
  .service-card-group:nth-child(4) .service-card__icon img {
    width: 28px !important;
    height: 28px !important;
  }
  .service-card-group--wide {
    grid-column: span 1 !important;
  }
  .service-card-group--center {
    grid-column: span 1 !important;
  }
  .service-card-group:nth-child(5) .service-card__icon img {
    width: 24px !important;
    height: 24px !important;
  }
  .service-card p {
    text-align: left !important;
    margin-left: 8px !important;
  }
}

