/* KWITKA Service Center — modern static theme */
:root {
  --brand: #e4002b;
  --brand-dark: #b8001f;
  --brand-soft: rgba(228, 0, 43, 0.12);
  --bg: #0c0f14;
  --bg-elevated: #151a22;
  --bg-card: #1a212c;
  --text: #f4f6f8;
  --text-muted: #cfe1e1;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --header-h: 92px;
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: #ff4d6a; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.logo {
  flex: 1 1 auto;
  min-width: 0;
}
.logo img {
  height: 72px;
  width: auto;
  max-width: 100%;
  display: block;
}
.nav-desktop {
  display: none;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-desktop a:hover { color: var(--text); background: var(--brand-soft); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-mobile__city {
  color: var(--brand);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(228, 0, 43, 0.35);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-mobile a:hover { background: var(--brand-soft); }

@media (max-width: 991px) {
  :root { --header-h: 72px; }
  .logo img { height: 68px; }
  .site-header .inner { gap: 0.35rem; }
  .header-actions__city { display: none; }
  .header-actions .btn { padding: 0.45rem 0.7rem; font-size: 0.7rem; }
  .header-actions__callback { white-space: nowrap; }

  .about-section,
  .repair-section,
  .services-section,
  .why-section,
  .prices-section,
  .howto-section,
  .promo-section,
  .brands-section,
  .faq-section,
  .contacts-section,
  .callback-section,
  .legacy-section {
    padding: 1.25rem 0;
  }
  .about-header,
  .repair-header,
  .services-header,
  .why-header,
  .prices-section__header,
  .howto-header,
  .brands-header,
  .faq-header,
  .contacts-header,
  .callback-header {
    margin-bottom: 0.85rem;
  }
  .about-intro { margin-bottom: 0.85rem; }

}
@media (min-width: 992px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.2rem) 0 2.8rem;
  overflow: hidden;
  background: #090b0f;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
}
.hero__pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-pattern.png");
  background-repeat: repeat;
  background-size: 760px auto;
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 34%, rgba(0, 0, 0, 0) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero__city-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero__city-link:hover {
  color: var(--text);
}
.hero__title {
  margin: 0 0 0.6rem;
  font-size: clamp(3.2rem, 5.8vw, 5.1rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ff2f45;
}
.hero__tagline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  color: #a1a1a1;
  line-height: 1.35;
}
.hero__phone {
  margin: 0;
  font-size: clamp(1.8rem, 2.9vw, 2.4rem);
  font-weight: 700;
}
.hero__phone a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero__phone a:hover { color: var(--brand); }
.hero__contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 1.9rem;
}
.hero__apps {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero__apps-label {
  margin: 0;
  font-size: 1.1rem;
  color: #a1a1a1;
  line-height: 1.25;
}
.hero__apps-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: center;
}
.hero__apps-row img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hero__apps-row a:hover img {
  transform: translateY(-2px);
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hero__pattern {
    opacity: 1;
  }
}
@media (max-width: 991px) {
  :root { --header-h: 72px; }
  .logo img { height: 68px; }
  .header-actions .btn { padding: 0.45rem 0.7rem; font-size: 0.7rem; }
  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 0.85rem) 0 1rem;
    box-sizing: border-box;
  }
  .hero__content {
    width: min(100% - 3rem, var(--max));
  }
  .hero__inner {
    width: 100%;
    max-width: 100%;
  }
  .hero__meta {
    gap: 0.65rem;
    margin-bottom: 0.55rem;
  }
  .hero-badge {
    font-size: 0.88rem;
    letter-spacing: 0.02em;
  }
  .hero__city-link {
    font-size: 0.82rem;
  }
  .hero__title {
    font-size: clamp(3.3rem, 12.5vw, 4.1rem);
    line-height: 0.92;
    max-width: 7.2ch;
  }
  .hero__tagline {
    margin-bottom: 1.15rem;
    font-size: 1.05rem;
  }
  .hero__contact {
    gap: 0.65rem;
    margin-bottom: 1.2rem;
  }
  .hero__phone {
    font-size: 1.95rem;
  }
  .hero__contact .btn {
    font-size: 0.74rem;
    padding: 0.52rem 0.8rem;
  }
  .hero__apps-label {
    font-size: 0.82rem;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    max-width: none;
  }
  .hero__apps-row img {
    height: 34px;
  }
  .hero__apps {
    display: block;
  }
}
@media (max-width: 480px) {
  :root { --header-h: 64px; }
  .container { width: min(100% - 1.5rem, var(--max)); }
  .logo img { height: 54px; }
  .site-header .inner { gap: 0.4rem; }
  .header-actions { gap: 0.35rem; }
  .header-actions .btn {
    padding: 0.48rem 0.9rem;
    font-size: 0.72rem;
  }
  .menu-toggle { padding: 6px; }
  .menu-toggle span { width: 18px; }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 0.6rem) 0 0.9rem;
  }
  .hero__content {
    width: min(100% - 1.5rem, var(--max));
    margin-top: 10%;
    margin-bottom: 10%;
  }
  .hero__inner { gap: 2rem; padding-left: 1rem; }
  .hero__meta {
    gap: 0.55rem;
    margin-bottom: 0.7rem;
  }
  .hero__headline {
    margin-bottom: 0.55rem;
  }
  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.03em;
  }
  .hero__city-link {
    font-size: 0.74rem;
    opacity: 0.9;
  }
  .hero__title {
    font-size: clamp(2.85rem, 13.2vw, 3.45rem);
    line-height: 0.9;
    margin-bottom: 0.45rem;
  }
  .hero__tagline {
    font-size: 0.95rem;
    line-height: 1.28;
    margin-bottom: 0.9rem;
    max-width: none;
  }
  .hero__contact {
    margin-bottom: 1.1rem;
    gap: 1rem;
    align-items: center;
  }
  .hero__phone {
    font-size: 1.3rem;
    line-height: 1;
  }
  .hero__contact .btn {
    font-size: 0.72rem;
    padding: 0.56rem 0.9rem;
  }
  .hero__apps-label {
    font-size: 0.82rem;
    line-height: 1.28;
    margin: 0 0 1.4rem;
  }
  .hero__apps-row {
    gap: 2rem;
    justify-content: center;
  }
  .hero__apps-row img {
    height: 40px;
  }
  .hero__apps {
    margin-top: 0.2rem;
  }
}

