   /* ОБЩИЕ НАСТРОЙКИ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #171717;
  background: #ffffff;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}


/* HERO / ПЕРВЫЙ ЭКРАН */

.hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  font-size: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  margin-bottom: 22px;
}

h1 {
  margin: 0;
  font-size: 66px;
  line-height: 0.95;
  font-weight: 700;
}

.gold {
  color: #c8a44d;
}

.top-gradient {
  background: linear-gradient(
    180deg,
    #111111 0%,
    #2a2a2a 45%,
    #c9a13b 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ТЕКСТ HERO */

.hero p.lead {
  max-width: 620px;
  font-size: 21px;
  color: #555;
  margin: 24px 0 0;
}


/* КНОПКИ HERO */

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.28s ease;
}

.btn-dark {
  background: linear-gradient(
    135deg,
    #111111 0%,
    #2a2a2a 45%,
    #c8a44d 100%
  );
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(200,164,77,0.28);
}

.btn-light {
  border: 1px solid rgba(212,175,55,0.5);
  background: rgba(255,255,255,0.72);
  color: #171717;
}


/* ЧИПСЫ */

.chips {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 18px;
  padding: 16px 14px;
  font-size: 14px;
  text-align: center;
  color: #171717;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: 0.28s ease;
}

.chip:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #fffaf0 0%, #e7c86f 100%);
  border-color: rgba(212,175,55,0.75);
  box-shadow: 0 14px 32px rgba(212,175,55,0.22);
  color: #111;
}


/* ПРАВЫЙ БЛОК HERO */

.hero-card {
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(255,255,255,0.82);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.09);
}

.card-inner {
  border-radius: 26px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(135deg, #1b1b1b 0%, #2c2c2c 45%, #c8a44d 100%);
}

.card-top {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
}

.card-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.card-desc {
  margin: 18px 0 0;
  font-size: 18px;
  color: rgba(255,255,255,0.84);
}

.card-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.card-item {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
}


/* ОБЩИЕ СЕКЦИИ */

section {
  padding: 56px 0;
}

.section-label {
  font-size: 16px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b48314;
  margin-bottom: 12px;
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.05;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-note {
  max-width: 470px;
  color: #666;
  font-size: 17px;
  text-align: right;
}


/* УСЛУГИ */

.services-grid,
.features-grid {
  display: grid;
  gap: 20px;
}

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

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.feature-card {
  background: #fafafa;
  border-radius: 28px;
  padding: 26px;
  box-shadow: none;
  border: 1px solid rgba(0,0,0,0.04);
}

.icon-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 24px;
}

.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card h3,
.feature-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.card p,
.feature-card p {
  margin: 12px 0 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
}
 
/* КНОПКИ УСЛУГ */

.service-button {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  border-radius: 14px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.service-button:hover {
  opacity: 0.85;
}

/* МАСТЕРА */

.masters {
  padding: 56px 0;
  background: #ffffff;
  text-align: center;
}

.masters h2 {
  font-size: 46px;
  margin-bottom: 40px;
}

.masters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;

  max-width: 1180px;
  margin: 0 auto;

  padding: 0 24px;
}

.master-card {
  background: #fafafa;

  border-radius: 28px;

  padding: 28px 22px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  transition: 0.3s;
}

.master-card img {
  width: 100%;
  height: 320px;

  object-fit: cover;

  border-radius: 22px;
}

.master-card h3 {
  margin: 20px 0 0;

  font-size: 22px;
  line-height: 1.2;
}

.master-card p {
  margin: 8px 0 0;

  color: #666;
  font-size: 16px;
}

/* ОТЗЫВЫ */

.reviews {
  background: #ffffff;
}

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

.review-card {
  background: #fafafa;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(212,175,55,0.18);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.review-text {
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.8;
}

.review-author {
  margin-top: 20px;
  font-weight: 700;
  color: #171717;
}


/* =================================
   КНОПКА ОТЗЫВА
================================= */

.review-button {
  display: block;
  width: 520px;
  margin: 40px auto 0;
  padding: 22px 30px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    #fff3cf,
    #e7c35a
  );
  color: #111;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}

.review-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.11);
}


/* =================================
   TELEGRAM
================================= */

.telegram-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 320px;
  margin: 26px auto 90px;
  padding: 18px 26px;
  border-radius: 24px;
  background: #fafafa;
  text-decoration: none;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.telegram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.telegram-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}


/* КОНТАКТЫ */

.contacts {
  background: #ffffff;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.contact-lines p {
  margin: 0 0 14px;
  font-size: 22px;
}

