@charset "UTF-8";
/* ==========================================================
   Reputation / Legal Premium — LIGHT SITE + DARK HEADER
   ETALON: section -> container -> row -> col (Bootstrap grid only)
   - Page is LIGHT
   - Header is DARK (only header uses dark tokens)
   - Slider uses background IMAGE + right PNG/WebP illustration (no рамки)
   - Buttons unified: .btn-main / .btn-outline / .btn-ghost
   ========================================================== */
body {
  padding: 0;
  margin: 0;
}

*, ::before, ::after {
  box-sizing: border-box;
}

/* =======================
   TOKENS
   ======================= */
/* Brand accents */
/* Radii */
/* Typography */
/* Motion */
/* Light site tokens */
/* Dark header tokens (header only) */
/* =======================
   MIXINS
   ======================= */
/* =======================
   BASE (GLOBAL)
   ======================= */
:root {
  color-scheme: light;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #f6f5f2;
  color: #101114;
}

a {
  color: inherit;
}

/* =======================
   SECTION ETALON (GLOBAL)
   ======================= */
.section {
  padding: 3rem 0;
}
.section--tight {
  padding: 40px 0;
}
.section--divider {
  border-top: 1px solid rgba(16, 17, 20, 0.12);
}
.section--soft {
  background: #fbfaf7;
}

/* =======================
   TYPOGRAPHY (GLOBAL)
   ======================= */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(16, 17, 20, 0.62);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(176, 141, 87, 0.85);
}

.h1 {
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.2px;
  margin: 10px 0 14px;
}

.h2 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 850;
  margin: 0 0 12px;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(16, 17, 20, 0.68);
  max-width: 70ch;
}

/* =======================
   CARDS / BADGES (GLOBAL)
   ======================= */
.card {
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(11, 12, 16, 0.08);
  border: 1px solid rgba(16, 17, 20, 0.1);
  padding: 22px;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover {
  transform: translateY(-2px);
}
.card:hover {
  box-shadow: 0 18px 50px rgba(11, 12, 16, 0.1);
  border-color: rgba(176, 141, 87, 0.28);
}
.card__title {
  font-size: 18px;
  font-weight: 850;
  margin: 0 0 8px;
  color: #101114;
}
.card__text {
  color: rgba(16, 17, 20, 0.68);
  line-height: 1.6;
  margin: 0;
}
.card__meta {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(16, 17, 20, 0.55);
  font-size: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(16, 17, 20, 0.12);
  background: rgba(16, 17, 20, 0.03);
  color: rgba(16, 17, 20, 0.78);
}
.badge--gold {
  border-color: rgba(176, 141, 87, 0.45);
  color: rgba(176, 141, 87, 0.98);
  background: rgba(176, 141, 87, 0.1);
}
.badge--wine {
  border-color: rgba(139, 30, 45, 0.35);
  color: rgba(139, 30, 45, 0.92);
  background: rgba(139, 30, 45, 0.08);
}

.btn-main,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  border: 0;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1), color 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-main:hover,
.btn-outline:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}
.btn-main:focus-visible,
.btn-outline:focus-visible,
.btn-ghost:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.22);
}

.btn-main {
  color: #fff;
  background: linear-gradient(135deg, #101114, #8b1e2d);
  box-shadow: 0 10px 22px rgba(16, 17, 20, 0.16);
}
.btn-main:hover {
  box-shadow: 0 14px 28px rgba(16, 17, 20, 0.2);
}

.btn-outline {
  color: #101114;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 17, 20, 0.18);
}
.btn-outline:hover {
  border-color: rgba(176, 141, 87, 0.7);
  color: #8b1e2d;
  background: #fff;
}

.btn-ghost {
  color: rgba(16, 17, 20, 0.78);
  background: rgba(16, 17, 20, 0.03);
  border: 1px solid rgba(16, 17, 20, 0.08);
}
.btn-ghost:hover {
  color: #101114;
  background: rgba(16, 17, 20, 0.05);
  border-color: rgba(16, 17, 20, 0.14);
}

/* =======================
   LINKS (GLOBAL)
   ======================= */
.link {
  color: rgba(16, 17, 20, 0.86);
  text-decoration: none;
}
.link:hover {
  color: #8b1e2d;
}
.link--underline {
  position: relative;
}
.link--underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0%;
  background: #b08d57;
  transition: width 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.link--underline:hover::after {
  width: 100%;
}

/* =======================
   FORMS (GLOBAL)
   ======================= */
.field {
  display: grid;
  gap: 8px;
}
.field__label {
  font-size: 13px;
  color: rgba(16, 17, 20, 0.78);
  font-weight: 750;
}
.field__control {
  background: rgba(16, 17, 20, 0.02);
  border-radius: 12px;
  padding: 12px 14px;
  color: #101114;
  border: 1px solid rgba(16, 17, 20, 0.14);
  transition: border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.field__control::placeholder {
  color: rgba(16, 17, 20, 0.42);
}
.field__control:focus {
  border-color: rgba(176, 141, 87, 0.55);
  outline: none;
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.22);
  background: rgba(16, 17, 20, 0.025);
}
.field__hint {
  font-size: 12px;
  color: rgba(16, 17, 20, 0.52);
}
.field__error {
  font-size: 12px;
  color: #b3262e;
  font-weight: 800;
}

/* =======================
   HEADER (DARK ONLY)
   Classes fixed: top-header, header-row, brand, header-contacts, header-actions,
                  btn-outline, btn-main, main-nav
   ======================= */
.top-header {
  background: #0f1115;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
@media (max-width: 991px) {
  .top-header .header-row {
    padding: 1rem 1rem;
  }
}
.top-header .brand {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}
.top-header .brand span {
  color: #b08d57;
}
.top-header .header-contacts {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  white-space: nowrap;
}
.top-header .header-contacts a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.top-header .header-contacts a:hover {
  color: #b08d57;
}
.top-header .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.top-header .main-nav {
  background: rgba(255, 255, 255, 0.04);
}
.top-header .main-nav .container {
  display: flex;
  gap: 30px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.top-header .main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}
.top-header .main-nav a:hover {
  color: #b08d57;
}
.top-header .main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0%;
  height: 2px;
  background: #b08d57;
  transition: 0.25s;
}
.top-header .main-nav a:hover::after {
  width: 100%;
}
.top-header {
  /* header buttons are DARK variants (same classes) */
}
.top-header .btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}
.top-header .btn-outline:hover {
  border-color: rgba(176, 141, 87, 0.7);
  color: #b08d57;
  background: transparent;
}
.top-header .btn-main {
  box-shadow: 0 6px 18px rgba(176, 141, 87, 0.25);
}
.top-header .btn-main:hover {
  box-shadow: 0 10px 26px rgba(176, 141, 87, 0.35);
  transform: translateY(-2px);
}