/* City picker (index) */
.city-page {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 1.25rem);
  box-sizing: border-box;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(228, 0, 43, 0.2), transparent 50%),
    var(--bg);
}
.city-page ~ .site-footer {
  display: none;
}
.city-panel {
  width: min(100%, 400px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 4vw, 1.5rem) clamp(1rem, 3.5vw, 1.35rem);
  box-shadow: var(--shadow);
  text-align: center;
  box-sizing: border-box;
}
.city-panel__logo {
  display: block;
  width: min(240px, 82%);
  height: auto;
  margin: 0 auto clamp(0.65rem, 2.5vw, 0.9rem);
}
.city-panel h1 {
  margin: 0 0 0.3rem;
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
}
.city-panel .sub {
  margin: 0 0 clamp(0.85rem, 3vw, 1.1rem);
  font-size: clamp(0.8rem, 2.8vw, 0.9rem);
  color: var(--text-muted);
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}
.city-grid a {
  display: block;
  padding: clamp(0.55rem, 2.5vw, 0.7rem) 0.45rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: clamp(0.72rem, 2.8vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.city-grid a:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  transform: translateY(-2px);
}
.city-panel .apps {
  margin-top: clamp(0.85rem, 3vw, 1.1rem);
  padding-top: clamp(0.85rem, 3vw, 1.1rem);
  border-top: 1px solid var(--border);
}
.city-panel .apps > p {
  margin: 0 0 0.55rem;
  font-size: clamp(0.72rem, 2.6vw, 0.82rem);
  line-height: 1.4;
  color: var(--text-muted);
}
.city-panel .app-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  align-items: center;
}
.city-panel .app-row img {
  height: clamp(30px, 8vw, 36px);
  width: auto;
  border-radius: 6px;
}
@media (max-width: 380px) {
  .city-grid {
    grid-template-columns: 1fr;
  }
  .city-grid a {
    font-size: 0.8rem;
  }
}

