/* Дядя Вова — Солигорск | светлая мятно-оранжевая тема */
:root {
  --mint: #b8e8e8;
  --mint-light: #e8f7f7;
  --mint-soft: #f0fbfb;
  --orange: #f58220;
  --orange-dark: #e06f10;
  --orange-light: #fff4e8;
  --graphite: #1e2a30;
  --graphite-mid: #2d3e47;
  --graphite-dark: #121a1f;
  --footer-text: rgba(255, 255, 255, 0.82);
  --footer-muted: rgba(255, 255, 255, 0.55);
  --text: var(--graphite);
  --text-muted: #5a6a73;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(45, 52, 54, 0.08);
  --shadow-hover: 0 20px 50px rgba(245, 130, 32, 0.18);
  --radius: 20px;
  --font: "Nunito", "Segoe UI", system-ui, sans-serif;
  --font-d: "Montserrat", "Nunito", sans-serif;
  --header: 78px;
  --container-max: 1230px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange); }
.container { width: min(var(--container-max), 94vw); margin: 0 auto; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--graphite-mid);
  transition: box-shadow 0.3s;
  overflow: visible;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header);
}
.logo { flex-shrink: 0; }
.logo img { height: 46px; width: auto; max-width: 200px; }
.nav { flex: 1; min-width: 0; }
@media (min-width: 769px) {
  .nav-list { gap: 0.2rem; }
  .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .nav-sub { min-width: 280px; }
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.75rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: var(--mint-light); color: var(--orange-dark); }
.nav-item.has-child > .nav-link::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}
.nav-sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  margin: 0;
  padding: 0.5rem;
  padding-top: 0.65rem;
  list-style: none;
  background: var(--white);
  border: 2px solid var(--mint);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), visibility 0.2s, transform 0.2s var(--ease);
  pointer-events: none;
  z-index: 1100;
}
@media (min-width: 769px) {
  /* «Мостик» между кнопкой и списком — без него меню гаснет в зазоре */
  .nav-item.has-child::before {
    content: "";
    position: absolute;
    left: -6px;
    right: -6px;
    top: 100%;
    height: 14px;
    z-index: 1099;
  }
  .nav-item.has-child:hover,
  .nav-item.has-child:focus-within {
    z-index: 20;
  }
  .nav-item.has-child:hover > .nav-sub,
  .nav-item.has-child:focus-within > .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.nav-sub a {
  display: block;
  padding: 0.55rem 0.85rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.86rem;
  border-radius: 8px;
}
.nav-sub a:hover { background: var(--orange-light); color: var(--orange-dark); }
.header-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.header-messengers {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.msg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 2px solid var(--mint);
  background: var(--white);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.msg-btn:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}
.msg-btn img { display: block; border-radius: 6px; }
.msg-tg { color: #229ed9; }
.msg-tg:hover { background: #e8f4fc; }
.nav-mobile-only { display: none; }
.header-tel-mobile { display: none; }
.header-phone {
  font-weight: 800;
  color: var(--orange-dark);
  white-space: nowrap;
  font-size: 0.92rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--orange);
  background: var(--orange-light);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.header-phone:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--graphite);
  border-radius: 2px;
}
main { padding-top: var(--header); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(245, 130, 32, 0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  border-color: var(--orange);
  color: var(--orange-dark);
  background: var(--white);
}
.btn-outline:hover { background: var(--orange-light); }
.btn-ghost {
  background: var(--mint-light);
  color: var(--text);
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
button.btn { font-family: inherit; cursor: pointer; }

/* ===== HERO (главная) ===== */
.hero-home {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg, var(--mint-light) 0%, var(--white) 50%, var(--mint-soft) 100%);
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 42, 48, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 42, 48, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--white);
  border: 2px solid var(--graphite-mid);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 1rem;
  animation: fade-up 0.7s var(--ease) both;
}
.hero-home h1 {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--graphite);
  margin: 0 0 1rem;
  animation: fade-up 0.7s var(--ease) 0.1s both;
}
.hero-home h1 span { color: var(--orange-dark); }
.hero-lead {
  font-size: 1.1rem;
  color: var(--graphite-mid);
  margin: 0 0 1.5rem;
  animation: fade-up 0.7s var(--ease) 0.2s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  animation: fade-up 0.7s var(--ease) 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  animation: fade-up 0.7s var(--ease) 0.4s both;
}
.hero-stats div {
  background: var(--white);
  padding: 0.85rem 1.2rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 2px solid var(--graphite-mid);
}
.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--graphite);
  font-family: var(--font-d);
}
.hero-stats span { font-size: 0.8rem; color: var(--text-muted); }
.hero-stat--range strong,
.hero-stat--loaders strong { font-size: 1.15rem; line-height: 1.2; }

