*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #111111;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── SITE HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ─── TOP NAV ─── */
.top-nav {
  background: #1A1A1A;
  border-bottom: 1px solid #2A2A2A;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
}
.top-nav__links {
  display: flex;
  align-items: center;
}
.top-nav__link {
  position: relative;
  color: #AAAAAA;
  font-family: 'Rubik', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color .2s;
  padding-bottom: 2px;
}
.top-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #FF0010;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.top-nav__link.active { color: #fff; }
.top-nav__link.active::after { transform: scaleX(1); }
.top-nav__link:hover { color: #fff; }
.top-nav__link:hover::after { transform: scaleX(1); }
.top-nav__sep {
  color: #3A3A3A;
  font-size: 13px;
  padding: 0 18px;
  user-select: none;
}
.top-nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-nav__social-btn {
  width: 28px; height: 28px;
  border: 1.5px solid #444;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s;
}
.top-nav__social-btn:hover { border-color: #888; }
.top-nav__divider { width: 1px; height: 16px; background: #333; }
.top-nav__lang-wrap { position: relative; display: flex; align-items: center; }
.top-nav__lang {
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  user-select: none;
  transition: text-shadow .2s;
}
.top-nav__lang:hover {
  color: #FF0010;
  text-shadow: 0 0 10px rgba(255,0,16,.7), 0 0 22px rgba(255,0,16,.3);
}
.lang-popup {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  overflow: hidden;
  min-width: 150px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  z-index: 200;
}
.lang-popup.open { display: flex; }
.lang-option {
  padding: 10px 16px;
  color: #888;
  font-size: 13px;
  font-family: 'Rubik', sans-serif;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.lang-option:hover { background: #252525; color: #fff; }
.lang-option.active { color: #FF0010; }

/* ─── INFO BAR ─── */
.info-bar {
  background: #191919;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
}
.info-bar__logo img { height: 70px; width: auto; object-fit: contain; }
.info-bar__right { display: flex; align-items: center; gap: 48px; }
.info-bar__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.info-bar__contact:hover .info-bar__contact-text span,
.info-bar__contact:hover .info-bar__contact-text strong { color: #666; }
.info-bar__contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.info-bar__contact-text { display: flex; flex-direction: column; gap: 2px; }
.info-bar__contact-text span:first-child { color: #fff; font-size: 14px; line-height: 20px; transition: color .2s; }
.info-bar__contact-text span:last-child { color: #888; font-size: 13px; line-height: 18px; transition: color .2s; }
.info-bar__contact-text strong { color: #fff; font-size: 14px; font-weight: 600; line-height: 20px; transition: color .2s; }
.btn-red {
  background: #FF0010;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 18px;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: box-shadow .2s, opacity .2s;
}
.btn-red:hover { box-shadow: 0 0 16px 4px rgba(204,32,32,.7), 0 0 32px 8px rgba(204,32,32,.4); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  padding: 100px 80px 120px;
  background: #111;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('hero_bw.png');
  background-size: cover;
  background-position: center 70%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(22,22,22,.92) 0%,
    rgba(22,22,22,.82) 35%,
    rgba(22,22,22,.55) 60%,
    rgba(22,22,22,.25) 100%);
}
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 620px;
}
.hero__title {
  font-family: 'Rubik', sans-serif;
  font-size: 62px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 72px;
  text-transform: uppercase;
  color: #fff;
}
.hero__subtitle { display: flex; }
.hero__accent-bar {
  width: 3px;
  background: #FF0010;
  border-radius: 2px;
  flex-shrink: 0;
}
.hero__subtitle-text {
  padding-left: 16px;
  color: #CCC;
  font-size: 18px;
  line-height: 28px;
}
.hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.btn-outline {
  border: 2px solid #FF0010;
  border-radius: 4px;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, box-shadow .2s;
}
.btn-outline:hover { background: rgba(255,0,16,.1); box-shadow: 0 0 16px rgba(255,0,16,.45), 0 0 35px rgba(255,0,16,.15); }
.btn-solid {
  background: #FF0010;
  border: 2px solid #CC2020;
  border-radius: 4px;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow .2s, opacity .2s;
}
.btn-solid:hover { box-shadow: 0 0 22px #FF0010, 0 0 50px rgba(255,0,16,.25); }

/* ─── ABOUT ─── */
.about {
  background: #161616;
  border-top: 1px solid #222;
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.about h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.about__body {
  display: flex;
  align-items: center;
  gap: 64px;
}
.about__photo {
  width: 364px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 8px;
  overflow: hidden;
  background-image: url('about_img.png');
  background-size: cover;
  background-position: center;
  min-height: 434px;
  position: relative;
}
.about__photo::before,
.social__phone1::before,
.social__phone2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1E1E1E 25%, #2A2A2A 50%, #1E1E1E 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: inherit;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.about__photo.loaded::before,
.social__phone1.loaded::before,
.social__phone2.loaded::before {
  opacity: 0;
  pointer-events: none;
}

.about__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 8px;
}
.about__text p { font-size: 17px; line-height: 28px; }
.about__text p:first-child { color: #CCC; }
.about__text p:not(:first-child) { color: #888; }
.about__stats {
  display: flex;
  gap: 30px;
  margin-top: 8px;
  align-items: flex-start;
}
.about__stat { display: flex; flex-direction: column; gap: 12px; }
.about__stat-badge {
  background: #FF0011;
  border-radius: 16px;
  padding: 8px 12px;
  width: fit-content;
  box-shadow: 0 0 22px rgba(220,20,20,.7), 0 0 50px rgba(220,20,20,.3);
}
.about__stat-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 52px;
  color: #fff;
}
.about__stat-label {
  color: #888;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 20px;
}
.about__stat-divider { width: 1px; background: #2E2E2E; align-self: stretch; }

/* ─── PRICES ─── */
.prices {
  background: #111;
  border-top: 1px solid #222;
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.prices__header { text-align: center; margin-bottom: 40px; }
.prices__header h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
  margin-bottom: 14px;
}
.prices__header p {
  color: #888;
  font-size: 16px;
  line-height: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.prices__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
  align-self: stretch;
}
.price-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #333;
  cursor: pointer;
  transition: all .2s;
  background: transparent;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
}
.price-tab svg { flex-shrink: 0; }
.price-tab.active {
  background: #FF0011;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 18px rgba(255,0,17,.65), 0 0 40px rgba(255,0,17,.25);
}
.price-tab.active svg { stroke: #fff; }
.price-tab:not(.active):hover { border-color: #555; color: #ccc; box-shadow: 0 0 14px rgba(180,180,180,.25), 0 0 30px rgba(180,180,180,.1); }
.prices__table {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  overflow: hidden;
  width: 600px;
  margin-bottom: 24px;
  display: none;
}
.prices__table.active { display: block; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid #2A2A2A;
}
.price-row:last-child { border-bottom: none; }
.price-row__name {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
}
.price-row__price {
  color: #FF0011;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
}
.price-row__free {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.price-row__free-label { color: #22C55E; font-size: 15px; font-weight: 700; }
.price-row__free-sub { color: #888; font-size: 12px; }
.price-row__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  gap: 24px;
}
.price-row__contact p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
}
.price-row__contact-btns { display: flex; gap: 12px; flex-shrink: 0; }
.contact-icon-btn {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .2s;
}
.contact-icon-btn--phone { background: #1A1A1A; border: 1px solid #333; }
.contact-icon-btn--phone:hover { box-shadow: 0 0 14px rgba(180,180,180,.35), 0 0 28px rgba(180,180,180,.15); }
.contact-icon-btn--wa { background: #25D366; }
.contact-icon-btn--wa:hover { box-shadow: 0 0 14px rgba(37,211,102,.6), 0 0 28px rgba(37,211,102,.25); }
.prices__disclaimer {
  color: #666;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  align-self: stretch;
}

/* ─── PHONE CTA ─── */
.phone-cta {
  background: #161616;
  border-top: 1px solid #222;
  padding: 0 190px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-cta__text { display: flex; flex-direction: column; gap: 10px; }
.phone-cta__text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
}
.phone-cta__text p { color: #888; font-size: 15px; line-height: 22px; }
.phone-cta__btn {
  background: #FF0010;
  border-radius: 4px;
  padding: 28px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .2s;
}
.phone-cta__btn:hover { box-shadow: 0 0 22px rgba(255,0,16,.65), 0 0 50px rgba(255,0,16,.25); }
.phone-cta__btn-label {
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.phone-cta__btn-num {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* ─── REVIEWS ─── */
.reviews {
  background: #111;
  border-top: 1px solid #222;
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.reviews__header { text-align: center; padding: 0 80px; }
.reviews__header h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
  margin-bottom: 14px;
}
.reviews__header p { color: #888; font-size: 16px; line-height: 24px; }
.reviews__slider {
  display: flex;
  align-items: center;
  padding: 0 40px;
  width: 100%;
}
.reviews__arrow {
  width: 48px; height: 48px;
  border: 1.5px solid #333;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  background: transparent;
  transition: border-color .2s;
}
.reviews__arrow:hover { border-color: #666; }
.reviews__track {
  flex: 1;
  overflow: hidden;
  padding: 0 20px;
}
.reviews__cards {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
}
.review-card {
  background: #1E1E1E;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.review-card__header { display: flex; align-items: center; justify-content: space-between; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-card__avatar span {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.review-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.review-card__date { color: #666; font-size: 12px; line-height: 1; margin-top: 2px; }
.review-card__stars { display: flex; gap: 3px; }
.review-card__text { color: #CCC; font-size: 14px; line-height: 22px; }
.review-card__more {
  color: #FF0010;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: text-shadow .2s;
  align-self: flex-start;
}
.review-card__more:hover { text-shadow: 0 0 10px rgba(255,0,16,.9), 0 0 22px rgba(255,0,16,.45); }
.reviews__dots { display: flex; gap: 6px; justify-content: center; }
.reviews__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: background .2s;
  border: none;
}
.reviews__dot.active { background: #FF0010; }

/* ─── FAQ ─── */
.faq {
  background: #161616;
  border-top: 1px solid #222;
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq__header { text-align: center; }
.faq__header h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
  margin-bottom: 14px;
}
.faq__header p { color: #888; font-size: 16px; line-height: 24px; }
.faq__list {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  width: 100%;
  align-self: center;
}
.faq-item { border-top: 1px solid #2A2A2A; }
.faq-item:last-child { border-bottom: 1px solid #2A2A2A; }
.faq-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
}
.faq-item__left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}
.faq-item__num {
  color: #FF0010;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-item__content { display: flex; flex-direction: column; gap: 0; }
.faq-item__question {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.faq-item__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.faq-item.open .faq-item__answer-wrap {
  grid-template-rows: 1fr;
  margin-top: 16px;
}
.faq-item__answer {
  overflow: hidden;
  min-height: 0;
  color: #888;
  font-size: 15px;
  line-height: 24px;
}
.faq-item__answer .red { color: #FF0011; }
.faq-link { text-decoration: none; transition: opacity .2s; }
.faq-link:hover { opacity: .75; }
.faq-item__toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid #333;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all .2s;
  cursor: pointer;
}
.faq-item.open .faq-item__toggle {
  border-color: #FF0010;
  box-shadow: 0 0 10px rgba(255,0,16,.65), 0 0 22px rgba(255,0,16,.25);
}
.faq-item.open .faq-item__num {
  text-shadow: 0 0 10px rgba(255,0,16,.9), 0 0 22px rgba(255,0,16,.45);
}
.faq-item__toggle svg { transition: transform .3s; }
.faq-item.open .faq-item__toggle svg { transform: rotate(45deg); }
.faq-item.open .faq-item__toggle svg line { stroke: #FF0010; }

/* ─── GALLERY ─── */
.gallery {
  background: #111;
  border-top: 1px solid #222;
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.gallery__header { text-align: center; width: 1280px; max-width: 100%; padding: 0 80px; }
.gallery__header h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
  margin-bottom: 14px;
}
.gallery__header p { color: #888; font-size: 16px; line-height: 24px; }
.gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 1280px;
  max-width: 100%;
  padding: 0 80px;
}
.gallery__row { display: flex; gap: 6px; }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.gallery__item {
  flex: 1 1 0;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  min-width: 0;
  overflow: hidden;
  position: relative;
  background-color: #1E1E1E;
  background-image: linear-gradient(90deg, #1E1E1E 25%, #2A2A2A 50%, #1E1E1E 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
}
.gallery__item.loaded {
  background-image: var(--bg);
  background-size: cover;
  animation: none;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  transition: transform 0.5s ease;
}
.gallery__item:hover::after {
  transform: scale(1.1);
}

/* ─── SOCIAL ─── */
.social {
  background: #111;
  border-top: 1px solid #222;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.social h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.social__card {
  background: #1A1A1A;
  border-radius: 20px;
  display: flex;
  min-height: 380px;
  width: 100%;
  overflow: hidden;
}
.social__mockups {
  flex: 1.1;
  position: relative;
  overflow: hidden;
}
.social__phone1 {
  position: absolute;
  top: 33px; left: calc(50% - 66px); transform: translateX(-50%);
  width: 297px; height: 587px;
  background-image: url('mockup-insta.png');
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}
.social__phone2 {
  position: absolute;
  top: 97px; left: calc(50% + 83px); transform: translateX(-50%);
  width: 263px; height: 518px;
  background-image: url('mockup_tiktok.png');
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}
.social__ctas {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 60px 75px;
}
.social__ctas p { color: #CCC; font-size: 18px; line-height: 28px; text-align: center; }
.social__buttons { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.social__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FF0010;
  border-radius: 8px;
  padding: 18px 32px;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: box-shadow .2s;
}
.social__btn:hover { box-shadow: 0 0 20px rgba(255,0,16,.6), 0 0 45px rgba(255,0,16,.25); }

/* ─── CONTACTS ─── */
.contacts {
  background: #111;
  border-top: 1px solid #222;
  padding: 80px 80px 90px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.contacts h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.contacts__body { display: grid; grid-template-columns: 340px 1fr; grid-template-rows: auto auto; gap: 20px; }
.contacts__map { grid-column: 2; grid-row: 1 / 3; }
.contacts__socials { grid-column: 1; grid-row: 2; }
.contacts__info { display: flex; flex-direction: column; gap: 32px; }
.contacts__company {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.contacts__item { display: flex; align-items: flex-start; gap: 16px; }
.contacts__item-icon { flex-shrink: 0; margin-top: 4px; }
.contacts__item-text { display: flex; flex-direction: column; gap: 6px; }
.contacts__item-label { color: #666; font-size: 13px; line-height: 1; }
.contacts__item-value { color: #fff; font-size: 16px; font-weight: 600; line-height: 20px; }
.contacts__item-sub { color: #888; font-size: 15px; line-height: 18px; }
.contacts__socials { display: flex; gap: 12px; }
.contacts__social-btn {
  width: 44px; height: 44px;
  background: #222;
  border: 1px solid #2A2A2A;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}
.contacts__social-btn:hover { opacity: .8; }
.contacts__social-btn img { width: 22px; height: 22px; object-fit: contain; }
.contacts__map {
  flex: 1;
  height: 460px;
  background: #1A1A1A;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
#contacts-map {
  border-radius: 12px;
}
.contacts__map .leaflet-container { background: #0d0e14 !important; }
.map-popup .leaflet-popup-content-wrapper {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.6);
}
.map-popup .leaflet-popup-content strong { color: #fff; font-size: 14px; }
.map-popup .leaflet-popup-tip { background: #1A1A1A; }
.map-popup .leaflet-popup-close-button { color: #666; }
.contacts__map-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: #1A1A1A;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.6);
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 260px;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .2s;
  z-index: 500;
}
.contacts__map-badge:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,.6), 0 0 0 1px #333;
}
.contacts__map-badge-name { color: #fff; font-family: 'Rubik', sans-serif; font-size: 14px; font-weight: 700; line-height: 130%; }
.contacts__map-badge-addr { color: #888; font-size: 11px; line-height: 14px; }
.contacts__map-badge-rating { display: flex; align-items: center; gap: 5px; }
.contacts__map-badge-score { color: #fff; font-size: 12px; font-weight: 700; }
.contacts__map-badge-reviews { color: #4E9EFF; font-size: 12px; }

/* ─── FOOTER ─── */
.footer {
  background: #0D0D0D;
  border-top: 1px solid #222;
}
.footer__body {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 52px 80px;
}
.footer__brand { display: flex; flex-direction: column; gap: 20px; min-width: 160px; }
.footer__logo img { height: 70px; width: auto; object-fit: contain; }
.footer__tagline { color: #888; font-size: 14px; line-height: 1; }
.footer__contacts { display: flex; gap: 40px; }
.footer__col { display: flex; flex-direction: column; gap: 24px; }
.footer__item { display: flex; align-items: flex-start; gap: 14px; }
.footer__item-icon { flex-shrink: 0; margin-top: 4px; }
.footer__item-text { display: flex; flex-direction: column; gap: 4px; }
.footer__item-label { color: #666; font-size: 13px; line-height: 1; }
.footer__item-value { color: #fff; font-size: 15px; font-weight: 500; line-height: 18px; }
.footer__item-sub { color: #888; font-size: 14px; line-height: 18px; }
.footer__item-phone {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
}
.footer__bottom {
  border-top: 1px solid #222;
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy { color: #555; font-size: 13px; line-height: 16px; }
.footer__dev { display: flex; align-items: center; gap: 8px; }
.footer__dev span { color: #555; font-size: 13px; }
.footer__dev strong {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.footer__dev-link {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color .2s, text-shadow .2s;
}
.footer__dev-link:hover {
  color: #FF0010;
  text-shadow: 0 0 10px rgba(255, 0, 16, .7), 0 0 20px rgba(255, 0, 16, .4);
}

/* ─── MOBILE NAV BURGER ─── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ─── MOBILE NAV DRAWER ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.mobile-nav.open { display: block; }
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(2px);
}
.mobile-nav__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(80vw, 300px);
  height: 100%;
  background: #1A1A1A;
  border-left: 1px solid #222;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: slideInRight .25s ease;
}
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-nav__head img { height: 36px; width: auto; object-fit: contain; }
.mobile-nav__close {
  background: none;
  border: 1px solid #333;
  border-radius: 50%;
  width: 32px; height: 32px;
  color: #888;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
}
.mobile-nav__close:hover { color: #fff; border-color: #666; }
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.mobile-nav__link {
  color: #aaa;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 15px 0;
  border-bottom: 1px solid #222;
  transition: color .2s;
}
.mobile-nav__link:first-child { border-top: 1px solid #222; }
.mobile-nav__link:hover { color: #fff; }
.mobile-nav__phone {
  display: block;
  color: #FF0010;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 14px;
  transition: opacity .2s;
}
.mobile-nav__phone:hover { opacity: .8; }
.mobile-nav__cta {
  display: block;
  background: #FF0010;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 20px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  margin-bottom: 32px;
  transition: box-shadow .2s;
}
.mobile-nav__cta:hover { box-shadow: 0 0 20px rgba(255,0,16,.6); }
.mobile-nav__social {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 32px;
}
.mobile-nav__social-btn {
  width: 38px; height: 38px;
  background: #222;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: opacity .2s;
}
.mobile-nav__social-btn:hover { opacity: .7; }

/* ─── RESPONSIVE ─── */

/* ≤ 1280px — compact footer */
@media (max-width: 1280px) {
  .footer__item-label { display: none; }
  .footer__item-sub { display: none; }
  .footer__item--email { display: none; }
  .footer__contacts { flex-direction: column; gap: 14px; }
  .footer__col { gap: 14px; align-items: flex-start; width: fit-content; }
  .footer__item { gap: 10px; align-items: center;}
  .footer__item-value { font-weight: 700; font-size: 15px; }
  .footer__item-phone { font-size: 15px; }
  .footer__item-icon { margin-top: none; }
}

/* ≤ 1100px — reduced padding */
@media (max-width: 1100px) {
  .top-nav { padding: 0 40px; }
  .info-bar { padding: 0 40px; }
  .hero { padding: 80px 40px 100px; }
  .about { padding: 70px 40px; gap: 40px; }
  .about h2 { font-size: 36px; }
  .about__body { gap: 32px; }
  .about__photo { width: 280px; min-height: 360px; }
  .about__text p { font-size: 15px; line-height: 24px; }
  .about__stat-badge span { font-size: 34px; line-height: 38px; }
  .prices { padding: 70px 40px; }
  .prices__table { width: 100%; max-width: 600px; }
  .phone-cta { padding: 40px; }
  .faq { padding: 70px 40px; }
  .gallery__header { width: 100%; padding: 0 40px; }
  .gallery__grid { width: 100%; padding: 0 40px; }
  .social { padding: 60px 40px; }
  .social__ctas { padding: 60px 20px; }
  .contacts { padding: 60px 40px 80px; }
  .footer__body { padding: 52px 40px; }
  .footer__bottom { padding: 20px 40px; }
}

/* ≤ 1024px — gallery becomes horizontal scroll strip */
@media (max-width: 1024px) {
  .gallery__grid {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 0 0 10px;
    padding-left: 40px;
    scroll-padding-left: 40px;
    width: 100%;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .gallery__grid::-webkit-scrollbar { display: none; }
  .gallery__grid::before { display: none; }
  .gallery__grid::after {
    content: '';
    display: block;
    min-width: 40px;
    flex-shrink: 0;
  }
  .gallery__row { display: contents; }
  .gallery__item {
    flex: 0 0 300px;
    width: 300px;
    height: 340px;
    scroll-snap-align: start;
  }
  .reviews__arrow { display: none; }

  /* ── Social ── */
  .social { padding: 48px 40px; gap: 24px; }
  .social h2 { font-size: 32px; line-height: 38px; text-align: center; }
  .social__card { flex-direction: column; border-radius: 20px; }
  .social__ctas { order: 1; padding: 32px; gap: 16px; }
  .social__ctas p { font-size: 16px; line-height: 24px; }
  .social__buttons { gap: 12px; }
  .social__btn { padding: 16px 24px; }
  .social__mockups { order: 2; flex: none; height: 395px; }
  .social__phone1 { top: 16px; left: calc(50% - 58px); transform: translateX(-50%); width: 247px; height: 488px; border-radius: 25px; }
  .social__phone2 { top: 56px; left: calc(50% + 78px); transform: translateX(-50%); width: 207px; height: 408px; border-radius: 21px; }
}

/* ≤ 768px — hide info-bar address, tighten right gap */
@media (max-width: 860px) {
  .info-bar { padding: 0 24px; }
  .info-bar__right { gap: 20px; }
  .info-bar__contact:first-child { display: none; }
}

/* ≤ 740px — mobile header */
@media (max-width: 740px) {
  .top-nav { display: none; }
  .nav-burger { display: flex; }
  .info-bar { height: 50px; padding: 0 20px; }
  .info-bar__logo img { height: 35px; }
  .info-bar__right { display: none; }
}

/* ≤ 640px — mobile */
@media (max-width: 640px) {
  /* ── Hero ── */
  .hero { padding: 0; min-height: 548px; }
  .hero__content { position: absolute; bottom: 0; left: 0; right: 0; max-width: 100%; padding: 32px 20px; gap: 16px; }
  .hero__title { font-size: 36px; line-height: 105%; }
  .hero__subtitle { gap: 10px; }
  .hero__accent-bar { height: 20px; }
  .hero__subtitle-text { padding-left: 0; font-size: 15px; line-height: 22px; color: rgba(255,255,255,0.85); }
  .hero__buttons { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 0; padding-top: 4px; }
  .hero__buttons .btn-outline,
  .hero__buttons .btn-solid { text-align: center; }

  /* ── About ── */
  .about { padding: 48px 20px 24px; gap: 24px; }
  .about h2 { font-size: 28px; line-height: 34px; text-align: center; }
  .about__body { flex-direction: column; gap: 24px; }
  .about__photo { width: 100%; height: 423px; min-height: unset; border-radius: 10px; }
  .about__text { gap: 14px; }
  .about__text p { font-size: 15px; line-height: 24px; }
  .about__stats { gap: 26px; margin-top: 10px; }
  .about__stat-badge span { font-size: 32px; line-height: 36px; }
  .about__stat-label { font-size: 12px; line-height: 16px; }

  /* ── Prices ── */
  .prices { padding: 48px 20px; gap: 24px; }
  .prices__header { margin-bottom: 0; }
  .prices__header h2 { font-size: 28px; line-height: 34px; }
  .prices__header p { font-size: 14px; line-height: 22px; }
  .prices__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -20px;
    padding: 0 20px 2px;
  }
  .prices__tabs::-webkit-scrollbar { display: none; }
  .prices__table { border-radius: 10px; width: 100%; }
  .price-row { padding: 18px 16px; }
  .prices__disclaimer { font-size: 12px; line-height: 18px; }

  /* ── Phone CTA ── */
  .phone-cta { padding: 32px 20px; flex-direction: column; gap: 16px; min-height: auto; text-align: center; }
  .phone-cta__text h3 { font-size: 22px; line-height: 28px; }
  .phone-cta__text p { font-size: 14px; line-height: 22px; }
  .phone-cta__btn-label { display: none; }
  .phone-cta__btn { width: 100%; border-radius: 8px; padding: 14px 24px; }
  .phone-cta__btn-num { font-size: 22px; line-height: 28px; }

  /* ── Reviews ── */
  .reviews { padding: 48px 20px; gap: 24px; }
  .reviews__header { padding: 0; }
  .reviews__header h2 { font-size: 28px; line-height: 34px; }
  .reviews__header p { font-size: 14px; line-height: 18px; }
  .reviews__slider { padding: 0; }
  .reviews__track { padding: 0; }
  .reviews__arrow { display: none; }
  .review-card { padding: 24px; gap: 14px; }
  .review-card__stars { gap: 2px; }

  /* ── FAQ ── */
  .faq { padding: 48px 20px; gap: 24px; }
  .faq__header p { font-size: 14px; line-height: 18px; }
  .faq-item__header { padding: 18px 0; gap: 12px; }
  .faq__list { max-width: 100%; }

  /* ── Gallery ── */
  .gallery { padding: 48px 0; }
  .gallery__header { padding: 0 20px; text-align: center; }
  .gallery__header p { font-size: 14px; line-height: 22px; }
  .gallery__grid { padding-left: 20px; scroll-padding-left: 20px; }
  .gallery__grid::before { display: none; }
  .gallery__grid::after { min-width: 20px; }
  .gallery__item { flex: 0 0 260px; width: 260px; height: 300px; }

  /* ── Social ── */
  .social { padding: 48px 20px; }
  .social h2 { font-size: 28px; line-height: 34px; }
  .social__ctas { padding: 24px; gap: 12px; }
  .social__ctas p { font-size: 14px; line-height: 22px; }
  .social__btn { padding: 14px 20px; }
  .social__mockups { height: 340px; }
  .social__phone1 { top: 14px; left: calc(50% - 60px); width: 210px; height: 415px; border-radius: 22px; }
  .social__phone2 { top: 48px; left: calc(50% + 76px); width: 176px; height: 347px; border-radius: 18px; }

  /* ── Contacts ── */
  .contacts { padding: 48px 20px 32px; gap: 28px; }
  .contacts h2 { font-size: 28px; line-height: 34px; text-align: center; }
  .contacts__body { display: flex; flex-direction: column; gap: 18px; }
  .contacts__company { display: none; }
  .contacts__info { min-width: 0; width: 100%; gap: 20px; }
  .contacts__map { width: 100%; flex: 0 0 220px; height: 220px; border-radius: 10px; background: #111; }
  #contacts-map { height: 220px !important; }
  .contacts__map .leaflet-container { background: #111 !important; }
  .contacts__map-badge { display: none; }
  .leaflet-control-zoom { display: none !important; }
  .contacts__socials { gap: 8px; justify-content: center; width: 100%; }

  /* ── Footer ── */
  .footer__body { flex-direction: column; padding: 32px 20px 24px; gap: 0; align-items: center; }
  .footer__brand { align-items: center; gap: 8px; width: 100%; padding-bottom: 24px; border-bottom: 1px solid #222; }
  .footer__logo img { height: 44px; }
  .footer__tagline { font-size: 13px; line-height: 20px; text-align: center; }
  .footer__contacts { display: flex; flex-direction: column; gap: 16px; width: 100%; padding-top: 24px; align-items: center; }
  .footer__col { align-items: center; gap: 16px; }
  .footer__item { gap: 12px; align-items: center; }
  .footer__item-label { display: none; }
  .footer__item-sub { display: none; }
  .footer__item--email { display: none; }
  .footer__bottom { padding: 16px 24px 32px; }
  .footer__copy { font-size: 12px; line-height: 16px; }
  .footer__dev > span { display: none; }
  .footer__dev-link { font-size: 12px; line-height: 16px; font-weight: 900; }
}

/* ≤ 480px — small mobile: font sizes, stacked buttons */
@media (max-width: 480px) {
  .about h2, .prices__header h2, .reviews__header h2,
  .faq__header h2, .gallery__header h2, .social h2,
  .contacts h2 { font-size: 28px; }
  .phone-cta__text h3 { font-size: 22px; }
  .price-tab { font-size: 13px; padding: 10px 14px; }
  .gallery__item { flex: 0 0 240px; width: 240px; height: 280px; }
}
