@import url('https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,500;7..72,600;7..72,700&display=swap');

/* ===== Базовые переменные ===== */
:root {
  --header-bg: #1e2a4a;
  --header-bg-alt: #243052;
  --text-on-dark: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.88);
  --border-cta: #ffffff;
  --font-main: 'Manrope', system-ui, -apple-system, sans-serif;
  --header-height: 80px;
  --container-max: 1280px;
  --brand-blue: #1e2a4a;
  --slider-height: calc(100vh - var(--header-height));
  --text: #1f2937;
  --text-soft: rgba(31, 41, 55, 0.82);
  --section-title-size: clamp(3.2rem, 6.4vw, 7.55rem);
  --section-title-lh: 1.22;

  /* Section stack: avoid double padding between same-tone sections */
  --section-pt: clamp(54px, 7vw, 96px);
  --section-pb: clamp(40px, 5.5vw, 72px);
  --section-pt-compact: clamp(16px, 3vw, 32px);

  /* CTA tokens (keep one accent color, no rainbow) */
  --cta-bg: var(--brand-blue);
  --cta-bg-hover: #243052;
  --cta-fg: #ffffff;
  --cta-inverse-bg: #ffffff;
  --cta-inverse-fg: var(--brand-blue);
  --btn-radius: 12px;
  --btn-height: 46px;
  --sticky-cta-offset: calc(12px + env(safe-area-inset-bottom));
  --sticky-cta-safe-offset: calc(96px + env(safe-area-inset-bottom));
  --floating-overlay-offset: calc(108px + env(safe-area-inset-bottom));

  /* Vertical rhythm (8px scale) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 48px;

  /* Shadows (premium, restrained) */
  --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.12);
  --shadow-card-hover: 0 18px 36px rgba(15, 23, 42, 0.18);
  --shadow-float: 0 22px 60px rgba(0, 0, 0, 0.25);
}

@supports (height: 100svh) {
  :root {
    --slider-height: calc(100svh - var(--header-height));
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

body.has-sticky-cta {
  padding-bottom: var(--sticky-cta-safe-offset);
}

/* Typography defaults / hierarchy */
h1, h2, h3 {
  margin: 0;
}

p {
  margin: 0;
}

.prose {
  max-width: 65ch;
}

.page-section {
  padding: var(--section-pt) 0 var(--section-pb);
  border-top: 1px solid transparent;
}

/* Первая секция после hero — без большой «дыры» */
.main-content + .page-section {
  padding-top: var(--section-pt-compact);
  border-top-color: transparent;
}

/* Две белые подряд — один компактный зазор */
.page-section--light + .page-section--light {
  padding-top: var(--section-pt-compact);
}

/* Светлая → тёмная и тёмная → светлая — один зазор, без удвоения */
.page-section + .page-section--dark,
.page-section--dark + .page-section {
  padding-top: var(--section-pt-compact);
}

.page-section--light {
  border-top-color: rgba(30, 42, 74, 0.06);
}

.page-section--dark {
  border-top-color: rgba(255, 255, 255, 0.1);
}

html {
  scrollbar-gutter: stable;
}

/* ===== Шапка: увеличенные шрифты, без лупы и языка ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  height: var(--header-height);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(1.15rem, 1.05vw + 0.85rem, 1.35rem);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  margin-left: -2px;
}

.logo:hover {
  color: var(--text-on-dark);
  opacity: 0.92;
}

.logo-chevron {
  font-size: 1.15em;
  font-weight: 400;
  opacity: 0.9;
}

.nav-main {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 10px 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.02rem;
  white-space: nowrap;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header-phone {
  margin-left: 10px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.12rem;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
  font-feature-settings: "tnum" 1;
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--text-on-dark);
}

.nav-list a:hover {
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.08);
}

.header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  margin-left: 6px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: transparent;
  color: var(--text-on-dark);
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--btn-radius);
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.logo:focus-visible,
.nav-list a:focus-visible,
.header-phone:focus-visible,
.btn-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.btn-cta:hover {
  background: var(--border-cta);
  color: var(--header-bg);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-on-dark);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-header.is-open .burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .burger span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--header-bg-alt);
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.site-header.is-open .nav-mobile {
  display: block;
}

.nav-mobile-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.nav-mobile-list a {
  display: block;
  padding: 14px 0;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.0625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile-list a:hover {
  color: var(--text-on-dark);
}

.btn-cta-mobile {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 1.05rem;
  font-weight: 600;
}

.header-phone-mobile {
  display: block;
  padding: 14px 0;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.header-phone-mobile:hover {
  color: var(--text-on-dark);
}

@media (max-width: 1024px) {
  .nav-main,
  .header-phone,
  .header-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
  }
}

/* ===== Слайдер: 97% высоты экрана (шапка + слайды) ===== */
.main-content {
  border: none;
  outline: none;
  min-height: 0;
}

.main-content--hero {
  height: var(--slider-height);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: none;
  outline: none;
}

.hero-slider-corner-cutout {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  max-width: 560px;
  background: #ffffff;
  /* Сильное перекрытие (68%) — убирает тонкую линию в Chrome на стыке выреза */
  clip-path: polygon(100% 65%, 100% 100%, 68% 100%);
  pointer-events: none;
  z-index: 30;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Белая полоска внизу справа перекрывает артефакт линии в Chrome */
.hero-slider-corner-cutout::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #ffffff;
}

.hero-slider-right-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  max-width: 560px;
  pointer-events: none;
  z-index: 5;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-slider-right-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-slider-right-layer-1 {
  left: 0;
  right: 0;
  z-index: 1;
  /* Вырез с заходом (84%) под белый треугольник — убирает линию на стыке */
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 65%,
    84% 100%,
    10% 100%,
    50% 50%,
    0% 0%
  );
  transform: translateY(var(--hero-parallax-y1, 0px));
  will-change: transform;
}

.hero-slider-right-layer-2 {
  left: 0;
  right: 0;
  z-index: 2;
  /* Вырез с заходом (84%) под белый треугольник — убирает линию на стыке */
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 65%,
    84% 100%,
    10% 100%,
    50% 50%,
    0% 0%
  );
  /* Сдвиг верхнего изображения вместе с его вырезом (как было до последней правки) */
  transform: translateX(30%) translateY(var(--hero-parallax-y2, 0px));
  will-change: transform;
}

.hero-slider-right-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: bottom;
}

.hero-slider-right-layer picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slider-right-layer picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider-right-overlay {
  position: absolute;
  inset: 0;
  background: rgba(100, 100, 100, 0.35);
  pointer-events: none;
}

.slider-track {
  display: flex;
  width: 500%;
  height: 100%;
  /* Сразу показываем реальный 1-й слайд (последний в треке) без "пролёта" при загрузке */
  transform: translateX(-80%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slider-track.is-loop-reset {
  transition: none;
}

.slide {
  flex: 0 0 20%;
  width: 20%;
  height: 100%;
  flex-shrink: 0;
}

/* Слайд 1: белый фон, текст слева (крупный), два изображения справа с вырезом */
.slide-1 {
  background: #ffffff;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.slide-1-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(24px, 6vw, 100px) 0 calc(clamp(5%, 8vw, 120px) + 5vw);
  max-width: min(70%, calc(100% - 120px));
  line-height: 1.3;
  box-sizing: border-box;
}

.slide-1-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.55rem, 1.65vw, 1.05rem);
  max-width: 100%;
}

.slide-1-title {
  display: block;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.025em;
  font-size: clamp(2.2rem, 4.8vw, 3.75rem);
  line-height: 1.14;
  white-space: normal;
  max-width: 100%;
  width: auto;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  opacity: 1;
  animation: none;
}

.slide-1-line3 {
  display: block;
  margin: 0;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 2.95vw, 2.15rem);
  line-height: 1.3;
  white-space: normal;
  max-width: 100%;
  width: auto;
  text-wrap: pretty;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  opacity: 1;
  animation: none;
}