.booking-box {
  border-radius: 32px;
  padding: 32px;
  background: linear-gradient(135deg, #f7f0e2 0%, #edd18b 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.booking-box h3 {
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.15;
}

.booking-box p {
  color: #4f4f4f;
  font-size: 17px;
  line-height: 1.7;
  margin-top: 16px;
}


/* ПОДВАЛ */

footer {
  padding: 26px 0 40px;
  color: #777;
  font-size: 14px;
  text-align: center;
}


/* АДАПТАЦИЯ ДЛЯ ПЛАНШЕТА */

@media (max-width: 1024px) {

  .hero-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .section-note {
    text-align: left;
  }
}


/* АДАПТАЦИЯ ДЛЯ ТЕЛЕФОНА */

@media (max-width: 760px) {

  .hero {
    padding: 40px 0;
  }

  .hero-grid,
  .contacts-grid,
  .services-grid,
  .features-grid,
  .masters-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 32px;
  }

  h1 {
    font-size: 48px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
  }

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

  .hero p.lead {
    font-size: 18px;
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

   
    .container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
  }

  section {
    padding: 42px 0;
  }

  .hero-card {
    width: 100%;
    padding: 18px;
  }

  .card-inner {
    padding: 26px;
  }

  .card-item {
    font-size: 14px;
  }

  .card,
  .feature-card,
  .master-card,
  .booking-box {
    width: 100%;
  }

  .icon-box {
    height: 220px;
  }

  .master-card img {
    width: 150px;
    height: 150px;
  }

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

  .review-button {
    width: 100%;
  }

  .telegram-button {
    width: 100%;
  }

  .contact-lines p {
    font-size: 18px;
  }

  .booking-box h3 {
    font-size: 28px;
  }

  .section-note {
    text-align: left;
  }
}
 /* =========================
   СТРАНИЦА ЛАЗЕРНОЙ ЭПИЛЯЦИИ
========================= */

/* HERO ДЛЯ СТРАНИЦЫ ЛАЗЕРА */

.laser-hero {
  min-height: auto;
  border-radius: 0;
  margin: 24px 0 32px;
  padding: 48px;
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.laser-hero-content {
  max-width: 560px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.hero-back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  color: #f3d38a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.hero-back-link:hover {
  color: #ffe7ad;
  opacity: 1;
  transform: translateX(-4px);
}

.hero-label {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 12px;
  background: rgba(92, 112, 61, 0.78);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.laser-hero h1 {
  font-size: 48px;
  line-height: 1.08;
  margin: 0 0 24px;
  color: #1f1f1f;
}

.laser-hero p {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 12px;
  color: #2d2d2d;
}

.laser-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.service-page .container {
  position: relative;
}

/* БЛОК МАСТЕРА */

.laser-master-mini {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;

  width: 100%;
  max-width: 620px;
  margin: 32px auto 0;

  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
 }
.laser-master-mini span {
  color: #777;
}

.laser-master-mini h3 {
  color: #111;
}

.laser-master-mini img {
  width: 96px;
  height: 96px;
  max-width: 96px;
  max-height: 96px;
  min-width: 96px;
  min-height: 96px;

  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.laser-master-info {
  text-align: left;
}

.laser-master-info span {
  display: block;
  font-size: 16px;
  color: #8c8577;
  margin-bottom: 6px;
}

.laser-master-info h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.1;
  color: #1f1f1f;
}

.laser-master-info p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #444;
}

/* BENEFITS / ПРЕИМУЩЕСТВА */

.benefit-card {
  text-align: center;
}

.benefit-icon {
  font-size: 54px;
  margin-bottom: 22px;
}

.benefit-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #6e7f4f;
}

.benefit-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}
.laser-benefits h2 {
  text-align: center;
  margin-bottom: 28px;
}

/* ЦЕНЫ ЛАЗЕР */

.laser-prices {
  margin-top: 0;
  padding-top: 24px;
}

.laser-prices h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 28px;
  color: #1f1f1f;
}

.prices-grid { 
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 520px));
  justify-content: center;
  gap: 28px;
}

