.hero {
  position: relative;
  min-height: 780px;
  padding: 96px 0 58px;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(3, 8, 7, 0.98) 0%,
      rgba(3, 8, 7, 0.84) 30%,
      rgba(3, 8, 7, 0.54) 58%,
      rgba(3, 8, 7, 0.24) 100%
    ),
    url("/images/hero-bg.png");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(
      circle at 76% 42%,
      rgba(142, 230, 0, 0.16),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(3, 8, 7, 0.05) 0%,
      rgba(3, 8, 7, 0.18) 52%,
      rgba(3, 8, 7, 0.88) 100%
    );

  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 210px;
  background: linear-gradient(transparent, var(--bg-main));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  background: var(--green-soft);
  color: #dfffbc;
  font-size: 13px;
}

.hero__title {
  max-width: 720px;
  margin: 24px 0 18px;
  font-size: 66px;
  line-height: 0.98;
  letter-spacing: -2.8px;
}

.hero__title span {
  display: block;
  color: var(--green);
}

.hero__text {
  max-width: 620px;
  margin: 0;
  color: #d7e4da;
  font-size: 18px;
  line-height: 1.75;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero__note span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(142, 230, 0, 0.55);
}

.hero__note p {
  margin: 0;
}

/* =========================================================
   КАРТОЧКА "ПРОЕКТ ЛЕСНОЙ"
   ========================================================= */

.hero-card {
  position: relative;
  justify-self: end;
  width: min(440px, 100%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-large);
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(142, 230, 0, 0.075),
      transparent 34%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(142, 230, 0, 0.045),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(17, 39, 31, 0.96) 0%,
      rgba(8, 21, 16, 0.98) 45%,
      rgba(3, 8, 7, 1) 100%
    );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 18px rgba(142, 230, 0, 0.28),
    0 0 48px rgba(142, 230, 0, 0.20),
    0 0 110px rgba(142, 230, 0, 0.12),
    0 30px 82px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 26px rgba(142, 230, 0, 0.045);
  backdrop-filter: blur(16px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  overflow: visible;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -2;
  border-radius: calc(var(--radius-large) + 5px);
  background:
    linear-gradient(
      135deg,
      rgba(142, 230, 0, 0.62),
      rgba(142, 230, 0, 0.10) 32%,
      rgba(142, 230, 0, 0.42) 68%,
      rgba(142, 230, 0, 0.09)
    );
  filter: blur(17px);
  opacity: 0.72;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 18px rgba(255, 255, 255, 0.045),
    inset 0 0 26px rgba(142, 230, 0, 0.035);
  pointer-events: none;
}

.hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.48);
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(142, 230, 0, 0.10),
      transparent 36%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(142, 230, 0, 0.065),
      transparent 40%
    ),
    linear-gradient(
      145deg,
      rgba(20, 46, 36, 0.98) 0%,
      rgba(9, 24, 18, 0.99) 45%,
      rgba(3, 8, 7, 1) 100%
    );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 26px rgba(142, 230, 0, 0.42),
    0 0 74px rgba(142, 230, 0, 0.28),
    0 0 150px rgba(142, 230, 0, 0.17),
    0 38px 96px rgba(0, 0, 0, 0.64),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 0 28px rgba(142, 230, 0, 0.055);
}

.hero-card:hover::before {
  opacity: 0.95;
  filter: blur(21px);
}

.hero-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

.hero-card__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
}

.hero-card__bottom strong {
  display: block;
  margin-bottom: 4px;
}

.hero-card__bottom small {
  color: var(--muted);
}

/* =========================================================
   КАРТОЧКИ ПРЕИМУЩЕСТВ
   ========================================================= */

.stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 52px;
}

.stat {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-medium);
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(3, 16, 7, 0.82) 0%,
      rgba(3, 12, 7, 0.90) 46%,
      rgba(8, 28, 10, 0.78) 100%
    ) !important;

  border-color: rgba(190, 255, 140, 0.24) !important;

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 14px rgba(142, 230, 0, 0.13),
    0 0 34px rgba(142, 230, 0, 0.08),
    0 18px 45px rgba(0, 0, 0, 0.44),
    inset 0 0 28px rgba(0, 0, 0, 0.40),
    inset 0 0 34px rgba(62, 120, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;

  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  overflow: visible;
}