/* Legacy content blocks (migrated text/images) */
.legacy-section {
  padding: 3rem 0;
  scroll-margin-top: var(--header-h);
}
.legacy-section:nth-child(even) { background: var(--bg-elevated); }
.legacy-section .legacy-inner {
  color: var(--text);
}
.legacy-inner h2, .legacy-inner h3, .legacy-inner h5 {
  color: var(--text) !important;
  font-family: var(--font) !important;
}
.legacy-inner p, .legacy-inner li, .legacy-inner span {
  color: var(--text-muted) !important;
}
.legacy-inner a:not(.btn) { color: #ff8a9b !important; }
.legacy-inner img { border-radius: var(--radius); }
.legacy-inner .g-color-primary, .legacy-inner [style*="color: rgb(219, 0, 15)"] {
  color: var(--brand) !important;
}
.legacy-inner .container { width: min(100% - 2rem, var(--max)); }
.legacy-inner .row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.legacy-inner .col-md-5, .legacy-inner .col-lg-5 { flex: 1 1 280px; }
.legacy-inner .col-md-7, .legacy-inner .col-lg-7, .legacy-inner .col-lg-8 { flex: 1 1 400px; }
.legacy-inner .js-carousel,
.legacy-inner .landing-block-node-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.legacy-inner .js-carousel .js-slide,
.legacy-inner .landing-block-card-carousel-element {
  width: auto !important;
}

/* FAQ in legacy — use details */
.legacy-inner .accordion-item,
.legacy-inner .landing-block-card.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.legacy-inner .landing-block-faq-hidden { display: none; }
.legacy-inner .landing-block-card.active .landing-block-faq-hidden { display: block; padding: 0 1.25rem 1.25rem; }
.legacy-inner .landing-block-faq-visible {
  cursor: pointer;
  padding: 1rem 1.25rem;
}
.legacy-inner .landing-block-faq-visible .icon::before { content: '+'; margin-left: auto; font-size: 1.25rem; }
.legacy-inner .landing-block-card.active .landing-block-faq-visible .icon::before { content: '−'; }

/* About */
.about-section {
  padding: 3.5rem 0;
  scroll-margin-top: var(--header-h);
}
.about-intro {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.4fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: 1.75rem;
}
.about-header__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}
.about-text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}
.about-text p:last-child { margin-bottom: 0; }
.about-gallery {
  position: relative;
  margin: 0;
  padding: 0;
}
.about-gallery .about-carousel__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  transform: none;
  transition: none;
}
.about-gallery__item {
  margin: 0;
}
.about-carousel__btn,
.about-carousel__dots {
  display: none;
}
.about-carousel__btn {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(12, 15, 20, 0.85);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.about-carousel__btn:hover {
  background: var(--brand-soft);
  border-color: rgba(228, 0, 43, 0.4);
}
.about-carousel__btn--prev { left: 0.25rem; }
.about-carousel__btn--next { right: 0.25rem; }
.about-carousel__dots {
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.about-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.about-carousel__dot.is-active {
  background: var(--brand);
  transform: scale(1.2);
}
.about-gallery__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
}
.about-gallery__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.about-gallery__item:hover .about-gallery__media img {
  transform: scale(1.04);
}
.about-gallery__caption {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
}
@media (max-width: 1024px) {
  .about-gallery .about-carousel__track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-gallery .about-carousel__viewport { overflow: hidden; }
  .about-gallery .about-carousel__track {
    display: flex;
    gap: 0;
    will-change: transform;
    transition: transform 0.35s ease;
  }
  .about-gallery .about-carousel__slide {
    flex: 0 0 100%;
    min-width: 0;
  }
  .about-carousel__btn,
  .about-carousel__dots { display: flex; }
  .about-gallery__caption { text-align: center; }
}

/* Repair categories */
.repair-section {
  padding: 3.5rem 0;
  scroll-margin-top: var(--header-h);
  background: var(--bg-elevated);
}
.repair-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.75rem;
}
.repair-header__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.repair-header__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.repair-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.repair-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.repair-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 0, 43, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.repair-card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.repair-card__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.repair-card__title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--text);
}
.repair-cta {
  text-align: center;
}
@media (max-width: 1100px) {
  .repair-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .repair-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Services */
.services-section {
  padding: 3.5rem 0;
  scroll-margin-top: var(--header-h);
  background: var(--bg-elevated);
}
.services-layout {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) minmax(320px, 3fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.services-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.services-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.services-header {
  margin-bottom: 1.75rem;
}
.services-header__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.services-header__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 36rem;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateX(4px);
  border-color: rgba(228, 0, 43, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.service-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.35rem;
}
.service-card__body {
  min-width: 0;
}
.service-card__title {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-card__title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.service-card__title a:hover {
  color: var(--brand);
}
.service-card__text {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .services-layout {
    grid-template-columns: 1fr;
  }
  .services-visual {
    max-width: 420px;
    margin-inline: auto;
  }
  .service-card:hover { transform: translateY(-2px); }
}
@media (max-width: 480px) {
  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
}

/* Why choose us */
.why-section {
  padding: 3.5rem 0;
  scroll-margin-top: var(--header-h);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(228, 0, 43, 0.08), transparent 60%),
    var(--bg-elevated);
  border-block: 1px solid var(--border);
}
.why-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.why-section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.why-section__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 0, 43, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.2), rgba(228, 0, 43, 0.05));
  border: 1px solid rgba(228, 0, 43, 0.25);
  color: var(--brand);
  font-size: 1.35rem;
}
.why-card__title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
}
.why-card__text {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-muted);
}
@media (max-width: 992px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* Pricing */
.prices-section {
  padding: 3.5rem 0;
  scroll-margin-top: var(--header-h);
  background: var(--bg);
}
.prices-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}
.prices-section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.prices-section__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.prices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.price-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.price-card__media {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.price-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 15, 20, 0.92) 0%, rgba(12, 15, 20, 0.2) 55%, transparent 100%);
}
.price-card__body {
  position: relative;
  margin-top: -5rem;
  z-index: 1;
  padding: 0 1.5rem 1.5rem;
}
.price-card__tag {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff8a9b;
}
.price-card__title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
}
.price-card__rate {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.price-card__amount {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
}
.price-card__unit {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.prices-notes {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: 0.5rem;
}
.prices-notes li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.prices-notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.prices-cta {
  text-align: center;
}
@media (max-width: 768px) {
  .prices-grid { grid-template-columns: 1fr; }
  .price-card__media { min-height: 180px; }
}

/* How to submit for repair */
.howto-section {
  padding: 3.5rem 0;
  scroll-margin-top: var(--header-h);
  background: var(--bg-elevated);
}
.howto-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}
.howto-header__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}
.howto-header__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.howto-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}
.howto-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.howto-step:hover {
  border-color: rgba(228, 0, 43, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.howto-step__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.75rem;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
}
.howto-step__title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.howto-step__text {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.howto-step__text p {
  margin: 0 0 0.65rem;
}
.howto-step__text p:last-child { margin-bottom: 0; }
.howto-step__text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.howto-step__text a:hover { color: var(--brand); }
@media (max-width: 768px) {
  .howto-steps { grid-template-columns: 1fr; }
}

/* Generators promo */
.promo-section {
  padding: 3rem 0;
  scroll-margin-top: var(--header-h);
}
.promo-card {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 32vw) minmax(260px, 400px) 1fr;
  column-gap: clamp(1.25rem, 3vw, 2.5rem);
  row-gap: 1.5rem;
  align-items: center;
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, var(--bg-card) 0%, #1f1418 55%, rgba(228, 0, 43, 0.18) 100%);
  border: 1px solid rgba(228, 0, 43, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.promo-card__visual {
  grid-column: 2;
}
.promo-card__content {
  grid-column: 3;
  max-width: 400px;
}
.promo-card__visual {
  width: 100%;
  max-width: 360px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.promo-card__visual img {
  width: 100%;
  height: 100%;
  max-height: min(280px, 32vw);
  object-fit: contain;
}
.promo-card__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text);
}
.promo-card__text {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 36rem;
}
.promo-card__btn {
  align-self: flex-start;
}
@media (max-width: 768px) {
  .promo-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }
  .promo-card__visual,
  .promo-card__content {
    grid-column: 1;
    justify-self: center;
  }
  .promo-card__visual {
    width: min(280px, 100%);
    max-width: none;
    aspect-ratio: auto;
  }
  .promo-card__visual img { max-height: 220px; height: auto; }
  .promo-card__content { max-width: none; }
  .promo-card__btn { align-self: center; }
  .promo-card__text { margin-inline: auto; }
}

/* Brands */
.brands-section {
  padding: 3.5rem 0;
  scroll-margin-top: var(--header-h);
  background: var(--bg);
}
.brands-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}
.brands-header__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.brands-header__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.brands-grid {
  position: relative;
}
.brands-grid .brands-carousel__track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  transform: none;
  transition: none;
}
.brands-carousel__btn,
.brands-carousel__dots {
  display: none;
}
.brands-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(12, 15, 20, 0.9);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.brands-carousel__btn:hover {
  background: var(--brand-soft);
  border-color: rgba(228, 0, 43, 0.4);
}
.brands-carousel__btn--prev { left: -0.25rem; }
.brands-carousel__btn--next { right: -0.25rem; }
.brands-carousel__dots {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.brands-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.brands-carousel__dot.is-active {
  background: var(--brand);
  transform: scale(1.2);
}
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 1.25rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
a.brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 0, 43, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.brand-card img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 900px) {
  .brands-grid[data-brands-carousel] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: center;
    gap: 0.35rem 0.5rem;
    padding: 0;
  }
  .brands-grid[data-brands-carousel] .brands-carousel__viewport {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    overflow: hidden;
    container-type: inline-size;
  }
  .brands-grid[data-brands-carousel] .brands-carousel__track {
    display: flex;
    gap: 0.4rem;
    will-change: transform;
    transition: transform 0.35s ease;
  }
  .brands-grid[data-brands-carousel] .brand-card {
    flex: 0 0 calc((100cqi - 0.8rem) / 3);
    min-width: 0;
    box-sizing: border-box;
    padding: 0.45rem 0.25rem;
    min-height: 72px;
    border-radius: 12px;
  }
  .brands-carousel__btn,
  .brands-carousel__dots {
    display: flex;
  }
  .brands-carousel__btn {
    position: static;
    transform: none;
    justify-self: center;
    align-self: center;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.35rem;
  }
  .brands-carousel__btn--prev {
    grid-column: 1;
    grid-row: 2;
  }
  .brands-carousel__btn--next {
    grid-column: 3;
    grid-row: 2;
  }
  .brands-carousel__dots {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    justify-self: center;
  }
}
@media (max-width: 640px) {
  .brands-grid[data-brands-carousel] .brand-card {
    flex: 0 0 calc((100cqi - 0.4rem) / 2);
  }
}

