/* ====== СБРОС И БАЗА ====== */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #2a2a2a;
  background: #fcfcfc;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Стоматологический паттерн на фоне */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 180px 220px at 92% 8%, rgba(139, 94, 60, 0.025) 0%, transparent 70%),
    radial-gradient(ellipse 200px 240px at 5% 92%, rgba(139, 94, 60, 0.022) 0%, transparent 70%),
    radial-gradient(ellipse 100px 160px at 48% 45%, rgba(139, 94, 60, 0.015) 0%, transparent 70%),
    radial-gradient(circle 30px at 15% 25%, rgba(180, 140, 100, 0.03) 0%, transparent 70%),
    radial-gradient(circle 25px at 78% 60%, rgba(180, 140, 100, 0.03) 0%, transparent 70%),
    radial-gradient(circle 35px at 30% 80%, rgba(180, 140, 100, 0.025) 0%, transparent 70%),
    radial-gradient(circle 28px at 65% 15%, rgba(180, 140, 100, 0.025) 0%, transparent 70%);
}

section {
  width: 100%;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.content {
  padding-top: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  /*overflow-x: hidden;*/
}

.grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

a {
  text-decoration: none;
  color: #2a2a2a;
  transition: color 0.3s;
}

a:hover {
  color: #8b5e3c;
}

/* ====== АНИМАЦИЯ ПОЯВЛЕНИЯ СЕКЦИЙ ====== */
.section-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-animate.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ====== ШАПКА (ОБЪЁМНАЯ, ПАРЯЩАЯ) ====== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.65);
  box-shadow:
    0 12px 50px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.header__logo-link {
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.header__logo-img {
  height: 50px;
  width: auto;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-main {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1;
}

.header__logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: #999;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 1px;
  display: block;
  margin-left: 3px;
}

.header__nav {
  display: flex;
  gap: 4px;
}

.nav__item {
  padding: 10px 18px;
  font-weight: 500;
  font-size: 14px;
  color: #6b5a4a;
  border-radius: 30px;
  transition: all 0.35s;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav__item:hover {
  background: rgba(139, 94, 60, 0.05);
  color: #8b5e3c;
  text-shadow: 0 1px 2px rgba(139, 94, 60, 0.08);
}

.header__phone {
  font-weight: 600;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.header__phone a {
  color: #4a4a4a;
  white-space: nowrap;
  transition: color 0.3s;
}

.header__phone a:hover {
  color: #8b5e3c;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #3a3a3a;
  transition: 0.3s;
}

.burger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #8b5e3c;
}

.burger--active span:nth-child(2) {
  opacity: 0;
}

.burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: #8b5e3c;
}

/* ====== MAIN INFO ====== */
.main_info {
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.main_info__banner {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.main_info__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.68);
}

.main_info__overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.05) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 100px 80px 60px;
  position: relative;
  z-index: 1;
}

.main_info__text {
  max-width: 620px;
  color: #fff;
  text-align: left;
}

