* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f3f3f5;
  color: #0d1b3d;
  line-height: 1.4;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1400px, calc(100% - 30px));
  margin: 0 auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #f6000d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(246, 0, 13, 0.22);
}

.logo-icon.small {
  width: 54px;
  height: 54px;
  font-size: 26px;
}

.logo-title {
  font-size: 24px;
  font-weight: 800;
  color: #091733;
}

.logo-title span {
  color: #f6000d;
}

.logo-city {
  font-size: 15px;
  color: #667089;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  color: #31415f;
  font-weight: 600;
  font-size: 14px;
}

.nav a:hover {
  color: #f6000d;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  background: #f6000d;
  color: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
}

.lang-switch {
  display: flex;
  align-items: center;
  background: #ececec;
  border-radius: 20px;
  padding: 6px;
  gap: 6px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #31415f;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
}

.lang-btn.active {
  background: #f6000d;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* HERO */
.hero {
  padding: 46px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 20px;
  color: #0b1637;
  max-width: 700px;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.45;
  color: #4b5a76;
  max-width: 760px;
  margin-bottom: 22px;
}

.promo-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff1035 0%, #ff6a00 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 72, 0, 0.16);
  max-width: 650px;
  margin-bottom: 22px;
}

.promo-icon {
  font-size: 34px;
  line-height: 1;
}

.promo-content h3 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 8px;
}

.promo-content p {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.95;
}

.hero-phone {
  font-size: clamp(26px, 3vw, 36px);
  color: #760202;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-benefits li {
  font-size: 18px;
  color: #2f4162;
  font-weight: 700;
  position: relative;
  padding-left: 28px;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6e4bd7;
  font-weight: 900;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 16px 26px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-red {
  background: #f6000d;
}

.btn-green {
  background: #07b63f;
}

.btn-dark {
  background: #0b1637;
}

.hero-right {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
}

.hero-machine {
  width: min(100%, 500px);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 36px rgba(25, 38, 77, 0.16));
  animation: floatMachine 4s ease-in-out infinite;
}