@keyframes slide1TitleIn {
  from {
    opacity: 0;
    transform: translateX(-12%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide1Line3In {
  from {
    opacity: 0;
    transform: translateY(0.35em);
  }
  to {
    opacity: 0.96;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .slide-1-content {
    max-width: min(82%, calc(100% - 72px));
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(16px, 4vw, 40px);
  }
  .slide-1-headline {
    max-width: 100%;
    gap: clamp(0.45rem, 1.4vw, 0.9rem);
  }
  .slide-1-title {
    font-size: clamp(1.65rem, 4.2vw, 2.65rem);
    line-height: 1.12;
    max-width: 100%;
  }
  .slide-1-line3 {
    font-size: clamp(1.15rem, 2.85vw, 1.75rem);
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-slider-right-image,
  .hero-slider-corner-cutout {
    display: none;
  }

  .slide-1-content,
  .slide-3-content,
  .slide-4-content {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .slide-1-headline {
    max-width: 100%;
    gap: 0.5rem;
  }

  .slide-1-title {
    font-size: clamp(1.05rem, 4vw, 1.35rem);
    line-height: 1.14;
    max-width: 100%;
    white-space: normal;
  }

  .slide-1-line3 {
    font-size: clamp(0.9rem, 3vw, 1.05rem);
    line-height: 1.35;
    max-width: 100%;
    white-space: normal;
  }

  .slide-4-line1,
  .slide-4-line2 {
    white-space: normal;
  }

  .slider-dots {
    bottom: 18px;
  }
}

@media (max-width: 1180px), (max-height: 820px) {
  .slide-1-content {
    max-width: min(76%, calc(100% - 88px));
    padding-left: clamp(24px, 5vw, 56px);
    padding-right: clamp(20px, 4vw, 44px);
  }
  .slide-1-headline {
    max-width: 100%;
  }
  .slide-1-title {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 1.1;
  }
  .slide-1-line3 {
    font-size: clamp(1.02rem, 1.9vw, 1.42rem);
    line-height: 1.28;
  }
  .slide-1-title,
  .slide-1-line3 {
    white-space: normal;
    width: auto;
    max-width: 100%;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}

/* Слайд 2: видео на весь слайд */
.slide-2 {
  background: #000;
  position: relative;
}

.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Слайд 3: синий фон, три строки с крупным белым текстом и стрелками (по референсу) */
.slide-3 {
  background: var(--brand-blue);
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.slide-3-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 calc(clamp(5%, 8vw, 120px) + 5vw);
  max-width: 58%;
  gap: 0.34em;
}

.slide-3-line {
  /* индивидуальный сдвиг строки (как в референсе) */
  --x: 0%;
  display: flex;
  align-items: center;
  gap: 0.35em;
  opacity: 0;
}

.slide-3-line:nth-child(2) {
  --x: 25%;
}

.slide-3-line:nth-child(3) {
  --x: 10%;
}

.slide-3-word,
.slide-3-arrow {
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  font-size: clamp(3.25rem, 6.3vw, 5rem);
  line-height: 1.05;
}

.slide-3-arrow {
  /* Не символ, а рисованная стрелка — одинаково жирная и крупная везде */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  opacity: 0.95;
}

.slide-3-arrow::before {
  content: '';
  width: 0.52em;
  height: 0.52em;
  border-right: 0.14em solid currentColor;
  border-top: 0.14em solid currentColor;
  transform: rotate(45deg);
  display: block;
}

.slide-3-line:nth-child(1) {
  animation: slide3LineIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.slide-3-line:nth-child(2) {
  animation: slide3LineIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards;
}

.slide-3-line:nth-child(3) {
  animation: slide3LineIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
}

@keyframes slide3LineIn {
  from {
    opacity: 0;
    transform: translateX(calc(var(--x) - 12%));
  }
  to {
    opacity: 1;
    transform: translateX(var(--x));
  }
}

@media (max-width: 900px) {
  .slide-3-content {
    max-width: 70%;
    padding-left: clamp(20px, 5vw, 60px);
  }
  .slide-3-word,
  .slide-3-arrow {
    font-size: clamp(2.4rem, 5.3vw, 3.6rem);
  }

  .slide-3-line {
    gap: 0.3em;
  }
}

/* Слайды 4–5: заглушки по цветам */
/* Слайд 4: слоган + спокойная многоступенчатая анимация (как на 1-м) */
.slide-4 {
  background: #ffffff;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.slide-4-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 calc(clamp(5%, 8vw, 120px) + 5vw);
  max-width: 62%;
}

.slide-4-headline {
  margin: 0;
  display: block;
  line-height: 1.25;
}

.slide-4-line1,
.slide-4-line2 {
  display: block;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  white-space: nowrap;
  opacity: 0;
}

.slide-4-line2 {
  margin-top: 0.42em;
}

.slide-4-line1 {
  animation: slide4LineIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.slide-4-line2 {
  animation: slide4LineIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) 1.15s forwards;
}

@keyframes slide4LineIn {
  from {
    opacity: 0;
    transform: translateX(-10%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .slide-4-content {
    max-width: 78%;
    padding-left: clamp(20px, 5vw, 60px);
  }
  .slide-4-line1,
  .slide-4-line2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
}

/* Точки навигации слайдера */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.slider-dot:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.3);
}

.slider-dot.active {
  background: #fff;
  border-color: #fff;
}

.hero-slider .slider-dot {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
}

.hero-slider .slider-dot.active {
  background: #fff;
  border-color: #fff;
}

/* Когда активен слайд 1 или 4 — точки тёмные */
.hero-slider[data-active-slide="0"] .slider-dot,
.hero-slider[data-active-slide="3"] .slider-dot {
  border-color: rgba(30, 42, 74, 0.35);
  background: rgba(30, 42, 74, 0.15);
}

.hero-slider[data-active-slide="0"] .slider-dot:hover,
.hero-slider[data-active-slide="3"] .slider-dot:hover {
  border-color: var(--brand-blue);
  background: rgba(30, 42, 74, 0.25);
}

.hero-slider[data-active-slide="0"] .slider-dot.active,
.hero-slider[data-active-slide="3"] .slider-dot.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

/* ===== Блок "Наши услуги" (референс) ===== */
.services-section {
  background: #ffffff;
}

.services-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.services-title {
  margin: 0 0 clamp(22px, 3vw, 34px);
  font-family: var(--font-main);
  font-weight: 800;
  color: rgba(30, 42, 74, 0.86);
  letter-spacing: -0.03em;
  font-size: var(--section-title-size);
  line-height: var(--section-title-lh);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-rows: clamp(220px, 14vw, 280px);
}

/* На десктопе ограничиваем заголовок шириной 1-й карточки (8/12 сетки) */
@media (min-width: 1101px) {
  .services-title {
    max-width: calc((100% - (16px * 11)) / 12 * 8 + (16px * 7));
    /* Фиксируем ровно 2 строки (перенос только по <br>) */
    white-space: nowrap;
  }
}

.service-card {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #0f172a;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:focus-visible {
  outline: 3px solid rgba(30, 42, 74, 0.65);
  outline-offset: 4px;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.service-card__film {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 42, 74, 0.22) 0%, rgba(30, 42, 74, 0.7) 100%),
    rgba(30, 42, 74, 0.48);
  transition: background 0.25s ease;
}

.service-card:hover .service-card__film {
  background:
    linear-gradient(180deg, rgba(30, 42, 74, 0.26) 0%, rgba(30, 42, 74, 0.78) 100%),
    rgba(30, 42, 74, 0.58);
}

.service-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px 18px;
  gap: 14px;
  z-index: 2;
}

.service-card__title {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
}

.service-card__price {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease 0s, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1) 0s;
}

.service-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease 0.08s, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1) 0.08s, background 0.2s ease;
}

.service-card:hover .service-card__price,
.service-card:hover .service-card__more,
.service-card:focus-visible .service-card__price,
.service-card:focus-visible .service-card__more {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card__more {
  background: rgba(255, 255, 255, 0.12);
}

/* Сетка 6 карточек (как на референсе) */
.service-card--debt { grid-column: 1 / span 8; grid-row: 1; }
.service-card--dispute { grid-column: 9 / span 4; grid-row: 1; }
.service-card--checks { grid-column: 1 / span 4; grid-row: 2 / span 2; }
.service-card--business { grid-column: 5 / span 8; grid-row: 2; }
.service-card--subscription { grid-column: 5 / span 4; grid-row: 3; }
.service-card--deals { grid-column: 9 / span 4; grid-row: 3; }

@media (max-width: 1100px) {
  .services-title {
    white-space: normal;
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .service-card--debt,
  .service-card--dispute,
  .service-card--checks,
  .service-card--business,
  .service-card--subscription,
  .service-card--deals {
    grid-column: auto;
    grid-row: auto;
    height: auto;
  }
}

/* ===== Модальное окно услуги ===== */
.service-modal {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.32s;
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal.is-open .service-modal__backdrop {
  opacity: 1;
}

.service-modal__dialog {
  position: relative;
  width: min(1040px, calc(100vw - 32px));
  margin: clamp(20px, 5vh, 60px) auto;
  max-height: calc(100vh - 24px);
  background: #ffffff;
  border-radius: 18px;
  overflow: auto;
  overscroll-behavior: contain;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal.is-open .service-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.service-modal__left > *,
.service-modal__right > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-modal.is-open .service-modal__left > *,
.service-modal.is-open .service-modal__right > * {
  opacity: 1;
  transform: translateY(0);
}

.service-modal.is-open .service-modal__left > :nth-child(1) { transition-delay: 80ms; }
.service-modal.is-open .service-modal__left > :nth-child(2) { transition-delay: 120ms; }
.service-modal.is-open .service-modal__left > :nth-child(3) { transition-delay: 160ms; }
.service-modal.is-open .service-modal__left > :nth-child(4) { transition-delay: 200ms; }
.service-modal.is-open .service-modal__right > :nth-child(1) { transition-delay: 160ms; }
.service-modal.is-open .service-modal__right > :nth-child(2) { transition-delay: 220ms; }

@media (prefers-reduced-motion: reduce) {
  .service-modal,
  .service-modal__backdrop,
  .service-modal__dialog,
  .service-modal__left > *,
  .service-modal__right > * {
    transition: none !important;
    transform: none !important;
  }
}

.service-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.85);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease;
}

.service-modal__close:hover {
  background: rgba(15, 23, 42, 0.1);
}

.service-modal__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  min-height: min(72vh, 640px);
}

@supports (height: 100dvh) {
  .service-modal__dialog {
    max-height: calc(100dvh - 24px);
  }

  .service-modal__grid {
    min-height: min(72dvh, 640px);
  }

  .consult-modal__layout {
    min-height: min(60dvh, 480px);
  }
}

.service-modal__left {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-modal__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.service-modal__title {
  margin: 0;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.service-modal__text {
  color: rgba(30, 42, 74, 0.86);
  font-size: 1.18rem;
  line-height: 1.6;
  max-width: 65ch;
}

.service-modal__bullets {
  margin: 0;
  padding: 0 0 0 18px;
  color: rgba(30, 42, 74, 0.82);
  display: grid;
  gap: 8px;
  font-size: 1.18rem;
  line-height: 1.6;
}

.service-modal__right {
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-modal__form-title {
  margin: 0 0 14px;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
  font-size: 1.35rem;
}

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

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

.service-modal__label {
  font-size: 0.92rem;
  color: rgba(30, 42, 74, 0.72);
}

.service-modal__input {
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-modal__input:focus {
  border-color: rgba(30, 42, 74, 0.55);
  box-shadow: 0 0 0 4px rgba(30, 42, 74, 0.12);
}

.service-modal__input.is-invalid {
  border-color: rgba(180, 35, 24, 0.75);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.14);
}

.service-modal__input.is-valid {
  border-color: rgba(18, 115, 56, 0.55);
  box-shadow: 0 0 0 4px rgba(18, 115, 56, 0.12);
}

.service-modal__submit {
  height: var(--btn-height);
  border-radius: var(--btn-radius);
  border: 2px solid var(--cta-bg);
  background: var(--cta-bg);
  color: var(--cta-fg);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.service-modal__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(30, 42, 74, 0.78);
  margin-top: 2px;
  cursor: pointer;
}

.service-modal__consent-input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--brand-blue);
  cursor: pointer;
}

.service-modal__consent-text {
  line-height: 1.4;
}

.service-modal__consent-link {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-modal__consent-link:hover {
  color: #243052;
}

.service-modal__submit:hover {
  background: var(--cta-bg-hover);
  border-color: var(--cta-bg-hover);
  filter: none;
  transform: translateY(-1px);
}

.service-modal__note {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: rgba(30, 42, 74, 0.6);
}

@media (max-width: 900px) {
  .service-modal__grid {
    grid-template-columns: 1fr;
  }
  .service-modal__right {
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }
  .service-modal__image {
    height: 200px;
  }
}

@media (max-height: 760px) {
  .service-modal__dialog {
    margin: 12px auto;
  }

  .service-modal__grid,
  .consult-modal__layout {
    min-height: auto;
  }

  .service-modal__left,
  .service-modal__right,
  .consult-modal__right {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* ===== Раздел «Юридические услуги: деньги бизнес споры» ===== */
.legal-section {
  background: #ffffff;
}

.legal-section__title {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.legal-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.legal-tabs {
  display: inline-flex;
  gap: 0;
  padding: 8px;
  border-radius: 18px;
  background: rgba(30, 42, 74, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.legal-tab {
  border: none;
  background: transparent;
  padding: 14px 26px;
  border-radius: 14px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  letter-spacing: -0.01em;
  color: rgba(30, 42, 74, 0.88);
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.legal-tab:hover {
  background: rgba(30, 42, 74, 0.12);
  color: var(--brand-blue);
  transform: translateY(-1px);
}

.legal-tab.is-active {
  background: var(--brand-blue);
  color: #fff;
}

.legal-cta {
  padding: 14px 28px;
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  border-color: var(--cta-bg);
  background: var(--cta-bg);
  color: var(--cta-fg);
}

.legal-cta:hover {
  background: var(--cta-bg-hover);
  border-color: var(--cta-bg-hover);
  color: var(--cta-fg);
}

.legal-panels {
  position: relative;
}

.legal-panel {
  display: none;
}

.legal-panel.is-active {
  display: block;
}

.legal-panel[hidden] {
  display: none !important;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.legal-panel.is-hiding .legal-grid {
  opacity: 0;
  transform: translateY(14px);
}

.legal-panel.is-showing .legal-grid {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.legal-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background: #0f172a;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  aspect-ratio: 1 / 1;
  min-height: 260px;
}

.legal-card:hover,
.legal-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.legal-card:focus-visible {
  outline: 3px solid rgba(30, 42, 74, 0.65);
  outline-offset: 4px;
}

.legal-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.legal-card__film {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 42, 74, 0.22) 0%, rgba(30, 42, 74, 0.78) 100%),
    rgba(30, 42, 74, 0.48);
  transition: background 0.25s ease;
}

.legal-card:hover .legal-card__film,
.legal-card:focus-visible .legal-card__film {
  background:
    linear-gradient(180deg, rgba(30, 42, 74, 0.26) 0%, rgba(30, 42, 74, 0.82) 100%),
    rgba(30, 42, 74, 0.58);
}

.legal-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  gap: 10px;
  z-index: 2;
}

.legal-card__title {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.02em;
  font-size: clamp(1.2rem, 1.25vw, 1.55rem);
  line-height: 1.15;
  text-shadow: 0 10px 24px rgba(15, 23, 42, 0.55);
}

.legal-card__price {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 24px rgba(15, 23, 42, 0.55);
}

.legal-card__desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.legal-card:hover .legal-card__desc,
.legal-card:focus-visible .legal-card__desc {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-section__title {
    white-space: normal;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-top {
    gap: 16px;
  }
  .legal-tab {
    padding: 12px 20px;
    font-size: 1.15rem;
  }
  .legal-cta {
    padding: 12px 22px;
    font-size: 1.15rem;
  }
}

/* ===== Модалка «Получить консультацию» ===== */
.consult-modal .service-modal__dialog {
  max-width: min(720px, calc(100vw - 32px));
}

.consult-modal__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: min(60vh, 480px);
}

.consult-modal__image-wrap {
  position: relative;
  overflow: hidden;
}

.consult-modal__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.consult-modal__right {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.consult-modal .service-modal__title {
  margin: 0 0 8px;
}

.consult-modal__right > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.consult-modal.is-open .consult-modal__right > * {
  opacity: 1;
  transform: translateY(0);
}

.consult-modal.is-open .consult-modal__right > *:nth-child(1) { transition-delay: 80ms; }
.consult-modal.is-open .consult-modal__right > *:nth-child(2) { transition-delay: 140ms; }
.consult-modal.is-open .consult-modal__right > *:nth-child(3) { transition-delay: 200ms; }

@media (max-width: 700px) {
  .consult-modal__layout {
    grid-template-columns: 1fr;
  }
  .consult-modal__image-wrap {
    height: 200px;
  }
  .consult-modal__image {
    position: relative;
    height: 100%;
  }
}

/* ===== Раздел «Споры которые решены» (кейсы) ===== */
.cases-section {
  position: relative;
  background: radial-gradient(1200px 600px at 15% 10%, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 55%),
              radial-gradient(900px 520px at 85% 40%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 60%),
              linear-gradient(180deg, #1e2a4a 0%, #17213a 100%);
  overflow: hidden;
}

.cases-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 1px,
      rgba(255, 255, 255, 0) 1px,
      rgba(255, 255, 255, 0) 14px
    );
  opacity: 0.22;
  pointer-events: none;
}

.cases-section::after {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.cases-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.cases-title {
  color: rgba(255, 255, 255, 0.92);
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cases-title {
    white-space: normal;
  }
}

.cases-viewport {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  /* Колонки: кейс | как добились | результат (с отступом от кнопки) | кнопка фикс */
  --cases-cols: minmax(200px, 1fr) minmax(0, 1.8fr) minmax(100px, 0.65fr) minmax(140px, 140px);
}

.cases-table-head {
  display: grid;
  grid-template-columns: var(--cases-cols);
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
}

.cases-table-head__col--result {
  text-align: center;
}

.cases-table-head__col--action {
  width: 140px;
}

.cases-track {
  display: flex;
  width: 100%;
  transform: translateX(0%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.cases-page {
  width: 100%;
  flex: 0 0 100%;
  padding: 0;
}

.cases-table {
  display: grid;
}

.case-row {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: var(--cases-cols);
  grid-template-areas: "title note result more";
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.25s ease, transform 0.25s ease;
}

.case-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.case-row:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

.case-row__title,
.case-row__note {
  min-width: 0;
  overflow-wrap: anywhere;
}

.case-row__result {
  min-width: 0;
}

.case-row__title {
  grid-area: title;
  font-weight: 800;
  font-size: 1.06rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.case-row__note {
  grid-area: note;
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.84);
}

.case-row__result {
  grid-area: result;
  display: block;
  justify-self: center;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  padding-right: 0;
}

.case-row__more {
  grid-area: more;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: #ffffff;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.case-row:hover .case-row__more {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.cases-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.cases-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.cases-nav__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
}

.cases-dots {
  display: inline-flex;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.cases-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cases-dot.is-active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.05);
}

@media (max-width: 1100px) {
  .cases-table-head,
  .case-row {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 10px;
  }
  .cases-table-head__col--result {
    display: none;
  }
  .cases-table-head__col--action {
    display: none;
  }
  .case-row__result {
    justify-self: start;
    opacity: 0.92;
  }
  .case-row__more {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .cases-table-head {
    display: none;
  }
}

/* ===== Раздел «Наши эксперты» ===== */
.experts-section {
  background: #ffffff;
}

.experts-title {
  margin: 0 0 clamp(22px, 3vw, 34px);
  color: rgba(30, 42, 74, 0.86);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .experts-title {
    white-space: normal;
  }
}

/* ===== FAQ ===== */
.faq-section {
  background: #ffffff;
}

.faq-title {
  max-width: min(100%, 12ch);
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(30, 42, 74, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 249, 253, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 18px 44px rgba(30, 42, 74, 0.08);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(30, 42, 74, 0.18);
  box-shadow: 0 24px 52px rgba(30, 42, 74, 0.12);
}

.faq-item__question {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 24px 72px 24px 28px;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(30, 42, 74, 0.92);
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::before,
.faq-item__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(30, 42, 74, 0.72);
  transform: translateY(-50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-item__question::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] .faq-item__question::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

.faq-item__answer {
  padding: 0 28px 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(30, 42, 74, 0.8);
}

@media (max-width: 1100px) {
  .cases-title,
  .experts-title,
  .faq-title {
    white-space: normal;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .faq-item__question {
    padding: 20px 60px 20px 20px;
    font-size: 1rem;
  }

  .faq-item__question::before,
  .faq-item__question::after {
    right: 20px;
  }

  .faq-item__answer {
    padding: 0 20px 20px;
    font-size: 0.96rem;
  }
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-rows: clamp(260px, 17vw, 340px);
}

.expert-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  outline: none;
}

.expert-card:hover,
.expert-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.expert-card:focus-visible {
  outline: 3px solid rgba(30, 42, 74, 0.65);
  outline-offset: 4px;
}

.expert-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.expert-card__film {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 42, 74, 0) 0%,
    rgba(30, 42, 74, 0) 40%,
    rgba(30, 42, 74, 0.5) 65%,
    rgba(30, 42, 74, 0.82) 100%
  );
  transition: background 0.25s ease;
}

.expert-card:hover .expert-card__film,
.expert-card:focus-visible .expert-card__film {
  background: linear-gradient(
    180deg,
    rgba(30, 42, 74, 0) 0%,
    rgba(30, 42, 74, 0) 40%,
    rgba(30, 42, 74, 0.55) 65%,
    rgba(30, 42, 74, 0.9) 100%
  );
}

.expert-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  gap: 10px;
  z-index: 2;
}

.expert-card__name {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.02em;
  font-size: clamp(1.18rem, 1.25vw, 1.55rem);
  line-height: 1.15;
  text-shadow: 0 10px 24px rgba(15, 23, 42, 0.55);
}

.expert-card__meta {
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.expert-card:hover .expert-card__meta,
.expert-card:focus-visible .expert-card__meta {
  opacity: 1;
  transform: translateY(0);
}

.expert-card__role {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 24px rgba(15, 23, 42, 0.55);
}

.expert-card__skills {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
  line-height: 1.35;
  text-shadow: 0 10px 24px rgba(15, 23, 42, 0.55);
}

/* Сетка: левая карточка уже и выше, правый столбец шире — пропорциональнее */
.expert-card--lead { grid-column: 1 / span 6; grid-row: 1 / span 2; }
.expert-card--ceo { grid-column: 7 / span 6; grid-row: 1; }
.expert-card--partner { grid-column: 7 / span 3; grid-row: 2; }
.expert-card--senior { grid-column: 10 / span 3; grid-row: 2; }

@media (max-width: 1100px) {
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(240px, 28vw, 280px);
  }
  .expert-card--lead,
  .expert-card--ceo,
  .expert-card--partner,
  .expert-card--senior {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Раздел «Оставить заявку» (форма + контакты) ===== */
.apply-section {
  position: relative;
  background: radial-gradient(1200px 600px at 15% 10%, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 55%),
              radial-gradient(900px 520px at 85% 40%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 60%),
              linear-gradient(180deg, #1e2a4a 0%, #17213a 100%);
  overflow: hidden;
}

.apply-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 1px,
      rgba(255, 255, 255, 0) 1px,
      rgba(255, 255, 255, 0) 14px
    );
  opacity: 0.22;
  pointer-events: none;
}

.apply-section::after {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.apply-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.apply-title {
  margin: 0 0 clamp(32px, 4vw, 48px);
  font-family: var(--font-main);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.03em;
  /* Крупный шрифт, подобран так, чтобы две строки (с <br>) умещались в контейнер */
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.25;
}

.apply-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.apply-form-wrap {
  min-width: 0;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.apply-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apply-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.apply-input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.apply-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.apply-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.field-error {
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.3;
  color: rgba(31, 41, 55, 0.74);
}

.field-error.is-error {
  color: #b42318;
}

.apply-section .field-error {
  color: rgba(255, 255, 255, 0.88);
}

.apply-section .field-error.is-error {
  color: #ffb4ab;
}

.apply-input.is-invalid {
  border-color: rgba(255, 180, 171, 0.85);
  box-shadow: 0 0 0 4px rgba(255, 180, 171, 0.16);
}

.apply-input.is-valid {
  border-color: rgba(134, 239, 172, 0.7);
  box-shadow: 0 0 0 4px rgba(134, 239, 172, 0.14);
}

.apply-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  margin-top: 4px;
}

.apply-submit {
  flex-shrink: 0;
  height: var(--btn-height);
  padding: 0 28px;
  border: none;
  border-radius: var(--btn-radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--cta-inverse-fg);
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.apply-submit:hover {
  background: #fff;
  transform: translateY(-1px);
}

.apply-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 320px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.apply-consent-input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--brand-blue);
  cursor: pointer;
}

.apply-consent-text {
  line-height: 1.4;
}

.apply-contact {
  position: relative;
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.apply-contact-text {
  margin: 0 0 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  max-width: 65ch;
}

.apply-phone {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.apply-phone:hover {
  opacity: 0.9;
}

.apply-messengers {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.apply-messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.apply-messenger:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.apply-messenger-icon {
  width: 24px;
  height: 24px;
}

.apply-call-btn {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apply-call-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.apply-call-btn-icon {
  display: block;
  line-height: 0;
}

@media (max-width: 900px) {
  .apply-layout {
    grid-template-columns: 1fr;
  }
  .apply-contact {
    padding-right: 100px;
  }
  .apply-call-btn {
    right: 20px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 640px) {
  .apply-title {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  }
  .apply-row {
    flex-direction: column;
  }
  .apply-consent {
    max-width: none;
  }
}

/* ===== Подвал сайта ===== */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #1e2a4a 0%, #17213a 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 0 0 clamp(40px, 5vw, 56px);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, rgba(255, 255, 255, 0) 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, rgba(255, 255, 255, 0) 1px);
  background-size: 220px 100%, 100% 220px;
  opacity: 0.12;
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at 55% 30%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: clamp(34px, 4vw, 56px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(1.85rem, 2.6vw, 2.85rem);
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.footer-logo:hover {
  color: #fff;
  opacity: 0.9;
}

.footer-ticker {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding-left: 6px;
  /* Мягкая маска, чтобы текст "заходил" к логотипу аккуратно */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.footer-ticker::before {
  content: '';
  position: absolute;
  left: -10px;
  top: -40px;
  bottom: -40px;
  width: 220px;
  background:
    radial-gradient(circle at 30% 50%, rgba(88, 140, 255, 0.22) 0%, rgba(88, 140, 255, 0) 60%),
    linear-gradient(90deg, rgba(30, 42, 74, 0.95) 0%, rgba(30, 42, 74, 0.65) 45%, rgba(30, 42, 74, 0) 100%);
  pointer-events: none;
}

.footer-ticker__track {
  display: inline-flex;
  animation: footer-ticker 16s linear infinite;
}

.footer-ticker__text {
  display: inline-block;
  padding-right: 2.5em;
  font-weight: 800;
  /* такой же стиль, как у логотипа */
  font-size: clamp(1.85rem, 2.6vw, 2.85rem);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  font-feature-settings: "tnum" 1;
  text-shadow:
    0 0 22px rgba(88, 140, 255, 0.18),
    0 0 44px rgba(88, 140, 255, 0.12);
}

@keyframes footer-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .footer-ticker__track {
    animation: none;
  }
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) 2.85fr;
  gap: clamp(22px, 3vw, 36px);
  padding-top: clamp(28px, 4vw, 44px);
}

.footer-contact {
  padding-top: 6px;
}

.footer-contact__phone {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-feature-settings: "tnum" 1;
  margin-bottom: 12px;
  transition: opacity 0.2s ease;
}

.footer-contact__phone:hover {
  opacity: 0.9;
}

.footer-contact__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footer-contact__addr,
.footer-contact__hours {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 65ch;
}

.footer-contact__mail {
  display: inline-block;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.footer-contact__mail:hover {
  color: #fff;
}

.footer-contact__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.footer-contact__messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-contact__messenger:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col {
  padding-left: clamp(18px, 2.4vw, 28px);
  padding-right: clamp(18px, 2.4vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col__title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.footer-col__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col__list li {
  margin-bottom: 8px;
}

.footer-col__list a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-col__list a:hover {
  color: #fff;
}

.footer-col__list a:focus-visible {
  color: #fff;
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-col {
    border-right: none;
    border-left: none;
    padding-left: 0;
    padding-right: 0;
  }
  .footer-links {
    gap: 28px;
    border-left: none;
  }
}

@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-ticker {
    width: 100%;
  }
  .footer-ticker__text {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== Sticky CTA (mobile) ===== */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: var(--sticky-cta-offset);
  z-index: 180;
  display: none;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.sticky-cta.is-visible {
  display: flex;
  pointer-events: auto;
}

.sticky-cta__btn {
  flex: 1;
  height: 54px;
  border-radius: 14px;
  border: 2px solid var(--cta-bg);
  background: var(--cta-bg);
  color: var(--cta-fg);
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.24);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta__btn:hover {
  background: var(--cta-bg-hover);
  border-color: var(--cta-bg-hover);
  transform: translateY(-1px);
}

.sticky-cta__btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

.sticky-cta__close {
  width: 44px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 23, 42, 0.78);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.sticky-cta__close:hover {
  background: #fff;
  transform: translateY(-1px);
}

@media (min-width: 901px) {
  .sticky-cta.is-visible {
    display: none;
  }
  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  right: 16px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 170;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 23, 42, 0.8);
  font: inherit;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, background-color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: #fff;
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(30, 42, 74, 0.35);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .back-to-top {
    bottom: var(--floating-overlay-offset);
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
    transform: none;
  }

  .hero-slider-right-layer-1,
  .hero-slider-right-layer-2 {
    will-change: auto;
  }
}

/* ===== Уведомления об отправке заявки ===== */
#serviceModalForm,
#caseModalForm,
#consultModalForm,
#applyForm {
  position: relative;
}

.lead-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lead-toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 400;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.lead-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.lead-toast--error {
  background: #fef2f2;
  border-color: rgba(185, 28, 28, 0.2);
  color: #7f1d1d;
}

@media (max-width: 900px) {
  .lead-toast {
    bottom: var(--floating-overlay-offset);
  }
}

/* ===== SEO: полный текст для краулеров / аудиторов, не влияет на макет главной ===== */
.seo-index-appendix-root {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Видимое приложение в crawler.html (nginx отдаёт ботам по UA) */
.seo-crawler-appendix-root {
  max-width: var(--container-max);
  margin: 2rem auto 0;
  padding: 0 24px 2rem;
  font-family: var(--font-main);
}

.seo-crawler-appendix {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(30, 42, 74, 0.1);
}

.seo-crawler-appendix__h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(30, 42, 74, 0.88);
}

.seo-crawler-appendix__h3 {
  margin: 1rem 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(30, 42, 74, 0.85);
}

.seo-crawler-appendix__ul {
  margin: 0 0 0.5rem;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(30, 42, 74, 0.82);
}

.seo-crawler-appendix__ul ul {
  margin: 0.4rem 0 0.6rem;
  padding-left: 1.2rem;
}

/* ===== Homepage-only redesign ===== */
.reshaem-homepage {
  background:
    radial-gradient(900px 460px at 14% 8%, rgba(95, 122, 196, 0.18) 0%, rgba(95, 122, 196, 0) 60%),
    linear-gradient(180deg, #eef3fb 0%, #f6f8fc 52%, #eef3fb 100%);
}

.reshaem-homepage .site-header {
  background: rgba(17, 26, 49, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(7, 13, 27, 0.22);
}

.reshaem-homepage .logo,
.reshaem-homepage .header-phone {
  font-weight: 700;
}

.reshaem-homepage .nav-list a {
  padding: 10px 14px;
  border-radius: 999px;
}

.reshaem-homepage .btn-cta {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(10, 18, 37, 0.2);
}

.reshaem-homepage .btn-cta:hover {
  background: #f3d9a0;
  border-color: #f3d9a0;
  color: #14203c;
}

.reshaem-homepage .main-content--hero {
  position: relative;
}

.reshaem-homepage .hero-slider,
.reshaem-homepage .slide-1 {
  background:
    radial-gradient(820px 420px at 10% 0%, rgba(83, 111, 185, 0.24) 0%, rgba(83, 111, 185, 0) 55%),
    linear-gradient(135deg, #10192f 0%, #1a2644 50%, #24345f 100%);
}

.reshaem-homepage .slide-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 25, 47, 0.18) 0%, rgba(16, 25, 47, 0.1) 42%, rgba(16, 25, 47, 0.02) 100%);
  pointer-events: none;
}

.reshaem-homepage .hero-slider-corner-cutout,
.reshaem-homepage .hero-slider-corner-cutout::after {
  background: #1b2744;
}

.reshaem-homepage .hero-slider-right-image {
  width: 45%;
  max-width: 620px;
}

.reshaem-homepage .hero-slider-right-overlay {
  background:
    linear-gradient(180deg, rgba(9, 15, 29, 0.16) 0%, rgba(9, 15, 29, 0.34) 100%);
}

.reshaem-homepage .slide-1-content {
  gap: 18px;
  max-width: min(58%, 760px);
  margin: auto 0;
  padding: clamp(28px, 4vw, 42px);
  margin-left: clamp(24px, 6vw, 84px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  box-shadow: 0 32px 90px rgba(5, 10, 21, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.reshaem-homepage .slide-1-headline {
  gap: 0;
}

.reshaem-homepage .slide-1-title {
  color: #fff;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 28px rgba(5, 10, 21, 0.28);
}

.reshaem-homepage .slide-1-line3 {
  color: rgba(232, 239, 255, 0.92);
  font-weight: 600;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dbe7ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3d9a0 0%, #c8953f 100%);
  box-shadow: 0 0 0 6px rgba(243, 217, 160, 0.12);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.home-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.home-hero__cta:hover {
  transform: translateY(-2px);
}

.home-hero__cta--primary {
  color: #162340;
  background: linear-gradient(135deg, #f3d9a0 0%, #cf9f4e 100%);
  box-shadow: 0 18px 40px rgba(207, 159, 78, 0.28);
}

.home-hero__cta--secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.home-hero__chip {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  color: #f6f8ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-hero__note {
  max-width: 560px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(7, 13, 27, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero__note-label {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f3d9a0;
}

.home-hero__note-text {
  color: rgba(228, 236, 255, 0.86);
  font-size: 1rem;
  line-height: 1.7;
}

.reshaem-homepage .services-section,
.reshaem-homepage .experts-section {
  background: transparent;
}

.reshaem-homepage .legal-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(223, 231, 247, 0.56) 100%);
}

.reshaem-homepage .cases-section {
  background:
    radial-gradient(900px 420px at 14% 0%, rgba(90, 115, 186, 0.18) 0%, rgba(90, 115, 186, 0) 58%),
    linear-gradient(180deg, #16213a 0%, #10192f 100%);
}

.reshaem-homepage .services-inner,
.reshaem-homepage .cases-inner,
.reshaem-homepage .apply-inner,
.reshaem-homepage .footer-inner {
  max-width: 1280px;
}

.reshaem-homepage .services-title,
.reshaem-homepage .cases-title,
.reshaem-homepage .experts-title,
.reshaem-homepage .apply-title {
  max-width: 12ch;
  margin-bottom: 22px;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.reshaem-homepage .services-title::before,
.reshaem-homepage .cases-title::before,
.reshaem-homepage .experts-title::before,
.reshaem-homepage .apply-title::before {
  display: block;
  margin-bottom: 18px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reshaem-homepage #services .services-title::before {
  content: "Главная экспертиза";
  color: #85714a;
}

.reshaem-homepage #legal-services .services-title::before {
  content: "Категории задач";
  color: #7f8aa5;
}

.reshaem-homepage #cases .cases-title::before {
  content: "Практика и результат";
  color: rgba(243, 217, 160, 0.92);
}

.reshaem-homepage #experts .experts-title::before {
  content: "Команда";
  color: #85714a;
}

.reshaem-homepage .apply-title::before {
  content: "Быстрый старт";
  color: rgba(243, 217, 160, 0.92);
}

.reshaem-homepage .service-card,
.reshaem-homepage .legal-card,
.reshaem-homepage .expert-card {
  border: 1px solid rgba(22, 33, 58, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.reshaem-homepage .service-card:hover,
.reshaem-homepage .service-card:focus-visible,
.reshaem-homepage .legal-card:hover,
.reshaem-homepage .legal-card:focus-visible,
.reshaem-homepage .expert-card:hover,
.reshaem-homepage .expert-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.reshaem-homepage .service-card__body,
.reshaem-homepage .legal-card__body,
.reshaem-homepage .expert-card__body {
  background:
    linear-gradient(180deg, rgba(12, 18, 34, 0.1) 0%, rgba(12, 18, 34, 0.56) 32%, rgba(12, 18, 34, 0.92) 100%);
}

.reshaem-homepage .service-card__price,
.reshaem-homepage .legal-card__price {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(243, 217, 160, 0.14);
  color: #f3d9a0;
  border: 1px solid rgba(243, 217, 160, 0.16);
}

.reshaem-homepage .legal-top {
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.reshaem-homepage .legal-tabs {
  padding: 8px;
  border-radius: 18px;
  background: rgba(22, 33, 58, 0.06);
  border: 1px solid rgba(22, 33, 58, 0.08);
}

.reshaem-homepage .legal-tab {
  border-radius: 14px;
  font-weight: 700;
}

.reshaem-homepage .legal-tab.is-active {
  background: #1e2a4a;
  color: #fff;
  box-shadow: 0 12px 24px rgba(30, 42, 74, 0.2);
}

.reshaem-homepage .cases-table-head,
.reshaem-homepage .cases-row {
  border-radius: 20px;
}

.reshaem-homepage .cases-table-head {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.reshaem-homepage .cases-row {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reshaem-homepage .cases-nav__btn,
.reshaem-homepage .cases-dot {
  border-color: rgba(243, 217, 160, 0.18);
}

.reshaem-homepage .apply-section {
  background:
    radial-gradient(820px 360px at 10% 0%, rgba(243, 217, 160, 0.08) 0%, rgba(243, 217, 160, 0) 55%),
    linear-gradient(180deg, #16213a 0%, #10192f 100%);
}

.reshaem-homepage .apply-layout {
  gap: 26px;
}

.reshaem-homepage .apply-form-wrap,
.reshaem-homepage .apply-contact {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(6, 10, 21, 0.24);
}

.reshaem-homepage .apply-input {
  border-radius: 16px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.reshaem-homepage .apply-input::placeholder,
.reshaem-homepage .apply-consent,
.reshaem-homepage .apply-contact-text {
  color: rgba(228, 236, 255, 0.72);
}

.reshaem-homepage .apply-submit,
.reshaem-homepage .apply-call-btn {
  background: linear-gradient(135deg, #f3d9a0 0%, #cf9f4e 100%);
  color: #14203c;
  box-shadow: 0 18px 38px rgba(207, 159, 78, 0.24);
}

.reshaem-homepage .apply-submit:hover,
.reshaem-homepage .apply-call-btn:hover {
  background: linear-gradient(135deg, #f7e1b5 0%, #d7aa59 100%);
}

.reshaem-homepage .site-footer {
  background: #0d1528;
}

@media (max-width: 1180px), (max-height: 820px) {
  .reshaem-homepage .slide-1-content {
    max-width: min(72%, calc(100% - 64px));
    margin-left: 24px;
    padding: 26px;
  }

  .reshaem-homepage .home-hero__note {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .reshaem-homepage .site-header {
    background: rgba(17, 26, 49, 0.92);
  }

  .reshaem-homepage .hero-slider-right-image,
  .reshaem-homepage .hero-slider-corner-cutout {
    width: 38%;
  }

  .reshaem-homepage .slide-1-content {
    max-width: calc(100% - 48px);
    margin: 20px 24px 32px;
  }

  .reshaem-homepage .services-title,
  .reshaem-homepage .cases-title,
  .reshaem-homepage .experts-title,
  .reshaem-homepage .apply-title {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .reshaem-homepage .slide-1,
  .reshaem-homepage .hero-slider {
    background: linear-gradient(180deg, #10192f 0%, #1a2644 100%);
  }

  .reshaem-homepage .slide-1-content {
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .home-hero__cta {
    width: 100%;
  }

  .home-hero__chips {
    gap: 8px;
  }

  .home-hero__chip {
    width: 100%;
  }

  .home-hero__note {
    padding: 16px;
  }
}

/* ===== Homepage redesign: Legal Ledger + Human Proof ===== */
.reshaem-homepage {
  --home-paper: #f4f1ea;
  --home-paper-strong: #ebe5da;
  --home-ink: #151a23;
  --home-ink-soft: #47505d;
  --home-line: rgba(21, 26, 35, 0.14);
  --home-line-strong: rgba(21, 26, 35, 0.24);
  --home-accent: #a06d2c;
  --home-accent-soft: rgba(160, 109, 44, 0.14);
  --home-dark: #131a25;
  --home-dark-soft: #1c2634;
  color: var(--home-ink);
  background: var(--home-paper);
}

.reshaem-homepage body,
body.reshaem-homepage {
  background: var(--home-paper);
  color: var(--home-ink);
}

.reshaem-homepage .site-header {
  background: rgba(244, 241, 234, 0.94);
  border-bottom: 1px solid var(--home-line);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.reshaem-homepage .logo,
.reshaem-homepage .nav-list a,
.reshaem-homepage .header-phone,
.reshaem-homepage .header-phone-mobile,
.reshaem-homepage .burger {
  color: var(--home-ink);
}

.reshaem-homepage .logo-chevron {
  opacity: 0.45;
}

.reshaem-homepage .nav-list {
  gap: 6px;
}

.reshaem-homepage .nav-list a {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.98rem;
}

.reshaem-homepage .nav-list a:hover,
.reshaem-homepage .nav-mobile-list a:hover,
.reshaem-homepage .header-phone:hover,
.reshaem-homepage .header-phone-mobile:hover {
  color: var(--home-ink);
  background: rgba(21, 26, 35, 0.06);
}

.reshaem-homepage .header-phone {
  border-left-color: rgba(21, 26, 35, 0.14);
}

.reshaem-homepage .btn-cta {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #fff;
  box-shadow: none;
  border-radius: 999px;
}

.reshaem-homepage .btn-cta:hover {
  background: var(--home-accent);
  border-color: var(--home-accent);
  color: #fff;
}

.reshaem-homepage .nav-mobile {
  background: rgba(244, 241, 234, 0.98);
  border-top: 1px solid var(--home-line);
  box-shadow: 0 20px 48px rgba(21, 26, 35, 0.12);
}

.reshaem-homepage .nav-mobile-list a,
.reshaem-homepage .header-phone-mobile {
  border-bottom-color: rgba(21, 26, 35, 0.12);
}

.reshaem-homepage .btn-cta-mobile {
  background: var(--home-ink);
  color: #fff;
  border-color: var(--home-ink);
}

.reshaem-homepage .main-content--hero.home-main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(90deg, rgba(21, 26, 35, 0.035) 1px, transparent 1px);
  background-size: auto, 28px 100%;
}

.reshaem-homepage .home-hero {
  position: relative;
  padding: clamp(40px, 6vw, 88px) 0 clamp(28px, 5vw, 60px);
}

.reshaem-homepage .home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--home-line);
}

.reshaem-homepage .home-hero__inner,
.reshaem-homepage .home-proof__inner,
.reshaem-homepage .services-inner,
.reshaem-homepage .cases-inner,
.reshaem-homepage .apply-inner,
.reshaem-homepage .footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.reshaem-homepage .home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.reshaem-homepage .home-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 760px;
  padding-top: clamp(16px, 2vw, 24px);
}

.reshaem-homepage .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--home-line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--home-ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reshaem-homepage .home-hero__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--home-accent);
  box-shadow: none;
}

.reshaem-homepage .slide-1-headline {
  gap: 0;
  max-width: min(100%, 560px);
}

.reshaem-homepage .slide-1-title {
  display: block;
  color: var(--home-ink);
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-shadow: none;
  text-wrap: balance;
}

.reshaem-homepage .slide-1-line3 {
  max-width: 48ch;
  color: var(--home-ink-soft);
  font-size: clamp(1.04rem, 1.4vw, 1.16rem);
  line-height: 1.62;
  font-weight: 500;
}

.reshaem-homepage .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.reshaem-homepage .home-hero__cta {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.reshaem-homepage .home-hero__cta:hover {
  transform: translateY(-1px);
}

.reshaem-homepage .home-hero__cta--primary {
  background: var(--home-ink);
  color: #fff;
  box-shadow: none;
}

.reshaem-homepage .home-hero__cta--secondary {
  background: transparent;
  color: var(--home-ink);
  border: 1px solid var(--home-line-strong);
}

.reshaem-homepage .home-hero__cta--secondary:hover {
  border-color: var(--home-ink);
  background: rgba(21, 26, 35, 0.04);
}

.reshaem-homepage .home-hero__contact {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.reshaem-homepage .home-hero__contact-label {
  color: var(--home-ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reshaem-homepage .home-hero__contact-phone {
  color: var(--home-ink);
  text-decoration: none;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum" 1;
}

.reshaem-homepage .home-hero__media {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.8fr);
  gap: 18px;
  min-width: 0;
}

.reshaem-homepage .home-hero__video-frame,
.reshaem-homepage .home-hero__still {
  position: relative;
  overflow: hidden;
  background: var(--home-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(21, 26, 35, 0.12);
}

.reshaem-homepage .home-hero__video-frame {
  min-height: clamp(420px, 52vw, 680px);
  border-radius: 30px;
}

.reshaem-homepage .home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reshaem-homepage .home-hero__still-grid {
  display: grid;
  grid-template-rows: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.reshaem-homepage .home-hero__still {
  margin: 0;
  border-radius: 24px;
  min-height: 0;
}

.reshaem-homepage .home-hero__still picture,
.reshaem-homepage .home-hero__still img {
  display: block;
  width: 100%;
  height: 100%;
}

.reshaem-homepage .home-hero__still img {
  object-fit: cover;
}

.reshaem-homepage .home-proof {
  padding: 26px 0 34px;
  background: rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid var(--home-line);
}

.reshaem-homepage .home-proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.2fr) auto;
  gap: 22px;
  align-items: start;
}

.reshaem-homepage .home-proof__statement {
  display: grid;
  gap: 10px;
}

.reshaem-homepage .home-proof__label {
  color: var(--home-ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reshaem-homepage .home-proof__text {
  max-width: 44ch;
  color: var(--home-ink);
  font-size: 1rem;
  line-height: 1.56;
}

.reshaem-homepage .home-proof__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reshaem-homepage .home-proof__item {
  min-height: 72px;
  padding: 16px 0 0;
  border-top: 1px solid var(--home-line-strong);
  color: var(--home-ink);
  font-weight: 700;
  line-height: 1.38;
}

.reshaem-homepage .home-proof__phone {
  align-self: stretch;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--home-line-strong);
  color: var(--home-ink);
  text-decoration: none;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum" 1;
  white-space: nowrap;
}

.reshaem-homepage .page-section {
  border-top-color: transparent;
}

.reshaem-homepage .services-section,
.reshaem-homepage .experts-section,
.reshaem-homepage .faq-section {
  background: transparent;
}

.reshaem-homepage .legal-section {
  background: rgba(255, 255, 255, 0.56);
}

.reshaem-homepage .cases-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(180deg, #121924 0%, #151f2c 100%);
}

.reshaem-homepage .cases-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, rgba(255, 255, 255, 0) 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 1px);
  background-size: 26px 100%, 100% 26px;
  opacity: 0.1;
}

.reshaem-homepage .cases-section::after,
.reshaem-homepage .apply-section::after,
.reshaem-homepage .site-footer::after {
  display: none;
}

.reshaem-homepage .apply-section {
  background: linear-gradient(180deg, #151d2a 0%, #10161f 100%);
}

.reshaem-homepage .apply-section::before,
.reshaem-homepage .site-footer::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, rgba(255, 255, 255, 0) 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, rgba(255, 255, 255, 0) 1px);
  background-size: 28px 100%, 100% 28px;
  opacity: 0.11;
}

.reshaem-homepage .services-title,
.reshaem-homepage .legal-section__title,
.reshaem-homepage .cases-title,
.reshaem-homepage .experts-title,
.reshaem-homepage .faq-title,
.reshaem-homepage .apply-title {
  max-width: 12ch;
  margin: 0 0 30px;
  color: currentColor;
  letter-spacing: -0.055em;
  font-size: clamp(2.55rem, 5.2vw, 4.85rem);
  line-height: 0.98;
  white-space: normal;
}

.reshaem-homepage .cases-title,
.reshaem-homepage .apply-title {
  color: #fff;
}

.reshaem-homepage .services-title::before,
.reshaem-homepage .legal-section__title::before,
.reshaem-homepage .cases-title::before,
.reshaem-homepage .experts-title::before,
.reshaem-homepage .apply-title::before {
  content: none;
  display: none;
}

.reshaem-homepage .section-heading__line {
  white-space: normal;
}

.reshaem-homepage .services-grid {
  gap: 18px;
  grid-auto-rows: minmax(220px, 1fr);
}

.reshaem-homepage .service-card {
  border: 1px solid var(--home-line);
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(21, 26, 35, 0.06);
}

.reshaem-homepage .service-card:hover,
.reshaem-homepage .service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(21, 26, 35, 0.1);
}

.reshaem-homepage .service-card__film {
  background: linear-gradient(180deg, rgba(14, 18, 26, 0.08) 0%, rgba(14, 18, 26, 0.22) 38%, rgba(14, 18, 26, 0.82) 100%);
}

.reshaem-homepage .service-card__body,
.reshaem-homepage .legal-card__body,
.reshaem-homepage .expert-card__body {
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
}

.reshaem-homepage .service-card__title,
.reshaem-homepage .legal-card__title {
  max-width: 16ch;
  text-align: left;
}

.reshaem-homepage .service-card__price,
.reshaem-homepage .legal-card__price {
  opacity: 1;
  transform: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.4;
}

.reshaem-homepage .service-card__more {
  opacity: 1;
  transform: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reshaem-homepage .service-card:hover .service-card__more {
  background: transparent;
}

.reshaem-homepage .service-card--debt {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.reshaem-homepage .service-card--debt .service-card__title {
  max-width: 12ch;
  font-size: clamp(1.7rem, 2.1vw, 2.45rem);
  line-height: 1.02;
}

.reshaem-homepage .service-card--debt .service-card__body {
  padding: 28px;
  gap: 16px;
}

.reshaem-homepage .service-card--dispute {
  grid-column: 8 / span 5;
  grid-row: 1;
}

.reshaem-homepage .service-card--checks {
  grid-column: 8 / span 5;
  grid-row: 2;
}

.reshaem-homepage .service-card--business {
  grid-column: 1 / span 4;
  grid-row: 3;
}

.reshaem-homepage .service-card--subscription {
  grid-column: 5 / span 4;
  grid-row: 3;
}

.reshaem-homepage .service-card--deals {
  grid-column: 9 / span 4;
  grid-row: 3;
}

.reshaem-homepage .legal-top {
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.reshaem-homepage .legal-tabs {
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.reshaem-homepage .legal-tab {
  padding: 12px 18px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--home-ink-soft);
}

.reshaem-homepage .legal-tab.is-active {
  background: var(--home-ink);
  color: #fff;
  box-shadow: none;
}

.reshaem-homepage .legal-cta {
  background: transparent;
  color: var(--home-ink);
  border: 1px solid var(--home-line-strong);
}

.reshaem-homepage .legal-grid {
  gap: 18px;
}

.reshaem-homepage .legal-card {
  min-height: 320px;
  aspect-ratio: auto;
  border: 1px solid var(--home-line);
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(21, 26, 35, 0.06);
}

.reshaem-homepage .legal-card:hover,
.reshaem-homepage .legal-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(21, 26, 35, 0.1);
}

.reshaem-homepage .legal-card__film {
  background: linear-gradient(180deg, rgba(14, 18, 26, 0.08) 0%, rgba(14, 18, 26, 0.2) 28%, rgba(14, 18, 26, 0.78) 100%);
}

.reshaem-homepage .legal-card__desc {
  opacity: 1;
  transform: none;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.45;
}

.reshaem-homepage .cases-viewport {
  border-radius: 28px;
  background: rgba(9, 13, 19, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.reshaem-homepage .cases-table-head {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reshaem-homepage .case-row {
  padding: 20px 18px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.reshaem-homepage .case-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.reshaem-homepage .case-row__title {
  font-size: 1.1rem;
}

.reshaem-homepage .case-row__note {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.8);
}

.reshaem-homepage .case-row__result {
  color: #fff;
}

.reshaem-homepage .case-row__more {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.reshaem-homepage .case-row:hover .case-row__more {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.reshaem-homepage .cases-dots {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.reshaem-homepage .cases-nav__btn,
.reshaem-homepage .cases-dot {
  border-color: rgba(255, 255, 255, 0.2);
}

.reshaem-homepage .experts-grid {
  gap: 18px;
  grid-auto-rows: clamp(250px, 17vw, 330px);
}

.reshaem-homepage .expert-card {
  border: 1px solid var(--home-line);
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(21, 26, 35, 0.06);
}

.reshaem-homepage .expert-card:hover,
.reshaem-homepage .expert-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(21, 26, 35, 0.1);
}

.reshaem-homepage .expert-card__film {
  background: linear-gradient(180deg, rgba(14, 18, 26, 0) 0%, rgba(14, 18, 26, 0.08) 42%, rgba(14, 18, 26, 0.72) 100%);
}

.reshaem-homepage .expert-card__meta {
  opacity: 1;
  transform: none;
  gap: 6px;
}

.reshaem-homepage .expert-card__name {
  font-size: clamp(1.22rem, 1.4vw, 1.7rem);
}

.reshaem-homepage .expert-card--lead .expert-card__body {
  padding: 24px;
}

.reshaem-homepage .expert-card--lead .expert-card__name {
  max-width: 11ch;
  font-size: clamp(1.7rem, 2.2vw, 2.55rem);
  line-height: 1.02;
}

.reshaem-homepage .faq-list {
  gap: 0;
}

.reshaem-homepage .faq-item {
  border: 0;
  border-top: 1px solid var(--home-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reshaem-homepage .faq-item:last-child {
  border-bottom: 1px solid var(--home-line);
}

.reshaem-homepage .faq-item:hover,
.reshaem-homepage .faq-item[open] {
  border-color: var(--home-line-strong);
  box-shadow: none;
  transform: none;
}

.reshaem-homepage .faq-item__question {
  padding: 24px 52px 24px 0;
  font-size: clamp(1.08rem, 1.4vw, 1.36rem);
  color: var(--home-ink);
}

.reshaem-homepage .faq-item__question::before,
.reshaem-homepage .faq-item__question::after {
  right: 6px;
  background: rgba(21, 26, 35, 0.7);
}

.reshaem-homepage .faq-item__answer {
  padding: 0 0 24px;
  max-width: 64ch;
  color: var(--home-ink-soft);
}

.reshaem-homepage .apply-layout {
  gap: 24px;
}

.reshaem-homepage .apply-form-wrap,
.reshaem-homepage .apply-contact {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.reshaem-homepage .apply-form-wrap {
  padding: clamp(22px, 3vw, 32px);
}

.reshaem-homepage .apply-form {
  gap: 18px;
}

.reshaem-homepage .apply-input {
  height: 52px;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.reshaem-homepage .apply-input:focus {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.reshaem-homepage .apply-submit {
  min-width: 180px;
  height: 52px;
  border-radius: 999px;
  background: #fff;
  color: var(--home-dark);
}

.reshaem-homepage .apply-contact {
  padding: 28px 24px 28px 24px;
  overflow: hidden;
}

.reshaem-homepage .apply-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 22, 31, 0.26) 0%, rgba(16, 22, 31, 0.84) 100%),
    url("/images/blok2/modal-1120.jpg") center/cover no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.reshaem-homepage .apply-contact > * {
  position: relative;
  z-index: 1;
}

.reshaem-homepage .apply-contact-text {
  max-width: 34ch;
}

.reshaem-homepage .apply-messenger {
  border-radius: 16px;
}

.reshaem-homepage .apply-call-btn {
  top: auto;
  right: 24px;
  bottom: 24px;
  transform: none;
}

.reshaem-homepage .apply-call-btn:hover {
  transform: scale(1.04);
}

.reshaem-homepage .site-footer {
  background: #0f151f;
}

.reshaem-homepage .footer-top {
  gap: 22px;
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.reshaem-homepage .footer-logo,
.reshaem-homepage .footer-ticker__text {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.reshaem-homepage .footer-ticker::before {
  display: none;
}

.reshaem-homepage .footer-ticker {
  padding-left: 0;
  mask-image: none;
  -webkit-mask-image: none;
}

.reshaem-homepage .footer-main {
  grid-template-columns: minmax(260px, 0.95fr) 2.2fr;
}

.reshaem-homepage .footer-links {
  border-left-color: rgba(255, 255, 255, 0.08);
}

.reshaem-homepage .footer-col {
  border-right-color: rgba(255, 255, 255, 0.08);
}

.reshaem-homepage .footer-contact__badge,
.reshaem-homepage .footer-contact__messenger {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.reshaem-homepage .sticky-cta__btn {
  background: var(--home-ink);
  color: #fff;
}

@media (max-width: 1180px) {
  .reshaem-homepage .home-hero__inner {
    grid-template-columns: 1fr;
  }

  .reshaem-homepage .home-hero__media {
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.7fr);
  }

  .reshaem-homepage .home-proof__inner {
    grid-template-columns: 1fr;
  }

  .reshaem-homepage .home-proof__phone {
    justify-content: flex-start;
  }
}

@media (max-width: 1100px) {
  .reshaem-homepage .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(240px, 1fr);
  }

  .reshaem-homepage .service-card--debt,
  .reshaem-homepage .service-card--dispute,
  .reshaem-homepage .service-card--checks,
  .reshaem-homepage .service-card--business,
  .reshaem-homepage .service-card--subscription,
  .reshaem-homepage .service-card--deals {
    grid-column: auto;
    grid-row: auto;
  }

  .reshaem-homepage .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .reshaem-homepage .site-header {
    background: rgba(244, 241, 234, 0.97);
  }

  .reshaem-homepage .home-hero__media {
    grid-template-columns: 1fr;
  }

  .reshaem-homepage .home-hero__video-frame {
    min-height: 340px;
  }

  .reshaem-homepage .home-hero__still-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .reshaem-homepage .home-proof__list {
    grid-template-columns: 1fr;
  }

  .reshaem-homepage .apply-layout,
  .reshaem-homepage .footer-main {
    grid-template-columns: 1fr;
  }

  .reshaem-homepage .apply-contact {
    padding-bottom: 108px;
  }
}

@media (max-width: 640px) {
  .reshaem-homepage .home-hero {
    padding-top: 22px;
  }

  .reshaem-homepage .home-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .reshaem-homepage .home-hero__cta,
  .reshaem-homepage .apply-submit {
    width: 100%;
  }

  .reshaem-homepage .home-hero__video-frame {
    min-height: 280px;
    border-radius: 24px;
  }

  .reshaem-homepage .home-hero__still-grid,
  .reshaem-homepage .services-grid,
  .reshaem-homepage .legal-grid,
  .reshaem-homepage .experts-grid {
    grid-template-columns: 1fr;
  }

  .reshaem-homepage .slide-1-title,
  .reshaem-homepage .services-title,
  .reshaem-homepage .legal-section__title,
  .reshaem-homepage .cases-title,
  .reshaem-homepage .experts-title,
  .reshaem-homepage .faq-title,
  .reshaem-homepage .apply-title {
    max-width: 100%;
  }

  .reshaem-homepage .faq-item__question {
    padding-right: 40px;
  }

  .reshaem-homepage .apply-contact {
    padding-bottom: 104px;
  }

  .reshaem-homepage .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ===== Homepage Editorial Rebuild ===== */
body.reshaem-homepage {
  --home-ink: #132945;
  --home-ink-rgb: 19, 41, 69;
  --home-ink-strong: #0b1a2d;
  --home-paper: #f3efe8;
  --home-paper-deep: #e7dfd2;
  --home-panel: #fbf8f3;
  --home-line: rgba(19, 41, 69, 0.16);
  --home-line-strong: rgba(19, 41, 69, 0.28);
  --home-muted: rgba(19, 41, 69, 0.72);
  --home-accent: #8b6d46;
  --home-accent-soft: rgba(139, 109, 70, 0.12);
  --home-display: 'Literata', Georgia, serif;
  color: var(--home-ink);
  background:
    radial-gradient(circle at top right, rgba(139, 109, 70, 0.08), transparent 28%),
    linear-gradient(180deg, #f8f4ed 0%, #f3efe8 42%, #efe8dc 100%);
  accent-color: var(--home-ink);
}

body.reshaem-homepage::selection,
body.reshaem-homepage *::selection {
  background: rgba(19, 41, 69, 0.16);
  color: var(--home-ink-strong);
}

html:has(body.reshaem-homepage) {
  scrollbar-color: rgba(19, 41, 69, 0.52) rgba(19, 41, 69, 0.08);
}

body.reshaem-homepage .site-header {
  background: rgba(248, 244, 237, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(19, 41, 69, 0.12);
  box-shadow: none;
}

body.reshaem-homepage .logo,
body.reshaem-homepage .nav-list a,
body.reshaem-homepage .header-phone,
body.reshaem-homepage .header-phone-mobile,
body.reshaem-homepage .burger {
  color: var(--home-ink);
}

body.reshaem-homepage .logo-chevron {
  color: var(--home-accent);
}

body.reshaem-homepage .nav-list a:hover,
body.reshaem-homepage .nav-mobile-list a:hover,
body.reshaem-homepage .header-phone:hover,
body.reshaem-homepage .header-phone-mobile:hover {
  color: var(--home-ink-strong);
  background: transparent;
}

body.reshaem-homepage .header-phone {
  border-left-color: rgba(19, 41, 69, 0.12);
}

body.reshaem-homepage .btn-cta,
body.reshaem-homepage .btn-cta-mobile {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #fff;
  box-shadow: none;
}

body.reshaem-homepage .btn-cta:hover,
body.reshaem-homepage .btn-cta-mobile:hover {
  transform: translateY(-1px);
  background: var(--home-ink-strong);
  color: #fff;
  border-color: var(--home-ink-strong);
}

body.reshaem-homepage .logo:focus-visible,
body.reshaem-homepage .nav-list a:focus-visible,
body.reshaem-homepage .header-phone:focus-visible,
body.reshaem-homepage .btn-cta:focus-visible,
body.reshaem-homepage .home-hero__cta:focus-visible,
body.reshaem-homepage .service-card:focus-visible,
body.reshaem-homepage .case-row:focus-visible,
body.reshaem-homepage .legal-tab:focus-visible,
body.reshaem-homepage .apply-input:focus,
body.reshaem-homepage .faq-item__question:focus-visible {
  outline: 2px solid rgba(139, 109, 70, 0.68);
  outline-offset: 3px;
}

body.reshaem-homepage .nav-mobile {
  background: #f7f2ea;
  border-top: 1px solid rgba(19, 41, 69, 0.12);
  box-shadow: 0 16px 40px rgba(19, 41, 69, 0.12);
}

body.reshaem-homepage .nav-mobile-list a,
body.reshaem-homepage .header-phone-mobile {
  color: var(--home-muted);
  border-bottom-color: rgba(19, 41, 69, 0.1);
}

body.reshaem-homepage .main-content--hero.home-main {
  height: auto;
  overflow: visible;
  min-height: 0;
}

body.reshaem-homepage .home-hero {
  position: relative;
  padding: clamp(36px, 5vw, 84px) 0 clamp(24px, 4vw, 48px);
}

body.reshaem-homepage .home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 22%),
    linear-gradient(115deg, transparent 46%, rgba(139, 109, 70, 0.08) 100%);
  pointer-events: none;
}

body.reshaem-homepage .home-hero__inner,
body.reshaem-homepage .home-proof__inner,
body.reshaem-homepage .services-inner,
body.reshaem-homepage .cases-inner,
body.reshaem-homepage .apply-inner,
body.reshaem-homepage .footer-inner {
  position: relative;
  z-index: 1;
  max-width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
}

body.reshaem-homepage .home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

body.reshaem-homepage .home-hero__content {
  max-width: 760px;
  display: grid;
  gap: 28px;
}

body.reshaem-homepage .slide-1-headline {
  gap: 18px;
  max-width: min(100%, 15.6ch);
}

body.reshaem-homepage .slide-1-title,
body.reshaem-homepage .services-title,
body.reshaem-homepage .legal-section__title,
body.reshaem-homepage .cases-title,
body.reshaem-homepage .experts-title,
body.reshaem-homepage .faq-title,
body.reshaem-homepage .apply-title {
  font-family: var(--home-display);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 0.98;
  color: var(--home-ink-strong);
}

body.reshaem-homepage .slide-1-title {
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  text-wrap: balance;
}

body.reshaem-homepage .slide-1-line3 {
  max-width: 44ch;
  color: var(--home-muted);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.68;
  font-weight: 500;
}

body.reshaem-homepage .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body.reshaem-homepage .home-hero__cta {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: none;
}

body.reshaem-homepage .home-hero__cta--primary {
  background: var(--home-ink);
  border: 1px solid var(--home-ink);
  color: #fff;
}

body.reshaem-homepage .home-hero__cta--secondary {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(19, 41, 69, 0.2);
  color: var(--home-ink);
}

body.reshaem-homepage .home-hero__cta--secondary:hover {
  background: #fff;
  color: var(--home-ink-strong);
  border-color: rgba(19, 41, 69, 0.28);
}

body.reshaem-homepage .home-hero__meta {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

body.reshaem-homepage .home-hero__contact,
body.reshaem-homepage .home-hero__evidence-note {
  min-height: 100%;
  border: 1px solid rgba(19, 41, 69, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.56);
  padding: 18px 20px;
}

body.reshaem-homepage .home-hero__contact {
  gap: 10px;
  display: grid;
}

body.reshaem-homepage .home-hero__contact-label {
  font-size: 0.8rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(19, 41, 69, 0.54);
}

body.reshaem-homepage .home-hero__contact-phone {
  font-size: clamp(1.18rem, 1.5vw, 1.46rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--home-ink-strong);
  text-decoration: none;
}

body.reshaem-homepage .home-hero__evidence-note {
  font-size: 0.98rem;
  line-height: 1.66;
  color: var(--home-muted);
}

body.reshaem-homepage .home-hero__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  gap: 18px;
  align-items: stretch;
}

body.reshaem-homepage .home-hero__video-frame,
body.reshaem-homepage .home-hero__still {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(19, 41, 69, 0.12);
  background: #fff;
  box-shadow: 0 24px 60px rgba(19, 41, 69, 0.1);
}

body.reshaem-homepage .home-hero__video-frame {
  position: relative;
  min-height: 620px;
  background: #0c1522;
}

body.reshaem-homepage .home-hero__video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 35, 0.08), rgba(10, 20, 35, 0.24));
  pointer-events: none;
}

body.reshaem-homepage .home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.reshaem-homepage .home-hero__still-grid {
  display: grid;
  grid-template-rows: 1.2fr 0.92fr;
  gap: 18px;
}

body.reshaem-homepage .home-hero__still {
  padding: 10px;
}

body.reshaem-homepage .home-hero__still picture,
body.reshaem-homepage .home-hero__still img {
  display: block;
  width: 100%;
  height: 100%;
}

body.reshaem-homepage .home-hero__still img {
  border-radius: 22px;
  object-fit: cover;
}

body.reshaem-homepage .home-proof {
  padding: 0 0 clamp(28px, 5vw, 52px);
}

body.reshaem-homepage .home-proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px clamp(20px, 3vw, 36px);
  border-top: 1px solid rgba(19, 41, 69, 0.15);
  border-bottom: 1px solid rgba(19, 41, 69, 0.1);
}

body.reshaem-homepage .home-proof__statement {
  max-width: 48ch;
}

body.reshaem-homepage .home-proof__text {
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--home-muted);
}

body.reshaem-homepage .home-proof__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

body.reshaem-homepage .home-proof__item {
  min-height: 100%;
  padding-top: 12px;
  border-top: 1px solid rgba(19, 41, 69, 0.14);
  border-radius: 0;
  background: transparent;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--home-ink-strong);
}

body.reshaem-homepage .home-proof__phone {
  justify-content: flex-end;
  white-space: nowrap;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(19, 41, 69, 0.52);
}

body.reshaem-homepage .home-proof__phone strong {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--home-ink-strong);
}

body.reshaem-homepage .page-section {
  border-top: none;
}

body.reshaem-homepage .services-section,
body.reshaem-homepage .legal-section,
body.reshaem-homepage .cases-section,
body.reshaem-homepage .experts-section,
body.reshaem-homepage .faq-section,
body.reshaem-homepage .apply-section {
  padding-top: clamp(56px, 7vw, 104px);
}

body.reshaem-homepage .services-section,
body.reshaem-homepage .legal-section,
body.reshaem-homepage .experts-section,
body.reshaem-homepage .faq-section {
  background: transparent;
}

body.reshaem-homepage .cases-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(139, 109, 70, 0.14), transparent 24%),
    linear-gradient(180deg, #10233f 0%, #0a1627 100%);
}

body.reshaem-homepage .apply-section {
  background: #efe8dc;
}

body.reshaem-homepage .services-inner,
body.reshaem-homepage .cases-inner,
body.reshaem-homepage .apply-inner {
  max-width: min(1320px, calc(100% - 40px));
}

body.reshaem-homepage .services-title,
body.reshaem-homepage .legal-section__title,
body.reshaem-homepage .cases-title,
body.reshaem-homepage .experts-title,
body.reshaem-homepage .faq-title,
body.reshaem-homepage .apply-title {
  margin-bottom: 28px;
  max-width: 12ch;
  font-size: clamp(2.65rem, 4.5vw, 4.8rem);
}

body.reshaem-homepage .services-title::before,
body.reshaem-homepage .cases-title::before,
body.reshaem-homepage .experts-title::before,
body.reshaem-homepage .faq-title::before,
body.reshaem-homepage .apply-title::before,
body.reshaem-homepage .legal-section__title::before {
  display: none;
}

body.reshaem-homepage .services-grid {
  grid-auto-rows: minmax(270px, 1fr);
  gap: 18px;
}

body.reshaem-homepage .service-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  min-height: 270px;
  padding: 0;
  border-radius: 32px;
  border: 1px solid rgba(19, 41, 69, 0.14);
  background: #111f32;
  box-shadow: none;
  overflow: hidden;
}

body.reshaem-homepage .service-card__img,
body.reshaem-homepage .service-card picture,
body.reshaem-homepage .service-card picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.reshaem-homepage .service-card picture img,
body.reshaem-homepage .service-card__img {
  object-fit: cover;
}

body.reshaem-homepage .service-card__film {
  background:
    linear-gradient(180deg, rgba(12, 25, 42, 0.02) 12%, rgba(10, 18, 29, 0.24) 34%, rgba(9, 15, 24, 0.86) 100%);
  opacity: 1;
}

body.reshaem-homepage .service-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-content: end;
  width: 100%;
  min-height: 100%;
  padding: 26px 24px 24px;
}

body.reshaem-homepage .service-card__title,
body.reshaem-homepage .legal-card__title,
body.reshaem-homepage .expert-card__name {
  font-family: var(--home-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

body.reshaem-homepage .service-card__title {
  max-width: 14ch;
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
  line-height: 1.02;
}

body.reshaem-homepage .service-card__price,
body.reshaem-homepage .service-card__more {
  color: rgba(255, 255, 255, 0.88);
}

body.reshaem-homepage .service-card__price {
  font-size: 0.95rem;
  line-height: 1.5;
}

body.reshaem-homepage .service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.reshaem-homepage .service-card__more::after {
  content: '';
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.82;
}

body.reshaem-homepage .service-card:hover,
body.reshaem-homepage .service-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 109, 70, 0.44);
  box-shadow: 0 22px 50px rgba(19, 41, 69, 0.14);
}

body.reshaem-homepage .service-card--checks .service-card__body,
body.reshaem-homepage .service-card--subscription .service-card__body,
body.reshaem-homepage .service-card--deals .service-card__body {
  justify-content: space-between;
}

body.reshaem-homepage .legal-top {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

body.reshaem-homepage .legal-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

body.reshaem-homepage .legal-tab {
  justify-content: flex-start;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid rgba(19, 41, 69, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--home-ink);
  font-weight: 600;
}

body.reshaem-homepage .legal-tab.is-active {
  background: var(--home-ink);
  border-color: var(--home-ink);
  color: #fff;
}

body.reshaem-homepage .legal-cta {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(19, 41, 69, 0.16);
  background: rgba(255, 255, 255, 0.56);
  color: var(--home-ink);
}

body.reshaem-homepage .legal-grid {
  gap: 18px;
}

body.reshaem-homepage .legal-card {
  display: grid;
  grid-template-columns: minmax(120px, 148px) minmax(0, 1fr);
  align-items: stretch;
  min-height: 230px;
  padding: 0;
  border-radius: 24px;
  border: 1px solid rgba(19, 41, 69, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  overflow: hidden;
}

body.reshaem-homepage .legal-card:nth-child(3n + 1) {
  grid-column: span 2;
}

body.reshaem-homepage .legal-card__img,
body.reshaem-homepage .legal-card picture,
body.reshaem-homepage .legal-card picture img {
  position: relative;
  width: 100%;
  height: 100%;
}

body.reshaem-homepage .legal-card picture img,
body.reshaem-homepage .legal-card__img {
  display: block;
  object-fit: cover;
}

body.reshaem-homepage .legal-card__film {
  display: none;
}

body.reshaem-homepage .legal-card__body {
  position: relative;
  z-index: 1;
  align-content: start;
  padding: 22px 22px 20px;
  gap: 12px;
  color: var(--home-ink);
}

body.reshaem-homepage .legal-card__title {
  color: var(--home-ink-strong);
  font-size: 1.38rem;
  line-height: 1.08;
}

body.reshaem-homepage .legal-card__price {
  color: rgba(19, 41, 69, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.reshaem-homepage .legal-card__desc {
  color: var(--home-muted);
  line-height: 1.66;
}

body.reshaem-homepage .legal-card:hover,
body.reshaem-homepage .legal-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(139, 109, 70, 0.38);
  box-shadow: 0 18px 36px rgba(19, 41, 69, 0.1);
}

body.reshaem-homepage .cases-title,
body.reshaem-homepage .cases-section .services-title {
  color: #fff;
}

body.reshaem-homepage .cases-viewport {
  overflow: visible;
}

body.reshaem-homepage .cases-table-head {
  display: none;
}

body.reshaem-homepage .cases-track {
  gap: 0;
}

body.reshaem-homepage .cases-page {
  padding: 0;
}

body.reshaem-homepage .cases-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.reshaem-homepage .case-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  min-height: 290px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  text-align: left;
  box-shadow: none;
}

body.reshaem-homepage .case-row:hover,
body.reshaem-homepage .case-row:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 109, 70, 0.48);
}

body.reshaem-homepage .case-row__title {
  color: #fff;
  font-family: var(--home-display);
  font-size: 1.58rem;
  line-height: 1.05;
}

body.reshaem-homepage .case-row__note,
body.reshaem-homepage .case-row__result {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.72;
}

body.reshaem-homepage .case-row__result {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
}

body.reshaem-homepage .case-row__more {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

body.reshaem-homepage .cases-nav {
  justify-content: flex-start;
  margin-top: 24px;
}

body.reshaem-homepage .cases-nav__btn,
body.reshaem-homepage .cases-dot {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

body.reshaem-homepage .cases-dot.is-active,
body.reshaem-homepage .cases-nav__btn:hover {
  background: rgba(139, 109, 70, 0.36);
  border-color: rgba(139, 109, 70, 0.52);
}

body.reshaem-homepage .experts-grid {
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.reshaem-homepage .expert-card {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(19, 41, 69, 0.12);
  box-shadow: none;
}

body.reshaem-homepage .expert-card:first-child {
  grid-column: 1 / span 2;
  min-height: 520px;
}

body.reshaem-homepage .expert-card__film {
  background:
    linear-gradient(180deg, rgba(10, 18, 29, 0.02), rgba(10, 18, 29, 0.24) 38%, rgba(10, 18, 29, 0.92) 100%);
  opacity: 1;
}

body.reshaem-homepage .expert-card__body {
  padding: 26px 24px 24px;
  gap: 12px;
}

body.reshaem-homepage .expert-card__name {
  color: #fff;
  font-size: clamp(1.52rem, 2vw, 2.05rem);
  line-height: 1.04;
}

body.reshaem-homepage .expert-card__role,
body.reshaem-homepage .expert-card__skills {
  color: rgba(255, 255, 255, 0.88);
}

body.reshaem-homepage .faq-list {
  gap: 14px;
}

body.reshaem-homepage .faq-item {
  border-radius: 24px;
  border: 1px solid rgba(19, 41, 69, 0.12);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: none;
}

body.reshaem-homepage .faq-item__question {
  font-family: var(--home-display);
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--home-ink-strong);
}

body.reshaem-homepage .faq-item__answer {
  color: var(--home-muted);
  line-height: 1.74;
}

body.reshaem-homepage .apply-inner {
  padding: clamp(30px, 4vw, 42px);
  border-radius: 34px;
  border: 1px solid rgba(19, 41, 69, 0.12);
  background: rgba(255, 252, 247, 0.72);
}

body.reshaem-homepage .apply-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.76fr);
  gap: 24px;
}

body.reshaem-homepage .apply-form-wrap,
body.reshaem-homepage .apply-contact {
  border-radius: 28px;
  border: 1px solid rgba(19, 41, 69, 0.1);
  background: rgba(255, 255, 255, 0.78);
  padding: 24px;
  box-shadow: none;
}

body.reshaem-homepage .apply-input {
  min-height: 54px;
  border-radius: 16px;
  border-color: rgba(19, 41, 69, 0.16);
  background: #fff;
  color: var(--home-ink-strong);
}

body.reshaem-homepage .apply-input::placeholder,
body.reshaem-homepage .apply-consent,
body.reshaem-homepage .apply-contact-text {
  color: var(--home-muted);
}

body.reshaem-homepage .apply-submit {
  min-height: 54px;
  border-radius: 999px;
  background: var(--home-ink);
  color: #fff;
}

body.reshaem-homepage .apply-call-btn {
  background: transparent;
  color: var(--home-ink);
  border: 1px solid rgba(19, 41, 69, 0.14);
}

body.reshaem-homepage .apply-submit:hover,
body.reshaem-homepage .apply-call-btn:hover {
  background: var(--home-ink-strong);
  color: #fff;
}

body.reshaem-homepage .apply-phone {
  color: var(--home-ink-strong);
}

body.reshaem-homepage .service-modal__dialog {
  border-radius: 32px;
}

body.reshaem-homepage .site-footer {
  background: #0d1828;
  color: rgba(255, 255, 255, 0.84);
}

body.reshaem-homepage .footer-title,
body.reshaem-homepage .footer-col__title {
  font-family: var(--home-display);
}

body.reshaem-homepage .footer-contact__badge,
body.reshaem-homepage .footer-contact__messenger {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1180px) {
  body.reshaem-homepage .home-hero__inner,
  body.reshaem-homepage .home-proof__inner,
  body.reshaem-homepage .legal-top,
  body.reshaem-homepage .apply-layout {
    grid-template-columns: 1fr;
  }

  body.reshaem-homepage .slide-1-headline,
  body.reshaem-homepage .slide-1-line3 {
    max-width: 100%;
  }

  body.reshaem-homepage .home-hero__video-frame {
    min-height: 540px;
  }

  body.reshaem-homepage .home-proof__phone {
    justify-content: flex-start;
  }
}

@media (max-width: 1100px) {
  body.reshaem-homepage .services-grid,
  body.reshaem-homepage .cases-table,
  body.reshaem-homepage .experts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.reshaem-homepage .service-card--debt,
  body.reshaem-homepage .service-card--dispute,
  body.reshaem-homepage .service-card--checks,
  body.reshaem-homepage .service-card--business,
  body.reshaem-homepage .service-card--subscription,
  body.reshaem-homepage .service-card--deals,
  body.reshaem-homepage .expert-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  body.reshaem-homepage .site-header {
    background: rgba(248, 244, 237, 0.98);
  }

  body.reshaem-homepage .home-hero__media,
  body.reshaem-homepage .home-hero__meta,
  body.reshaem-homepage .home-hero__still-grid,
  body.reshaem-homepage .home-proof__list,
  body.reshaem-homepage .legal-grid {
    grid-template-columns: 1fr;
  }

  body.reshaem-homepage .legal-card:nth-child(3n + 1) {
    grid-column: auto;
  }

  body.reshaem-homepage .home-hero__video-frame {
    min-height: 400px;
  }

  body.reshaem-homepage .cases-table,
  body.reshaem-homepage .experts-grid {
    grid-template-columns: 1fr;
  }

  body.reshaem-homepage .cases-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  body.reshaem-homepage .home-hero__inner,
  body.reshaem-homepage .home-proof__inner,
  body.reshaem-homepage .services-inner,
  body.reshaem-homepage .cases-inner,
  body.reshaem-homepage .apply-inner,
  body.reshaem-homepage .footer-inner {
    max-width: calc(100% - 24px);
  }

  body.reshaem-homepage .slide-1-title,
  body.reshaem-homepage .services-title,
  body.reshaem-homepage .legal-section__title,
  body.reshaem-homepage .cases-title,
  body.reshaem-homepage .experts-title,
  body.reshaem-homepage .faq-title,
  body.reshaem-homepage .apply-title {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  body.reshaem-homepage .home-hero__actions {
    flex-direction: column;
  }

  body.reshaem-homepage .home-hero__cta,
  body.reshaem-homepage .apply-submit {
    width: 100%;
  }

  body.reshaem-homepage .home-hero__video-frame {
    min-height: 300px;
    border-radius: 24px;
  }

  body.reshaem-homepage .services-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(250px, 1fr);
  }

  body.reshaem-homepage .legal-card {
    grid-template-columns: 1fr;
  }

  body.reshaem-homepage .legal-card picture,
  body.reshaem-homepage .legal-card picture img,
  body.reshaem-homepage .legal-card__img {
    min-height: 180px;
  }

  body.reshaem-homepage .case-row,
  body.reshaem-homepage .apply-form-wrap,
  body.reshaem-homepage .apply-contact {
    padding: 20px;
  }
}

/* ===== Homepage V2 disabled pending reference-approved rebuild =====
body.reshaem-homepage .main-content--hero.home-main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.18) 24%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, rgba(19, 41, 69, 0.04) 1px, transparent 1px);
  background-size: auto, 32px 100%;
}

body.reshaem-homepage .home-hero {
  padding: clamp(44px, 6vw, 88px) 0 clamp(34px, 5vw, 56px);
}

body.reshaem-homepage .home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

body.reshaem-homepage .home-hero__content {
  max-width: 560px;
  gap: 24px;
  padding-top: 12px;
}

body.reshaem-homepage .slide-1-headline {
  max-width: 100%;
}

body.reshaem-homepage .slide-1-title {
  font-family: var(--home-display);
  font-size: clamp(3.2rem, 7vw, 6.15rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 600;
  text-wrap: balance;
}

body.reshaem-homepage .slide-1-line3 {
  max-width: min(100%, 560px);
  color: rgba(19, 41, 69, 0.84);
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.58;
  font-weight: 500;
}

body.reshaem-homepage .home-hero__actions {
  gap: 14px;
  margin-top: 2px;
}

body.reshaem-homepage .home-hero__cta {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

body.reshaem-homepage .home-hero__cta--primary {
  background: #132945;
  color: #fff;
}

body.reshaem-homepage .home-hero__cta--secondary {
  border: 1px solid rgba(19, 41, 69, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: #132945;
}

body.reshaem-homepage .home-hero__contact-band {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(19, 41, 69, 0.18);
}

body.reshaem-homepage .home-hero__contact {
  gap: 6px;
  margin-top: 0;
}

body.reshaem-homepage .home-hero__contact-label {
  color: rgba(19, 41, 69, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.reshaem-homepage .home-hero__contact-phone {
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.05;
}

body.reshaem-homepage .home-hero__evidence-note {
  color: rgba(19, 41, 69, 0.78);
  font-size: 0.98rem;
  line-height: 1.56;
}

body.reshaem-homepage .home-hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(180px, 0.62fr);
  gap: 18px;
  align-items: stretch;
}

body.reshaem-homepage .home-hero__video-frame {
  min-height: clamp(440px, 54vw, 700px);
  border-radius: 30px;
  border: 1px solid rgba(19, 41, 69, 0.12);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(19, 41, 69, 0.12);
  background: #10161f;
}

body.reshaem-homepage .home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.reshaem-homepage .home-hero__evidence-strip {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

body.reshaem-homepage .home-hero__still {
  min-height: 0;
  border-radius: 24px;
  border: 1px solid rgba(19, 41, 69, 0.12);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(19, 41, 69, 0.08);
  background: #d9dee5;
}

body.reshaem-homepage .home-hero__still img,
body.reshaem-homepage .home-hero__still picture,
body.reshaem-homepage .home-hero__still picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.reshaem-homepage .home-proof {
  padding: 28px 0 42px;
  background: rgba(255, 255, 255, 0.52);
}

body.reshaem-homepage .home-proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr) auto;
  gap: 24px;
  align-items: start;
}

body.reshaem-homepage .home-proof__text {
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.62;
}

body.reshaem-homepage .home-proof__list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.reshaem-homepage .home-proof__item {
  min-height: 0;
  padding-top: 14px;
  color: #132945;
  font-size: 0.96rem;
  line-height: 1.42;
}

body.reshaem-homepage .home-proof__phone {
  padding-top: 14px;
  justify-content: flex-end;
}

body.reshaem-homepage .home-services-section,
body.reshaem-homepage .home-ledger-section,
body.reshaem-homepage .home-team-section {
  background: transparent;
}

body.reshaem-homepage .home-services {
  display: grid;
  gap: 30px;
}

body.reshaem-homepage .home-services__atlas {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 18px;
}

body.reshaem-homepage .home-services__lead {
  min-width: 0;
}

body.reshaem-homepage .home-services__side {
  display: grid;
  gap: 18px;
  min-width: 0;
}

body.reshaem-homepage .home-services__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  grid-column: 1 / -1;
}

body.reshaem-homepage .home-service-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(19, 41, 69, 0.12);
  border-radius: 24px;
  background: #eef1f5;
  box-shadow: 0 18px 44px rgba(19, 41, 69, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.reshaem-homepage .home-service-card:hover,
body.reshaem-homepage .home-service-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(19, 41, 69, 0.18);
  box-shadow: 0 24px 52px rgba(19, 41, 69, 0.1);
}

body.reshaem-homepage .home-service-card__visual,
body.reshaem-homepage .home-service-card__img,
body.reshaem-homepage .home-service-card__img img,
body.reshaem-homepage .home-service-card__img picture,
body.reshaem-homepage .home-service-card__img picture img {
  display: block;
  width: 100%;
  height: 100%;
}

body.reshaem-homepage .home-service-card__img,
body.reshaem-homepage .home-service-card__img img,
body.reshaem-homepage .home-service-card__img picture img {
  object-fit: cover;
}

body.reshaem-homepage .home-service-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 23, 0) 16%, rgba(8, 14, 23, 0.2) 52%, rgba(8, 14, 23, 0.88) 100%);
}

body.reshaem-homepage .home-service-card__content {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 10px;
  padding: 24px;
  color: #fff;
  text-align: left;
}

body.reshaem-homepage .home-service-card__title {
  max-width: 14ch;
  font-family: var(--home-display);
  font-size: clamp(1.3rem, 2vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

body.reshaem-homepage .home-service-card__price {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.45;
}

body.reshaem-homepage .home-service-card__more {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.reshaem-homepage .home-service-card--lead {
  min-height: 560px;
}

body.reshaem-homepage .home-service-card--lead .home-service-card__content {
  gap: 14px;
  padding: 28px;
}

body.reshaem-homepage .home-service-card--lead .home-service-card__title {
  max-width: 10ch;
  font-size: clamp(2rem, 3vw, 3rem);
}

body.reshaem-homepage .home-service-card--secondary {
  min-height: 270px;
}

body.reshaem-homepage .home-service-card--rail {
  min-height: 232px;
}

body.reshaem-homepage .home-ledger {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
  align-items: start;
}

body.reshaem-homepage .home-ledger__intro {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 24px;
}

body.reshaem-homepage .home-ledger__topics {
  display: grid;
  gap: 10px;
}

body.reshaem-homepage .home-ledger__topic {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(19, 41, 69, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(19, 41, 69, 0.74);
  font-size: 0.85rem;
  font-weight: 700;
}

body.reshaem-homepage .home-ledger__cta {
  width: fit-content;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(19, 41, 69, 0.18);
  background: #132945;
  color: #fff;
}

body.reshaem-homepage .home-ledger__body {
  display: grid;
  gap: 26px;
}

body.reshaem-homepage .home-ledger__group {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(19, 41, 69, 0.16);
}

body.reshaem-homepage .home-ledger__group-title {
  display: inline-block;
  color: rgba(19, 41, 69, 0.64);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.reshaem-homepage .home-ledger__entries {
  display: grid;
  gap: 14px;
}

body.reshaem-homepage .home-ledger__entry {
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(19, 41, 69, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(19, 41, 69, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.reshaem-homepage .home-ledger__entry:hover,
body.reshaem-homepage .home-ledger__entry:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(19, 41, 69, 0.18);
  box-shadow: 0 18px 42px rgba(19, 41, 69, 0.08);
}

body.reshaem-homepage .home-ledger__entry-media,
body.reshaem-homepage .home-ledger__entry-img,
body.reshaem-homepage .home-ledger__entry-img img,
body.reshaem-homepage .home-ledger__entry-img picture,
body.reshaem-homepage .home-ledger__entry-img picture img {
  display: block;
  width: 100%;
  height: 100%;
}

body.reshaem-homepage .home-ledger__entry-img,
body.reshaem-homepage .home-ledger__entry-img img,
body.reshaem-homepage .home-ledger__entry-img picture img {
  object-fit: cover;
}

body.reshaem-homepage .home-ledger__entry-body {
  gap: 10px;
  padding: 20px 22px;
  justify-content: center;
}

body.reshaem-homepage .home-ledger__entry .legal-card__title {
  max-width: 100%;
  color: #132945;
  font-family: var(--home-display);
  font-size: 1.38rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

body.reshaem-homepage .home-ledger__entry .legal-card__price {
  color: rgba(19, 41, 69, 0.78);
}

body.reshaem-homepage .home-ledger__entry .legal-card__desc {
  max-width: 36ch;
  color: rgba(19, 41, 69, 0.82);
  font-size: 0.98rem;
  line-height: 1.52;
}

body.reshaem-homepage .home-cases-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, #0e1722 0%, #131e2c 100%);
}

body.reshaem-homepage .home-cases {
  display: grid;
  gap: 30px;
}

body.reshaem-homepage .home-cases__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

body.reshaem-homepage .home-case-feature {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 520px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1b2533;
  text-align: left;
}

body.reshaem-homepage .home-case-feature__media,
body.reshaem-homepage .home-case-feature__image,
body.reshaem-homepage .home-case-feature__image img,
body.reshaem-homepage .home-case-feature__image picture,
body.reshaem-homepage .home-case-feature__image picture img {
  display: block;
  width: 100%;
  height: 100%;
}

body.reshaem-homepage .home-case-feature__image,
body.reshaem-homepage .home-case-feature__image img,
body.reshaem-homepage .home-case-feature__image picture img {
  object-fit: cover;
}

body.reshaem-homepage .home-case-feature__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 23, 0) 14%, rgba(8, 14, 23, 0.26) 54%, rgba(8, 14, 23, 0.9) 100%);
}

body.reshaem-homepage .home-case-feature__body {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 12px;
  padding: 28px;
}

body.reshaem-homepage .home-case-feature .home-case__title {
  color: #fff;
  font-family: var(--home-display);
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

body.reshaem-homepage .home-case-feature .home-case__note {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

body.reshaem-homepage .home-case-feature .home-case__result {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.48;
}

body.reshaem-homepage .home-case-feature .home-case__more {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

body.reshaem-homepage .home-case-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.reshaem-homepage .home-case-rail__item {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.9fr) auto;
  align-items: start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  border-radius: 0;
  text-align: left;
}

body.reshaem-homepage .home-case-rail__item:hover,
body.reshaem-homepage .home-case-rail__item:focus-visible {
  background: transparent;
}

body.reshaem-homepage .home-case-rail__meta {
  display: grid;
  gap: 8px;
}

body.reshaem-homepage .home-case-rail__item .home-case__title {
  color: #fff;
  font-family: var(--home-display);
  font-size: 1.38rem;
  line-height: 1.04;
}

body.reshaem-homepage .home-case-rail__item .home-case__note {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.56;
}

body.reshaem-homepage .home-case-rail__item .home-case__result {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 700;
  line-height: 1.46;
}

body.reshaem-homepage .home-case-rail__item .home-case__more {
  align-self: center;
  min-width: 122px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

body.reshaem-homepage .home-team {
  display: grid;
  gap: 30px;
}

body.reshaem-homepage .home-team__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

body.reshaem-homepage .home-team__lead {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 560px;
  border-radius: 28px;
  border: 1px solid rgba(19, 41, 69, 0.12);
  background: #d8dde4;
  box-shadow: 0 22px 48px rgba(19, 41, 69, 0.08);
}

body.reshaem-homepage .home-team__lead-image,
body.reshaem-homepage .home-team__lead-image img,
body.reshaem-homepage .home-team__lead-image picture,
body.reshaem-homepage .home-team__lead-image picture img,
body.reshaem-homepage .home-team__item-image,
body.reshaem-homepage .home-team__item-image img,
body.reshaem-homepage .home-team__item-image picture,
body.reshaem-homepage .home-team__item-image picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.reshaem-homepage .home-team__lead-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 23, 0.02) 10%, rgba(8, 14, 23, 0.18) 48%, rgba(8, 14, 23, 0.84) 100%);
}

body.reshaem-homepage .home-team__lead-body {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  gap: 8px;
  color: #fff;
}

body.reshaem-homepage .home-team__lead .expert-card__name {
  max-width: 10ch;
  color: #fff;
  font-family: var(--home-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.98;
}

body.reshaem-homepage .home-team__lead .expert-card__meta,
body.reshaem-homepage .home-team__item .expert-card__meta {
  color: rgba(255, 255, 255, 0.82);
}

body.reshaem-homepage .home-team__rail {
  display: grid;
  gap: 18px;
}

body.reshaem-homepage .home-team__item {
  display: grid;
  grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 170px;
  border-radius: 22px;
  border: 1px solid rgba(19, 41, 69, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 36px rgba(19, 41, 69, 0.06);
}

body.reshaem-homepage .home-team__item-body {
  padding: 18px 20px;
  justify-content: center;
  gap: 7px;
  text-align: left;
}

body.reshaem-homepage .home-team__item .expert-card__name {
  color: #132945;
  font-family: var(--home-display);
  font-size: 1.5rem;
  line-height: 1.05;
}

body.reshaem-homepage .home-team__item .expert-card__meta {
  color: rgba(19, 41, 69, 0.8);
}

body.reshaem-homepage .home-close-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, #101925 0%, #0d1520 100%);
}

body.reshaem-homepage .home-close__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

body.reshaem-homepage .home-close__faq-column,
body.reshaem-homepage .home-close__apply-column {
  display: grid;
  gap: 26px;
}

body.reshaem-homepage .home-close__faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.reshaem-homepage .home-close-section .faq-item {
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.reshaem-homepage .home-close-section .faq-item__question {
  color: #fff;
  padding: 22px 54px 22px 0;
}

body.reshaem-homepage .home-close-section .faq-item__question::before,
body.reshaem-homepage .home-close-section .faq-item__question::after {
  background: rgba(255, 255, 255, 0.72);
}

body.reshaem-homepage .home-close-section .faq-item__answer {
  color: rgba(255, 255, 255, 0.76);
  padding: 0 0 22px;
}

body.reshaem-homepage .home-close__apply-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 18px;
}

body.reshaem-homepage .home-close-section .apply-form-wrap,
body.reshaem-homepage .home-close-section .apply-contact {
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.reshaem-homepage .home-close__contact-card {
  gap: 18px;
  justify-content: space-between;
}

body.reshaem-homepage .home-close-section .apply-input {
  border-radius: 16px;
}

body.reshaem-homepage .home-close-section .apply-submit {
  border-radius: 14px;
}

body.reshaem-homepage .home-close-section .apply-phone {
  font-family: var(--home-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
}

@media (max-width: 1180px) {
  body.reshaem-homepage .home-hero__inner,
  body.reshaem-homepage .home-cases__layout,
  body.reshaem-homepage .home-team__layout,
  body.reshaem-homepage .home-close__inner,
  body.reshaem-homepage .home-close__apply-card,
  body.reshaem-homepage .home-services__atlas,
  body.reshaem-homepage .home-ledger {
    grid-template-columns: 1fr;
  }

  body.reshaem-homepage .home-hero__stage {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
  }

  body.reshaem-homepage .home-hero__content {
    max-width: 760px;
  }

  body.reshaem-homepage .slide-1-title {
    font-size: clamp(2.9rem, 5.8vw, 5.05rem);
  }

  body.reshaem-homepage .home-service-card--lead {
    min-height: 500px;
  }

  body.reshaem-homepage .home-ledger__intro {
    position: static;
  }
}

@media (max-width: 900px) {
  body.reshaem-homepage .home-hero__contact-band,
  body.reshaem-homepage .home-proof__inner,
  body.reshaem-homepage .home-hero__stage,
  body.reshaem-homepage .home-services__rail,
  body.reshaem-homepage .home-team__item,
  body.reshaem-homepage .home-case-rail__item {
    grid-template-columns: 1fr;
  }

  body.reshaem-homepage .home-proof__list {
    grid-template-columns: 1fr;
  }

  body.reshaem-homepage .home-hero__video-frame,
  body.reshaem-homepage .home-service-card--lead,
  body.reshaem-homepage .home-case-feature,
  body.reshaem-homepage .home-team__lead {
    min-height: 380px;
  }

  body.reshaem-homepage .home-hero__evidence-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
}

@media (max-width: 640px) {
  body.reshaem-homepage .home-hero {
    padding-top: 34px;
  }

  body.reshaem-homepage .slide-1-title {
    font-size: clamp(2.3rem, 10.4vw, 3.8rem);
  }

  body.reshaem-homepage .slide-1-line3,
  body.reshaem-homepage .home-proof__text {
    max-width: 100%;
  }

  body.reshaem-homepage .home-hero__actions {
    flex-direction: column;
  }

  body.reshaem-homepage .home-hero__cta,
  body.reshaem-homepage .home-ledger__cta,
  body.reshaem-homepage .apply-submit {
    width: 100%;
  }

  body.reshaem-homepage .home-hero__evidence-strip {
    grid-template-columns: 1fr;
  }

  body.reshaem-homepage .home-case-feature__body,
  body.reshaem-homepage .home-team__lead-body,
  body.reshaem-homepage .home-service-card__content {
    padding: 20px;
  }
}
===== End disabled Homepage V2 ===== */