.stat::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: calc(var(--radius-medium) + 3px);

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(142, 230, 0, 0.16) 0%,
      rgba(72, 150, 18, 0.10) 42%,
      transparent 76%
    ) !important;

  opacity: 0.32 !important;
  filter: blur(12px) !important;
  pointer-events: none;
}

.stat::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-medium);

  border: 1px solid rgba(255, 255, 255, 0.07) !important;

  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.36),
    inset 0 0 26px rgba(84, 150, 24, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(142, 230, 0, 0.07) !important;

  pointer-events: none;
}

.stat:hover {
  transform: translateY(-4px);

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(4, 20, 8, 0.86) 0%,
      rgba(3, 13, 7, 0.93) 45%,
      rgba(10, 34, 12, 0.84) 100%
    ) !important;

  border-color: rgba(190, 255, 140, 0.38) !important;

  box-shadow:
    0 0 0 1px rgba(142, 230, 0, 0.10),
    0 0 18px rgba(142, 230, 0, 0.18),
    0 0 46px rgba(142, 230, 0, 0.11),
    0 22px 56px rgba(0, 0, 0, 0.52),
    inset 0 0 32px rgba(0, 0, 0, 0.44),
    inset 0 0 38px rgba(84, 150, 24, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
}

.stat strong {
  display: block;
  color: var(--green);
  font-size: 18px;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

/* =========================================================
   БЛОК УСЛУГ
   ========================================================= */

#services {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 70px !important;
  background:
    linear-gradient(
      180deg,
      #020605 0%,
      #020605 18%,
      #030807 32%,
      #041006 48%,
      #051507 64%,
      #041006 80%,
      #020605 100%
    );
}

#services::before,
#services::after {
  display: none !important;
  content: none !important;
}

#services .container {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.service-strip {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 40px 6px 82px;
  perspective: 1300px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-strip::-webkit-scrollbar {
  display: none;
}

/* =========================================================
   КАРТОЧКИ УСЛУГ — МЯГКИЙ УСИЛЕННЫЙ 3D
   ========================================================= */

.service-card {
  position: relative;
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #070b09;
  cursor: pointer;
  scroll-snap-align: start;
  isolation: isolate;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transform-style: preserve-3d;
  transform:
    translateY(0)
    rotateX(0deg)
    rotateY(0deg)
    scale(1);
  will-change: transform;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    filter 0.32s ease;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transform: scale(1);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.34) 48%,
      rgba(0, 0, 0, 0.88) 100%
    ),
    radial-gradient(
      circle at var(--glow-x, 50%) var(--glow-y, 50%),
      rgba(142, 230, 0, 0.18),
      transparent 40%
    );
  pointer-events: none;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at var(--glow-x, 50%) var(--glow-y, 50%),
      rgba(142, 230, 0, 0.32) 0%,
      rgba(142, 230, 0, 0.13) 28%,
      rgba(142, 230, 0, 0.045) 48%,
      transparent 68%
    );
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.service-card:hover {
  transform:
    translateY(-13px)
    rotateX(var(--rotate-x, 0deg))
    rotateY(var(--rotate-y, 0deg))
    scale(1.035);
  border-color: rgba(142, 230, 0, 0.82);
  filter: brightness(1.06);
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.58),
    inset 0 0 0 1px rgba(142, 230, 0, 0.72),
    inset 0 0 24px rgba(142, 230, 0, 0.20),
    0 0 20px rgba(142, 230, 0, 0.32);
}

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

.service-card:hover img {
  transform: scale(1.075);
}

.service-strip:hover .service-card {
  filter: brightness(0.88);
}

.service-strip:hover .service-card:hover {
  filter: brightness(1.06);
}

.service-card__content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  transform: translateZ(26px);
  transition: transform 0.32s ease;
}

.service-card:hover .service-card__content {
  transform: translateZ(44px);
}

.service-card__icon {
  position: relative;
  z-index: 5;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid rgba(142, 230, 0, 0.48);
  background: rgba(142, 230, 0, 0.13);
  color: var(--green);
  box-shadow: 0 0 16px rgba(142, 230, 0, 0.16);
}