/* ================================= */
/* MOBILE VERSION (LEFT SLIDE MENU)  */
/* ================================= */
.header-burger {
  display: none;
}

.mobile-nav {
  display: none;
}

@media (max-width: 991px) {
  /* --- скрываем десктопные элементы --- */
  .main-nav {
    display: none !important;
  }
  .header-contacts {
    display: none !important;
  }
  .header-audit-btn {
    display: none !important;
  }
  /* --- верхняя строка: только лого + бургер --- */
  .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-actions {
    display: flex;
    align-items: center;
  }
  /* --- бургер --- */
  .header-burger {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #fff;
  }
  .header-burger span {
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
  }
  /* --- затемнённый слой --- */
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9999;
  }
  /* --- панель меню (СЛЕВА) --- */
  .mobile-nav__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 92vw;
    height: 100%;
    background: #111;
    color: #fff;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  /* --- кнопка закрытия --- */
  .mobile-nav__close {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 20px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }
  /* --- ссылки --- */
  .mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 18px;
  }
  .mobile-nav__links a {
    text-decoration: none;
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
  }
  /* --- кнопка аудит внутри меню --- */
  .mobile-nav__actions {
    padding-bottom: 18px;
  }
  .mobile-nav__actions .btn-main {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
  /* --- контакты внутри меню --- */
  .mobile-nav__contacts {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-nav__contacts a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
  }
  /* --- состояние открыто --- */
  .top-header.is-open .mobile-nav {
    display: block;
  }
  .top-header.is-open .mobile-nav__panel {
    transform: translateX(0);
  }
}
.slider {
  padding: 18px 0 44px;
}

.slider-track {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(11, 12, 16, 0.1);
}