/* Правая колонка героя: фургон на фоне + услуги сверху */
.hero-visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  animation: fade-up 0.9s var(--ease) 0.25s both;
}
.hero-floats {
  position: relative;
  min-height: 420px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.hero-van-bg {
  position: absolute;
  left: 50%;
  bottom: -2%;
  transform: translateX(-50%);
  width: 108%;
  max-width: 540px;
  z-index: 0;
  pointer-events: none;
  animation: hero-van-float 7s ease-in-out infinite;
}
.hero-van-front {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 24px 48px rgba(30, 42, 48, 0.12));
}
@keyframes hero-van-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes hero-van-float-mobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.hero-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 132px;
  padding: 0.65rem;
  background: var(--white);
  border-radius: 18px;
  border: 2px solid var(--mint);
  box-shadow: 0 16px 40px rgba(30, 42, 48, 0.12);
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  animation: float-card 5s ease-in-out infinite;
  animation-delay: calc(var(--float-i, 1) * -0.9s);
}
.hero-float-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
  animation-play-state: paused;
  transform: translateY(-12px) scale(1.05);
  z-index: 5;
}
.hero-float-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 10px;
  background: var(--mint-light);
  border-radius: 12px;
}
.hero-float-card span {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--graphite);
  text-align: center;
  line-height: 1.2;
}
.hero-float-card--photo img {
  object-fit: cover;
  padding: 0;
  background: transparent;
}
.hero-float-card:nth-child(2) { top: 0; left: 4%; }
.hero-float-card:nth-child(3) { top: 12%; right: 0; width: 148px; }
.hero-float-card:nth-child(4) { top: 38%; left: 0; }
.hero-float-card:nth-child(5) { top: 32%; right: 8%; width: 120px; }
.hero-float-card:nth-child(6) { bottom: 18%; left: 28%; width: 140px; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* Marquee — бегущая строка */
.marquee {
  overflow: hidden;
  background: var(--graphite-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem 0;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--graphite-dark), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--graphite-dark), transparent);
}
.marquee-viewport {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 1.75rem;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}
a.marquee-item:hover {
  color: var(--orange);
}
.marquee-item::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  opacity: 0.85;
}
.marquee-label { letter-spacing: 0.01em; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Promo — яркий блок */
.promo-hot {
  background: linear-gradient(135deg, #ff9a2e 0%, var(--orange) 45%, #ff6b00 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.promo-hot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(184, 232, 232, 0.4) 0%, transparent 40%);
  pointer-events: none;
}
.promo-hot-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
.promo-hot-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: var(--graphite);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.promo-hot h2 {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  color: var(--white);
  margin: 0 0 0.75rem;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(30, 42, 48, 0.2);
}
.promo-hot h2 span {
  color: #fff8e8;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 4px;
}
.promo-hot-content p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.promo-hot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.promo-hot-list li {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.promo-hot-cta {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 50px rgba(30, 42, 48, 0.25);
  text-align: center;
}
.promo-hot-phone {
  margin: 0 0 1rem;
  font-family: var(--font-d);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
}
.promo-hot-phone a {
  color: var(--graphite);
  text-decoration: none;
}
.promo-hot-phone a:hover { color: var(--orange-dark); }
.promo-hot-btns {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.btn-hot-primary {
  background: var(--graphite);
  color: var(--white);
  border: 2px solid var(--graphite);
  padding: 1rem 1.5rem;
  font-weight: 800;
  border-radius: 999px;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
}
.btn-hot-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-hot-outline {
  background: transparent;
  color: var(--orange-dark);
  border: 2px solid var(--orange);
  padding: 0.95rem 1.5rem;
  font-weight: 800;
  border-radius: 999px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-hot-outline:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}
.promo-hot-note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Promo mini — тёмная полоска перед подвалом */
.promo-mini {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--graphite-dark) 0%, var(--graphite) 50%, #2a3f4a 100%);
  border-top: 1px solid rgba(245, 130, 32, 0.35);
  border-bottom: 1px solid rgba(245, 130, 32, 0.35);
  padding: 0.85rem 0;
}
.promo-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 40% 100% at 50% 50%, rgba(245, 130, 32, 0.15) 0%, transparent 70%);
}
.promo-mini-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.promo-mini-inner p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}
.promo-mini-inner strong {
  color: var(--white);
}
.promo-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.promo-mini .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.promo-mini .btn-outline:hover {
  background: var(--white);
  color: var(--graphite);
}

/* Slider slide 2 - compact banner */
.hero-banner {
  background: var(--mint);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.hero-banner--photo {
  background: var(--graphite-dark);
  color: var(--white);
  padding: 3rem 0;
}
.hero-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-banner--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(18, 26, 31, 0.92) 0%, rgba(18, 26, 31, 0.55) 55%, rgba(18, 26, 31, 0.35) 100%);
  z-index: 1;
}
.hero-banner--photo .container {
  position: relative;
  z-index: 2;
}
.hero-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-banner h2 {
  font-family: var(--font-d);
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--graphite);
}
.hero-banner--photo h2 { color: var(--white); }
.hero-banner p { margin: 0.35rem 0 0; color: var(--text-muted); }
.hero-banner--photo p { color: rgba(255, 255, 255, 0.82); }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 70%);
  border-bottom: 3px solid var(--graphite-mid);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.5rem 0 1rem;
  color: var(--graphite);
}
.breadcrumbs { font-size: 0.85rem; color: var(--graphite-mid); margin-bottom: 0.5rem; }
.breadcrumbs span { color: var(--graphite); font-weight: 700; }
.breadcrumbs a { color: var(--orange-dark); font-weight: 600; }
.hero-bullets { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.hero-bullets li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  font-weight: 600;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}
/* ===== SECTIONS ===== */
.section { padding: 4.5rem 0; }
.section-mint { background: var(--mint-soft); }
.section-white { background: var(--white); }

/* ===== DARK SECTIONS (цены, отзывы, FAQ, акценты) ===== */
.section-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #1a252b 0%, var(--graphite) 44%, #2a3f4a 100%);
  color: rgba(255, 255, 255, 0.92);
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 42% at 94% 6%, rgba(245, 130, 32, 0.24) 0%, transparent 58%),
    radial-gradient(ellipse 45% 38% at 2% 98%, rgba(184, 232, 232, 0.16) 0%, transparent 52%);
}
.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  opacity: 0.85;
}
.section-dark > .container,
.section-dark > .container-fluid {
  position: relative;
  z-index: 1;
}
.section-dark .section-head h2 {
  color: var(--white);
}
.section-dark .section-head h2 em {
  color: var(--orange);
  font-style: normal;
}
.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}
.section-dark .label {
  background: rgba(245, 130, 32, 0.2);
  color: var(--mint);
  border: 1px solid rgba(245, 130, 32, 0.35);
}
.section-dark .pricing-wrap {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(184, 232, 232, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.section-dark .pricing-table th {
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
}
.section-dark .pricing-table td {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}
.section-dark .pricing-table td:last-child,
.section-dark .pricing-table--wide td:nth-child(2) {
  color: var(--orange);
}
.section-dark .pricing-table__note {
  color: rgba(255, 255, 255, 0.62) !important;
}
.section-dark .pricing-table td a {
  color: var(--mint);
}
.section-dark .pricing-table td a:hover {
  color: var(--orange);
}
.section-dark .prices-note,
.section-dark .prices-note a {
  color: rgba(255, 255, 255, 0.7);
}
.section-dark .prices-note a:hover {
  color: var(--orange);
}
.section-dark .faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.section-dark .faq-item summary {
  color: var(--white);
}
.section-dark .faq-item summary:hover {
  color: var(--orange);
}
.section-dark .faq-item[open] summary {
  color: var(--orange);
}
.section-dark .faq-answer {
  color: rgba(255, 255, 255, 0.72);
}
.section-dark .faq-answer a {
  color: var(--mint);
}
.section-dark .review-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.section-dark .review-card:hover {
  border-color: rgba(245, 130, 32, 0.45);
  transform: translateY(-4px);
}
.section-dark .review-top strong,
.section-dark .service-review-card .review-service {
  color: rgba(255, 255, 255, 0.9);
}
.section-dark .review-date {
  color: rgba(255, 255, 255, 0.5);
}
.section-dark .review-card p {
  color: rgba(255, 255, 255, 0.78);
}
.section-dark .review-avatar {
  background: linear-gradient(145deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
}
.section-dark .filter-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}
.section-dark .filter-btn:hover,
.section-dark .filter-btn.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.section-dark .carousel-arrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.section-dark .carousel-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.section-dark .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}
.section-dark .btn-outline:hover {
  background: var(--white);
  color: var(--graphite);
  border-color: var(--white);
}
.section-dark .prices-example {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(184, 232, 232, 0.25);
}
.section-dark .prices-example h3 {
  color: var(--white);
}
.section-dark .prices-example__meta {
  color: rgba(255, 255, 255, 0.6);
}
.section-dark .prices-factor {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.section-dark .prices-factor h3 {
  color: var(--white);
}
.section-dark .prices-factor p {
  color: rgba(255, 255, 255, 0.68);
}
.section-dark .prose h2,
.section-dark .prose h3 {
  color: var(--white);
}
.section-dark .prose p,
.section-dark .prose li {
  color: rgba(255, 255, 255, 0.78);
}
.section-dark .prose a {
  color: var(--mint);
}
.section-dark .prose a:hover {
  color: var(--orange);
}
.section-dark .prose strong {
  color: var(--white);
}
.section-dark .prices-cta-band__inner h2 {
  color: var(--white);
  font-family: var(--font-d);
}
.section-dark .prices-cta-band__inner p {
  color: rgba(255, 255, 255, 0.75);
}
.section-dark .gallery-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}
.section-dark .gallery-item figcaption {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.35);
}
.section-dark .gallery-item:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head h2 {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0.4rem 0;
  color: var(--graphite);
}
.section-head h2 em {
  font-style: normal;
  color: var(--orange-dark);
}
.section-head p { color: var(--text-muted); margin: 0; }
.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-dark);
  background: var(--orange-light);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--mint-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.service-card-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.service-card-icon--svg img { object-fit: contain; padding: 6px; background: var(--white); }