.main_info__text h1 {
  font-size: 54px;
  font-weight: 700;
  margin: 0 0 22px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.main_info__brand {
  opacity: 0.75;
  font-weight: 700;
}

.main_info__sub-brand {
	font-size:14px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: -16px 0 20px 0;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.main_info__text p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  font-weight: 300;
}

.main_info__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.feature__item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main_info__btn {
  display: inline-block;
  padding: 18px 48px;
  background: #FFDDC1;
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 8px 28px rgba(255, 221, 193, 0.35);
  letter-spacing: 0.6px;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.main_info__btn:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(255, 221, 193, 0.50);
  color: #000;
}

/* ====== АКЦИИ ====== */
.promotion {
  background: transparent;
  padding: 80px 20px;
}

.promotion__container {
  max-width: 1100px;
  margin: 0 auto;
}

.promotion__header {
  text-align: center;
  margin-bottom: 50px;
}

.promo_title {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.promo_subtitle {
  font-size: 16px;
  color: #999;
  font-weight: 300;
  margin: 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.promo-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(139, 94, 60, 0.15);
}

.promo-card--highlight {
  border: 1px solid rgba(139, 94, 60, 0.20);
  grid-column: span 2;
}

.promo-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #8b5e3c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.promo-card h3.promo-card__title {
  font-size: 21px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  letter-spacing: -0.2px;
}

.promo-card__text {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

.promo-card__note {
  font-size: 13px;
  color: #8b5e3c;
  font-weight: 500;
  margin: 0;
}

.promo-card__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.promo-card__list span {
  background: rgba(139, 94, 60, 0.06);
  color: #8b5e3c;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.promo-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.promo-card__price {
  font-size: 28px;
  font-weight: 800;
  color: #8b5e3c;
  font-family: 'Playfair Display', serif;
}

.promo-card__old-price {
  font-size: 15px;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 400;
}

.promo-card__btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 18px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.promo-card__btn:hover {
  border-color: #8b5e3c;
  color: #8b5e3c;
  background: rgba(139, 94, 60, 0.03);
}

/* ====== УСЛУГИ ====== */
.services {
  background: #f5f2ed;
  padding: 80px 20px;
}

.services__container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
  align-items: center;
}

.services__image-block {
  flex: 0 0 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__image {
  width: 85%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
  transition: all 0.5s;
}

.services__image:hover {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
  transform: scale(1.03);
}

.services__right {
  flex: 1;
}

.services__header {
  margin-bottom: 30px;
}

.services__title {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.services__subtitle {
  font-size: 16px;
  color: #999;
  font-weight: 300;
  margin: 0;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
}

.service-card {
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.4s;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 94, 60, 0.14), transparent);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
  border-color: rgba(139, 94, 60, 0.15);
}

.service-card__title {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.service-card:hover .service-card__title {
  color: #8b5e3c;
}

.service-card__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
  font-size: 13px;
  color: #777;
  font-weight: 300;
}

.service-card.open .service-card__content {
  max-height: 280px;
  margin-top: 12px;
}

.service-card__content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-card__content li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: padding 0.3s, color 0.3s;
}

.service-card__content li:hover {
  padding-left: 8px;
  color: #8b5e3c;
}

/* ====== ЛИЦЕНЗИИ, ДОКУМЕНТЫ ====== */
#license,
#docs {
  background: transparent;
  text-align: center;
  padding: 80px 20px;
}

#license h2,
#docs h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 36px;
  letter-spacing: -0.5px;
}

#license .grid a,
#docs .grid a {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s;
}

#license .grid a:hover,
#docs .grid a:hover {
  transform: scale(1.04);
}

.docs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  width: 160px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  font-size: 13px;
  color: #777;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.docs__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  color: #8b5e3c;
  border-color: rgba(139, 94, 60, 0.15);
}

.docs__item img {
  width: 42px;
  height: 42px;
  opacity: 0.7;
}

.docs__item:hover img {
  opacity: 1;
}