/* translateX track */
.slider-track-inner {
  display: flex;
  width: 100%;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* slide: background image only */
.slide {
  flex: 0 0 100%;
  min-height: 360px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* no grid here — Bootstrap handles layout */
.slide-inner {
  position: relative;
  padding: 3rem;
}

/* text */
.slide-content {
  max-width: 620px;
  color: #2a2622;
}

.slide-kicker {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(42, 38, 34, 0.62);
  margin-bottom: 12px;
  text-transform: none;
}
.slide-kicker::before {
  display: none;
}

.slide-title {
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #2a2622;
  font-size: clamp(34px, 3.4vw, 48px);
}

.slide-text {
  margin: 0 0 20px;
  color: rgba(42, 38, 34, 0.7);
  line-height: 1.65;
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 56ch;
}

.slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* tags */
.slide-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slide-tag {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(176, 141, 87, 0.16);
  border: 1px solid rgba(176, 141, 87, 0.28);
  color: rgba(42, 38, 34, 0.82);
}

/* media: right illustration */
.slide-media {
  display: grid;
  place-items: center;
  min-height: 260px;
}

.slide-image {
  width: min(560px, 100%);
  height: auto;
  max-height: 340px;
  border: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  display: block;
}

/* dots */
.slider-dots {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(42, 38, 34, 0.28);
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.slider-dot.is-active {
  background: #b08d57;
  border-color: rgba(176, 141, 87, 0.85);
  transform: scale(1.25);
}
.slider-dot:hover {
  border-color: rgba(176, 141, 87, 0.85);
  transform: scale(1.15);
}

/* arrows */
.slider-nav {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(42, 38, 34, 0.15);
  background: rgba(255, 255, 255, 0.78);
  color: #2a2622;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.slider-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 141, 87, 0.65);
  background: #fff;
}

/* responsive: rely on Bootstrap grid, only minimal tweaks */
@media (max-width: 992px) {
  .slide {
    min-height: 460px;
  }
  .slide-inner {
    padding: 2rem;
  }
  .slider-dots {
    display: none;
  }
  .slide-image {
    max-height: 260px;
  }
}
@media (max-width: 768px) {
  .slide-actions a {
    width: 100%;
    justify-content: center;
  }
}
/* =======================
   About block (etalon)
   ======================= */
.about {
  /* если секция светлая — пусть будет чуть дороже за счёт мягкой поверхности */
}

.about-content {
  padding-right: 10px;
}

.about-text {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.68);
  max-width: 78ch;
}
.about-text--accent {
  color: rgba(16, 17, 20, 0.86);
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid rgba(176, 141, 87, 0.2);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 26px rgba(11, 12, 16, 0.08);
}

/* правая колонка */
.about-stats {
  display: grid;
  gap: 14px;
}

/* единая карточка-стат */
.stat-card {
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 26px rgba(11, 12, 16, 0.08);
  border: 1px solid rgba(16, 17, 20, 0.1);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stat-card:hover {
  transform: translateY(-1px);
}
.stat-card:hover {
  border-color: rgba(176, 141, 87, 0.28);
  box-shadow: 0 18px 50px rgba(11, 12, 16, 0.1);
}
.stat-card {
  /* аккуратная “полоска статуса” сверху */
}
.stat-card::before {
  content: "";
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(176, 141, 87, 0.85), rgba(139, 30, 45, 0.55));
  margin-bottom: 12px;
}

.stat-card--dark {
  background: #0f1115;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}
.stat-card--dark:hover {
  border-color: rgba(176, 141, 87, 0.28);
}
.stat-card--dark .stat-label,
.stat-card--dark .stat-note {
  color: rgba(255, 255, 255, 0.72);
}
.stat-card--dark .stat-value {
  color: #fff;
}
.stat-card--dark::before {
  background: linear-gradient(90deg, rgba(176, 141, 87, 0.95), rgba(139, 30, 45, 0.75));
}

.stat-value {
  font-size: 44px;
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: #101114;
  /* спокойное появление */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  /* чуть “дороже” — аккуратное свечение на тёмной карточке */
}
.stat-card--dark .stat-value {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.stat-label {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 750;
  color: rgba(16, 17, 20, 0.84);
}

.stat-note {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(16, 17, 20, 0.52);
}

/* ссылка “Пример договора” */
.stat-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 14px;
  text-decoration: none;
  color: rgba(16, 17, 20, 0.86);
  position: relative;
}
.stat-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0%;
  background: #b08d57;
  transition: width 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stat-link:hover::after {
  width: 100%;
}
.stat-link:hover {
  color: #8b1e2d;
}

/* когда блок виден — включаем появление */
.about.is-visible .stat-value {
  opacity: 1;
  transform: translateY(0);
}

/* адаптив */
@media (max-width: 992px) {
  .about-content {
    padding-right: 0;
  }
  .stat-value {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .stat-card {
    padding: 16px;
  }
  .stat-value {
    font-size: 36px;
  }
}
/* =======================
   About block (premium)
   ======================= */
.about-content {
  padding-right: 12px;
}

/* если у тебя kicker уже глобальный — можно удалить этот блок */
.about .kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  color: rgba(16, 17, 20, 0.58);
}

.about .h2 {
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 8px 0 14px;
}

.about-text {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.72);
  max-width: 78ch;
}

/* акцент без “золотой плашки”: рамка + hairline */
.about-text--accent {
  color: rgba(16, 17, 20, 0.82);
  background: transparent;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-left: 3px solid rgba(176, 141, 87, 0.55);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: none;
}

/* правая колонка */
.about-stats {
  display: grid;
  gap: 14px;
}

/* единая карточка */
.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 18px 18px 16px;
  /* “дорогая” поверхность: тонкая рамка + внутренняя подсветка */
  border: 1px solid rgba(16, 17, 20, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  /* спокойный hover: без “подпрыгивания” */
  transition: border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stat-card:hover {
  border-color: rgba(176, 141, 87, 0.22);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* мягкий “sheen” (не полоска-градиент, а лёгкий световой штрих) */
.stat-sheen {
  position: absolute;
  inset: -20% -40% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.35;
  filter: blur(2px);
  transform: rotate(12deg);
  background: radial-gradient(closest-side, rgba(176, 141, 87, 0.18), rgba(176, 141, 87, 0) 65%);
}

/* верхняя зона числа/даты */
.stat-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

/* значения */
.stat-value {
  font-size: 44px;
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -0.02em;
  /* цифры “ровными колонками” — выглядит солиднее */
  font-variant-numeric: tabular-nums lining-nums;
  color: rgba(16, 17, 20, 0.92);
  /* спокойное появление */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stat-label {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 800;
  color: rgba(16, 17, 20, 0.8);
  max-width: 30ch;
}

.stat-note {
  margin: 0;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
  color: rgba(16, 17, 20, 0.52);
  white-space: nowrap;
}

/* ссылка */
.stat-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 14px;
  text-decoration: none;
  color: rgba(16, 17, 20, 0.82);
  position: relative;
}
.stat-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0%;
  background: #b08d57;
  transition: width 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stat-link:hover::after {
  width: 100%;
}
.stat-link:hover {
  color: #8b1e2d;
}

.stat-link__arrow {
  font-size: 14px;
  transform: translateY(-1px);
  opacity: 0.9;
}

/* тёмная карточка: “графит”, без дешёвого контраста */
.stat-card--dark {
  background: radial-gradient(1200px 420px at -10% -30%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 55%), linear-gradient(180deg, #0b0f14, #070a0e);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.stat-card--dark:hover {
  border-color: rgba(176, 141, 87, 0.26);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.stat-card--dark .stat-value {
  color: rgba(255, 255, 255, 0.96);
}
.stat-card--dark .stat-label {
  color: rgba(255, 255, 255, 0.78);
}
.stat-card--dark .stat-note {
  color: rgba(255, 255, 255, 0.56);
}
.stat-card--dark .stat-sheen {
  opacity: 0.3;
  background: radial-gradient(closest-side, rgba(176, 141, 87, 0.22), rgba(176, 141, 87, 0) 66%);
}

.stat-card--light {
  background: radial-gradient(900px 340px at 110% -30%, rgba(176, 141, 87, 0.08), rgba(176, 141, 87, 0) 60%), #ffffff;
}

/* когда блок виден — включаем появление */
.about.is-visible .stat-value {
  opacity: 1;
  transform: translateY(0);
}

/* адаптив */
@media (max-width: 992px) {
  .about-content {
    padding-right: 0;
  }
  .stat-value {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .stat-card {
    padding: 16px;
  }
  .stat-top {
    align-items: flex-end;
  }
  .stat-value {
    font-size: 36px;
  }
  .stat-label {
    max-width: none;
  }
}
/* =======================
   Advantages (serious / legal sheet)
   ======================= */
/* LEFT */
.advantages-intro {
  padding-right: 8px;
}

.advantages .kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  color: rgba(16, 17, 20, 0.58);
}

.advantages-title {
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.advantages-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.68);
  max-width: 46ch;
}

/* “stamp” — аккуратно, без крика */
.advantages-stamp {
  margin-top: 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.advantages-stamp__label {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(16, 17, 20, 0.82);
}

.advantages-stamp__text {
  font-weight: 800;
  font-size: 12px;
  color: rgba(16, 17, 20, 0.56);
}

/* RIGHT “sheet” */
.advantages-sheet {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: radial-gradient(900px 380px at 110% -20%, rgba(176, 141, 87, 0.07), rgba(176, 141, 87, 0) 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.45)), #ffffff;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

/* clauses: table-like */
.adv-clause {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 18px 18px 18px 18px;
  border-bottom: 1px solid rgba(16, 17, 20, 0.08);
}

.adv-clause--last {
  border-bottom: none;
  padding-bottom: 16px;
}

/* hairline accent on the left */
.adv-clause::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.65), rgba(139, 30, 45, 0.35));
  opacity: 0.55;
}

/* number */
.adv-clause__no {
  font-variant-numeric: tabular-nums lining-nums;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  color: rgba(16, 17, 20, 0.5);
  padding-top: 3px;
}

/* content */
.adv-clause__title {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(16, 17, 20, 0.9);
  margin-bottom: 6px;
}

.adv-clause__text {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.7);
}

/* tags */
.adv-clause__tag {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.adv-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.01em;
  color: rgba(16, 17, 20, 0.78);
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

/* footer */
.advantages-sheet__footer {
  padding: 12px 18px 14px;
}

.advantages-sheet__line {
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 17, 20, 0.1), rgba(176, 141, 87, 0.2), rgba(16, 17, 20, 0.1));
  opacity: 0.75;
}

.advantages-sheet__meta {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(16, 17, 20, 0.52);
}

/* responsive */
@media (max-width: 992px) {
  .advantages-intro {
    padding-right: 0;
  }
  .advantages-lead {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .adv-clause {
    grid-template-columns: 62px 1fr;
    padding: 16px;
  }
  .adv-clause__title {
    font-size: 16px;
  }
}
/* =======================
   Mission (dark, image-based)
   ======================= */
.mission {
  background: radial-gradient(1200px 420px at 15% -25%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 55%), linear-gradient(180deg, #0b0f14, #070a0e);
  color: rgba(255, 255, 255, 0.88);
}

.kicker--on-dark {
  color: rgba(255, 255, 255, 0.6);
}

.mission-content {
  padding-right: 12px;
}

.mission-title {
  margin: 10px 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
}

.mission-text {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
  max-width: 78ch;
}

.mission-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mission-actions .btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}
.mission-actions .btn-outline:hover {
  border-color: rgba(176, 141, 87, 0.7);
  color: #b08d57;
  background: transparent;
}

/* media */
.mission-media {
  position: relative;
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mission-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* subtle glow */
.mission-media::before {
  content: "";
  position: absolute;
  inset: -35% -25% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(176, 141, 87, 0.18), rgba(176, 141, 87, 0) 68%);
  opacity: 0.22;
  filter: blur(2px);
  pointer-events: none;
}

/* chips */
.mission-media__meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mission-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
}

/* responsive */
@media (max-width: 992px) {
  .mission-content {
    padding-right: 0;
  }
  .mission-text {
    max-width: none;
  }
}
/* =======================
   Services (ultra premium, no lift; shadow/light hover)
   ======================= */
.services-head {
  max-width: 72ch;
}

.services-lead {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.68);
}