.service-card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; color: var(--graphite); }
.service-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.service-card-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.service-card--photo {
  padding: 0;
  overflow: hidden;
}
.service-card--photo h3 {
  margin: 0 0 0.5rem;
  padding: 0 1.5rem;
  padding-top: 1rem;
}
.service-card--photo ul {
  padding: 0 1.5rem;
}
.service-card--photo .service-card-actions {
  padding: 0 1.5rem 1.5rem;
}
.service-card--photo h3 a {
  color: inherit;
  text-decoration: none;
}
.service-card--photo h3 a:hover { color: var(--orange-dark); }
.service-card-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 2px solid var(--mint);
}
.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.service-card--photo:hover .service-card-thumb img { transform: scale(1.04); }

/* About split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  border: 3px solid var(--mint);
  box-shadow: var(--shadow);
}
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--mint);
  transition: transform 0.3s;
}
.feature:hover { transform: translateY(-6px); border-color: var(--orange); }
.feature img { margin: 0 auto 1rem; width: 64px; }

/* Pricing */
.pricing-wrap {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--mint);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--mint-light);
}
.pricing-table th {
  background: var(--graphite);
  color: var(--white);
  font-family: var(--font-d);
}
.pricing-table td:last-child {
  font-weight: 800;
  color: var(--orange-dark);
}
.pricing-table--wide td:nth-child(2) {
  font-weight: 800;
  color: var(--orange-dark);
  white-space: nowrap;
}
.pricing-table__note {
  font-size: 0.9rem;
  font-weight: 400 !important;
  color: var(--graphite-mid) !important;
  line-height: 1.45;
}
.pricing-table td a {
  color: var(--graphite);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pricing-table td a:hover { color: var(--orange-dark); }

/* Страница цен */
.prices-intro-grid {
  display: grid;
  grid-template-columns: 1fr min(320px, 100%);
  gap: 2rem;
  align-items: start;
}
.prices-lead { font-size: 1.1rem; margin: 0 0 1rem; }
.prices-highlights {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  line-height: 1.6;
}
.prices-highlights li { margin-bottom: 0.35rem; }
.prices-intro-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.prices-callout {
  background: linear-gradient(145deg, var(--graphite) 0%, var(--graphite-mid) 100%);
  color: var(--white);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.prices-callout__tag {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mint);
}
.prices-callout a { color: var(--mint); font-weight: 800; font-size: 1.1rem; }
.prices-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--mint-light);
}
.prices-toc a {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--mint-light);
  color: var(--graphite);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.prices-toc a:hover {
  background: var(--orange);
  color: var(--white);
}
.prices-note {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: var(--graphite-mid);
  line-height: 1.55;
}
.prices-examples {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.prices-example {
  background: var(--white);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}
.prices-example h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--graphite);
}
.prices-example__meta {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.prices-example__sum {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange-dark);
  font-family: var(--font-d);
}
.prices-factors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.prices-factor {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--mint);
  padding: 1.25rem;
}
.prices-factor__n {
  display: inline-block;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 0.35rem;
}
.prices-factor h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.prices-factor p { margin: 0; font-size: 0.92rem; color: var(--graphite-mid); line-height: 1.5; }
.prices-pay { max-width: 52rem; }
.prices-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.prices-cta-band__inner h2 { margin: 0 0 0.35rem; font-family: var(--font-d); }
.prices-cta-band__inner p { margin: 0; color: var(--graphite-mid); }
.prices-cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (max-width: 768px) {
  .prices-intro-grid { grid-template-columns: 1fr; }
}

/* Цены и отзывы на страницах услуг */
.service-prices .section-head { margin-bottom: 1.25rem; }
.service-reviews-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.service-review-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-review-card p { flex: 1; margin-bottom: 0; }
.service-reviews .reviews-cta { margin-top: 1.5rem; text-align: center; }