.price-card {
  background: linear-gradient(135deg, #f6eddc 0%, #ead8a4 100%);
  border-radius: 30px;
  padding: 14px 26px 18px;
  border: 1px solid rgba(120, 105, 80, 0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.price-card h3 {
  font-size: 30px;
  margin: 8px 0 22px;
  color: #6f7c4b;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 19px;
}

.price-row strong {
  font-weight: 700;
}

.price-more-link {
  display: inline-block;
  margin-top: 18px;
  color: #6f7c4b;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.price-more-link:hover {
  opacity: 0.7;
}

/* МОБИЛЬНАЯ ВЕРСИЯ */

@media (max-width: 768px) {
  .laser-hero {
    min-height: 620px;
    padding: 36px 24px;
    border-radius: 24px;
    background-position: center;
  }

  .laser-hero h1 {
    font-size: 38px;
  }

  .laser-hero p {
    font-size: 16px;
  }

  .laser-master-mini {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .laser-master-info {
    text-align: center;
  }

  .laser-master-info h3 {
    font-size: 28px;
  }

  .laser-master-info p {
    font-size: 16px;
  }

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

  .laser-prices h2 {
    font-size: 36px;
  }
}

.back-link {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 18px;

  text-decoration: none;

  font-size: 16px;
  font-weight: 600;

  color: #9c6b00;

  background: linear-gradient(
    135deg,
    #fff8e8 0%,
    #f6d98a 50%,
    #fffdf7 100%
  );

  border: 1px solid rgba(212, 175, 55, 0.35);

  box-shadow:
    0 6px 18px rgba(212, 175, 55, 0.18);

  transition: all 0.3s ease;
}

.back-link:hover {
  transform: translateY(-2px);

  background: linear-gradient(
    135deg,
    #fffdf7 0%,
    #f2cb68 50%,
    #fff8e8 100%
  );

  box-shadow:
    0 10px 24px rgba(212, 175, 55, 0.25);

  color: #6f4d00;
}

.services-title {
  max-width: 760px;
  font-size: 46px;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -1px;
}

.services-quote {
  max-width: 420px;
  font-size: 32px;
  line-height: 1.35;
  color: #2f2f2f;
  text-align: right;
  margin-top: 22px;
  font-weight: 500;
}

.price-image-section {
    padding: 24px 0 56px;
    text-align: center;
}

.price-image {
    width: 100%;
    max-width: 1100px;

    display: block;
    margin: 0 auto;

    border-radius: 28px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.10);

    transition: 0.4s ease;
}

.price-image:hover {
    transform: scale(1.01);
}

/* =========================
   ОБЩИЙ ВЕРХ СТРАНИЦ УСЛУГ

   Лазерная эпиляция
   Аппаратная косметология
   Эндосфера
   Классический массаж

   Единый стиль первого экрана:
   - центрирование контента
   - центрирование кнопок
   - центрирование блока мастера
   - одинаковая композиция
========================= */

.service-page .laser-hero {
  max-width: 1500px;
  margin: 0 auto 30px;
  padding: 20px 24px 40px;
}

.service-page .laser-hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.service-page .laser-hero-actions {
  justify-content: center;
}

.service-page .laser-master-mini {
  justify-content: center;
  margin: 32px auto 0;
}

.service-page .laser-master-info {
  text-align: left;
}

/* Адаптация для телефонов */

@media (max-width: 768px) {

  .service-page .laser-hero {
    margin: 20px auto 28px;
    padding: 36px 20px;
  }

  .service-page .laser-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .service-page .laser-master-mini {
    flex-direction: column;
    text-align: center;
  }

  .service-page .laser-master-info {
    text-align: center;
  }

}

 .top-title-banner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 24px;
    padding: 0 24px;
}

.top-title-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.soprano-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: contain;
}


/* =====================================================
   ЧИСТКА ВОЗДУХА НА СТРАНИЦАХ УСЛУГ
   Уменьшает большие отступы между преимуществами и прайсом
===================================================== */

.laser-benefits {
  padding-bottom: 32px;
}

.laser-prices {
  padding-top: 24px;
  margin-top: 0;
}

.laser-prices h2 {
  margin-top: 18px;
}

@media (max-width: 768px) {
  .laser-benefits {
    padding-bottom: 24px;
  }

  .laser-prices {
    padding-top: 18px;
  }
}

/* =====================================================
   Индивидуальный подход для мужчин
   Блок пояснения перед прайсом мужской эпиляции
   Top Laser Beauty
===================================================== */

.price-note {
    max-width: 900px;
    margin: 0 auto 25px auto;
    padding: 16px 24px;
    text-align: center;

    background: rgba(255, 248, 242, 0.75);

    border: 1px solid rgba(201, 169, 110, 0.35);

    border-radius: 14px;

    color: #6f5b4b;

    font-size: 16px;
    line-height: 1.7;

    box-shadow: 0 4px 12px rgba(0,0,0,0.05);

    backdrop-filter: blur(3px);
}

.price-note strong {
    display: block;
    margin-bottom: 6px;

    color: #b08b57;

    font-size: 18px;
    font-weight: 600;
}