/* card */
.service-card {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: radial-gradient(900px 320px at 115% -35%, rgba(176, 141, 87, 0.08), rgba(176, 141, 87, 0) 62%), linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.42)), #ffffff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* left accent */
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.7), rgba(139, 30, 45, 0.38));
  opacity: 0.45;
  transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

/* number */
.service-card::after {
  content: attr(data-no);
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums lining-nums;
  color: rgba(16, 17, 20, 0.46);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

/* grain */
.service-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0 1px, rgba(0, 0, 0, 0) 2px 4px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0 1px, rgba(0, 0, 0, 0) 2px 5px);
  background-size: 180px 180px, 220px 220px;
  mix-blend-mode: soft-light;
  filter: contrast(120%) brightness(110%);
}

/* corners */
.corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(176, 141, 87, 0.18);
  opacity: 0.55;
  pointer-events: none;
  z-index: 6;
}

.corner--tl {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.corner--tr {
  top: 10px;
  right: 10px;
  border-left: 0;
  border-bottom: 0;
}

.corner--bl {
  bottom: 10px;
  left: 10px;
  border-right: 0;
  border-top: 0;
}

.corner--br {
  bottom: 10px;
  right: 10px;
  border-left: 0;
  border-top: 0;
}

/* hover (no lift) */
.service-card:hover {
  border-color: rgba(176, 141, 87, 0.26);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  background: radial-gradient(900px 360px at 115% -35%, rgba(176, 141, 87, 0.11), rgba(176, 141, 87, 0) 62%), linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.46)), #ffffff;
}

.service-card:hover::before {
  opacity: 0.75;
}

.service-card:hover::after {
  color: rgba(16, 17, 20, 0.62);
  border-color: rgba(176, 141, 87, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

/* media */
.service-media {
  position: relative;
  height: 178px;
  border-bottom: 1px solid rgba(16, 17, 20, 0.08);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 12px;
  z-index: 1;
}

/* overlay on media */
.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 300px at 80% -35%, rgba(176, 141, 87, 0.22), rgba(176, 141, 87, 0) 62%), linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02));
  pointer-events: none;
}

.service-media::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  bottom: 14px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0.9;
  pointer-events: none;
}

.service-media img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
  transform: translateY(2px);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-media img {
  transform: translateY(0);
  filter: saturate(1.06) contrast(1.03);
}

/* body */
.service-body {
  padding: 18px 18px 16px;
  position: relative;
  z-index: 3;
}

/* badge */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(16, 17, 20, 0.76);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 17, 20, 0.1);
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.8);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.16);
}

.service-badge--warn::before {
  background: rgba(139, 30, 45, 0.78);
  box-shadow: 0 0 0 3px rgba(139, 30, 45, 0.14);
}

/* title / text */
.service-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.015em;
  color: rgba(16, 17, 20, 0.94);
}

.service-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.7);
  max-width: 72ch;
}

/* meta */
.service-meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 17, 20, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-meta span {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(16, 17, 20, 0.64);
  padding-left: 10px;
}

.service-meta span::before {
  content: "Ориентир";
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
  color: rgba(16, 17, 20, 0.46);
}

.service-meta span:nth-child(2)::before {
  content: "Срок";
}

.service-meta span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.65), rgba(139, 30, 45, 0.35));
  opacity: 0.65;
}

/* action */
.service-action {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.01em;
  color: rgba(139, 30, 45, 0.92);
  text-decoration: none;
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}
.service-action::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0%;
  background: #b08d57;
  transition: width 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-action:hover::after {
  width: 100%;
}

.lwptoc_i {
  color: #333 !important;
  border-radius: 16px !important;
  border: 1px solid rgba(16, 17, 20, 0.1) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.4)), #fff !important;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  padding: 16px !important;
  position: relative !important;
  overflow: hidden !important;
}
.lwptoc_i a {
  color: #3d3d3d !important;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.content {
  color: #333 !important;
  border-radius: 16px !important;
  border: 1px solid rgba(16, 17, 20, 0.1) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.4)), #fff !important;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  padding: 16px !important;
  position: relative !important;
  overflow: hidden !important;
}

.thumbnail {
  border-radius: 16px !important;
  border: 1px solid rgba(16, 17, 20, 0.1) !important;
  background-image: url("/img/slider/slider-bg-monitoring.png");
  background-position: center bottom;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  padding: 16px !important;
  position: relative !important;
  overflow: hidden !important;
  margin-bottom: 1rem;
}
.thumbnail img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

/* wide */
.service-card--wide {
  flex-direction: row;
}
.service-card--wide .service-media {
  width: 44%;
  height: auto;
  border-bottom: none;
  border-right: 1px solid rgba(16, 17, 20, 0.08);
  padding: 18px;
}
.service-card--wide .service-body {
  width: 56%;
  padding: 18px;
}

/* accent */
.service-card--accent {
  background: radial-gradient(900px 360px at 90% -30%, rgba(176, 141, 87, 0.14), rgba(176, 141, 87, 0) 62%), linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.38)), #ffffff;
}

/* main CTA */
.service-action--main {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 1rem;
  background: linear-gradient(90deg, #101114, #8b1e2d);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-action--main::after {
  content: "";
}
.service-action--main:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  filter: saturate(1.02);
}

.service-note {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: rgba(16, 17, 20, 0.52);
}

/* responsive */
@media (max-width: 992px) {
  .service-card--wide {
    flex-direction: column;
  }
  .service-card--wide .service-media {
    width: 100%;
    height: 155px;
    border-right: none;
    border-bottom: 1px solid rgba(16, 17, 20, 0.08);
    padding: 16px 16px 12px;
  }
  .service-card--wide .service-body {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .service-media {
    height: 165px;
  }
  .service-title {
    font-size: 17px;
  }
}
/* =======================
   Process (premium stage + equal height + inner frame)
   ======================= */
.process-head {
  max-width: 86ch;
}

.process .kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  color: rgba(16, 17, 20, 0.58);
}