/* FAQ */
.faq-section {
  padding: 3.5rem 0;
  scroll-margin-top: var(--header-h);
  background: var(--bg-elevated);
}
.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}
.faq-header__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(228, 0, 43, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.faq-item__summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.45;
  position: relative;
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__summary::marker { content: ''; }
.faq-item__summary::after {
  content: '';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-item__summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-item__summary:hover { color: #fff; }
.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.98rem;
}
.faq-item__answer .faq-answer__block { margin: 0 0 0.5rem; }
.faq-item__answer .faq-answer__block:last-child { margin-bottom: 0; }
.faq-item__answer p { margin: 0 0 0.5rem; }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}
.faq-item__answer li { margin-bottom: 0.35rem; }
.faq-item__answer a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-item__answer strong { color: var(--text); }
@media (max-width: 480px) {
  .faq-item__summary { padding: 1rem 2.75rem 1rem 1.25rem; font-size: 1rem; }
  .faq-item__answer { padding: 0 1.25rem 1rem; }
}

/* Contacts */
.contacts-section {
  padding: 3.5rem 0;
  scroll-margin-top: var(--header-h);
  background: var(--bg-elevated);
}
.contacts-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}
.contacts-header__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
  border-color: rgba(228, 0, 43, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.contact-card--active {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 12px 28px rgba(228, 0, 43, 0.15);
}
.contact-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.25rem;
}
.contact-card__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
}
.contact-card__type {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-card__city {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: var(--brand-soft);
  border: 1px solid rgba(228, 0, 43, 0.35);
  color: #fff;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.contact-card__details { margin: 0; }
.contact-card__row { margin: 0 0 0.85rem; }
.contact-card__row:last-child { margin-bottom: 0; }
.contact-card__row dt {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-card__row dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}
.contact-card__row a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}
.contact-card__row a:hover { color: var(--brand); }

/* Callback form */
.callback-section {
  position: relative;
  padding: 3.5rem 0;
  scroll-margin-top: var(--header-h);
  overflow: hidden;
}
.callback-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.callback-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}
.callback-section__inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}
.callback-header {
  text-align: center;
  margin-bottom: 2rem;
}
.callback-header__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}
.callback-header__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
}
.callback-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.75rem;
  background: rgba(12, 15, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.callback-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.callback-form__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.callback-form__input {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.callback-form__input::placeholder { color: var(--text-muted); }
.callback-form__input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(228, 0, 43, 0.25);
}
.callback-form__input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #e85d6a;
}
.callback-form__textarea {
  resize: vertical;
  min-height: 110px;
}
.callback-form__hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.callback-form__submit { width: 100%; margin-top: 0.25rem; }
.callback-form__submit:disabled { opacity: 0.65; cursor: not-allowed; }
.callback-form__status {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  text-align: center;
  border-radius: 10px;
}
.callback-form__status.is-success {
  display: block;
  color: #b8f5c3;
  background: rgba(40, 120, 60, 0.35);
  border: 1px solid rgba(120, 220, 140, 0.35);
}
.callback-form__status.is-error {
  display: block;
  color: #ffc8cf;
  background: rgba(120, 30, 40, 0.35);
  border: 1px solid rgba(220, 80, 100, 0.35);
}
@media (max-width: 768px) {
  .callback-section__bg { background-attachment: scroll; }
}