/* Преимущества и этапы — страницы услуг */
.svc-benefits.section-dark {
  --svc-card-bg: rgba(255, 255, 255, 0.04);
  --svc-card-border: rgba(255, 255, 255, 0.1);
}
.svc-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 1024px) {
  .svc-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .svc-benefits__grid { grid-template-columns: 1fr; }
}
.svc-benefit-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.4rem;
  background: var(--svc-card-bg);
  border: 1px solid var(--svc-card-border);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.svc-stagger.visible .svc-benefit-card {
  animation: svc-card-in 0.55s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.09s);
}
.svc-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  right: 1.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 130, 32, 0.55), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.svc-benefit-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 130, 32, 0.35);
  transform: translateY(-3px);
}
.svc-benefit-card:hover::before { opacity: 1; }
.svc-benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.1rem;
  color: var(--orange);
  border: 1px solid rgba(245, 130, 32, 0.28);
  border-radius: 10px;
  background: rgba(245, 130, 32, 0.06);
}
.svc-icon-svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
.svc-benefit-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}
.svc-benefit-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}
@keyframes svc-card-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.svc-steps__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.svc-steps__track::before {
  content: "";
  position: absolute;
  left: 1.65rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 3px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--mint) 100%);
  border-radius: 3px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.1s var(--ease);
}
.svc-steps__track.svc-stagger.visible::before {
  transform: scaleY(1);
}
.svc-step-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  opacity: 0;
  transform: translateX(-16px);
}
.svc-stagger--steps.visible .svc-step-item {
  animation: svc-step-in 0.55s var(--ease) forwards;
  animation-delay: calc(0.25s + var(--i, 0) * 0.14s);
}
.svc-step-item__marker {
  position: relative;
  width: 3.3rem;
  height: 3.3rem;
  flex-shrink: 0;
}
.svc-step-item__num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(245, 130, 32, 0.35);
}
.svc-step-item__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0;
  animation: svc-step-pulse 2.2s ease-out infinite;
  animation-delay: calc(var(--i, 0) * 0.4s);
}
.svc-stagger--steps.visible .svc-step-item__pulse {
  opacity: 1;
}
.svc-step-item__body h3 {
  margin: 0.15rem 0 0.35rem;
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: var(--graphite);
}
.svc-step-item__body p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--graphite-mid);
}
@keyframes svc-step-in {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes svc-step-pulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  70% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}
@media (min-width: 900px) {
  .svc-steps__track--horizontal {
    flex-direction: row;
    max-width: none;
    gap: 0.5rem;
  }
}
@media (max-width: 600px) {
  .svc-steps__track::before { left: 1.45rem; }
  .svc-step-item {
    grid-template-columns: 2.85rem 1fr;
    gap: 0.75rem;
  }
  .svc-step-item__marker { width: 2.75rem; height: 2.75rem; }
}

/* Reviews */
.reviews-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--mint);
  background: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--text);
  cursor: pointer;
  transition: 0.25s;
}
.filter-btn.is-active,
.filter-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.reviews-carousel { display: flex; align-items: center; gap: 0.65rem; }
.reviews-viewport { overflow: hidden; flex: 1; }
.reviews-track {
  display: flex;
  gap: 1.1rem;
  transition: transform 0.5s var(--ease);
}
.review-card {
  flex: 0 0 min(320px, 82vw);
  background: var(--white);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.review-card.is-hidden { display: none; }
.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.review-service { display: block; font-size: 0.78rem; color: var(--orange-dark); font-weight: 600; }
.review-date,
time.review-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: normal;
}
.stars { letter-spacing: 2px; }
.stars .on { color: var(--orange); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.1rem;
}
.carousel-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  flex-shrink: 0;
}
.reviews-cta { text-align: center; margin-top: 1.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 2px solid var(--mint);
  border-radius: 14px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  color: var(--graphite);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 1.3rem 1.1rem; color: var(--text-muted); }

/* Content */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.prose h2, .prose h3 { color: var(--graphite); font-family: var(--font-d); }
.review-top strong { color: var(--graphite); }
.cta-grid h2 { color: var(--graphite); font-family: var(--font-d); }
.prose img { border-radius: var(--radius); border: 2px solid var(--mint); }
.content-photo {
  width: 100%;
  border-radius: var(--radius);
  border: 3px solid var(--mint);
  box-shadow: var(--shadow);
}
.split .content-photo { margin: 0; }
.photo-gallery--svc {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .photo-gallery--svc { grid-template-columns: 1fr; }
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--mint);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.gallery-item-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.gallery-item-link:hover img { opacity: 0.92; }
.photo-gallery--home {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .photo-gallery--home { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--graphite-mid);
  text-align: center;
}
/* ===== DARK PAGE HERO (внутренние страницы) ===== */
.page-hero-dark {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(145deg, var(--graphite-dark) 0%, var(--graphite) 45%, #243540 100%);
  color: var(--white);
}
.page-hero-dark__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-hero-dark__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: page-hero-dark-orb-float 14s ease-in-out infinite;
}
.page-hero-dark__orb--1 {
  width: 320px;
  height: 320px;
  background: var(--orange);
  top: -80px;
  right: 10%;
  animation-delay: 0s;
}
.page-hero-dark__orb--2 {
  width: 260px;
  height: 260px;
  background: var(--mint);
  bottom: -60px;
  left: -40px;
  animation-delay: -4s;
}
.page-hero-dark__orb--3 {
  width: 180px;
  height: 180px;
  background: #4a9eff;
  top: 40%;
  left: 35%;
  opacity: 0.35;
  animation-delay: -7s;
}
.page-hero-dark__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}
@keyframes page-hero-dark-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(18px, -12px) scale(1.05); }
  66% { transform: translate(-12px, 16px) scale(0.95); }
}
.page-hero-dark__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.breadcrumbs--light,
.breadcrumbs--light a { color: rgba(255, 255, 255, 0.75); }
.breadcrumbs--light a:hover { color: var(--orange); }
.breadcrumbs--light span { color: var(--white); }
.page-hero-dark__badge {
  display: inline-block;
  margin: 0.75rem 0 0.5rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.page-hero-dark h1 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--white);
}
.page-hero-dark h1 span { color: var(--orange); }
.page-hero-dark__inner--solo {
  grid-template-columns: 1fr;
  max-width: 820px;
}
.page-hero-dark__inner--solo.page-hero-dark__inner {
  margin-left: auto;
  margin-right: auto;
}
.page-hero-dark__inner--split {
  grid-template-columns: 1.1fr 0.9fr;
}
.hero-bullets--light { margin: 0 0 1.25rem; }
.hero-bullets--light li { color: rgba(255, 255, 255, 0.9); }
.hero-bullets--light li::before { color: var(--orange); }
.page-hero-dark__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.page-hero-dark__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.page-hero-dark__chip:hover {
  background: rgba(245, 130, 32, 0.25);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.page-hero-dark__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}