.process .h2 {
  margin: 8px 0 10px;
  letter-spacing: -0.02em;
}

.process-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.68);
}

/* stage layout */
.process-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

/* LEFT column must stretch */
.process-stage__media {
  height: 100%;
}
@media (max-width: 992px) {
  .process-stage__media {
    display: none;
  }
}

/* media */
.process-media {
  position: relative;
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  overflow: hidden;
  min-height: 520px;
  background: radial-gradient(1100px 380px at 12% -18%, rgba(176, 141, 87, 0.1), rgba(176, 141, 87, 0) 60%), radial-gradient(900px 360px at 92% 12%, rgba(139, 30, 45, 0.08), rgba(139, 30, 45, 0) 58%), linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.38)), #ffffff;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

/* inner frame (тонкая внутренняя рамка по периметру) */
.process-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(16px - 10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(16, 17, 20, 0.06);
  pointer-events: none;
  z-index: 3;
}

/* film grain */
.process-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.32) 0 1px, rgba(0, 0, 0, 0) 2px 4px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0 1px, rgba(0, 0, 0, 0) 2px 5px);
  background-size: 180px 180px, 240px 240px;
  mix-blend-mode: soft-light;
  z-index: 2;
}

/* overlay */
.process-media__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0) 38%), linear-gradient(0deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0) 42%);
  z-index: 2;
}

/* images */
.process-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-image: url("/img/slider/slider-bg-monitoring.png");
  background-position: bottom;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

.process-media__img.is-active {
  opacity: 1;
  transform: scale(1);
}

/* header inside media */
.process-media__header {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  z-index: 4;
}

.process-media__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(16, 17, 20, 0.72);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 999px;
  padding: 7px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.process-media__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.82);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.16);
}

.process-media__step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 17, 20, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: rgba(16, 17, 20, 0.84);
}

.process-media__stepNo {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  color: rgba(16, 17, 20, 0.54);
  font-variant-numeric: tabular-nums lining-nums;
}

.process-media__stepTitle {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.01em;
}

/* footer inside media */
.process-media__footer {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  z-index: 4;
}

.process-media__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 17, 20, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.process-meta__label {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
  color: rgba(16, 17, 20, 0.48);
}

.process-meta__value {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 950;
  color: rgba(16, 17, 20, 0.82);
  letter-spacing: 0.01em;
}

/* progress */
.process-progress {
  padding: 12px 12px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 17, 20, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.process-progress__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.1);
  overflow: hidden;
}

.process-progress__fill {
  height: 100%;
  width: 25%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(176, 141, 87, 0.85), rgba(139, 30, 45, 0.55));
}

.process-progress__text {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(16, 17, 20, 0.58);
}

/* placeholder */
.process-media__placeholder {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}

.process-media__phTitle {
  font-size: 14px;
  font-weight: 950;
  color: rgba(16, 17, 20, 0.86);
}

.process-media__phText {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(16, 17, 20, 0.62);
  max-width: 76ch;
}

/* RIGHT column shell */
.process-stage__tabs {
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.4)), #ffffff;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

/* subtle grain */
.process-stage__tabs::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0 1px, rgba(0, 0, 0, 0) 2px 4px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0 1px, rgba(0, 0, 0, 0) 2px 5px);
  background-size: 200px 200px, 260px 260px;
  mix-blend-mode: soft-light;
}

/* timeline */
.process-timeline {
  position: relative;
  padding: 8px 6px 16px;
  z-index: 2;
}

.process-timeline__line {
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 17, 20, 0.12), rgba(176, 141, 87, 0.2), rgba(16, 17, 20, 0.12));
  opacity: 0.8;
}

.process-timeline__dots {
  margin-top: -9px;
  display: flex;
  justify-content: space-between;
}

.process-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 17, 20, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  position: relative;
}

.process-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.1);
}

.process-dot.is-active {
  border-color: rgba(176, 141, 87, 0.28);
}

.process-dot.is-active::after {
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.9), rgba(139, 30, 45, 0.55));
}

/* tabs list */
.process-tabs {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.process-tab {
  appearance: none;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: radial-gradient(600px 220px at 110% -30%, rgba(176, 141, 87, 0.06), rgba(176, 141, 87, 0) 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.44)), #ffffff;
  border-radius: 16px;
  padding: 14px 14px 12px;
  text-align: left;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* left hairline */
.process-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.62), rgba(139, 30, 45, 0.35));
  opacity: 0.3;
  transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-tab:hover {
  border-color: rgba(176, 141, 87, 0.22);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.process-tab:focus-visible {
  border-color: rgba(176, 141, 87, 0.32);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.09), 0 0 0 3px rgba(176, 141, 87, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.process-tab.is-active {
  border-color: rgba(176, 141, 87, 0.26);
  background: radial-gradient(700px 240px at 110% -30%, rgba(176, 141, 87, 0.12), rgba(176, 141, 87, 0) 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.46)), #ffffff;
  box-shadow: 0 28px 96px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.process-tab.is-active::before {
  opacity: 0.7;
}

.process-tab__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums lining-nums;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  color: rgba(16, 17, 20, 0.52);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 17, 20, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.process-tab.is-active .process-tab__no {
  color: rgba(16, 17, 20, 0.68);
  border-color: rgba(176, 141, 87, 0.26);
}

.process-tab__title {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(16, 17, 20, 0.92);
}

.process-tab__desc {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(16, 17, 20, 0.66);
}

.process-panels {
  display: none;
}

/* responsive */
@media (max-width: 1200px) {
  .process-media {
    min-height: 460px;
  }
}
@media (max-width: 992px) {
  .process-stage {
    grid-template-columns: 1fr;
  }
  .process-stage__media {
    height: auto;
  }
  .process-media {
    height: auto;
    min-height: 340px;
  }
}
@media (max-width: 576px) {
  .process-media {
    min-height: 300px;
  }
  .process-media__footer {
    grid-template-columns: 1fr;
  }
  .process-media__meta {
    grid-template-columns: 1fr;
  }
}
/* =======================
   Blog (premium)
   ======================= */
.blog-head {
  max-width: 90ch;
}

.blog .kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  color: rgba(16, 17, 20, 0.58);
}

.blog .h2 {
  margin: 8px 0 10px;
  letter-spacing: -0.02em;
}

.blog-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.68);
}

/* MAIN wrapper */
.blog-main {
  display: grid;
  gap: 1rem;
}
@media (max-width: 992px) {
  .blog-main {
    display: flex;
    flex-direction: column;
  }
}

/* =======================
   TOP PICKS
   ======================= */