/* ====== ФУТЕР ====== */
.footer {
  background: #0c0c0c;
  color: #c0c0c0;
  padding: 70px 20px 50px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.015) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.01) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(139, 94, 60, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.footer__left {
  flex: 1;
}

.contacts__info__ul {
  list-style: none;
  font-size: 14px;
  color: #a0a0a0;
  padding: 0;
  margin: 0 0 24px;
  line-height: 2.2;
}

.contacts__info__ul b {
  color: #d0d0d0;
  font-weight: 500;
}

.contacts__info__ul a {
  color: #c0c0c0;
  transition: color 0.3s;
  border-bottom: 1px solid transparent;
}

.contacts__info__ul a:hover {
  color: #fff;
  border-bottom-color: rgba(139, 94, 60, 0.4);
}

.light_black {
  color: #777;
}

.copyright {
  font-size: 13px;
  color: #555;
  margin: 0;
}

.footer__docs {
	margin-top: 16px;
	font-size: 13px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.footer__docs a {
	color: #888;
	transition: color 0.3s;
}

.footer__docs a:hover {
	color: #fff;
}

.footer__docs-sep {
	color: #555;
}

.footer__right {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__brand {
  text-align: center;
  margin-bottom: 16px;
}

.footer__brand-name {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer__brand-sub {
  font-size: 10px;
  font-weight: 400;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer__map-title {
  font-size: 14px;
  font-weight: 600;
  color: #d0d0d0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer__map-wrapper {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  filter: grayscale(0.4) contrast(1.1) brightness(0.9);
}

/* ====== МОДАЛКА ====== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.modal--open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 24px;
  padding: 44px 36px;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.modal__close:hover {
  color: #1a1a1a;
}

.modal__title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px;
}

.modal__subtitle {
  font-size: 14px;
  color: #777;
  margin: 0 0 28px;
  font-weight: 300;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__input {
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: #fafafa;
}

.modal__input:focus {
  border-color: #8b5e3c;
}

.modal__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #888;
  text-align: left;
  cursor: pointer;
}

.modal__agree input {
  margin-top: 2px;
  accent-color: #8b5e3c;
}

.modal__agree a {
  color: #8b5e3c;
}

.modal__submit {
  padding: 20px;
  background: #FFDDC1;
  color: #1a1a1a;
  border: none;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 28px rgba(255, 221, 193, 0.40);
  transition: all 0.3s;
}

.modal__submit:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255, 221, 193, 0.55);
}

.modal__success {
  padding: 40px 20px;
}

.modal__success-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.modal__success h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.modal__success p {
  font-size: 14px;
  color: #777;
}

.modal__error {
	background: #fff0f0;
	color: #c0392b;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	border: 1px solid #f5c6cb;
	animation: fadeIn 0.3s ease;
}

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

/* ====== АДАПТИВ ====== */
@media (max-width: 1200px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-card--highlight {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .header__logo-img {
    height: 40px;
  }

  .header__logo-main {
    font-size: 22px;
  }

  .nav__item {
    font-size: 13px;
    padding: 8px 14px;
  }

  .main_info__overlay {
    padding: 100px 40px 60px;
  }

  .main_info__text h1 {
    font-size: 40px;
  }

  .main_info__text p {
    font-size: 15px;
  }

  .main_info__btn {
    padding: 16px 40px;
    font-size: 16px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card--highlight {
    grid-column: span 1;
  }

  .services__container {
    flex-direction: column;
  }

  .services__image-block {
    max-width: 450px;
    margin: 0 auto 30px;
  }

  .services__image {
    width: 75%;
  }

  .services__header {
    text-align: center;
  }

  .services__list {
    max-width: 100%;
  }

  .footer__inner {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .footer__right {
    width: 100%;
  }

  .footer__map-wrapper {
    height: 250px;
  }
  
  .footer__docs {
      flex-direction: column;
  }
  
  .footer__docs-sep {
      display: none;
  }
}

@media (max-width: 500px) {
  .header {
    height: auto;
    padding: 10px 15px;
    flex-wrap: wrap;
  }

  .header__logo-img {
    height: 32px;
  }

  .header__logo-main {
    font-size: 18px;
  }

  .header__phone {
    font-size: 11px;
  }

  .burger {
    display: flex;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    border-radius: 0 0 20px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .header__nav.nav--open {
    display: flex;
  }

  .header__nav .nav__item {
    padding: 14px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .main_info__overlay {
    padding: 90px 24px 50px;
  }

  .main_info__text h1 {
    font-size: 32px;
  }

  .main_info__btn {
    padding: 14px 32px;
    font-size: 14px;
  }

  .promo-card {
    padding: 20px;
  }

  .footer__map-wrapper {
    height: 220px;
  }

  .modal__window {
    padding: 30px 20px;
    width: 92%;
  }
}

/* ====== ПЛАВАЮЩАЯ КНОПКА ЗВОНКА ====== */
.float-call-btn {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 62px;
	height: 62px;
	background: #FFDDC1;
	color: #1a1a1a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
	z-index: 999;
	transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
	text-decoration: none;
	animation: pulse 2.2s infinite;
	-webkit-tap-highlight-color: transparent;
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15); }
	50% { box-shadow: 0 8px 40px rgba(255, 221, 193, 0.55); }
}

.float-call-btn:hover {
	transform: scale(1.12);
	background: #fff;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.20);
}

.float-call-btn:active {
	transform: scale(1.05);
}

/* На десктопе не показываем */
@media (min-width: 901px) {
	.float-call-btn {
		display: none;
	}
}