.hero-actions--light { margin-bottom: 1.25rem; }
.btn-ghost-light {
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
  color: var(--white);
}
.page-hero-dark__visual { display: flex; justify-content: center; }
.page-hero-dark__frame {
  position: relative;
  border-radius: 24px;
  padding: 6px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--mint) 50%, rgba(255, 255, 255, 0.3) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: page-hero-dark-frame-glow 6s ease-in-out infinite;
}
@keyframes page-hero-dark-frame-glow {
  0%, 100% { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 rgba(245, 130, 32, 0); }
  50% { box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), 0 0 40px rgba(245, 130, 32, 0.25); }
}
.page-hero-dark__photo {
  display: block;
  width: 100%;
  max-width: 400px;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.page-hero-dark__frame--icon {
  padding: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
}
.page-hero-dark__photo--icon {
  max-width: min(340px, 42vw);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}
.page-hero-dark__inner--split .page-hero-dark__visual:has(.page-hero-dark__frame--icon) {
  align-items: center;
}
.contacts-section {
  margin-top: -2rem;
  padding-top: 0;
  position: relative;
  z-index: 2;
}
.contacts-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.contact-card--wide { grid-column: span 2; }
.contact-card--phone .contact-card__value a {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--graphite);
}
.contact-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}
.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card__icon svg { display: block; }
.contact-card__value {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}
.contact-card__value a { color: var(--graphite); }
.contact-card__value a:hover { color: var(--orange-dark); }
.contact-card__hint {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.contacts-social-row .header-messengers { gap: 0.5rem; margin-top: 0.35rem; }
.contacts-social-row .msg-btn {
  width: 48px;
  height: 48px;
  border-color: var(--mint);
}
.page-hero-dark--compact {
  padding: 1.75rem 0 2.25rem;
}

/* ===== BLOG / NOVOSTI ===== */
.blog-page {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(180deg, var(--mint-soft) 0%, var(--white) 120px);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
.blog-feed-lead {
  margin: 0 0 1.5rem;
  color: var(--graphite-mid);
  font-size: 1.02rem;
  line-height: 1.6;
}
.blog-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--mint);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}
.blog-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 200px;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
}
.blog-card__body { padding: 1.35rem 1.5rem; }
.blog-card__date {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.blog-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-d);
  font-size: 1.2rem;
  line-height: 1.3;
}
.blog-card__title a { color: var(--graphite); }
.blog-card__title a:hover { color: var(--orange-dark); }
.blog-card__excerpt {
  margin: 0 0 0.85rem;
  color: var(--graphite-mid);
  font-size: 0.95rem;
  line-height: 1.55;
}
.blog-card__more {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--orange-dark);
}

/* Страница «О компании» */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.about-lead { font-size: 1.12rem; line-height: 1.65; margin-bottom: 1rem; }
.about-highlights {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.about-highlights li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  font-size: 0.98rem;
  color: var(--graphite-mid);
}
.about-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.about-intro-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.about-stat {
  padding: 1.15rem 1rem;
  text-align: center;
  background: var(--white);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-stat strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1.65rem;
  color: var(--orange-dark);
  line-height: 1.1;
}
.about-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.about-value {
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}
.about-value__n {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.06em;
}
.about-value h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--white);
}
.about-value p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}
.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
}
.about-timeline__item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(30, 42, 48, 0.08);
}
.about-timeline__item:last-child { border-bottom: none; }
.about-timeline__year {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--orange-dark);
}
.about-timeline__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  color: var(--graphite);
}
.about-timeline__item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--graphite-mid);
  line-height: 1.55;
}
.about-zone-grid {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 300px);
  gap: 2rem;
  align-items: start;
}
.about-zone-aside {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-zone-aside h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-d);
  font-size: 1.05rem;
}
.about-zone-aside ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.about-zone-aside li { margin-bottom: 0.45rem; font-weight: 600; }
.about-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-services a {
  display: block;
  padding: 0.55rem 0;
  font-weight: 700;
  color: var(--graphite);
  border-bottom: 1px solid var(--mint);
}
.about-services a:hover { color: var(--orange-dark); border-color: var(--orange); }
.about-services-cta { margin: 1.25rem 0 0; text-align: center; }
.about-clients {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 2rem;
  align-items: center;
}
.about-clients__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-clients__list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}
.about-clients__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}
.about-clients__cta {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}
.about-clients__cta p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .about-intro-grid,
  .about-zone-grid,
  .about-clients { grid-template-columns: 1fr; }
}

/* Страница «Сотрудничество» */
.partner-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.partner-lead { font-size: 1.12rem; line-height: 1.65; margin-bottom: 1rem; }
.partner-highlights {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.partner-highlights li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  font-size: 0.98rem;
  color: var(--graphite-mid);
}
.partner-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.partner-intro-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.partner-callout {
  padding: 1.5rem 1.35rem;
  background: linear-gradient(145deg, var(--orange-light) 0%, var(--mint-light) 100%);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.partner-callout__tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-dark);
}
.partner-callout p { margin: 0 0 0.85rem; font-size: 0.94rem; line-height: 1.55; color: var(--graphite-mid); }
.partner-callout ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.partner-callout li {
  padding: 0.35rem 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--graphite);
}
.partner-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.partner-benefit {
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}
.partner-benefit__n {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.06em;
}
.partner-benefit h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--white);
}
.partner-benefit p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}
.partner-segments {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.partner-segment {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 2px solid rgba(184, 232, 232, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.partner-segment:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}
.partner-segment h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-d);
  font-size: 1.08rem;
  color: var(--graphite);
}
.partner-segment p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--graphite-mid);
}
.partner-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  counter-reset: partner-step;
}
.partner-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.partner-step__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 12px;
}
.partner-step h3 {
  margin: 0.1rem 0 0.35rem;
  font-size: 1.02rem;
  color: var(--graphite);
}
.partner-step p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--graphite-mid);
}
.partner-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.partner-svc-card {
  display: block;
  padding: 1.35rem 1.25rem 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.partner-svc-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 130, 32, 0.45);
  transform: translateY(-3px);
  color: inherit;
}
.partner-svc-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--white);
}
.partner-svc-card p {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}
.partner-svc-card__link {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--orange);
}
.partner-svc-note {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}
.partner-svc-note a { color: var(--mint); font-weight: 700; }
.section-dark .partner-svc-note { color: rgba(255, 255, 255, 0.7); }
.section-dark .partner-svc-note a { color: var(--mint); }
.section-dark .partner-svc-note a:hover { color: var(--orange); }
.partner-docs-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 300px);
  gap: 2rem;
  align-items: start;
}
.partner-docs-aside {
  padding: 1.35rem 1.25rem;
  background: var(--mint-soft);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
}
.partner-docs-aside h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-d);
  font-size: 1.05rem;
}
.partner-docs-aside p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--graphite-mid);
  line-height: 1.5;
}
.partner-docs-aside .btn { margin-bottom: 0.5rem; }
.prices-cta-band__inner--partner h2 { color: var(--graphite); }
.prices-cta-band__inner--partner p { color: var(--graphite-mid); }
@media (max-width: 900px) {
  .partner-intro-grid,
  .partner-docs-grid { grid-template-columns: 1fr; }
  .partner-steps { grid-template-columns: 1fr; }
}