.blog-top {
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: radial-gradient(900px 320px at 110% -35%, rgba(176, 141, 87, 0.1), rgba(176, 141, 87, 0) 62%), linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.4)), #ffffff;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.blog-top::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0 1px, rgba(0, 0, 0, 0) 2px 4px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0 1px, rgba(0, 0, 0, 0) 2px 5px);
  background-size: 200px 200px, 260px 260px;
  mix-blend-mode: soft-light;
}

.blog-top__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-top__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: rgba(16, 17, 20, 0.74);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 999px;
  padding: 7px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.blog-top__badgeDot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.82);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.16);
}

.blog-top__link {
  font-size: 13px;
  font-weight: 950;
  color: rgba(139, 30, 45, 0.92);
  text-decoration: none;
  position: relative;
}
.blog-top__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0%;
  background: #b08d57;
  transition: width 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.blog-top__link:hover::after {
  width: 100%;
}

/* =======================
   TOP POST CARD
   ======================= */
.post-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.44)), #ffffff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 2;
}

.post-card:hover {
  border-color: rgba(176, 141, 87, 0.22);
  box-shadow: 0 28px 96px rgba(0, 0, 0, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  background: radial-gradient(700px 240px at 110% -30%, rgba(176, 141, 87, 0.1), rgba(176, 141, 87, 0) 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.46)), #ffffff;
}

.post-card__media {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 92px;
}

.post-card__mediaOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0) 50%), linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 55%);
}

.post-card__chip {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: rgba(16, 17, 20, 0.78);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 999px;
  padding: 6px 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.post-card__chip--wine {
  color: rgba(139, 30, 45, 0.92);
}

.post-card__chip--gold {
  color: rgba(16, 17, 20, 0.8);
  border-color: rgba(176, 141, 87, 0.22);
}

.post-card__body {
  padding: 12px 12px 12px 0;
}

.post-card__meta {
  font-size: 12px;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.56);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-card__meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.28);
}

.post-card__title {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(16, 17, 20, 0.92);
}

/* =======================
   FILTER BAR
   ======================= */
.blog-filter {
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.4)), #ffffff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 14px 14px 12px;
}

.blog-filter__row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.blog-filter__pills {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.pill {
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: rgba(16, 17, 20, 0.7);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1), color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pill__count {
  font-weight: 850;
  color: rgba(16, 17, 20, 0.52);
}

.pill:hover {
  border-color: rgba(176, 141, 87, 0.22);
}

.pill.is-active {
  border-color: rgba(176, 141, 87, 0.26);
  color: rgba(16, 17, 20, 0.84);
  background: radial-gradient(600px 220px at 110% -30%, rgba(176, 141, 87, 0.14), rgba(176, 141, 87, 0) 60%), rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 12px 36px rgba(0, 0, 0, 0.06);
}

.blog-filter__search {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 9px 12px 9px 34px;
}

.blog-filter__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(16, 17, 20, 0.44);
}

.blog-filter__input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 13px;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.78);
}

.blog-filter__hint {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.56);
}

/* =======================
   LIST ROW
   ======================= */
.blog-list {
  display: grid;
  gap: 12px;
}

.post-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.44)), #ffffff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
  transition: border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.post-row:hover {
  border-color: rgba(176, 141, 87, 0.22);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.post-row__media {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  min-height: 156px;
  text-decoration: none;
}

.post-row__mediaOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0) 50%), linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 55%);
}

.post-row__body {
  padding: 14px 14px 14px 0;
}

.post-row__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.56);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 17, 20, 0.1);
  color: rgba(16, 17, 20, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-weight: 950;
  letter-spacing: 0.02em;
}

.tag--wine {
  color: rgba(139, 30, 45, 0.92);
}

.tag--gold {
  border-color: rgba(176, 141, 87, 0.22);
  color: rgba(16, 17, 20, 0.8);
}

.sep {
  color: rgba(16, 17, 20, 0.32);
}

.post-row__title {
  margin-top: 10px;
  display: inline-block;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(16, 17, 20, 0.94);
  text-decoration: none;
  transition: color 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.post-row__title:hover {
  color: rgba(139, 30, 45, 0.92);
}

.post-row__text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.68);
  max-width: 78ch;
}

.post-row__actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-row__link {
  font-size: 13px;
  font-weight: 950;
  color: rgba(139, 30, 45, 0.92);
  text-decoration: none;
  position: relative;
}
.post-row__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0%;
  background: #b08d57;
  transition: width 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.post-row__link:hover::after {
  width: 100%;
}

.post-row__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.26);
}

.post-row__note {
  font-size: 12px;
  font-weight: 900;
  color: rgba(16, 17, 20, 0.56);
}

/* MORE */
.blog-more {
  display: flex;
  justify-content: flex-start;
  padding-top: 6px;
}

/* =======================
   ASIDE
   ======================= */
.blog-aside {
  display: grid;
  gap: 12px;
}

.aside-card {
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: radial-gradient(900px 320px at 110% -35%, rgba(176, 141, 87, 0.08), rgba(176, 141, 87, 0) 62%), linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.4)), #ffffff;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.aside-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0 1px, rgba(0, 0, 0, 0) 2px 4px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0 1px, rgba(0, 0, 0, 0) 2px 5px);
  background-size: 200px 200px, 260px 260px;
  mix-blend-mode: soft-light;
}

.aside-card__head {
  position: relative;
  z-index: 2;
}

.aside-card__title {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(16, 17, 20, 0.92);
}

.aside-card__sub {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.56);
}

/* DIGEST */
.digest {
  position: relative;
  z-index: 2;
  margin-top: 12px;
}

.digest__label {
  font-size: 12px;
  font-weight: 900;
  color: rgba(16, 17, 20, 0.62);
}

.digest__row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.digest__input {
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 0 14px;
  outline: none;
  font-size: 13px;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.78);
}

.digest__note {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.56);
}

.digest-preview {
  position: relative;
  z-index: 2;
  margin-top: 12px;
}

.digest-preview__kicker {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(16, 17, 20, 0.46);
}

.digest-preview__list {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color: rgba(16, 17, 20, 0.66);
  font-size: 13px;
  line-height: 1.7;
}