.service-card__name {
  position: relative;
  z-index: 5;
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.service-card__price {
  position: relative;
  z-index: 5;
  display: block;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.service-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 6;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #102000;
  font-weight: 900;
  transform: translateZ(32px);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
  box-shadow: 0 0 18px rgba(142, 230, 0, 0.28);
}

.service-card:hover .service-card__arrow {
  transform: translateZ(50px) scale(1.08);
  box-shadow:
    0 0 18px rgba(142, 230, 0, 0.62),
    0 0 34px rgba(142, 230, 0, 0.24);
}

/* =========================================================
   СТАРЫЕ БЛОКИ СКРЫТЫ НА ГЛАВНОЙ
   ========================================================= */

#service-detail,
#product,
.product,
.product-gallery,
.product-info {
  display: none !important;
}

/* =========================================================
   ПРОЦЕСС
   ========================================================= */

.process-section {
  padding-top: 40px !important;
  padding-bottom: 35px !important;
}

#process {
  padding-bottom: 35px !important;
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
}

.process-card__number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(142, 230, 0, 0.16);
  font-size: 54px;
  font-weight: 900;
}

.process-card h3 {
  margin-top: 44px;
}

/* =========================================================
   КНОПКА "ПОДРОБНЕЕ" В КАРТОЧКАХ ПРИМЕРОВ
   ========================================================= */

.work-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #102000;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.work-card__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(142, 230, 0, 0.45),
    0 0 38px rgba(142, 230, 0, 0.20);
}

/* =========================================================
   ВИДИМАЯ ГРАНИЦА ДЛЯ КАРТОЧЕК "ПРИМЕРЫ РАБОТ"
   ========================================================= */

.work-card {
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(142, 230, 0, 0.34) !important;
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(14, 25, 20, 0.96) 0%,
      rgba(6, 12, 10, 0.98) 100%
    );

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 18px rgba(142, 230, 0, 0.10),
    0 22px 54px rgba(0, 0, 0, 0.42);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  pointer-events: none;
}

.work-card:hover {
  transform: translateY(-6px);

  border-color: rgba(142, 230, 0, 0.78) !important;

  box-shadow:
    0 0 0 1px rgba(142, 230, 0, 0.28),
    0 0 24px rgba(142, 230, 0, 0.26),
    0 0 70px rgba(142, 230, 0, 0.10),
    0 28px 70px rgba(0, 0, 0, 0.55);
}

.work-card__image {
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}

.work-card__image img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.work-card:hover .work-card__image img {
  transform: scale(1.05);
  filter: brightness(1.06);
}

.work-card__body {
  position: relative;
  z-index: 3;
  padding: 22px;
}

/* =========================================================
   ФИКС: МЕНЮ НЕ ПЕРЕКРЫВАЕТ ЗАГОЛОВКИ БЛОКОВ
   ========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 9999;

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 5, 0.98) 0%,
      rgba(2, 8, 6, 0.94) 100%
    ) !important;

  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body {
  padding-top: 86px;
  background: var(--bg-main);
}

section,
#home,
#services,
#process,
#catalog,
#calculator,
#contacts {
  scroll-margin-top: 110px;
}

#catalog {
  padding-top: 35px !important;
}

/* =========================================================
   УБИРАЕМ ЛИНИЮ МЕЖДУ МЕНЮ И HERO
   ========================================================= */

.hero {
  margin-top: 0 !important;
  border-top: none !important;
  box-shadow: none !important;
}

.hero::before {
  border-top: none !important;
}

/* =========================================================
   БЛОК "ХОТИТЕ РАССЧИТАТЬ ОБЪЕКТ?"
   ========================================================= */

#contacts {
  position: relative;
  padding-top: 70px !important;
  padding-bottom: 70px !important;
  background: #020605;
}

.cta {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;

  padding: 46px;
  border-radius: 30px;
  border: 1px solid rgba(142, 230, 0, 0.35);

  background:
    linear-gradient(
      90deg,
      rgba(3, 8, 7, 0.96) 0%,
      rgba(3, 8, 7, 0.82) 38%,
      rgba(3, 8, 7, 0.48) 68%,
      rgba(3, 8, 7, 0.20) 100%
    ),
    url("/images/wood-cta-bg.png") right center / cover no-repeat;

  box-shadow:
    0 0 0 1px rgba(142, 230, 0, 0.12),
    0 0 26px rgba(142, 230, 0, 0.16),
    0 28px 80px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 78% 48%,
      rgba(142, 230, 0, 0.16),
      transparent 36%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(0, 0, 0, 0.20)
    );

  pointer-events: none;
}

.cta > * {
  position: relative;
  z-index: 2;
}

.cta h2 {
  margin: 0 0 14px;
  max-width: 720px;

  color: #ffffff;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.cta p {
  margin: 0;
  max-width: 680px;

  color: #d7e4da;
  font-size: 18px;
  line-height: 1.65;
}