/* Карусель блога на главной */
.section-blog-home { overflow: hidden; }
.blog-carousel {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}
.blog-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.blog-track {
  display: flex;
  gap: 1.1rem;
  transition: transform 0.5s var(--ease);
}
.blog-card--carousel {
  flex: 0 0 min(340px, 86vw);
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  min-height: 100%;
}
.blog-card--carousel .blog-card__media {
  min-height: 0;
  aspect-ratio: 16 / 10;
  max-height: none;
}
.blog-card--carousel .blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.35rem 1.35rem;
}
.blog-card--carousel .blog-card__excerpt {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card--carousel .blog-card__title {
  font-size: 1.08rem;
}
.blog-carousel-cta {
  margin: 1.5rem 0 0;
  text-align: center;
}
@media (max-width: 768px) {
  .blog-carousel .carousel-arrow { display: none; }
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--header) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sidebar-widget {
  background: var(--white);
  border: 2px solid var(--mint);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
}
.sidebar-widget--accent {
  background: linear-gradient(145deg, var(--graphite) 0%, var(--graphite-mid) 100%);
  border-color: var(--graphite-mid);
  color: var(--footer-text);
}
.sidebar-widget--accent .sidebar-title { color: var(--white); }
.sidebar-widget--accent .sidebar-links a { color: var(--footer-text); }
.sidebar-widget--accent .sidebar-links a:hover { color: var(--orange); }
.sidebar-widget--toc {
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--orange-light) 0%, var(--white) 100%);
}
.sidebar-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-d);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--graphite);
}
.sidebar-text {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.sidebar-toc ol {
  margin: 0;
  padding: 0 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.sidebar-toc a {
  color: var(--graphite-mid);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.35;
  transition: color 0.2s, padding-left 0.2s;
}
.sidebar-toc a:hover {
  color: var(--orange-dark);
  padding-left: 4px;
}
.sidebar-posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sidebar-post {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--mint);
  background: var(--mint-soft);
  transition: border-color 0.2s, background 0.2s;
}
.sidebar-post:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}
.sidebar-post__tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.2rem;
}
.sidebar-post__title {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.3;
}
.sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sidebar-links a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--graphite-mid);
}
.sidebar-links a:hover { color: var(--orange-dark); }
.sidebar-more {
  display: inline-block;
  margin-top: 0.65rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--orange-dark);
}
.blog-article {
  background: var(--white);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
}
.article-title {
  font-family: var(--font-d);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  line-height: 1.2;
  margin: 0;
  color: var(--graphite);
}
.article-cover {
  margin: 1.5rem 0 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--mint);
}
.article-cover img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-inline-photo {
  margin: 1.5rem 0;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--mint);
  background: var(--white);
  box-shadow: var(--shadow);
}
.article-inline-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-inline-photo figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--graphite-mid);
  background: var(--mint-light);
  border-top: 1px solid var(--mint);
}
.article-toc-inline {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--mint-light);
  border-radius: 14px;
  border: 2px solid var(--mint);
}
.article-toc-label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-dark);
}
.article-toc-inline ol {
  margin: 0;
  padding: 0 0 0 1.2rem;
  columns: 2;
  column-gap: 1.5rem;
}
.article-toc-inline li {
  margin-bottom: 0.4rem;
  break-inside: avoid;
}
.article-toc-inline a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--graphite-mid);
}
.article-toc-inline a:hover { color: var(--orange-dark); }
.article-prose h2 {
  scroll-margin-top: calc(var(--header) + 1rem);
  font-family: var(--font-d);
  font-size: 1.25rem;
  margin: 2rem 0 0.85rem;
  padding-top: 0.5rem;
  color: var(--graphite);
  position: relative;
}
.article-prose h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.article-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--mint);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.article-footer p { margin: 0; color: var(--graphite-mid); }

/* SEO-текст на главной */
.seo-block { max-width: 100%; }
.seo-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.seo-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.seo-photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--mint);
  box-shadow: var(--shadow);
  display: block;
}
.seo-main p {
  color: var(--graphite-mid);
  margin: 0 0 1.15rem;
  line-height: 1.75;
}
.seo-main p:first-of-type { font-size: 1.05rem; color: var(--graphite); }
.seo-main h3 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  color: var(--graphite);
  margin: 1.75rem 0 0.75rem;
  padding-left: 0.85rem;
  border-left: 4px solid var(--orange);
}
.seo-main a:not(.btn) { font-weight: 700; }
.link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 700;
  color: var(--orange-dark);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-btn:hover { color: var(--orange); }
.seo-highlight {
  background: linear-gradient(160deg, var(--mint-light), var(--white));
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
}
.seo-highlight h3 {
  margin: 0 0 1rem;
  font-family: var(--font-d);
  font-size: 1.05rem;
  color: var(--graphite);
}
.seo-highlight ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.seo-highlight li {
  padding-left: 1.35rem;
  position: relative;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--graphite-mid);
  line-height: 1.45;
}
.seo-highlight li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.seo-note {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-light) 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -10%;
  width: 80%;
  height: 100px;
  background: var(--orange);
  opacity: 0.2;
  transform: rotate(-6deg);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-phone {
  color: var(--orange-dark);
  font-size: 1.4rem;
  font-weight: 800;
}
.cta-phone:hover { color: var(--orange); }
.form-box {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--mint);
  box-shadow: var(--shadow);
}
.form-box label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 0.35rem; }
.form-box input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--mint);
  border-radius: 12px;
  font-family: inherit;
  margin-bottom: 1rem;
}
.form-box input:focus {
  outline: none;
  border-color: var(--orange);
}
.form-msg { font-size: 0.9rem; margin-top: 0.5rem; min-height: 1.25em; }
.form-msg.is-error { color: #c0392b; font-weight: 600; }
.form-msg.is-success { color: #1a7a4a; font-weight: 600; }
.form-box textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--mint);
  border-radius: 12px;
  font-family: inherit;
  margin-bottom: 1rem;
  resize: vertical;
  min-height: 80px;
}
.form-box textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-box .optional { font-weight: 400; color: var(--text-muted); font-size: 0.85em; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.cta-info .cta-note {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cta-form-col .form-box { margin: 0; }
.form-privacy {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.form-privacy a { color: var(--orange-dark); font-weight: 600; }
.cta-side p { margin: 0; color: var(--graphite-mid); }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 48, 0.55);
  backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  border: 3px solid var(--graphite-mid);
  box-shadow: 0 24px 60px rgba(30, 42, 48, 0.25);
  padding: 2rem 1.75rem 1.75rem;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s var(--ease);
}
.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}
.modal-head {
  text-align: center;
  margin-bottom: 1.15rem;
  padding-right: 1.5rem;
}
.modal-logo {
  display: block;
  margin: 0 auto 0.85rem;
  height: 52px;
  width: auto;
  max-width: min(220px, 100%);
  object-fit: contain;
}
.modal-panel h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-d);
  color: var(--graphite);
  font-size: 1.5rem;
}
.modal-lead {
  margin: 0;
  color: var(--graphite-mid);
  font-size: 0.95rem;
  line-height: 1.45;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.85rem 0 0.25rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
  cursor: pointer;
}
.form-consent input {
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--orange);
  cursor: pointer;
}
.form-consent a {
  color: var(--orange-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent.is-invalid {
  color: #c0392b;
}
.form-consent.is-invalid a { color: #a93226; }
.modal .form-box .btn[type="submit"] {
  margin-top: 0.65rem;
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--graphite);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: var(--orange);
  color: var(--white);
}
.modal .form-box {
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Contacts cards (legacy grid + bento) */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.contact-card {
  background: var(--white);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--mint);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}
.contact-card h3 {
  margin: 0;
  color: var(--graphite);
  font-size: 0.95rem;
  font-family: var(--font-d);
}
.contact-card--social { background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 100%); }

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--graphite) 0%, var(--graphite-dark) 100%);
  color: var(--footer-text);
  padding: 0 0 1.5rem;
  margin-top: 0;
}
.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--mint) 50%, var(--orange) 100%);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr 1.15fr;
  gap: 2.5rem 2rem;
  padding: 3rem 0 2.25rem;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.footer-logo {
  display: inline-block;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.25s, background 0.25s;
}
.footer-logo:hover {
  border-color: rgba(245, 130, 32, 0.5);
  background: rgba(255, 255, 255, 0.1);
}
.footer-logo img {
  height: 42px;
  width: auto;
  filter: brightness(1.08);
}
.footer-tagline {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--footer-muted);
  max-width: 300px;
}
.footer-tagline strong { color: var(--mint); font-weight: 700; }
.footer-title {
  margin: 0 0 1.1rem;
  font-family: var(--font-d);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}