/* DOCS */
.docs {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.doc {
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  gap: 10px;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.doc:hover {
  border-color: rgba(176, 141, 87, 0.22);
  background: radial-gradient(600px 240px at 110% -30%, rgba(176, 141, 87, 0.1), rgba(176, 141, 87, 0) 60%), rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 16px 44px rgba(0, 0, 0, 0.06);
}

.doc__icon {
  height: 32px;
  width: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  border: 1px solid rgba(176, 141, 87, 0.22);
  background: rgba(176, 141, 87, 0.1);
  color: rgba(16, 17, 20, 0.8);
}

.doc__title {
  display: block;
  font-size: 13px;
  font-weight: 950;
  color: rgba(16, 17, 20, 0.9);
  line-height: 1.3;
}

.doc__meta {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.56);
}

.doc__arrow {
  color: rgba(139, 30, 45, 0.88);
  font-weight: 950;
}

/* NAVIGATOR */
.nav {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.nav__label {
  font-size: 12px;
  font-weight: 900;
  color: rgba(16, 17, 20, 0.62);
}

.nav__select {
  height: 44px;
  border-radius: 1rem;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 0 12px;
  outline: none;
  font-size: 13px;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.78);
}

.nav__result {
  margin-top: 4px;
  border-radius: 1rem;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 12px;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.7);
}

.nav__cta {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 950;
  color: rgba(139, 30, 45, 0.92);
  text-decoration: none;
  position: relative;
}
.nav__cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0%;
  background: #b08d57;
  transition: width 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav__cta:hover::after {
  width: 100%;
}

.nav__note {
  font-size: 12px;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.56);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-filter__row {
    grid-template-columns: 1fr;
  }
  .post-row {
    grid-template-columns: 1fr;
  }
  .post-row__body {
    padding: 14px;
  }
  .post-card {
    grid-template-columns: 1fr;
  }
  .post-card__body {
    padding: 12px;
  }
}
@media (max-width: 576px) {
  .digest__row {
    grid-template-columns: 1fr;
  }
  .digest__btn {
    width: 100%;
    justify-content: center;
  }
}
/* =======================
   FAQ (premium, calm)
   ======================= */
.faq-head {
  max-width: 86ch;
}

.faq .kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  color: rgba(16, 17, 20, 0.58);
}

.faq .h2 {
  margin: 8px 0 10px;
  letter-spacing: -0.02em;
}

.faq-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.68);
}

/* LEFT accordion shell */
.faq-acc {
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: radial-gradient(900px 340px at 110% -35%, rgba(176, 141, 87, 0.08), rgba(176, 141, 87, 0) 62%), linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.4)), #ffffff;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
  position: relative;
}

/* subtle grain */
.faq-acc::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0 1px, rgba(0, 0, 0, 0) 2px 4px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0 1px, rgba(0, 0, 0, 0) 2px 5px);
  background-size: 200px 200px, 260px 260px;
  mix-blend-mode: soft-light;
}

.faq-item {
  position: relative;
  z-index: 2;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(16, 17, 20, 0.1);
}

/* question */
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  padding: 16px 16px;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 12px;
  align-items: center;
  outline: none;
}

.faq-q__title {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(16, 17, 20, 0.92);
}

/* icon */
.faq-q__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  position: relative;
}

.faq-q__icon::before,
.faq-q__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.85), rgba(139, 30, 45, 0.55));
}

.faq-q__icon::before {
  width: 12px;
  height: 2px;
}

.faq-q__icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.is-open .faq-q__icon::after {
  opacity: 0;
}

.faq-q:hover .faq-q__icon {
  border-color: rgba(176, 141, 87, 0.22);
}

.faq-q:focus-visible {
  border-radius: 16px;
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.14);
}

/* answer */
.faq-a {
  display: none;
}

.faq-a__inner {
  padding: 0 16px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.7);
}

/* open state: subtle left line */
.faq-item.is-open .faq-q {
  background: radial-gradient(700px 220px at 110% -30%, rgba(176, 141, 87, 0.1), rgba(176, 141, 87, 0) 60%), transparent;
}

.faq-item.is-open::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.7), rgba(139, 30, 45, 0.38));
  opacity: 0.75;
}

/* RIGHT side */
.faq-side {
  display: grid;
  gap: 12px;
}

/* main card */
.faq-side__card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  overflow: hidden;
  background: radial-gradient(900px 360px at 110% -35%, rgba(176, 141, 87, 0.12), rgba(176, 141, 87, 0) 62%), radial-gradient(720px 320px at 20% 0%, rgba(139, 30, 45, 0.08), rgba(139, 30, 45, 0) 58%), linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.38)), #ffffff;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 16px;
}

/* thin grain overlay */
.faq-side__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.32) 0 1px, rgba(0, 0, 0, 0) 2px 4px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0 1px, rgba(0, 0, 0, 0) 2px 5px);
  background-size: 180px 180px, 240px 240px;
  mix-blend-mode: soft-light;
}

.faq-side__top,
.faq-side__actions,
.faq-side__status,
.faq-side__note {
  position: relative;
  z-index: 2;
}

.faq-side__mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: rgba(16, 17, 20, 0.74);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 999px;
  padding: 7px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.faq-side__markDot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.82);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.16);
}

.faq-side__title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(16, 17, 20, 0.94);
}

.faq-side__text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(16, 17, 20, 0.7);
  max-width: 70ch;
}

.faq-side__actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq-side__btn {
  justify-content: center;
}

.faq-side__phone {
  border-radius: 1rem;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.faq-side__phoneLabel {
  font-size: 12px;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.56);
}

.faq-side__phoneLink {
  display: inline-block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 950;
  color: rgba(16, 17, 20, 0.9);
  text-decoration: none;
  position: relative;
}
.faq-side__phoneLink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2px;
  width: 0%;
  background: #b08d57;
  transition: width 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-side__phoneLink:hover::after {
  width: 100%;
}

.faq-side__status {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(16, 17, 20, 0.66);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 17, 20, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.faq-side__statusDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.82);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.14);
}

.faq-side__note {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(16, 17, 20, 0.52);
}

/* mini cards */
.faq-side__mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-mini {
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.44)), #ffffff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 14px;
}

.faq-mini__label {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(16, 17, 20, 0.46);
}

.faq-mini__text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 850;
  color: rgba(16, 17, 20, 0.66);
}

/* responsive */
@media (max-width: 992px) {
  .faq-side__mini {
    grid-template-columns: 1fr;
  }
}
/* =======================
   Footer — clean premium
   ======================= */
.footer {
  background: #0f1115;
  color: rgba(255, 255, 255, 0.82);
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
}

/* quiet halos (premium depth) */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(1000px 420px at 10% -10%, rgba(176, 141, 87, 0.12), rgba(176, 141, 87, 0) 62%), radial-gradient(980px 420px at 90% 5%, rgba(139, 30, 45, 0.1), rgba(139, 30, 45, 0) 60%), linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.22));
}

/* =======================
   Global underline hover (etalon)
   ======================= */
/* =======================
   Brand
   ======================= */
.footer-brand {
  position: relative;
  z-index: 2;
  padding-right: 10px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}

.footer-logo span {
  color: rgba(176, 141, 87, 0.95);
  margin: 0 6px;
}