@keyframes floatMachine {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.float-badge {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.14);
  z-index: 3;
  animation: floatBadge 3.2s ease-in-out infinite;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.badge-red { background: #ff1e2f; }
.badge-orange { background: #ff7a00; }
.badge-blue { background: #2d7dff; }

.top-left { top: 0px; left: 60px; }
.top-right { top: 90px; right: 10px; }
.bottom-left { bottom: 260px; left: 40px; }
.bottom-right { bottom: 180px; right: 40px; }

/* SECTION */
.section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 54px;
}

.section-head h2 {
  font-size: clamp(30px, 2.5vw, 40px);
  line-height: 1.1;
  font-weight: 900;
  color: #0b1637;
  margin-bottom: 12px;
}

.section-head p {
  font-size: 15px;
  color: #50607e;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #f7f7f8;
  border: 1px solid #dfdfe3;
  border-radius: 26px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  padding: 40px 24px 34px;
  text-align: center;
}

.service-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 28px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 42px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.service-icon.blue { background: linear-gradient(135deg, #2f7cff, #1f5fff); }
.service-icon.cyan { background: linear-gradient(135deg, #16c5ef, #0a98d0); }
.service-icon.purple { background: linear-gradient(135deg, #ae41ff, #7b2eff); }
.service-icon.red { background: linear-gradient(135deg, #ff1b2f, #ff0038); }
.service-icon.orange { background: linear-gradient(135deg, #ff8a00, #ff5c00); }
.service-icon.pink { background: linear-gradient(135deg, #ff82bc, #ff5ea0); }

.service-card h3 {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 900;
  color: #0b1637;
}

.small-btn {
  display: inline-block;
  background: #f6000d;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 16px;
}

/* PROBLEMS */
.problem-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 34px;
}

.problem-tab {
  min-width: 260px;
  padding: 18px 28px;
  border: 2px solid #d4d7de;
  background: transparent;
  border-radius: 22px;
  font-size: 18px;
  font-weight: 800;
  color: #3f4c67;
  cursor: pointer;
}

.problem-tab.active {
  background: #f6000d;
  color: #fff;
  border-color: #f6000d;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 42px;
}

.problem-item {
  padding: 14px 16px;
  border: 2px solid #d5d7de;
  border-radius: 14px;
  background: transparent;
  font-size: 14px;
  text-align: center;
  color: #3d4d6b;
  font-weight: 600;
}

.problem-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

/* REVIEWS */
.rating-line {
  font-size: 34px;
  margin-bottom: 26px;
  color: #0b1637;
}

.rating-line strong {
  font-size: 42px;
}

.rating-line span {
  font-size: 22px;
  color: #54627d;
}

.review-btn {
  display: inline-block;
  background: #f6000d;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  padding: 18px 32px;
  border-radius: 18px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #f7f7f8;
  border: 1px solid #dfdfe3;
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  padding: 14px;
  min-height: 240px;
}

.review-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 50px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a4d, #ff9b35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  flex-shrink: 0;
}

.review-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.stars {
  color: #ffbf00;
  font-size: 20px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 14px;
  line-height: 1.4;
  color: #3f4d68;
}

/* CTA */
.cta-box {
  background: linear-gradient(135deg, #f7000d 0%, #ff5a00 100%);
  border-radius: 38px;
  padding: 82px 30px;
  text-align: center;
  color: #fff;
  box-shadow: 0 22px 44px rgba(255, 72, 0, 0.18);
}

.cta-box h2 {
  font-size: clamp(44px, 5vw, 74px);
  line-height: 1.06;
  margin-bottom: 20px;
  font-weight: 900;
}

.cta-box p {
  font-size: 24px;
  margin-bottom: 36px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #f6000d;
  padding: 24px 42px;
  border-radius: 24px;
  font-size: 24px;
  font-weight: 900;
}

/* CONTACTS */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: clamp(40px, 5vw, 82px);
  line-height: 1.04;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-form-wrap > p {
  font-size: 22px;
  color: #4f5f7b;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form label {
  font-size: 18px;
  font-weight: 800;
  color: #233456;
}

.contact-form input,
.contact-form textarea {
  border: 2px solid #d7d9df;
  border-radius: 22px;
  background: transparent;
  padding: 20px 22px;
  font-size: 18px;
  color: #0b1637;
  outline: none;
}

.submit-btn {
  margin-top: 10px;
  border: 0;
  background: #f6000d;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  padding: 24px;
  border-radius: 22px;
  cursor: pointer;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-card {
  background: #f7f7f8;
  border: 1px solid #dfdfe3;
  border-radius: 26px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  padding: 18px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  flex-shrink: 0;
}

.contact-icon.pink { background: #f6dada; }
.contact-icon.green { background: #d7f1dc; }
.contact-icon.blue-light { background: #dbe8fa; }

.contact-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #0b1637;
}

.contact-big {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}

.red-text { color: #f6000d; }
.green-text { color: #03b13d; }
.dark-text { color: #243858; }

.contact-card p {
  font-size: 18px;
  color: #55627c;
}

/* FOOTER */
.footer {
  background: #06122d;
  color: #fff;
  margin-top: 40px;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-text {
  margin-top: 24px;
  max-width: 400px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links li,
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 24px 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

/* FLOATING WHATSAPP */
.whatsapp-fixed {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  background: #08c84c;
  color: #fff;
  padding: 20px 28px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(8, 200, 76, 0.28);
}

/* MOBILE */
@media (max-width: 1200px) {
  .nav {
    gap: 20px;
  }

  .nav a {
    font-size: 16px;
  }

  .header-phone {
    font-size: 16px;
    padding: 14px 20px;
  }

  .hero-inner,
  .contacts-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .problem-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-right {
    min-height: 560px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 0px;
  }

  .hero-left h1 {
    font-size: 44px;
  }

  .hero-subtitle,
  .hero-benefits li,
  .section-head p,
  .review-card p,
  .contact-form-wrap > p {
    font-size: 18px;
  }

  .hero-phone {
    font-size: 38px;
  }

  .promo-content h3 {
    font-size: 18px;
  }

  .btn {
    min-height: 64px;
    font-size: 18px;
    width: 100%;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .problem-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-fixed {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 100%);
  }

 .logo-title {
  font-size: 18px;
  font-weight: 700;
}

  .logo-city {
    font-size: 11px;
  }

  .logo-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
    border-radius: 14px;
  }

  .header-phone {
    width: 100%;
    text-align: center;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
  }

  .hero-left h1,
  .section-head h2,
  .contact-form-wrap h2,
  .cta-box h2 {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .promo-card {
    padding: 20px;
    border-radius: 22px;
  }

  .promo-icon {
    font-size: 30px;
  }

  .promo-content h3 {
    font-size: 16px;
  }

  .promo-content p {
    font-size: 14px;
  }

  .hero-phone {
    font-size: 28px;
  }

  .hero-benefits li {
    font-size: 16px;
    padding-left: 24px;
  }

  .hero-right {
    min-height: 370px;
  }

  .float-badge {
    width: 62px;
    height: 62px;
    font-size: 24px;
  }

  .top-left { top: 30px; left: 10px; }
  .top-right { top: 70px; right: 0; }
  .bottom-left { bottom: 70px; left: 5px; }
  .bottom-right { bottom: 0; right: 20px; }

  .service-card,
  .review-card,
  .contact-card {
    padding: 22px;
  }

  .service-card h3,
  .review-card h3,
  .contact-card h3 {
    font-size: 20px;
  }

  .small-btn,
  .review-btn,
  .cta-btn {
    font-size: 16px;
  }

  .rating-line {
    font-size: 24px;
  }

  .rating-line strong {
    font-size: 30px;
  }

  .contact-big {
    font-size: 24px;
    word-break: break-word;
  }

  .submit-btn {
    font-size: 18px;
  }
}
.hero {
  padding-top: 32px;
}

.hero-inner {
  align-items: flex-start;
}



.hero-left h1 {
  margin-top: 10px 
}
.hero-left h1 {
  font-size: clamp(28px, 6vw, 48px);
}

.services-title {
  font-size: 40px;
  line-height: 1.1; 
  margin-bottom: 10px
}
.service-icon {
  width: 50px;
  height: 50px
}

.service-icon svg,
.service-icon img {
  width: 24px !important;
  height: 24px !important;
}

.service-card {
  padding: 22px
}
.problem-tabs button,
.problem-tabs a,
.problem-tabs div {
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 18px 
}

.problem-tab.dish {
  border-color: #2f6bff;
  color: #2f6bff;
}

.problem-tab.dryer {
  border-color: #00bcd4;
  color: #00bcd4;
}

.problem-tab.cook {
  border-color: #ff7a00;
  color: #ff7a00;
}

.problem-tab.oven {
  border-color: #ff2d2d;
  color: #ff2d2d;
}

.problem-tab.washing {
  border-color: #16c35b;
  color: #16c35b;
}

.problem-tab.active.washing {
  background: #16c35b;
  color: #fff;
  border-color: #16c35b;
}

/* СТИРАЛКА — зелёная */
.problem-tab.active.washing {
  background: #16c35b;
  color: #fff;
  border-color: #16c35b;
}

/* ПОСУДОМОЙКА — синий */
.problem-tab.active.dish {
  background: #2f6bff;
  color: #fff;
  border-color: #2f6bff;
}

/* СУШИЛКА — голубой */
.problem-tab.active.dryer {
  background: #00bcd4;
  color: #fff;
  border-color: #00bcd4;
}

/* ВАРОЧКА — оранжевый */
.problem-tab.active.cook {
  background: #ff7a00;
  color: #fff;
  border-color: #ff7a00;
}

/* ДУХОВКА — красный */
.problem-tab.active.oven {
  background: #ff2d2d;
  color: #fff;
  border-color: #ff2d2d;
}

.review-avatar {
  width: 44px;
  height: 44px 
}

.review-card {
  padding: 18px 
}

/* Заголовок "Связаться с нами" */
.contact h2,
.contacts h2,
.section-head h2 {
  font-size: 36px;
  line-height: 1.2;
}

/* Подзаголовок */
.contact p,
.contacts p {
  font-size: 15px;
}

/* Подписи (Ваше имя, номер и т.д.) */
.contact label,
.contacts label {
  font-size: 14px;
}

/* Поля ввода */
.contact input,
.contact textarea,
.contacts input,
.contacts textarea {
  font-size: 15px;
  padding: 12px 14px;
}

/* Большое поле (описание проблемы) */
.contact textarea,
.contacts textarea {
  min-height: 120px;
}

/* Кнопка */
.contact button,
.contacts button {
  font-size: 16px;
  padding: 14px;
}

/* Карточки контактов */
.contact-card {
  padding: 18px; /* было больше */
  border-radius: 16px;
}

/* Иконки слева */
.contact-card .icon {
  width: 48px;
  height: 48px;
}

/* Заголовок (WhatsApp / Адрес) */
.contact-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* Основной текст (номер / адрес) */
.contact-card strong {
  font-size: 18px;
}

/* Мелкий текст (подпись) */
.contact-card p {
  font-size: 14px;
  margin-top: 4px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* сам логотип */
.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* текст */
.logo-title {
  font-weight: 800;
  font-size: 18px;
  color: #000102;
}

.logo-title span {
  color: rgb(255, 0, 0);
}

.logo-city {
  font-size: 12px;
  color: #7a859f;
}

.service-card {
  position: relative;
  z-index: 5;
}

.small-btn {
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.price-modal.active {
  display: flex;
}

.price-modal-content {
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.price-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 12px;
  background: #f3f4f7;
  color: #0b1637;
  font-size: 18px;
  cursor: pointer;
}

.price-modal-title {
  font-size: 28px;
  font-weight: 800;
  color: #0b1637;
  margin-bottom: 20px;
}

.price-modal-head,
.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.price-modal-head {
  padding: 12px 14px;
  background: #f5f7fb;
  border-radius: 14px;
  font-weight: 700;
  color: #33415f;
  margin-bottom: 10px;
}

.price-row {
  padding: 14px;
  border-bottom: 1px solid #eceff5;
  color: #0b1637;
}

.price-service {
  font-weight: 600;
}

.price-cost {
  color: #f6000d;
  font-weight: 800;
}

.price-time {
  color: #4b5a76;
  font-weight: 600;
}

.price-extra {
  margin-top: 18px;
  padding: 16px 18px;
  background: #f8fafc;
  border-radius: 16px;
  color: #33415f;
  line-height: 1.5;
}

.price-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.price-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 20px;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.price-action-btn.red {
  background: #f6000d;
}

.price-action-btn.green {
  background: #08c84c;
}

.advantages {
  padding: 80px 0;
  background: #f7f9fc;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: #0b1637;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: #5c6c8a;
  margin-bottom: 50px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.adv-card:hover {
  transform: translateY(-6px);
}

.adv-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #ff2d2d, #ff6a00);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}

.adv-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0b1637;
}

.adv-card p {
  font-size: 15px;
  color: #5c6c8a;
}

.price-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 40, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.price-modal.active {
  display: flex;
}

.price-modal-content {
  width: 100%;
  max-width: 950px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.price-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 12px;
  background: #f3f4f7;
  color: #0b1637;
  font-size: 18px;
  cursor: pointer;
}

.price-modal-title {
  font-size: 28px;
  font-weight: 800;
  color: #0b1637;
  margin-bottom: 18px;
  padding-right: 40px;
}

.price-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.price-tab {
  border: 2px solid #d9dfeb;
  background: #fff;
  color: #33415f;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.price-tab:hover {
  border-color: #f6000d;
  color: #f6000d;
}

.price-tab.active {
  background: #f6000d;
  color: #fff;
  border-color: #f6000d;
}

.price-modal-head,
.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.price-modal-head {
  padding: 12px 14px;
  background: #f5f7fb;
  border-radius: 14px;
  font-weight: 700;
  color: #33415f;
  margin-bottom: 10px;
}

.price-row {
  padding: 14px;
  border-bottom: 1px solid #eceff5;
  color: #0b1637;
}

.price-service {
  font-weight: 600;
}

.price-cost {
  color: #f6000d;
  font-weight: 800;
}

.price-time {
  color: #4b5a76;
  font-weight: 600;
}

.price-extra {
  margin-top: 18px;
  padding: 16px 18px;
  background: #f8fafc;
  border-radius: 16px;
  color: #33415f;
  line-height: 1.5;
}

.price-extra strong {
  color: #0b1637;
}

.price-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.price-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 20px;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.price-action-btn.red {
  background: #f6000d;
}

.price-action-btn.green {
  background: #08c84c;
}

@media (max-width: 768px) {
  .price-modal-content {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .price-modal-title {
    font-size: 22px;
  }

  .price-switcher {
    gap: 8px;
  }

  .price-tab {
    font-size: 13px;
    padding: 9px 12px;
  }

  .price-modal-head,
  .price-row {
    grid-template-columns: 1.3fr 1fr;
    gap: 10px;
  }

  .price-modal-head div:last-child,
  .price-row .price-time {
    grid-column: 1 / -1;
  }

  .price-modal-head div:last-child {
    font-size: 0;
    height: 0;
  }

  .price-row .price-time {
    font-size: 13px;
    color: #6b7893;
    margin-top: -4px;
  }

  .price-action-btn {
    width: 100%;
  }
}
/* Компактная форма слева */
.contact-form.compact-form {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #eceef3;
}

.contact-form.compact-form label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0b1637;
  margin-bottom: 8px;
}

.contact-form.compact-form input,
.contact-form.compact-form textarea {
  width: 100%;
  border: 2px solid #dfe3ea;
  border-radius: 16px;
  background: #fff;
  padding: 16px 18px;
  font-size: 15px;
  color: #0b1637;
  outline: none;
  margin-bottom: 20px;
}

.contact-form.compact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form.compact-form input::placeholder,
.contact-form.compact-form textarea::placeholder {
  color: #8a93a6;
}

.contact-form.compact-form input:focus,
.contact-form.compact-form textarea:focus {
  border-color: #f6000d;
}

.contact-form.compact-form .whatsapp-submit {
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 16px;
  background: #ff0b17;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 6px;
}

.contact-form.compact-form .whatsapp-submit:hover {
  background: #e6000c;
}

@media (max-width: 768px) {
  .header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: auto;
    padding: 10px 0;
    gap: 10px;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-city {
    font-size: 11px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav a {
    font-size: 13px;
  }

  .header-phone {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 18px 0 30px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .hero-left h1 {
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .promo-card {
    padding: 16px;
    gap: 12px;
    border-radius: 18px;
    margin-bottom: 16px;
  }

  .promo-icon {
    font-size: 24px;
  }

  .promo-content h3 {
    font-size: 14px;
    line-height: 1.3;
  }

  .promo-content p {
    font-size: 12px;
  }

  .hero-phone {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .hero-benefits {
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero-benefits li {
    font-size: 14px;
    padding-left: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    font-size: 15px;
    border-radius: 16px;
    padding: 12px 16px;
  }

  .hero-right {
    min-height: auto;
    padding-top: 0;
    order: 2;
  }

  .hero-machine {
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .float-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2,
  .services-title,
  .section-title {
    font-size: 28px;
    line-height: 1.1;
  }

  .section-head p,
  .section-subtitle {
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 18px;
    border-radius: 18px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
    margin-bottom: 16px;
  }

  .service-card h3 {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .small-btn {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-wrap {
    align-items: stretch;
  }

  .contact-form-wrap h2 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .contact-form-wrap > p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .contact-form.compact-form {
    max-width: 100%;
    width: 100%;
    padding: 18px;
    border-radius: 18px;
  }

  .contact-form.compact-form label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .contact-form.compact-form input,
  .contact-form.compact-form textarea {
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .contact-form.compact-form textarea {
    min-height: 110px;
  }

  .contact-form.compact-form .whatsapp-submit {
    min-height: 50px;
    font-size: 15px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .contact-cards {
    gap: 14px;
  }

  .contact-card {
    padding: 14px;
    gap: 12px;
    border-radius: 18px;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    border-radius: 14px;
  }

  .contact-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .contact-big {
    font-size: 20px;
    margin-bottom: 6px;
    word-break: break-word;
  }

  .contact-card p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .advantages-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .adv-card,
  .review-card {
    padding: 16px;
    border-radius: 18px;
  }

  .adv-card h3,
  .review-card h3 {
    font-size: 16px;
  }

  .adv-card p,
  .review-card p {
    font-size: 14px;
  }

  .rating-line {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .rating-line strong {
    font-size: 26px;
  }

  .rating-line span {
    font-size: 15px;
  }

  .review-btn {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 14px 18px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .price-modal {
    padding: 10px;
  }

  .price-modal-content {
    padding: 16px 12px;
    border-radius: 16px;
    max-height: 92vh;
  }

  .price-modal-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .price-tab {
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 10px 12px;
  }

  .price-row {
    padding: 12px 8px;
  }

  .price-service,
  .price-cost,
  .price-time {
    font-size: 13px;
  }

  .price-action-btn,
  .price-modal-actions .btn {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .whatsapp-fixed {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 16px;
  }
}
/* Компактный телефон в шапке */
.header-phone.compact {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ff0b17;
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* Иконка */
.header-phone.compact .phone-icon {
  font-size: 14px;
}

/* Мобильная версия */
@media (max-width: 768px) {

  .header-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .header-phone.compact {
    width: auto;
    padding: 8px 12px;
    font-size: 13px;
  }

  .phone-text {
    font-size: 13px;
  }

  /* УБИРАЕМ ОГРОМНУЮ КНОПКУ */
  .header-phone {
    width: auto !important;
    font-size: 13px !important;
    padding: 8px 12px !important;
    border-radius: 12px !important;
  }
}
@media (max-width: 768px) {
  .header-phone {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .lang-switch {
    width: auto !important;
    padding: 3px;
    gap: 3px;
    border-radius: 10px;
  }

  .lang-btn {
    width: 44px;
    min-width: 44px;
    padding: 7px 0 !important;
    font-size: 11px !important;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .header-phone {
    display: none;
  }
}
@media (max-width: 768px) {

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

}
@media (max-width: 768px) {

  .logo-img {
    width: 34px;
    height: 34px;
  }

  .logo-title {
    font-size: 14px;
  }

  .logo-city {
    font-size: 10px;
  }

}
@media (max-width: 768px) {

  .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .lang-switch {
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px;
    border-radius: 8px;
    background: #ececec;
  }

  .lang-btn {
    width: 32px;
    min-width: 32px;
    padding: 4px 0;
    font-size: 10px;
    border-radius: 6px;
  }

}
/* ===== MOBILE HEADER NEW ===== */
@media (max-width: 768px) {
  .header {
    background: #fff;
    box-shadow: none;
    border-bottom: 1px solid #e7eaf0;
  }

  .header-inner {
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo actions"
      "nav nav";
    align-items: center;
    gap: 8px 10px;
    min-height: auto;
    padding: 8px 0 6px;
  }

  /* ЛЕВЫЙ БЛОК: лого + текст в одну линию */
  .logo {
    grid-area: logo;
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
    min-width: 0;
  }

  .logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex-wrap: nowrap;
  }

  .logo-title {
    font-size: 12px !important;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
  }

  .logo-city {
    font-size: 10px !important;
    color: #7a859f;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    padding-left: 8px;
  }

  .logo-city::before {
    content: "|";
    position: absolute;
    left: 0;
    top: 0;
    color: #b9c0ce;
  }

  /* ПРАВЫЙ БЛОК: только язык */
  .header-actions {
    grid-area: actions;
    width: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  /* Номер скрываем только на мобилке */
  .header-phone,
  .header-phone.compact {
    display: none !important;
  }

  /* Язык компактный */
  .lang-switch {
    width: auto !important;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 2px 4px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e1e5ee;
  }

  .lang-btn {
    width: auto;
    min-width: auto;
    height: auto;
    padding: 0 7px !important;
    background: transparent !important;
    font-size: 9px !important;
    font-weight: 700;
    color: #4a5674;
    border-radius: 0;
    box-shadow: none !important;
    line-height: 1.1;
  }

  .lang-btn + .lang-btn {
    position: relative;
    margin-left: 8px;
    padding-left: 10px !important;
  }

  .lang-btn + .lang-btn::before {
    content: "|";
    position: absolute;
    left: 0;
    top: 0;
    color: #b9c0ce;
  }

  .lang-btn.active {
    color: #ff0b17 !important;
  }

  /* МЕНЮ ВТОРОЙ СТРОКОЙ */
  .nav {
    grid-area: nav;
    order: 0;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin: 0 !important;
    padding: 6px 0 0 !important;
    border-top: 1px solid #eef1f6;
  }

  .nav a {
    flex: 1 1 auto;
    text-align: center;
    font-size: 11px !important;
    font-weight: 700;
    color: #1f2f55;
    white-space: nowrap;
    padding: 3px 2px;
  }
}
@media (max-width: 768px) {

  /* убираем лишний воздух сверху */
  .nav {
    margin-top: 0 !important;
    padding-top: 2px !important;
  }

  /* поднимаем меню ближе к шапке */
  .nav {
    position: relative;
    top: -4px;
  }

}
@media (max-width: 768px) {

  /* уменьшаем общую высоту шапки */
  .header-inner {
    padding: 6px 0 4px !important;
    gap: 6px !important;
  }

  /* логотип ещё компактнее */
  .logo-img {
    width: 32px;
    height: 32px;
  }

  .logo-title {
    font-size: 11px !important;
    line-height: 1;
  }

  .logo-city {
    font-size: 9px !important;
  }

  /* уменьшаем расстояние до меню */
  .nav {
    padding-top: 2px !important;
    margin-top: 0 !important;
    border-top: none !important;
  }

  /* ещё плотнее пункты меню */
  .nav a {
    font-size: 10px !important;
    padding: 2px 2px;
  }

  /* язык ещё компактнее */
  .lang-switch {
    padding: 2px 4px;
  }

  .lang-btn {
    font-size: 8px !important;
    padding: 0 5px !important;
  }

}
@media (max-width: 768px) {
  .logo {
    position: relative;
    top: -2px;   /* вверх / вниз */
    margin-left: -100px; /* влево / вправо */
  }
}
@media (max-width: 768px) {
  .hero-left {
    margin-top: -20px;
  }
}
@media (max-width: 768px) {
  .hero-right > :first-child {
    display: none !important;
  }
}
@media (max-width: 768px) {
  a[href*="wa.me"][style*="position: fixed"],
  a[href*="wa.me"].fixed,
  a[href*="wa.me"].float {
    display: none !important;
  }
}
@media (max-width: 768px) {
  a[href*="wa.me"] {
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
    border-radius: 50% !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    font-size: 0 !important; /* убираем текст */
  }

  a[href*="wa.me"] svg {
    width: 20px !important;
    height: 20px !important;
  }
}
@media (max-width: 768px) {
  a[href*="wa.me"] {
    width: 340px !important;   /* увеличиваем ширину */
    height: 40px !important;
    padding: 8px 12px !important;

    border-radius: 60px !important; /* овальная форма */

    display: flex !important;
    align-items: center;
    justify-content: center;

    gap: 10px; /* расстояние между иконкой и текстом */
  }

  a[href*="wa.me"] svg {
    width: 40px !important;
    height: 60px !important;
  }
}
@media (max-width: 768px) {
  .hero-buttons .btn-green {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .whatsapp-fixed {
    display: flex !important;
    align-items: center;
    justify-content: center;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 16px;
    background: #08c84c;
    color: #fff;
  }
}
.whatsapp-fixed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wa-fixed-icon svg {
  display: block;
}
.whatsapp-fixed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wa-icon {
  width: 80px;
  height: 60px;
}
/* WhatsApp иконка внутри кнопок */
.wa-inline-icon,
.wa-fixed-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  flex-shrink: 0;
}

.wa-inline-icon svg,
.wa-fixed-icon svg {
  display: block !important;
  width: 30px !important;
  height: 30px !important;
  fill: currentColor !important;
  color: #fff !important;
}

/* Кнопка WhatsApp в прайсе */
.price-wa-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Нижняя зеленая кнопка */
.whatsapp-fixed {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: #fff !important;
}

.whatsapp-fixed .wa-fixed-text {
  display: inline-block !important;
  color: #fff !important;
  line-height: 1.1;
}