.footer-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-top: 0.5rem;
}
.footer-links,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a,
.footer-contact-list a {
  color: var(--footer-text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover,
.footer-contact-list a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-contact-list span {
  font-size: 0.9rem;
  color: var(--footer-muted);
}
.footer-phone {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: var(--white) !important;
}
.footer-phone:hover { color: var(--orange) !important; }
.footer-social-label {
  margin: 1.25rem 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--footer-muted);
}
.footer-social { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.footer-social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}
.footer-social-btn img { display: block; }
.footer-social-btn--tg {
  background: #229ed9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm4.89 6.55c-.17 1.89-.92 6.46-1.3 8.57-.16.9-.48 1.2-.79 1.23-.68.06-1.19-.44-1.84-.86-1.03-.68-1.62-1.1-2.62-1.76-1.16-.76-.41-1.18.26-1.86.27-.27 3.18-2.96 3.25-3.24a.28.28 0 0 0-.06-.25c-.07-.06-.16-.04-.24-.03-.1.02-1.75 1.1-4.94 3.27-.47.32-.89.48-1.27.47-.42-.01-1.22-.24-1.82-.44-.74-.24-1.32-.37-1.27-.79.03-.22.32-.44.87-.66 3.42-1.49 5.7-2.47 6.83-2.95 3.25-1.36 3.93-1.6 4.37-1.6.1 0 .32.02.46.14.12.1.15.23.17.32-.01.07 0 .28-.01.44z'/%3E%3C/svg%3E") center/22px no-repeat;
}
.footer-social-btn--tg:hover { background-color: #1a8bc4; }
/* Плавающие кнопки: слева звонок + мессенджеры, справа наверх */
.fab-dock--left {
  position: fixed;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.fab-round {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 10px 32px rgba(30, 42, 48, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.fab-round:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(30, 42, 48, 0.28);
}
.fab-round--phone {
  background: linear-gradient(145deg, var(--orange) 0%, var(--orange-dark) 100%);
  animation: fab-pulse 2.5s ease-in-out infinite;
}
.fab-round--chat {
  background: linear-gradient(145deg, var(--graphite-mid) 0%, var(--graphite) 100%);
}
.fab-dock--left.is-open .fab-round--chat {
  background: var(--mint);
  color: var(--graphite);
  transform: rotate(-8deg) scale(1.02);
}
.fab-round--top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 999;
  background: var(--white);
  color: var(--graphite);
  border: 2px solid var(--mint);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease);
}
.fab-round--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.fab-round--top:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}
.fab-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.15rem;
  pointer-events: none;
}
.fab-popup .fab-round {
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.fab-dock--left.is-open .fab-popup {
  pointer-events: auto;
}
.fab-dock--left.is-open .fab-popup .fab-round {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fab-dock--left.is-open .fab-popup .fab-round:nth-child(1) { transition-delay: 0.05s; }
.fab-dock--left.is-open .fab-popup .fab-round:nth-child(2) { transition-delay: 0.1s; }
.fab-dock--left.is-open .fab-popup .fab-round:nth-child(3) { transition-delay: 0.15s; }
.fab-round--tg { background: #229ed9; }
.fab-round--vb {
  background: #7360f2;
  padding: 0;
}
.fab-round--vb img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.fab-round--wa { background: #25d366; }
.fab-round svg { display: block; }
@keyframes fab-pulse {
  50% { box-shadow: 0 12px 40px rgba(245, 130, 32, 0.55); }
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.35rem;
  font-size: 0.84rem;
}
.footer-copy {
  margin: 0;
  color: var(--footer-muted);
}
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a {
  color: var(--footer-muted);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--mint); }
.policy-prose h2 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  color: var(--graphite);
}
/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* Icon pattern decoration */
.pattern-icons {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect fill='%232d3436' x='10' y='15' width='20' height='15' rx='2'/%3E%3C/svg%3E");
  pointer-events: none;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; order: 2; }
  .blog-feed { order: 1; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card__media { min-height: 200px; max-height: 220px; }
  .article-toc-inline ol { columns: 1; }
  .page-hero-dark__inner { grid-template-columns: 1fr; }
  .page-hero-dark__visual { order: -1; }
  .page-hero-dark__photo { max-width: 320px; margin: 0 auto; }
  .contacts-bento { grid-template-columns: 1fr 1fr; }
  .contact-card--wide { grid-column: span 2; }
  .hero-grid, .split, .cta-grid, .content-grid, .seo-layout, .promo-hot-inner { grid-template-columns: 1fr; }
  .promo-hot-cta { margin-top: 0.5rem; }
  .features { grid-template-columns: 1fr; }
  .hero-visual-col { display: none; }
  .hero-grid { padding: 2.25rem 0; }
  .hero-text { max-width: none; }
  /* Фургон справа на фоне (та же картинка, что в десктоп-колонке) */
  .hero-home {
    background:
      linear-gradient(
        100deg,
        var(--mint-light) 0%,
        rgba(255, 255, 255, 0.98) 36%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(240, 251, 251, 0.5) 68%,
        rgba(240, 251, 251, 0.15) 100%
      ),
      linear-gradient(160deg, var(--mint-light) 0%, var(--white) 50%, var(--mint-soft) 100%);
  }
  .hero-home::after {
    content: "";
    position: absolute;
    right: -18%;
    top: 8%;
    bottom: auto;
    width: auto;
    height: clamp(280px, 62vh, 560px);
    aspect-ratio: 520 / 340;
    background: url("../images/hero-van-front.png") no-repeat right center / contain;
    opacity: 0.48;
    pointer-events: none;
    z-index: 1;
    -webkit-mask-image: linear-gradient(100deg, transparent 4%, rgba(0, 0, 0, 0.3) 30%, #000 66%);
    mask-image: linear-gradient(100deg, transparent 4%, rgba(0, 0, 0, 0.3) 30%, #000 66%);
    filter: drop-shadow(0 20px 40px rgba(30, 42, 48, 0.1));
    animation: hero-van-float-mobile 7s ease-in-out infinite;
  }
  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 92%;
  }
}
@media (max-width: 768px) {
  :root { --header: 68px; }
  /* backdrop-filter создаёт containing block — fixed-меню обрезается высотой шапки */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
  }
  .logo img { height: 36px; max-width: 132px; }
  .header-inner { gap: 0.5rem; position: relative; z-index: 1002; }
  .header-end {
    margin-left: auto;
    gap: 0.4rem;
    position: relative;
    z-index: 1003;
  }
  .burger { display: flex; margin-left: 0; }
  .header-end .header-messengers,
  .header-end .header-phone { display: none; }
  .header-tel-mobile {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--orange-dark);
    white-space: nowrap;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 2px solid var(--orange);
    background: var(--orange-light);
  }
  .header-tel-mobile:hover {
    background: var(--orange);
    color: var(--white);
  }
  .nav-mobile-only { display: list-item; }
  .nav-phone-item { margin-bottom: 0.5rem; }
  .nav-messengers-wrap .header-messengers { justify-content: center; margin: 0.35rem 0 0.75rem; }
  .nav-messengers-wrap .msg-btn { width: 48px; height: 48px; }
  .nav-phone-mobile {
    display: block;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--orange-dark);
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: var(--orange-light);
    border: 2px solid var(--orange);
    text-decoration: none;
  }
  .nav-phone-mobile:hover {
    background: var(--orange);
    color: var(--white);
  }
  .promo-mini-inner { flex-direction: column; text-align: center; }
  .nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    flex: none;
    z-index: 1100;
    background: var(--white);
    padding: 1.25rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    box-shadow: -8px 0 32px rgba(30, 42, 48, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease), visibility 0.35s;
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
  }
  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-sub {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    pointer-events: none;
  }
  .nav-item.has-child.is-open > .nav-sub {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    padding: 0.4rem;
    pointer-events: auto;
  }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .reviews-carousel .carousel-arrow { display: none; }

  /* Подвал — компактный, блоки в 2 колонки */
  .site-footer { padding-bottom: 1rem; }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem 0.55rem;
    padding: 1.25rem 0 0.85rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    max-width: 100%;
    padding-bottom: 0.65rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-logo { padding: 0.4rem 0.55rem; }
  .footer-logo img { height: 30px; }
  .footer-tagline {
    flex: 1 1 180px;
    margin: 0;
    max-width: none;
    font-size: 0.76rem;
    line-height: 1.4;
  }
  .footer-brand .btn {
    flex-shrink: 0;
    padding: 0.4rem 0.85rem;
    font-size: 0.76rem;
  }
  .footer-col:not(.footer-contact) {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 0.65rem 0.6rem 0.7rem;
  }
  .footer-title {
    margin: 0 0 0.45rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
  .footer-title::after {
    width: 22px;
    height: 2px;
    margin-top: 0.3rem;
  }
  .footer-col .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.28rem 0.35rem;
  }
  .footer-links a {
    font-size: 0.78rem;
    line-height: 1.25;
    padding-left: 0 !important;
  }
  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
  }
  .footer-contact .footer-title {
    grid-column: 1 / -1;
    margin-bottom: 0.15rem;
  }
  .footer-contact-list {
    gap: 0.3rem;
    margin: 0;
  }
  .footer-contact-list a,
  .footer-contact-list span {
    font-size: 0.8rem;
    line-height: 1.35;
  }
  .footer-phone { font-size: 0.92rem !important; }
  .footer-social-label {
    display: none;
  }
  .footer-social {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    gap: 0.35rem;
  }
  .footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .footer-bottom {
    padding-top: 0.75rem;
    font-size: 0.72rem;
    gap: 0.4rem;
  }
  .footer-copy { line-height: 1.35; }
}
@media (max-width: 600px) {
  .photo-gallery { grid-template-columns: 1fr; }
  .footer-brand { flex-direction: column; align-items: flex-start; }
  .footer-tagline { flex: none; width: 100%; }
  .footer-contact {
    grid-template-columns: 1fr;
  }
  .footer-social {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 0.65rem;
  }
}
@media (max-width: 600px) {
  .contacts-bento { grid-template-columns: 1fr; }
  .contact-card--wide { grid-column: span 1; }
  .page-hero-dark { padding: 2rem 0 2.5rem; }
  .hero-home::after {
    height: clamp(260px, 58vh, 500px);
    top: 6%;
    right: -22%;
    opacity: 0.44;
  }
  .hero-stats { gap: 0.65rem; }
  .hero-stats div { padding: 0.7rem 0.85rem; flex: 1 1 calc(50% - 0.35rem); min-width: 0; }
  .hero-stat--range,
  .hero-stat--loaders { flex: 1 1 100%; }
  .hero-stat--range strong,
  .hero-stat--loaders strong { font-size: 1.05rem; }
  .hero-text { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, .reveal, .svc-benefit-card, .svc-step-item, .hero-float-card, .hero-van-bg, .hero-home::after, .marquee-track,
  .page-hero-dark__orb, .page-hero-dark__frame {
    animation: none !important;
    transition: none !important;
  }
  .marquee-track { flex-wrap: wrap; width: 100%; justify-content: center; }
  .reveal { opacity: 1; transform: none; }
  .svc-benefit-card, .svc-step-item { opacity: 1; transform: none; animation: none; }
  .svc-steps__track::before { transform: scaleY(1); }
}