/* thin horizontal line under logo */
.footer-logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.footer-text {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  max-width: 42ch;
}

/* social */
.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.footer-social__btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social__btn:hover {
  border-color: rgba(176, 141, 87, 0.55);
  color: rgba(176, 141, 87, 0.92);
}

/* =======================
   Titles / columns
   ======================= */
.footer-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.footer-col {
  position: relative;
  z-index: 2;
}

/* links */
.footer-link {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.74);
  position: relative;
  text-decoration: none;
}
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: #b08d57; /* or #b08d57 */
  transition: 0.25s ease;
}
.footer-link:hover::after {
  width: 100%;
}
.footer-link {
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: rgba(176, 141, 87, 0.92);
}

/* =======================
   Contacts
   ======================= */
.footer-contacts {
  position: relative;
  z-index: 2;
}

.footer-contact {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  text-decoration: none;
}
.footer-contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: #b08d57; /* or #b08d57 */
  transition: 0.25s ease;
}
.footer-contact:hover::after {
  width: 100%;
}
.footer-contact {
  transition: color 0.2s ease;
}

.footer-contact:hover {
  color: rgba(176, 141, 87, 0.92);
}

.footer-hours {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-btn {
  margin-top: 18px;
  justify-content: center;
}

/* =======================
   Bottom
   ======================= */
.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.footer-bottom__links a {
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  text-decoration: none;
}
.footer-bottom__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: #b08d57; /* or #b08d57 */
  transition: 0.25s ease;
}
.footer-bottom__links a:hover::after {
  width: 100%;
}
.footer-bottom__links a {
  transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
  color: rgba(176, 141, 87, 0.85);
}

/* legal signature */
.footer-bottom__legal {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.48);
  font-style: italic;
  letter-spacing: 0.06em;
  font-weight: 650;
  text-rendering: geometricPrecision;
}

/* =======================
   Premium column dividers
   ======================= */
@media (min-width: 992px) {
  .footer-brand,
  .footer-contacts {
    position: relative;
  }
  /* after first column */
  .footer-brand::after {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    right: -24px;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  }
  /* before third column */
  .footer-contacts::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: -24px;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  }
}
/* =======================
   Responsive
   ======================= */
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 30px;
  }
  .footer-btn {
    width: auto;
  }
  .footer-bottom {
    margin-top: 35px;
  }
  .footer-logo::after {
    width: 54px;
  }
}
/* ===== BLOG ASIDE (neutral filler) ===== */
.blog-aside {
  display: grid;
  gap: 16px;
}

/* базовая карточка (если у тебя уже есть .aside-card — этот блок можно удалить) */
.aside-card {
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.aside-card__head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.aside-card__title {
  font-weight: 700;
  line-height: 1.15;
  font-size: 18px;
}

.aside-card__sub {
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.75;
}

.aside-card__footer {
  margin-top: 14px;
}

/* нейтральная модификация */
.aside-card--neutral {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.09);
}

/* список ссылок справа */
.aside-list {
  display: grid;
  gap: 10px;
}

.aside-item {
  display: grid;
  gap: 4px;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.aside-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.aside-item__title {
  font-weight: 700;
  line-height: 1.2;
}

.aside-item__meta {
  font-size: 13px;
  line-height: 1.3;
  opacity: 0.7;
}

/* “плейсхолдер” линии */
.aside-placeholder {
  display: grid;
  gap: 10px;
  padding: 2px 2px;
}

.aside-placeholder__line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  background-size: 200% 100%;
  animation: asideShimmer 2.2s ease-in-out infinite;
}

.aside-placeholder__line--short {
  width: 68%;
}

@keyframes asideShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* цитата */
.aside-quote {
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.1);
}

.aside-quote__text {
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.92;
}

.aside-quote__meta {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.7;
}

/* на светлой теме (если сайт светлый) */
@media (prefers-color-scheme: light) {
  .aside-card {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
  }
  .aside-item {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.015);
  }
  .aside-item:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.14);
  }
  .aside-placeholder__line {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
  }
  .aside-quote {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.1);
  }
}
.lead-modal {
  display: inline-block;
}

.lead-modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  padding: 16px;
}

.lead-modal__panel {
  position: relative;
  width: min(520px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lead-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.lead-modal__close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.lead-modal__title {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 40px 8px 0;
}

.lead-modal__subtitle {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 14px;
}

.lead-modal__meta {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
}

.lead-modal__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lead-modal__link:hover {
  color: rgba(0, 0, 0, 0.85);
}

.lead-modal__form {
  display: grid;
  gap: 12px;
}

.lead-modal__field {
  display: grid;
  gap: 6px;
}

.lead-modal__label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.75);
}

.lead-modal__input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}
.lead-modal__input:focus {
  border-color: rgba(0, 0, 0, 0.4);
}

.lead-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}

.lead-modal__submit,
.lead-modal__cancel {
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  border: 0;
}

.lead-modal__submit {
  background: #2f1b8f;
  color: #fff;
}

.lead-modal__cancel {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.22);
  color: rgba(0, 0, 0, 0.85);
}

.lead-modal__success {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #167c3a;
}

/* ===== WordPress pagination (the_posts_pagination) ===== */
.pagination-wrapper {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pagination-wrapper .navigation.pagination {
  display: flex;
  justify-content: center;
}

.pagination-wrapper .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* общий вид кнопок */
.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

/* hover/focus */
.pagination-wrapper a.page-numbers:hover,
.pagination-wrapper a.page-numbers:focus {
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
  outline: none;
}

/* текущая страница */
.pagination-wrapper .page-numbers.current {
  background: #111;
  border-color: #111;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

/* многоточие */
.pagination-wrapper .page-numbers.dots {
  min-width: 42px;
  padding: 0 10px;
  border-style: dashed;
  color: rgba(0, 0, 0, 0.55);
  cursor: default;
}

/* prev/next — чуть шире */
.pagination-wrapper .page-numbers.prev,
.pagination-wrapper .page-numbers.next {
  min-width: 54px;
  padding: 0 16px;
}

/* если WP выводит disabled (иногда через span) */
.pagination-wrapper span.page-numbers.prev,
.pagination-wrapper span.page-numbers.next {
  opacity: 0.45;
  box-shadow: none;
  transform: none;
}

/* мобильная компактность */
@media (max-width: 575px) {
  .pagination-wrapper .page-numbers {
    min-width: 38px;
    height: 38px;
    border-radius: 10px;
    padding: 0 12px;
  }
  .pagination-wrapper .page-numbers.prev,
  .pagination-wrapper .page-numbers.next {
    min-width: 46px;
    padding: 0 14px;
  }
}
.single-post .content {
  line-height: 1.5;
}

/*# sourceMappingURL=style.css.map */