.cta-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-form input {
  width: 270px;
  height: 54px;

  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(3, 8, 7, 0.78);
  color: #ffffff;
  outline: none;
}

.cta-form input::placeholder {
  color: rgba(215, 228, 218, 0.72);
}

.cta-form input:focus {
  border-color: rgba(142, 230, 0, 0.72);
  box-shadow: 0 0 18px rgba(142, 230, 0, 0.20);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background: #020605;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.footer h4 {
  margin: 0 0 12px;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted-dark);
  font-size: 12px;
}

/* =========================================================
   ПУСТЫЕ БЛОКИ
   ========================================================= */

#catalogGrid:empty {
  display: none !important;
}

/* =========================================================
   АДАПТИВ
   ========================================================= */

@media (max-width: 900px) {
  .cta {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    background:
      linear-gradient(
        180deg,
        rgba(3, 8, 7, 0.94),
        rgba(3, 8, 7, 0.76)
      ),
      url("/images/wood-cta-bg.png") center / cover no-repeat;
  }

  .cta h2 {
    font-size: 30px;
  }

  .cta-form {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-form input {
    width: 100%;
  }

  .cta-form .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .service-card:hover {
    transform:
      translateY(-8px)
      scale(1.02);
  }

  .hero__title {
    font-size: 44px;
    letter-spacing: -1.6px;
  }

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

/* =========================================================
   ПОСТОЯННОЕ СВЕЧЕНИЕ КАРТОЧЕК УСЛУГ
   ========================================================= */

.service-strip--three .service-card {
  border-color: rgba(142, 230, 0, 0.42) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.48),
    0 0 16px rgba(142, 230, 0, 0.22),
    0 0 42px rgba(142, 230, 0, 0.12),
    inset 0 0 0 1px rgba(142, 230, 0, 0.20) !important;
}

.service-strip--three .service-card::before {
  opacity: 0.55 !important;
}

.service-strip--three .service-card::after {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.34) 45%,
      rgba(0, 0, 0, 0.88) 100%
    ),
    radial-gradient(
      circle at 50% 55%,
      rgba(142, 230, 0, 0.22),
      transparent 46%
    ) !important;
}

.service-strip--three .service-card__icon {
  border-color: rgba(142, 230, 0, 0.72) !important;
  background: rgba(142, 230, 0, 0.18) !important;
  box-shadow:
    0 0 14px rgba(142, 230, 0, 0.35),
    0 0 30px rgba(142, 230, 0, 0.18) !important;
}

.service-strip--three .service-card__arrow {
  box-shadow:
    0 0 16px rgba(142, 230, 0, 0.62),
    0 0 34px rgba(142, 230, 0, 0.28) !important;
}

/* =========================================================
   УМЕНЬШАЕМ РАССТОЯНИЕ ПОСЛЕ БЛОКА УСЛУГ
   ========================================================= */

#services {
  padding-bottom: 30px !important;
}

#services .service-strip--three {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

#process {
  padding-top: 45px !important;
}

.process-section {
  padding-top: 45px !important;
}

/* =========================================================
   ФИКС: УБИРАЕМ ЗЕЛЁНОЕ ПЯТНО ПО ЦЕНТРУ КАРТОЧЕК
   ОСТАВЛЯЕМ СВЕЧЕНИЕ ТОЛЬКО ПРИ НАВЕДЕНИИ
   ========================================================= */

.service-card::after,
.service-strip--three .service-card::after {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.34) 45%,
      rgba(0, 0, 0, 0.88) 100%
    ) !important;
}

.service-card::before,
.service-strip--three .service-card::before {
  opacity: 0 !important;
}

.service-card:hover::before,
.service-strip--three .service-card:hover::before {
  opacity: 1 !important;
}

/* =========================================================
   ФИКС: УБИРАЕМ ЗЕЛЁНОЕ ПЯТНО ПО ЦЕНТРУ КАРТОЧЕК
   ОСТАВЛЯЕМ СВЕЧЕНИЕ ТОЛЬКО ПРИ НАВЕДЕНИИ
   ========================================================= */

.service-card::after,
.service-strip--three .service-card::after {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.34) 45%,
      rgba(0, 0, 0, 0.88) 100%
    ) !important;
}

.service-card::before,
.service-strip--three .service-card::before {
  opacity: 0 !important;
}

.service-card:hover::before,
.service-strip--three .service-card:hover::before {
  opacity: 1 !important;
}