/* Map */
.map-section { scroll-margin-top: var(--header-h); }
.map-section {
  padding: 0;
  background: var(--bg);
}
.map-section__frame {
  width: 100%;
  border-top: 1px solid var(--border);
}
.map-section__frame iframe {
  display: block;
  width: 100%;
  border: 0;
  min-height: 420px;
  height: min(540px, 65vh);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 2rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}
.footer__logo {
  display: inline-block;
  line-height: 0;
}
.footer__logo img {
  height: 72px;
  width: auto;
  max-width: min(320px, 100%);
  display: block;
}
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}
.footer__label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
}
.footer-apps img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-apps a:hover img {
  transform: translateY(-2px);
  opacity: 0.9;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.socials__link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.socials__link:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.socials__link i {
  line-height: 1;
}
.footer__bottom {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 1rem 0;
  font-size: 0.8rem;
}
.footer__copy {
  color: var(--text-muted);
}
.footer__legal {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__legal:hover {
  color: var(--brand);
}
@media (max-width: 900px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2rem 0 1.5rem;
  }
  .footer-apps,
  .footer-socials {
    justify-content: center;
  }
  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

/* Offer page */
.offer-page {
  padding: calc(var(--header-h) + 2rem) 0 0;
}
.offer-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.offer-breadcrumb a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}
.offer-breadcrumb a:hover { color: var(--brand); }
.offer-doc {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.offer-doc__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}
.offer-doc__heading {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.offer-doc__section:first-child .offer-doc__heading {
  margin-top: 0;
}
.offer-doc__body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.offer-doc__body p {
  margin: 0 0 1rem;
}
.offer-doc__body p:last-child { margin-bottom: 0; }
.offer-doc__body a {
  color: #ff8a9b;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.offer-doc__body a:hover { color: var(--brand); }
.offer-doc__body span {
  color: var(--text);
  font-weight: 700;
}
.footer__legal--current {
  color: var(--text-muted);
  font-weight: 600;
  cursor: default;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
