/* =========================================================
   HERO — ГЛАВНАЯ СТРАНИЦА
   ========================================================= */

.waste-hero,
.waste-hero * {
  box-sizing: border-box;
}

.waste-hero {
  --hero-green: #17643c;
  --hero-green-dark: #0c3f27;
  --hero-green-deep: #082f1e;
  --hero-green-light: #dff2e7;
  --hero-accent: #b9ea68;
  --hero-white: #ffffff;
  --hero-text: #102219;
  --hero-muted: #5f7267;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 810px;
  padding: 88px 0 96px;
  background:
    linear-gradient(
      115deg,
      #f7fbf8 0%,
      #f4faf6 42%,
      #edf7f1 100%
    );
  color: var(--hero-text);
  font-family: var(--font-main);
}

.waste-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.waste-hero__glow {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(2px);
}

.waste-hero__glow--left {
  top: -250px;
  left: -240px;
  width: 660px;
  height: 660px;
  background:
    radial-gradient(
      circle,
      rgba(108, 190, 139, 0.22) 0%,
      rgba(108, 190, 139, 0) 70%
    );
}

.waste-hero__glow--right {
  right: -300px;
  bottom: -350px;
  width: 850px;
  height: 850px;
  background:
    radial-gradient(
      circle,
      rgba(23, 100, 60, 0.2) 0%,
      rgba(23, 100, 60, 0) 70%
    );
}

.waste-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(
      rgba(23, 100, 60, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(23, 100, 60, 0.035) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 18%,
      #000 78%,
      transparent 100%
    );
}

.waste-hero__container {
  position: relative;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 0.86fr);
  align-items: center;
  gap: clamp(55px, 6vw, 110px);
}

.waste-hero__content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.waste-hero__eyebrow {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 10px 15px;
  border: 1px solid rgba(23, 100, 60, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 35px rgba(21, 72, 45, 0.06);
  color: var(--hero-green-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.015em;
  backdrop-filter: blur(12px);
}

.waste-hero__eyebrow-dot {
  position: relative;
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #48a66e;
  box-shadow: 0 0 0 5px rgba(72, 166, 110, 0.12);
}

.waste-hero__eyebrow-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(72, 166, 110, 0.45);
  border-radius: inherit;
  animation: wasteHeroPulse 2.2s ease-out infinite;
}

.waste-hero__title {
  max-width: 800px;
  margin: 0;
  color: var(--hero-text);
  font-size: clamp(56px, 5.3vw, 92px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.waste-hero__title span {
  display: block;
  margin-top: 11px;
  color: var(--hero-green);
}

.waste-hero__description {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--hero-muted);
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 400;
  line-height: 1.62;
}

.waste-hero__advantages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.waste-hero__advantage {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 14px;
  border: 1px solid rgba(23, 100, 60, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 13px 35px rgba(17, 65, 41, 0.045);
  backdrop-filter: blur(10px);
}

.waste-hero__advantage-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--hero-green-light);
  color: var(--hero-green);
}

.waste-hero__advantage-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waste-hero__advantage > span:last-child {
  min-width: 0;
}

.waste-hero__advantage strong {
  display: block;
  color: var(--hero-text);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.waste-hero__advantage small {
  display: block;
  margin-top: 4px;
  color: #718178;
  font-size: 11px;
  line-height: 1.42;
}

.waste-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
}

.waste-hero__button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.waste-hero__button svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waste-hero__button--primary {
  background:
    linear-gradient(
      135deg,
      var(--hero-green) 0%,
      var(--hero-green-dark) 100%
    );
  box-shadow:
    0 15px 32px rgba(12, 63, 39, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: var(--hero-white);
}

.waste-hero__button--secondary {
  border-color: rgba(23, 100, 60, 0.19);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(16, 70, 43, 0.07);
  color: var(--hero-green-dark);
  backdrop-filter: blur(10px);
}

.waste-hero__button:hover {
  transform: translateY(-2px);
}

.waste-hero__button--primary:hover {
  box-shadow:
    0 19px 38px rgba(12, 63, 39, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.waste-hero__button--secondary:hover {
  border-color: rgba(23, 100, 60, 0.32);
  background: #ffffff;
}

.waste-hero__button:focus-visible {
  outline: 3px solid rgba(185, 234, 104, 0.65);
  outline-offset: 3px;
}

.waste-hero__note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  color: #65786d;
  font-size: 13px;
  line-height: 1.45;
}

.waste-hero__note strong {
  color: var(--hero-green-dark);
}

.waste-hero__note-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--hero-green);
}

.waste-hero__note-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waste-hero__visual {
  position: relative;
  z-index: 1;
}

.waste-hero__image-shell {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  padding: 0 0 38px 38px;
}

.waste-hero__image-shell::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 76%;
  height: 84%;
  border-radius: 38px;
  background:
    linear-gradient(
      145deg,
      rgba(185, 234, 104, 0.9),
      rgba(112, 187, 132, 0.3)
    );
  transform: rotate(3deg);
  opacity: 0.65;
}

.waste-hero__image-shell::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: 4px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(23, 100, 60, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(23, 100, 60, 0.035),
    0 0 0 44px rgba(23, 100, 60, 0.02);
  z-index: -1;
}

.waste-hero__image-frame {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 7px solid rgba(255, 255, 255, 0.86);
  border-radius: 38px;
  background: #dce9df;
  box-shadow:
    0 35px 80px rgba(13, 61, 38, 0.2),
    0 10px 30px rgba(13, 61, 38, 0.08);
  transform: translateZ(0);
}

.waste-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.waste-hero__image-shell:hover .waste-hero__image {
  transform: scale(1.025);
}

.waste-hero__image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(4, 31, 18, 0.48) 0%,
      rgba(4, 31, 18, 0.04) 42%,
      rgba(4, 31, 18, 0) 65%
    );
}

.waste-hero__status {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 15px;
  background: rgba(8, 47, 30, 0.77);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.waste-hero__status-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hero-accent);
  box-shadow: 0 0 0 5px rgba(185, 234, 104, 0.14);
}

.waste-hero__status small,
.waste-hero__status strong {
  display: block;
}

.waste-hero__status small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1.2;
}

.waste-hero__status strong {
  font-size: 14px;
  line-height: 1.2;
}

.waste-hero__photo-card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: min(350px, 70%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid rgba(23, 100, 60, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 45px rgba(11, 62, 38, 0.19);
  backdrop-filter: blur(14px);
}

.waste-hero__photo-card-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(
      145deg,
      var(--hero-green),
      var(--hero-green-dark)
    );
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 82, 49, 0.2);
}

.waste-hero__photo-card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waste-hero__photo-card-content {
  min-width: 0;
}

.waste-hero__photo-card strong {
  display: block;
  color: var(--hero-text);
  font-size: 14px;
  line-height: 1.3;
}

.waste-hero__photo-card small {
  display: block;
  margin-top: 4px;
  color: var(--hero-muted);
  font-size: 11px;
  line-height: 1.4;
}

.waste-hero__rating {
  position: absolute;
  right: -12px;
  bottom: 75px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(23, 100, 60, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 17px 42px rgba(11, 62, 38, 0.15);
  backdrop-filter: blur(14px);
}

.waste-hero__rating-value {
  color: var(--hero-green-dark);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.waste-hero__rating-content {
  display: block;
}

.waste-hero__stars {
  display: block;
  color: #e8a921;
  font-size: 12px;
  letter-spacing: 1px;
}

.waste-hero__rating small {
  display: block;
  margin-top: 3px;
  color: var(--hero-muted);
  font-size: 10px;
  line-height: 1.2;
}

@keyframes wasteHeroPulse {
  0% {
    transform: scale(0.75);
    opacity: 0.8;
  }

  80%,
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* =========================================================
   HERO — ПЛАНШЕТ
   ========================================================= */

@media (max-width: 1180px) {
  .waste-hero {
    min-height: auto;
    padding: 72px 0 82px;
  }

  .waste-hero__container {
    width: min(100% - 48px, 1100px);
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    gap: 45px;
  }

  .waste-hero__title {
    font-size: clamp(52px, 6vw, 72px);
  }

  .waste-hero__advantages {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .waste-hero__advantage {
    align-items: center;
  }

  .waste-hero__image-frame {
    min-height: 570px;
  }

  .waste-hero__rating {
    right: -4px;
  }
}

/* =========================================================
   HERO — МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 860px) {
  .waste-hero {
    padding: 48px 0 62px;
  }

  .waste-hero__container {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .waste-hero__content {
    max-width: none;
  }

  .waste-hero__title {
    max-width: 680px;
    font-size: clamp(45px, 10vw, 66px);
  }

  .waste-hero__description {
    max-width: 650px;
  }

  .waste-hero__advantages {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .waste-hero__advantage {
    align-items: flex-start;
  }

  .waste-hero__image-shell {
    max-width: 650px;
    margin: 0 auto;
  }

  .waste-hero__image-frame {
    min-height: 610px;
  }
}

@media (max-width: 640px) {
  .waste-hero {
    padding: 34px 0 48px;
  }

  .waste-hero__container {
    width: min(100% - 24px, 540px);
    gap: 34px;
  }

  .waste-hero__eyebrow {
    margin-bottom: 20px;
    padding: 9px 12px;
    font-size: 11px;
  }

  .waste-hero__title {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 0.99;
    letter-spacing: -0.045em;
  }

  .waste-hero__title span {
    margin-top: 8px;
  }

  .waste-hero__description {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .waste-hero__advantages {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 25px;
  }

  .waste-hero__advantage {
    align-items: center;
    padding: 12px;
    border-radius: 14px;
  }

  .waste-hero__advantage-icon {
    width: 38px;
    height: 38px;
  }

  .waste-hero__advantage strong {
    font-size: 13px;
  }

  .waste-hero__advantage small {
    font-size: 11px;
  }

  .waste-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .waste-hero__button {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
  }

  .waste-hero__note {
    align-items: flex-start;
    margin-top: 15px;
    font-size: 12px;
  }

  .waste-hero__image-shell {
    padding: 0 0 55px;
  }

  .waste-hero__image-shell::before {
    top: -12px;
    right: -8px;
    width: 85%;
    height: 75%;
    border-radius: 27px;
  }

  .waste-hero__image-shell::after {
    display: none;
  }

  .waste-hero__image-frame {
    min-height: 460px;
    border-width: 5px;
    border-radius: 26px;
  }

  .waste-hero__status {
    top: 15px;
    right: 15px;
    padding: 10px 12px;
    border-radius: 13px;
  }

  .waste-hero__photo-card {
    left: 12px;
    bottom: 0;
    width: calc(100% - 24px);
    padding: 14px;
  }

  .waste-hero__photo-card-icon {
    width: 43px;
    height: 43px;
  }

  .waste-hero__rating {
    display: none;
  }
}

@media (max-width: 390px) {
  .waste-hero__title {
    font-size: 39px;
  }

  .waste-hero__image-frame {
    min-height: 410px;
  }
}

/* =========================================================
   ОТКЛЮЧЕНИЕ АНИМАЦИЙ
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .waste-hero__eyebrow-dot::after {
    animation: none;
  }

  .waste-hero__image,
  .waste-hero__button {
    transition: none;
  }
}







/* =========================================================
   БЫСТРАЯ ЗАЯВКА
   ========================================================= */

.quick-request,
.quick-request * {
  box-sizing: border-box;
}

.quick-request {
  --request-green: #17643c;
  --request-green-dark: #0c3f27;
  --request-green-deep: #082f1e;
  --request-green-light: #e6f4eb;
  --request-accent: #b9ea68;
  --request-text: #102219;
  --request-muted: #617369;
  --request-white: #ffffff;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0;
  background: #0b3e27;
  color: var(--request-white);
  font-family: var(--font-main);
}

.quick-request__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.quick-request__background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(8, 47, 30, 0.98) 0%,
      rgba(14, 74, 45, 0.96) 55%,
      rgba(18, 91, 54, 0.92) 100%
    );
}

.quick-request__background::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 58px 58px;
  mask-image:
    linear-gradient(
      to right,
      #000 0%,
      #000 60%,
      transparent 100%
    );
}

.quick-request__glow {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.quick-request__glow--left {
  top: -280px;
  left: -250px;
  width: 700px;
  height: 700px;
  background:
    radial-gradient(
      circle,
      rgba(185, 234, 104, 0.17) 0%,
      rgba(185, 234, 104, 0) 70%
    );
}

.quick-request__glow--right {
  right: -260px;
  bottom: -350px;
  width: 850px;
  height: 850px;
  background:
    radial-gradient(
      circle,
      rgba(103, 196, 137, 0.2) 0%,
      rgba(103, 196, 137, 0) 70%
    );
}

.quick-request__container {
  position: relative;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 0.75fr);
  align-items: center;
  gap: clamp(65px, 7vw, 125px);
}

.quick-request__content {
  max-width: 730px;
}

.quick-request__label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.quick-request__label-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: var(--request-accent);
}

.quick-request__label-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-request__title {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 4.4vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.quick-request__title span {
  display: block;
  margin-top: 8px;
  color: var(--request-accent);
}

.quick-request__description {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
}

.quick-request__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 36px;
}

.quick-request__feature {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.quick-request__feature-icon {
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(185, 234, 104, 0.12);
  color: var(--request-accent);
}

.quick-request__feature-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-request__feature strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.35;
}

.quick-request__feature small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
  line-height: 1.45;
}

.quick-request__notice {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  max-width: 590px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.55;
}

.quick-request__notice-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--request-accent);
}

.quick-request__notice-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-request__form-column {
  position: relative;
  width: 100%;
  max-width: 590px;
  margin-left: auto;
  padding-bottom: 24px;
}

.quick-request__form-column::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -20px;
  width: 72%;
  height: 93%;
  border-radius: 31px;
  background:
    linear-gradient(
      145deg,
      rgba(185, 234, 104, 0.82),
      rgba(90, 176, 121, 0.23)
    );
  transform: rotate(3deg);
}

.quick-request__form-card {
  position: relative;
  z-index: 2;
  padding: 37px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 35px 80px rgba(1, 25, 14, 0.32),
    0 9px 30px rgba(1, 25, 14, 0.13);
  color: var(--request-text);
  backdrop-filter: blur(18px);
}

.quick-request__form-head {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.quick-request__form-number {
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(
      145deg,
      var(--request-green),
      var(--request-green-dark)
    );
  box-shadow: 0 12px 24px rgba(12, 63, 39, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.quick-request__form-title {
  margin: 0;
  color: var(--request-text);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.quick-request__form-description {
  margin: 8px 0 0;
  color: var(--request-muted);
  font-size: 13px;
  line-height: 1.55;
}

.quick-request__form {
  margin-top: 28px;
}

.quick-request__field + .quick-request__field {
  margin-top: 16px;
}

.quick-request__field-label {
  display: block;
  margin-bottom: 8px;
  color: #2c4135;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.quick-request__input-wrap {
  position: relative;
}

.quick-request__input-icon {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #779087;
  transform: translateY(-50%);
  pointer-events: none;
}

.quick-request__input-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-request__input {
  width: 100%;
  height: 58px;
  padding: 0 17px 0 50px;
  border: 1px solid #d8e3dc;
  border-radius: 14px;
  outline: none;
  background: #f7faf8;
  color: var(--request-text);
  font-size: 15px;
  line-height: 1;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.quick-request__input::placeholder {
  color: #96a59d;
}

.quick-request__input:hover {
  border-color: #c5d6cc;
  background: #ffffff;
}

.quick-request__input:focus {
  border-color: var(--request-green);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(23, 100, 60, 0.1);
}

.quick-request__submit {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 19px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(
      135deg,
      var(--request-green) 0%,
      var(--request-green-dark) 100%
    );
  box-shadow:
    0 15px 30px rgba(12, 63, 39, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.quick-request__submit svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-request__submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 19px 36px rgba(12, 63, 39, 0.29),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.quick-request__submit:focus-visible {
  outline: 3px solid rgba(185, 234, 104, 0.65);
  outline-offset: 3px;
}

.quick-request__agreement {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 15px;
  color: #7a8a81;
  cursor: pointer;
  font-size: 10px;
  line-height: 1.5;
}

.quick-request__agreement-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quick-request__agreement-check {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border: 1px solid #cbd8d0;
  border-radius: 5px;
  background: #ffffff;
  color: #ffffff;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.quick-request__agreement-check svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-request__agreement-input:checked
+ .quick-request__agreement-check {
  border-color: var(--request-green);
  background: var(--request-green);
}

.quick-request__agreement-input:focus-visible
+ .quick-request__agreement-check {
  box-shadow: 0 0 0 3px rgba(23, 100, 60, 0.13);
}

.quick-request__agreement a {
  color: var(--request-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quick-request__form-message {
  display: none;
  margin-top: 13px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.quick-request__form-message.is-success {
  display: block;
  background: #e7f6ec;
  color: #17643c;
}

.quick-request__form-message.is-error {
  display: block;
  background: #fff0ef;
  color: #a43b33;
}

.quick-request__divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0 21px;
  color: #99a79f;
  font-size: 11px;
  line-height: 1;
}

.quick-request__divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #e3ebe6;
}

.quick-request__divider span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  background: #ffffff;
}

.quick-request__alternative {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quick-request__alternative-text strong {
  display: block;
  color: var(--request-text);
  font-size: 12px;
  line-height: 1.4;
}

.quick-request__alternative-text small {
  display: block;
  max-width: 250px;
  margin-top: 4px;
  color: var(--request-muted);
  font-size: 10px;
  line-height: 1.45;
}

.quick-request__messengers {
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
}

.quick-request__messenger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #dbe5df;
  border-radius: 11px;
  background: #f8faf9;
  color: #274034;
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.quick-request__messenger svg {
  width: 18px;
  height: 18px;
}

.quick-request__messenger--whatsapp svg {
  fill: none;
  stroke: #26a269;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-request__messenger--telegram svg {
  fill: #2997d6;
  stroke: none;
}

.quick-request__messenger:hover {
  transform: translateY(-1px);
  border-color: #c7d8ce;
  background: #ffffff;
}

.quick-request__response-time {
  position: absolute;
  right: -14px;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(8, 47, 30, 0.92);
  box-shadow: 0 15px 35px rgba(1, 25, 14, 0.23);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.quick-request__response-time strong {
  display: block;
  color: #ffffff;
  font-size: 12px;
}

.quick-request__response-time-dot {
  position: relative;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--request-accent);
  box-shadow: 0 0 0 5px rgba(185, 234, 104, 0.12);
}

@media (max-width: 1180px) {
  .quick-request {
    padding: 90px 0;
  }

  .quick-request__container {
    width: min(100% - 48px, 1100px);
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
    gap: 55px;
  }

  .quick-request__features {
    grid-template-columns: 1fr;
  }

  .quick-request__feature {
    align-items: center;
  }
}

@media (max-width: 900px) {
  .quick-request {
    padding: 75px 0;
  }

  .quick-request__container {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .quick-request__content {
    max-width: none;
  }

  .quick-request__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-request__feature {
    align-items: flex-start;
  }

  .quick-request__form-column {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .quick-request {
    padding: 58px 0;
  }

  .quick-request__container {
    width: min(100% - 24px, 540px);
    gap: 37px;
  }

  .quick-request__label {
    margin-bottom: 19px;
    font-size: 11px;
  }

  .quick-request__title {
    font-size: clamp(39px, 11vw, 52px);
    line-height: 1.03;
  }

  .quick-request__description {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.58;
  }

  .quick-request__features {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 27px;
  }

  .quick-request__feature {
    align-items: center;
    padding: 13px;
    border-radius: 14px;
  }

  .quick-request__notice {
    margin-top: 19px;
    font-size: 11px;
  }

  .quick-request__form-column {
    padding-bottom: 32px;
  }

  .quick-request__form-column::before {
    top: -10px;
    right: -7px;
    width: 82%;
    border-radius: 23px;
  }

  .quick-request__form-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .quick-request__form-head {
    gap: 12px;
  }

  .quick-request__form-number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .quick-request__form-title {
    font-size: 23px;
  }

  .quick-request__form-description {
    font-size: 12px;
  }

  .quick-request__input {
    height: 56px;
    font-size: 14px;
  }

  .quick-request__submit {
    min-height: 57px;
    padding: 0 14px;
    font-size: 14px;
  }

  .quick-request__alternative {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-request__messengers {
    width: 100%;
  }

  .quick-request__messenger {
    flex: 1 1 0;
    min-height: 46px;
  }

  .quick-request__response-time {
    right: 10px;
  }
}




/* =========================================================
   ЧТО МЫ ВЫВОЗИМ
   ========================================================= */

.waste-services,
.waste-services * {
  box-sizing: border-box;
}

.waste-services {
  --services-green: #17643c;
  --services-green-dark: #0c3f27;
  --services-accent: #b9ea68;
  --services-text: #102219;
  --services-muted: #63756b;
  --services-border: #dfe8e2;
  --services-background: #f4f8f5;
  --services-white: #ffffff;

  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 7% 5%,
      rgba(185, 234, 104, 0.12),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #f8fbf9 0%,
      var(--services-background) 100%
    );
  color: var(--services-text);
  font-family: var(--font-main);
}

.waste-services::before {
  content: "";
  position: absolute;
  top: 90px;
  right: -150px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(23, 100, 60, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.waste-services::after {
  content: "";
  position: absolute;
  top: 155px;
  right: -85px;
  width: 275px;
  height: 275px;
  border: 1px solid rgba(23, 100, 60, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.waste-services__container {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
}

.waste-services__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.waste-services__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 100, 60, 0.13);
  border-radius: 999px;
  background: rgba(23, 100, 60, 0.06);
  color: var(--services-green);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
}

.waste-services__eyebrow-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
}

.waste-services__eyebrow-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waste-services__title {
  max-width: 820px;
  margin: 0;
  color: var(--services-text);
  font-size: clamp(48px, 4.7vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.waste-services__title span {
  display: block;
  color: var(--services-green);
}

.waste-services__intro {
  padding-bottom: 5px;
}

.waste-services__intro > p {
  margin: 0;
  color: var(--services-muted);
  font-size: 17px;
  line-height: 1.7;
}

.waste-services__intro-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 21px;
  padding-top: 20px;
  border-top: 1px solid var(--services-border);
  color: #405249;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.waste-services__intro-note > span {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--services-green);
}

.waste-services__intro-note svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waste-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.waste-service-card {
  position: relative;
  min-height: 425px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--services-border);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 35px rgba(20, 63, 39, 0.045);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.waste-service-card::before {
  content: "";
  position: absolute;
  top: -75px;
  right: -75px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: rgba(23, 100, 60, 0.035);
  transition: transform 0.3s ease;
}

.waste-service-card:hover {
  z-index: 2;
  border-color: rgba(23, 100, 60, 0.24);
  box-shadow: 0 22px 55px rgba(20, 63, 39, 0.095);
  transform: translateY(-5px);
}

.waste-service-card:hover::before {
  transform: scale(1.25);
}

.waste-service-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.waste-service-card__icon {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #ebf5ee;
  color: var(--services-green);
}

.waste-service-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waste-service-card__number {
  color: #a1b0a8;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.waste-service-card__badge {
  padding: 7px 9px;
  border-radius: 999px;
  background: #e5f2e9;
  color: var(--services-green);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.waste-service-card__title {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  color: var(--services-text);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.waste-service-card__description {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--services-muted);
  font-size: 13px;
  line-height: 1.6;
}

.waste-service-card__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 19px 0 25px;
  padding: 0;
  list-style: none;
}

.waste-service-card__list li {
  position: relative;
  padding-left: 18px;
  color: #42564b;
  font-size: 11px;
  line-height: 1.45;
}

.waste-service-card__list li::before {
  content: "";
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 2px solid var(--services-green);
  border-radius: 50%;
}

.waste-service-card__button {
  position: relative;
  z-index: 1;
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid #d7e3db;
  border-radius: 12px;
  background: #f7faf8;
  color: var(--services-green-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.waste-service-card__button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.waste-service-card__button:hover {
  border-color: var(--services-green);
  background: var(--services-green);
  color: #ffffff;
}

.waste-service-card__button:hover svg {
  transform: translateX(3px);
}

.waste-service-card--featured {
  border-color: rgba(23, 100, 60, 0.28);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(185, 234, 104, 0.18),
      transparent 35%
    ),
    #ffffff;
}

.waste-service-card--featured .waste-service-card__button {
  border-color: var(--services-green);
  background: var(--services-green);
  color: #ffffff;
}

.waste-service-card--dark {
  border-color: var(--services-green-dark);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(185, 234, 104, 0.14),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #155f3a 0%,
      var(--services-green-dark) 100%
    );
}

.waste-service-card--dark::before {
  background: rgba(185, 234, 104, 0.08);
}

.waste-service-card--dark .waste-service-card__icon {
  background: rgba(185, 234, 104, 0.12);
  color: var(--services-accent);
}

.waste-service-card--dark .waste-service-card__badge {
  background: rgba(185, 234, 104, 0.12);
  color: var(--services-accent);
}

.waste-service-card--dark .waste-service-card__title {
  color: #ffffff;
}

.waste-service-card--dark .waste-service-card__description {
  color: rgba(255, 255, 255, 0.66);
}

.waste-service-card--dark .waste-service-card__list li {
  color: rgba(255, 255, 255, 0.72);
}

.waste-service-card--dark .waste-service-card__list li::before {
  border-color: var(--services-accent);
}

.waste-service-card--dark .waste-service-card__button {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.waste-service-card--dark .waste-service-card__button:hover {
  border-color: var(--services-accent);
  background: var(--services-accent);
  color: var(--services-green-dark);
}

.waste-services__bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  padding: 25px 27px;
  border: 1px solid rgba(23, 100, 60, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(
      90deg,
      rgba(229, 243, 234, 0.95),
      rgba(248, 251, 249, 0.98)
    );
}

.waste-services__bottom-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--services-green);
  color: #ffffff;
}

.waste-services__bottom-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waste-services__bottom-content strong {
  display: block;
  color: var(--services-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.waste-services__bottom-content p {
  max-width: 730px;
  margin: 5px 0 0;
  color: var(--services-muted);
  font-size: 12px;
  line-height: 1.55;
}

.waste-services__bottom-button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  border-radius: 13px;
  background: var(--services-green);
  box-shadow: 0 12px 25px rgba(12, 63, 39, 0.16);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.waste-services__bottom-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waste-services__bottom-button:hover {
  background: var(--services-green-dark);
  box-shadow: 0 16px 30px rgba(12, 63, 39, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 1250px) {
  .waste-services__container {
    width: min(100% - 48px, 1160px);
  }

  .waste-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .waste-services {
    padding: 85px 0;
  }

  .waste-services__container {
    width: min(100% - 32px, 760px);
  }

  .waste-services__header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .waste-services__intro {
    max-width: 650px;
  }

  .waste-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waste-services__bottom {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .waste-services__bottom-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 620px) {
  .waste-services {
    padding: 62px 0;
  }

  .waste-services__container {
    width: min(100% - 24px, 540px);
  }

  .waste-services__eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .waste-services__title {
    font-size: clamp(39px, 11.5vw, 52px);
    line-height: 1.04;
  }

  .waste-services__intro > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .waste-services__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .waste-service-card {
    min-height: 0;
    padding: 22px;
    border-radius: 19px;
  }

  .waste-service-card__icon {
    width: 51px;
    height: 51px;
    border-radius: 15px;
  }

  .waste-service-card__icon svg {
    width: 27px;
    height: 27px;
  }

  .waste-service-card__title {
    margin-top: 20px;
    font-size: 20px;
  }

  .waste-service-card__description {
    font-size: 12px;
  }

  .waste-service-card__list {
    margin: 17px 0 22px;
  }

  .waste-service-card__button {
    min-height: 48px;
  }

  .waste-services__bottom {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 21px;
  }

  .waste-services__bottom-icon {
    width: 52px;
    height: 52px;
  }

  .waste-services__bottom-button {
    grid-column: auto;
  }
}





/* =========================================================
   ДЛЯ ЧАСТНЫХ КЛИЕНТОВ И БИЗНЕСА
   ========================================================= */

.client-types,
.client-types * {
  box-sizing: border-box;
}

.client-types {
  --clients-green: #17643c;
  --clients-green-dark: #0c3f27;
  --clients-accent: #b9ea68;
  --clients-text: #102219;
  --clients-muted: #63756b;
  --clients-border: #dce6df;
  --clients-background: #ffffff;

  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background: var(--clients-background);
  color: var(--clients-text);
  font-family: var(--font-main);
}

.client-types::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -270px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(185, 234, 104, 0.13) 0%,
      rgba(185, 234, 104, 0) 70%
    );
  pointer-events: none;
}

.client-types__container {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(400px, 0.82fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(65px, 7vw, 120px);
}

.client-types__visual {
  position: relative;
  width: 100%;
  max-width: 620px;
}

.client-types__image-wrap {
  position: relative;
  z-index: 2;
  min-height: 720px;
  overflow: hidden;
  border-radius: 30px;
  background: #dfe8e2;
  box-shadow:
    0 35px 80px rgba(16, 62, 38, 0.14),
    0 10px 30px rgba(16, 62, 38, 0.08);
}

.client-types__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.client-types__image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 25, 15, 0.02) 35%,
      rgba(5, 31, 19, 0.25) 72%,
      rgba(5, 31, 19, 0.7) 100%
    );
  pointer-events: none;
}

.client-types__image-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  background: rgba(8, 47, 30, 0.78);
  box-shadow: 0 15px 35px rgba(3, 22, 13, 0.2);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.client-types__image-label-icon {
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(185, 234, 104, 0.14);
  color: var(--clients-accent);
}

.client-types__image-label-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.client-types__image-label strong,
.client-types__image-label > span:last-child {
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.client-types__image-label small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.client-types__image-stat {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(16, 62, 38, 0.13);
  color: var(--clients-text);
  backdrop-filter: blur(12px);
}

.client-types__image-stat strong {
  flex: 0 0 auto;
  color: var(--clients-green);
  font-size: 24px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.04em;
}

.client-types__image-stat > span {
  display: block;
  padding-left: 11px;
  border-left: 1px solid #d7e2db;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.client-types__image-stat small {
  display: block;
  margin-top: 2px;
  color: var(--clients-muted);
  font-size: 9px;
  font-weight: 600;
  text-transform: none;
}

.client-types__visual-accent {
  position: absolute;
  top: 45px;
  right: -24px;
  width: 74%;
  height: calc(100% - 60px);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      var(--clients-accent),
      rgba(111, 181, 127, 0.45)
    );
  transform: rotate(3deg);
}

.client-types__content {
  max-width: 760px;
}

.client-types__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 100, 60, 0.13);
  border-radius: 999px;
  background: rgba(23, 100, 60, 0.06);
  color: var(--clients-green);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
}

.client-types__eyebrow-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
}

.client-types__eyebrow-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.client-types__title {
  max-width: 760px;
  margin: 0;
  color: var(--clients-text);
  font-size: clamp(48px, 4.4vw, 74px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.client-types__title span {
  display: block;
  color: var(--clients-green);
}

.client-types__description {
  max-width: 690px;
  margin: 25px 0 0;
  color: var(--clients-muted);
  font-size: 17px;
  line-height: 1.72;
}

.client-types__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 35px;
}

.client-type-card {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  overflow: hidden;
  padding: 21px;
  border: 1px solid var(--clients-border);
  border-radius: 19px;
  background: #f8faf9;
  transition:
    transform 0.23s ease,
    border-color 0.23s ease,
    box-shadow 0.23s ease,
    background-color 0.23s ease;
}

.client-type-card:hover {
  border-color: rgba(23, 100, 60, 0.25);
  background: #ffffff;
  box-shadow: 0 17px 40px rgba(16, 62, 38, 0.08);
  transform: translateY(-3px);
}

.client-type-card__icon {
  flex: 0 0 auto;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #e7f2ea;
  color: var(--clients-green);
}

.client-type-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.client-type-card__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-right: 10px;
}

.client-type-card__content h3 {
  margin: 1px 0 0;
  color: var(--clients-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.client-type-card__content p {
  margin: 8px 0 0;
  color: var(--clients-muted);
  font-size: 11px;
  line-height: 1.6;
}

.client-type-card__number {
  position: absolute;
  right: 13px;
  bottom: 7px;
  color: rgba(23, 100, 60, 0.065);
  font-size: 45px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.06em;
}

.client-types__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 21px;
  padding: 21px 23px;
  border: 1px solid rgba(23, 100, 60, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(
      90deg,
      rgba(231, 243, 235, 0.96),
      rgba(248, 251, 249, 0.98)
    );
}

.client-types__bottom-text strong {
  display: block;
  color: var(--clients-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.client-types__bottom-text span {
  display: block;
  max-width: 480px;
  margin-top: 4px;
  color: var(--clients-muted);
  font-size: 11px;
  line-height: 1.5;
}

.client-types__button {
  flex: 0 0 auto;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  border-radius: 13px;
  background: var(--clients-green);
  box-shadow: 0 12px 25px rgba(12, 63, 39, 0.17);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.client-types__button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.client-types__button:hover {
  background: var(--clients-green-dark);
  box-shadow: 0 16px 31px rgba(12, 63, 39, 0.23);
  transform: translateY(-2px);
}

.client-types__button:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1180px) {
  .client-types {
    padding: 95px 0;
  }

  .client-types__container {
    width: min(100% - 48px, 1120px);
    grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1fr);
    gap: 60px;
  }

  .client-types__image-wrap {
    min-height: 680px;
  }

  .client-types__list {
    grid-template-columns: 1fr;
  }

  .client-type-card {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .client-types {
    padding: 82px 0;
  }

  .client-types__container {
    width: min(100% - 32px, 760px);
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .client-types__visual {
    max-width: 650px;
    margin: 0 auto;
  }

  .client-types__image-wrap {
    min-height: 680px;
  }

  .client-types__content {
    max-width: none;
  }

  .client-types__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .client-types {
    padding: 62px 0;
  }

  .client-types__container {
    width: min(100% - 24px, 540px);
    gap: 45px;
  }

  .client-types__image-wrap {
    min-height: 510px;
    border-radius: 22px;
  }

  .client-types__visual-accent {
    top: 25px;
    right: -8px;
    height: calc(100% - 35px);
    border-radius: 22px;
  }

  .client-types__image-stat {
    top: 16px;
    left: 16px;
    padding: 9px 11px;
  }

  .client-types__image-label {
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 13px;
    border-radius: 14px;
  }

  .client-types__eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .client-types__title {
    font-size: clamp(39px, 11.5vw, 52px);
    line-height: 1.04;
  }

  .client-types__description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.65;
  }

  .client-types__list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .client-type-card {
    min-height: 0;
    padding: 17px;
    border-radius: 16px;
  }

  .client-type-card__icon {
    width: 45px;
    height: 45px;
    border-radius: 13px;
  }

  .client-type-card__content h3 {
    font-size: 15px;
  }

  .client-types__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 15px;
    padding: 18px;
  }

  .client-types__button {
    width: 100%;
  }
}















/* =========================================================
   КАК РАССЧИТЫВАЕТСЯ СТОИМОСТЬ
   ========================================================= */

.price-factors,
.price-factors * {
  box-sizing: border-box;
}

.price-factors {
  --pricing-green: #17643c;
  --pricing-green-dark: #0c3f27;
  --pricing-accent: #b9ea68;
  --pricing-text: #102219;
  --pricing-muted: #63756b;
  --pricing-border: #dce7e0;
  --pricing-light: #f3f7f4;

  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background:
    radial-gradient(
      circle at 95% 8%,
      rgba(185, 234, 104, 0.13),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #f8fbf9 0%,
      #f2f7f4 100%
    );
  color: var(--pricing-text);
  font-family: var(--font-main);
}

.price-factors__container {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
}

.price-factors__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.price-factors__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 100, 60, 0.13);
  border-radius: 999px;
  background: rgba(23, 100, 60, 0.06);
  color: var(--pricing-green);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
}

.price-factors__eyebrow-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
}

.price-factors__eyebrow-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-factors__title {
  max-width: 850px;
  margin: 0;
  color: var(--pricing-text);
  font-size: clamp(48px, 4.6vw, 77px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.price-factors__title span {
  display: block;
  color: var(--pricing-green);
}

.price-factors__intro {
  padding-bottom: 5px;
}

.price-factors__intro > p {
  margin: 0;
  color: var(--pricing-muted);
  font-size: 17px;
  line-height: 1.72;
}

.price-factors__intro-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--pricing-border);
}

.price-factors__intro-note-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e5f2e9;
  color: var(--pricing-green);
}

.price-factors__intro-note-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-factors__intro-note strong {
  display: block;
  color: var(--pricing-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.price-factors__intro-note small {
  display: block;
  margin-top: 3px;
  color: var(--pricing-muted);
  font-size: 11px;
  line-height: 1.4;
}

.price-factors__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.72fr);
  align-items: stretch;
  gap: 22px;
}

.price-factors__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.price-factor-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--pricing-border);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(20, 63, 39, 0.045);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.price-factor-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: rgba(23, 100, 60, 0.035);
}

.price-factor-card:hover {
  border-color: rgba(23, 100, 60, 0.24);
  box-shadow: 0 20px 50px rgba(20, 63, 39, 0.09);
  transform: translateY(-4px);
}

.price-factor-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.price-factor-card__number {
  color: #9cacA3;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
}

.price-factor-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #e8f3eb;
  color: var(--pricing-green);
}

.price-factor-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-factor-card h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  color: var(--pricing-text);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.price-factor-card p {
  position: relative;
  z-index: 1;
  margin: 11px 0 0;
  color: var(--pricing-muted);
  font-size: 13px;
  line-height: 1.62;
}

.price-factor-card__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 19px;
}

.price-factor-card__tags span {
  padding: 7px 9px;
  border: 1px solid #dce7e0;
  border-radius: 999px;
  background: #f6f9f7;
  color: #496056;
  font-size: 9px;
  font-weight: 750;
  line-height: 1;
}

.price-estimate {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100%;
  padding: 38px;
  border-radius: 27px;
  background:
    linear-gradient(
      145deg,
      #17643c 0%,
      #0c3f27 100%
    );
  box-shadow: 0 28px 65px rgba(8, 47, 30, 0.2);
  color: #ffffff;
}

.price-estimate__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.price-estimate__background::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 48px 48px;
}

.price-estimate__circle {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.price-estimate__circle--one {
  top: -130px;
  right: -115px;
  width: 300px;
  height: 300px;
  background:
    radial-gradient(
      circle,
      rgba(185, 234, 104, 0.22),
      transparent 68%
    );
}

.price-estimate__circle--two {
  bottom: -180px;
  left: -140px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(185, 234, 104, 0.12);
}

.price-estimate__label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
}

.price-estimate__label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pricing-accent);
  box-shadow: 0 0 0 4px rgba(185, 234, 104, 0.12);
}

.price-estimate__title {
  margin: 25px 0 0;
  color: #ffffff;
  font-size: clamp(29px, 2.7vw, 43px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.price-estimate__title span {
  display: block;
  color: var(--pricing-accent);
}

.price-estimate__steps {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.price-estimate__steps li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

.price-estimate__step-number {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(185, 234, 104, 0.13);
  color: var(--pricing-accent);
  font-size: 11px;
  font-weight: 850;
}

.price-estimate__steps strong {
  display: block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.price-estimate__steps small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 10px;
  line-height: 1.45;
}

.price-estimate__result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.price-estimate__result-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(185, 234, 104, 0.12);
  color: var(--pricing-accent);
}

.price-estimate__result-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-estimate__result strong {
  display: block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.price-estimate__result small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 10px;
  line-height: 1.45;
}

.price-estimate__button {
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 23px;
  padding: 0 20px;
  border-radius: 14px;
  background: var(--pricing-accent);
  box-shadow: 0 15px 30px rgba(4, 30, 17, 0.22);
  color: var(--pricing-green-dark);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.price-estimate__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.price-estimate__button:hover {
  background: #c8f47c;
  box-shadow: 0 18px 34px rgba(4, 30, 17, 0.29);
  transform: translateY(-2px);
}

.price-estimate__button:hover svg {
  transform: translateX(3px);
}

.price-estimate__privacy {
  margin: 12px auto 0;
  max-width: 330px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.price-factors__bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  border: 1px solid var(--pricing-border);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.8);
}

.price-factors__bottom-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 21px 24px;
}

.price-factors__bottom-item + .price-factors__bottom-item {
  border-left: 1px solid var(--pricing-border);
}

.price-factors__bottom-item > span {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e8f3eb;
  color: var(--pricing-green);
}

.price-factors__bottom-item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-factors__bottom-item strong {
  display: block;
  color: var(--pricing-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.price-factors__bottom-item small {
  display: block;
  margin-top: 3px;
  color: var(--pricing-muted);
  font-size: 10px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .price-factors {
    padding: 95px 0;
  }

  .price-factors__container {
    width: min(100% - 48px, 1120px);
  }

  .price-factors__layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  }
}

@media (max-width: 920px) {
  .price-factors {
    padding: 82px 0;
  }

  .price-factors__container {
    width: min(100% - 32px, 760px);
  }

  .price-factors__header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .price-factors__intro {
    max-width: 660px;
  }

  .price-factors__layout {
    grid-template-columns: 1fr;
  }

  .price-estimate {
    min-height: auto;
  }

  .price-factors__bottom {
    grid-template-columns: 1fr;
  }

  .price-factors__bottom-item + .price-factors__bottom-item {
    border-top: 1px solid var(--pricing-border);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .price-factors {
    padding: 62px 0;
  }

  .price-factors__container {
    width: min(100% - 24px, 540px);
  }

  .price-factors__eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .price-factors__title {
    font-size: clamp(39px, 11.5vw, 52px);
    line-height: 1.04;
  }

  .price-factors__intro > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .price-factors__cards {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .price-factor-card {
    min-height: 0;
    padding: 22px;
    border-radius: 19px;
  }

  .price-factor-card__icon {
    width: 51px;
    height: 51px;
    border-radius: 15px;
  }

  .price-factor-card h3 {
    margin-top: 20px;
    font-size: 20px;
  }

  .price-estimate {
    padding: 27px 20px;
    border-radius: 21px;
  }

  .price-estimate__title {
    font-size: 30px;
  }

  .price-estimate__steps li {
    padding: 13px;
  }

  .price-factors__bottom {
    border-radius: 17px;
  }

  .price-factors__bottom-item {
    padding: 18px;
  }
}





/* =========================================================
   КАК ПРОХОДИТ ВЫВОЗ
   ========================================================= */

.work-process,
.work-process * {
  box-sizing: border-box;
}

.work-process {
  --process-green: #17643c;
  --process-green-dark: #0c3f27;
  --process-accent: #b9ea68;
  --process-text: #102219;
  --process-muted: #63756b;
  --process-border: #dce7e0;
  --process-light: #f5f8f6;

  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background: #ffffff;
  color: var(--process-text);
  font-family: var(--font-main);
}

.work-process::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -250px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(185, 234, 104, 0.12) 0%,
      rgba(185, 234, 104, 0) 70%
    );
  pointer-events: none;
}

.work-process__container {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
}

.work-process__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.work-process__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 100, 60, 0.13);
  border-radius: 999px;
  background: rgba(23, 100, 60, 0.06);
  color: var(--process-green);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
}

.work-process__eyebrow-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
}

.work-process__eyebrow-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-process__title {
  max-width: 830px;
  margin: 0;
  color: var(--process-text);
  font-size: clamp(48px, 4.6vw, 77px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.work-process__title span {
  display: block;
  color: var(--process-green);
}

.work-process__intro {
  padding-bottom: 4px;
}

.work-process__intro p {
  margin: 0;
  color: var(--process-muted);
  font-size: 17px;
  line-height: 1.72;
}

.work-process__header-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--process-green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.work-process__header-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.work-process__header-link:hover svg {
  transform: translateX(4px);
}

.work-process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.work-process__track::before {
  content: "";
  position: absolute;
  top: 55px;
  right: 8%;
  left: 8%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(23, 100, 60, 0.08),
      rgba(23, 100, 60, 0.24),
      rgba(23, 100, 60, 0.08)
    );
}

.work-process-step {
  position: relative;
  z-index: 1;
  min-height: 355px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--process-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(16, 62, 38, 0.045);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.work-process-step:hover {
  border-color: rgba(23, 100, 60, 0.24);
  box-shadow: 0 20px 48px rgba(16, 62, 38, 0.09);
  transform: translateY(-5px);
}

.work-process-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.work-process-step__number {
  color: #a1b0a8;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
}

.work-process-step__icon {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #e9f3ec;
  color: var(--process-green);
  box-shadow: 0 0 0 7px #ffffff;
}

.work-process-step__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-process-step h3 {
  margin: 27px 0 0;
  color: var(--process-text);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.work-process-step p {
  margin: 12px 0 24px;
  color: var(--process-muted);
  font-size: 12px;
  line-height: 1.65;
}

.work-process-step__time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--process-border);
  color: #496056;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.3;
}

.work-process-step__time > span {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--process-green);
}

.work-process-step__time svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-process-step--accent {
  border-color: var(--process-green);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(185, 234, 104, 0.19),
      transparent 37%
    ),
    linear-gradient(
      145deg,
      #17643c 0%,
      #0c3f27 100%
    );
  box-shadow: 0 23px 55px rgba(8, 47, 30, 0.18);
}

.work-process-step--accent .work-process-step__number {
  color: rgba(255, 255, 255, 0.5);
}

.work-process-step--accent .work-process-step__icon {
  background: rgba(185, 234, 104, 0.13);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.05);
  color: var(--process-accent);
}

.work-process-step--accent h3 {
  color: #ffffff;
}

.work-process-step--accent p {
  color: rgba(255, 255, 255, 0.66);
}

.work-process-step--accent .work-process-step__time {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.work-process-step--accent .work-process-step__time > span {
  color: var(--process-accent);
}

.work-process__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 23px;
  padding: 25px 27px;
  border: 1px solid rgba(23, 100, 60, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(
      90deg,
      rgba(231, 243, 235, 0.97),
      rgba(249, 251, 250, 0.98)
    );
}

.work-process__summary-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.work-process__summary-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--process-green);
  color: #ffffff;
}

.work-process__summary-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-process__summary-main strong {
  display: block;
  color: var(--process-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.work-process__summary-main p {
  max-width: 690px;
  margin: 5px 0 0;
  color: var(--process-muted);
  font-size: 11px;
  line-height: 1.55;
}

.work-process__summary-actions {
  flex: 0 0 auto;
  text-align: center;
}

.work-process__summary-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border-radius: 13px;
  background: var(--process-green);
  box-shadow: 0 12px 25px rgba(12, 63, 39, 0.17);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.work-process__summary-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.work-process__summary-button:hover {
  background: var(--process-green-dark);
  box-shadow: 0 16px 31px rgba(12, 63, 39, 0.23);
  transform: translateY(-2px);
}

.work-process__summary-button:hover svg {
  transform: translateX(3px);
}

.work-process__summary-note {
  display: block;
  margin-top: 7px;
  color: var(--process-muted);
  font-size: 9px;
  line-height: 1.4;
}

@media (max-width: 1250px) {
  .work-process__container {
    width: min(100% - 48px, 1160px);
  }

  .work-process__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-process__track::before {
    display: none;
  }

  .work-process-step {
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  .work-process {
    padding: 82px 0;
  }

  .work-process__container {
    width: min(100% - 32px, 760px);
  }

  .work-process__header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .work-process__intro {
    max-width: 650px;
  }

  .work-process__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-process__summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-process__summary-actions {
    width: 100%;
  }

  .work-process__summary-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .work-process {
    padding: 62px 0;
  }

  .work-process__container {
    width: min(100% - 24px, 540px);
  }

  .work-process__eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .work-process__title {
    font-size: clamp(39px, 11.5vw, 52px);
    line-height: 1.04;
  }

  .work-process__intro p {
    font-size: 14px;
    line-height: 1.65;
  }

  .work-process__track {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .work-process-step {
    min-height: 0;
    padding: 21px;
    border-radius: 19px;
  }

  .work-process-step__icon {
    width: 51px;
    height: 51px;
    border-radius: 15px;
  }

  .work-process-step__icon svg {
    width: 27px;
    height: 27px;
  }

  .work-process-step h3 {
    margin-top: 21px;
    font-size: 19px;
  }

  .work-process__summary {
    padding: 20px;
    border-radius: 18px;
  }

  .work-process__summary-main {
    align-items: flex-start;
  }

  .work-process__summary-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }
}






/* =========================================================
   ПОЧЕМУ НАМ ДОВЕРЯЮТ
   ========================================================= */

.trust-advantages,
.trust-advantages * {
  box-sizing: border-box;
}

.trust-advantages {
  --trust-green: #17643c;
  --trust-green-dark: #0a3823;
  --trust-green-deep: #072b1b;
  --trust-accent: #b9ea68;
  --trust-white: #ffffff;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 115px 0;
  background: var(--trust-green-dark);
  color: var(--trust-white);
  font-family: var(--font-main);
}

.trust-advantages__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.trust-advantages__background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      #082f1e 0%,
      #0d462b 52%,
      #125c37 100%
    );
}

.trust-advantages__background::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
  mask-image:
    linear-gradient(
      to right,
      #000 0%,
      #000 70%,
      transparent 100%
    );
}

.trust-advantages__glow {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.trust-advantages__glow--left {
  top: -320px;
  left: -290px;
  width: 760px;
  height: 760px;
  background:
    radial-gradient(
      circle,
      rgba(185, 234, 104, 0.14) 0%,
      rgba(185, 234, 104, 0) 70%
    );
}

.trust-advantages__glow--right {
  right: -270px;
  bottom: -360px;
  width: 850px;
  height: 850px;
  background:
    radial-gradient(
      circle,
      rgba(90, 181, 123, 0.2) 0%,
      rgba(90, 181, 123, 0) 70%
    );
}

.trust-advantages__container {
  position: relative;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.72fr);
  align-items: center;
  gap: clamp(65px, 7vw, 120px);
}

.trust-advantages__content {
  max-width: 850px;
}

.trust-advantages__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
  backdrop-filter: blur(10px);
}

.trust-advantages__eyebrow-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: var(--trust-accent);
}

.trust-advantages__eyebrow-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-advantages__title {
  max-width: 850px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 4.5vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.trust-advantages__title span {
  display: block;
  color: var(--trust-accent);
}

.trust-advantages__description {
  max-width: 760px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.7;
}

.trust-advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.trust-advantage-card {
  position: relative;
  min-height: 174px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  transition:
    transform 0.23s ease,
    border-color 0.23s ease,
    background-color 0.23s ease;
}

.trust-advantage-card:hover {
  border-color: rgba(185, 234, 104, 0.25);
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-3px);
}

.trust-advantage-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.trust-advantage-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(185, 234, 104, 0.12);
  color: var(--trust-accent);
}

.trust-advantage-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-advantage-card__number {
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
}

.trust-advantage-card h3 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.trust-advantage-card p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.55;
}

.trust-advantages__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 27px;
}

.trust-advantages__button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border-radius: 14px;
  background: var(--trust-accent);
  box-shadow: 0 15px 30px rgba(3, 25, 14, 0.23);
  color: var(--trust-green-deep);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.trust-advantages__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.trust-advantages__button:hover {
  background: #c8f47c;
  box-shadow: 0 19px 36px rgba(3, 25, 14, 0.3);
  transform: translateY(-2px);
}

.trust-advantages__button:hover svg {
  transform: translateX(3px);
}

.trust-advantages__action-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.4;
}

.trust-advantages__action-note strong {
  display: block;
  color: #ffffff;
  font-size: 11px;
}

.trust-advantages__action-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--trust-accent);
  box-shadow: 0 0 0 5px rgba(185, 234, 104, 0.11);
}

.trust-advantages__visual {
  position: relative;
  width: 100%;
  max-width: 590px;
  margin-left: auto;
  padding-bottom: 25px;
}

.trust-advantages__image-wrap {
  position: relative;
  z-index: 2;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 29px;
  background: #174f34;
  box-shadow: 0 35px 80px rgba(2, 22, 12, 0.35);
}

.trust-advantages__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.trust-advantages__image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 27, 16, 0.12) 0%,
      rgba(4, 27, 16, 0.08) 45%,
      rgba(4, 27, 16, 0.78) 100%
    );
  pointer-events: none;
}

.trust-advantages__image-top {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(7, 43, 27, 0.76);
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.trust-advantages__image-top strong {
  display: block;
  color: #ffffff;
  font-size: 11px;
}

.trust-advantages__status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--trust-accent);
  box-shadow: 0 0 0 5px rgba(185, 234, 104, 0.12);
}

.trust-advantages__image-bottom {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  background: rgba(7, 43, 27, 0.82);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.trust-advantages__image-bottom-icon {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(185, 234, 104, 0.12);
  color: var(--trust-accent);
}

.trust-advantages__image-bottom-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-advantages__image-bottom strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.trust-advantages__image-bottom span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  line-height: 1.45;
}

.trust-advantages__facts {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -1px 17px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0 0 17px 17px;
  background: rgba(7, 43, 27, 0.93);
  box-shadow: 0 18px 40px rgba(2, 22, 12, 0.22);
  backdrop-filter: blur(14px);
}

.trust-advantages__fact {
  min-width: 0;
  padding: 16px 13px;
}

.trust-advantages__fact + .trust-advantages__fact {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-advantages__fact strong {
  display: block;
  color: var(--trust-accent);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
}

.trust-advantages__fact > span {
  display: block;
  margin-top: 7px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.35;
}

.trust-advantages__fact small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 500;
}

.trust-advantages__visual-accent {
  position: absolute;
  top: 42px;
  right: -22px;
  width: 75%;
  height: calc(100% - 85px);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(185, 234, 104, 0.9),
      rgba(69, 151, 97, 0.25)
    );
  transform: rotate(3deg);
}

@media (max-width: 1180px) {
  .trust-advantages {
    padding: 95px 0;
  }

  .trust-advantages__container {
    width: min(100% - 48px, 1120px);
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.68fr);
    gap: 55px;
  }

  .trust-advantages__image-wrap {
    min-height: 650px;
  }
}

@media (max-width: 920px) {
  .trust-advantages {
    padding: 82px 0;
  }

  .trust-advantages__container {
    width: min(100% - 32px, 760px);
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .trust-advantages__content {
    max-width: none;
  }

  .trust-advantages__visual {
    max-width: 650px;
    margin: 0 auto;
  }

  .trust-advantages__image-wrap {
    min-height: 680px;
  }
}

@media (max-width: 640px) {
  .trust-advantages {
    padding: 62px 0;
  }

  .trust-advantages__container {
    width: min(100% - 24px, 540px);
    gap: 45px;
  }

  .trust-advantages__eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .trust-advantages__title {
    font-size: clamp(39px, 11.5vw, 52px);
    line-height: 1.04;
  }

  .trust-advantages__description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.65;
  }

  .trust-advantages__grid {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 28px;
  }

  .trust-advantage-card {
    min-height: 0;
    padding: 17px;
    border-radius: 16px;
  }

  .trust-advantages__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .trust-advantages__button {
    width: 100%;
  }

  .trust-advantages__image-wrap {
    min-height: 520px;
    border-radius: 22px;
  }

  .trust-advantages__visual-accent {
    top: 25px;
    right: -8px;
    height: calc(100% - 65px);
    border-radius: 22px;
  }

  .trust-advantages__image-top {
    top: 15px;
    left: 15px;
  }

  .trust-advantages__image-bottom {
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 14px;
  }

  .trust-advantages__facts {
    grid-template-columns: 1fr;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 0 0 15px 15px;
  }

  .trust-advantages__fact {
    display: flex;
    align-items: center;
    gap: 13px;
  }

  .trust-advantages__fact + .trust-advantages__fact {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .trust-advantages__fact > span {
    margin-top: 0;
  }
}






/* =========================================================
   АВТОПАРК
   ========================================================= */

.home-fleet,
.home-fleet * {
  box-sizing: border-box;
}

.home-fleet {
  --fleet-green: #17643c;
  --fleet-green-dark: #0c3f27;
  --fleet-green-deep: #082e1d;
  --fleet-accent: #b9ea68;
  --fleet-text: #102219;
  --fleet-muted: #64766c;
  --fleet-border: #dce7e0;
  --fleet-light: #f4f8f5;

  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background:
    radial-gradient(
      circle at 92% 6%,
      rgba(185, 234, 104, 0.13),
      transparent 26%
    ),
    #ffffff;
  color: var(--fleet-text);
  font-family: var(--font-main);
}

.home-fleet::before {
  content: "";
  position: absolute;
  top: 190px;
  left: -300px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(23, 100, 60, 0.07),
      transparent 70%
    );
  pointer-events: none;
}

.home-fleet__container {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
}

.home-fleet__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.home-fleet__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 100, 60, 0.13);
  border-radius: 999px;
  background: rgba(23, 100, 60, 0.06);
  color: var(--fleet-green);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
}

.home-fleet__eyebrow-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
}

.home-fleet__eyebrow-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-fleet__title {
  max-width: 900px;
  margin: 0;
  color: var(--fleet-text);
  font-size: clamp(48px, 4.55vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.home-fleet__title span {
  display: block;
  color: var(--fleet-green);
}

.home-fleet__intro {
  padding-bottom: 4px;
}

.home-fleet__intro p {
  margin: 0;
  color: var(--fleet-muted);
  font-size: 17px;
  line-height: 1.72;
}

.home-fleet__intro-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--fleet-green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.home-fleet__intro-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.home-fleet__intro-link:hover svg {
  transform: translateX(4px);
}

.home-fleet__main {
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 18px;
}

.fleet-featured {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--fleet-border);
  border-radius: 27px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 66, 40, 0.08);
}

.fleet-featured__image-wrap {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      #dce7e0,
      #bdccc3
    );
}

.fleet-featured__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.fleet-featured:hover .fleet-featured__image {
  transform: scale(1.035);
}

.fleet-featured__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 30, 17, 0.08) 0%,
      rgba(4, 30, 17, 0.04) 48%,
      rgba(4, 30, 17, 0.56) 100%
    );
  pointer-events: none;
}

.fleet-featured__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 46, 29, 0.76);
  color: #ffffff;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.3;
  backdrop-filter: blur(12px);
}

.fleet-featured__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fleet-accent);
  box-shadow: 0 0 0 5px rgba(185, 234, 104, 0.12);
}

.fleet-featured__image-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(8, 46, 29, 0.76);
  color: rgba(255, 255, 255, 0.83);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  backdrop-filter: blur(12px);
}

.fleet-featured__content {
  padding: 29px;
}

.fleet-featured__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.fleet-featured__type,
.fleet-card__type {
  display: block;
  margin-bottom: 7px;
  color: var(--fleet-green);
  font-size: 9px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fleet-featured h3 {
  margin: 0;
  color: var(--fleet-text);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.fleet-featured__number {
  color: #c3cec8;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
}

.fleet-featured__description {
  margin: 18px 0 0;
  color: var(--fleet-muted);
  font-size: 13px;
  line-height: 1.65;
}

.fleet-featured__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 23px;
}

.fleet-featured__spec {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--fleet-border);
  border-radius: 14px;
  background: var(--fleet-light);
}

.fleet-featured__spec-icon {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #ffffff;
  color: var(--fleet-green);
}

.fleet-featured__spec-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fleet-featured__spec > span:last-child {
  min-width: 0;
  color: var(--fleet-muted);
  font-size: 8px;
  line-height: 1.35;
}

.fleet-featured__spec strong {
  display: block;
  margin-top: 3px;
  color: var(--fleet-text);
  font-size: 11px;
  font-weight: 800;
}

.fleet-featured__suitable {
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid var(--fleet-border);
}

.fleet-featured__suitable > span {
  display: block;
  margin-bottom: 10px;
  color: var(--fleet-text);
  font-size: 10px;
  font-weight: 800;
}

.fleet-featured__suitable ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-featured__suitable li {
  position: relative;
  padding-left: 15px;
  color: var(--fleet-muted);
  font-size: 9px;
  line-height: 1.4;
}

.fleet-featured__suitable li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fleet-accent);
  box-shadow: 0 0 0 3px rgba(185, 234, 104, 0.17);
}

.fleet-featured__button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 23px;
  padding: 0 20px;
  border-radius: 13px;
  background: var(--fleet-green);
  box-shadow: 0 12px 25px rgba(12, 63, 39, 0.16);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.fleet-featured__button svg,
.home-fleet__service-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.fleet-featured__button:hover {
  background: var(--fleet-green-dark);
  box-shadow: 0 16px 30px rgba(12, 63, 39, 0.23);
  transform: translateY(-2px);
}

.fleet-featured__button:hover svg,
.home-fleet__service-button:hover svg {
  transform: translateX(3px);
}

.home-fleet__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fleet-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--fleet-border);
  border-radius: 23px;
  background: #ffffff;
  box-shadow: 0 15px 42px rgba(15, 66, 40, 0.055);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.fleet-card:hover {
  border-color: rgba(23, 100, 60, 0.24);
  box-shadow: 0 22px 50px rgba(15, 66, 40, 0.1);
  transform: translateY(-4px);
}

.fleet-card__image-wrap {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  background: #dfe7e2;
}

.fleet-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.fleet-card:hover .fleet-card__image {
  transform: scale(1.045);
}

.fleet-card__image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 37, 22, 0.03),
      rgba(5, 37, 22, 0.35)
    );
}

.fleet-card__number {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  background: rgba(8, 46, 29, 0.76);
  color: #ffffff;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.fleet-card__content {
  padding: 21px;
}

.fleet-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.fleet-card h3 {
  margin: 0;
  color: var(--fleet-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.fleet-card__volume {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  color: var(--fleet-green);
}

.fleet-card__volume strong {
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
}

.fleet-card__volume span {
  padding-bottom: 2px;
  font-size: 9px;
  font-weight: 800;
}

.fleet-card__icon {
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--fleet-light);
  color: var(--fleet-green);
}

.fleet-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fleet-card p {
  margin: 15px 0 0;
  color: var(--fleet-muted);
  font-size: 10px;
  line-height: 1.6;
}

.fleet-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.fleet-card__tags li {
  padding: 6px 9px;
  border: 1px solid var(--fleet-border);
  border-radius: 999px;
  background: var(--fleet-light);
  color: #486055;
  font-size: 8px;
  font-weight: 750;
  line-height: 1.2;
}

.fleet-card--dark {
  border-color: rgba(12, 63, 39, 0.4);
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(185, 234, 104, 0.14),
      transparent 40%
    ),
    linear-gradient(
      145deg,
      #17643c,
      #0b3b25
    );
}

.fleet-card--dark h3 {
  color: #ffffff;
}

.fleet-card--dark .fleet-card__type,
.fleet-card--dark .fleet-card__volume {
  color: var(--fleet-accent);
}

.fleet-card--dark p {
  color: rgba(255, 255, 255, 0.6);
}

.fleet-card--dark .fleet-card__tags li {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
}

.home-fleet__service {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 35px;
  margin-top: 22px;
  padding: 25px 27px;
  border: 1px solid rgba(23, 100, 60, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(
      90deg,
      #edf6f0 0%,
      #f9fbfa 100%
    );
}

.home-fleet__service-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}

.home-fleet__service-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--fleet-green);
  color: #ffffff;
}

.home-fleet__service-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-fleet__service-heading strong {
  display: block;
  color: var(--fleet-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.home-fleet__service-heading p {
  margin: 4px 0 0;
  color: var(--fleet-muted);
  font-size: 9px;
  line-height: 1.5;
}

.home-fleet__service-items {
  display: grid;
  gap: 8px;
}

.home-fleet__service-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #486055;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
}

.home-fleet__service-item > span {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 100, 60, 0.1);
  color: var(--fleet-green);
}

.home-fleet__service-item svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-fleet__service-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 13px;
  background: var(--fleet-green);
  box-shadow: 0 12px 25px rgba(12, 63, 39, 0.16);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.home-fleet__service-button:hover {
  background: var(--fleet-green-dark);
  box-shadow: 0 16px 30px rgba(12, 63, 39, 0.23);
  transform: translateY(-2px);
}

@media (max-width: 1250px) {
  .home-fleet__container {
    width: min(100% - 48px, 1160px);
  }

  .home-fleet__main {
    grid-template-columns: minmax(390px, 0.8fr) minmax(0, 1.2fr);
  }

  .fleet-featured__specs {
    grid-template-columns: 1fr;
  }

  .home-fleet__service {
    grid-template-columns: 1fr 1fr;
  }

  .home-fleet__service-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .home-fleet {
    padding: 82px 0;
  }

  .home-fleet__container {
    width: min(100% - 32px, 820px);
  }

  .home-fleet__header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .home-fleet__main {
    grid-template-columns: 1fr;
  }

  .fleet-featured {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .fleet-featured__image-wrap {
    min-height: 100%;
  }

  .fleet-featured__specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .fleet-featured {
    display: block;
  }

  .fleet-featured__image-wrap {
    min-height: 390px;
  }

  .home-fleet__grid {
    grid-template-columns: 1fr;
  }

  .fleet-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }

  .fleet-card__image-wrap {
    min-height: 100%;
  }

  .home-fleet__service {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-fleet__service-button {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .home-fleet {
    padding: 62px 0;
  }

  .home-fleet__container {
    width: min(100% - 24px, 540px);
  }

  .home-fleet__eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .home-fleet__title {
    font-size: clamp(39px, 11.5vw, 52px);
    line-height: 1.04;
  }

  .home-fleet__intro p {
    font-size: 14px;
    line-height: 1.65;
  }

  .fleet-featured {
    border-radius: 21px;
  }

  .fleet-featured__image-wrap {
    min-height: 310px;
  }

  .fleet-featured__badge {
    top: 15px;
    left: 15px;
  }

  .fleet-featured__image-label {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }

  .fleet-featured__content {
    padding: 21px;
  }

  .fleet-featured h3 {
    font-size: 29px;
  }

  .fleet-featured__specs {
    grid-template-columns: 1fr;
  }

  .fleet-featured__suitable ul {
    grid-template-columns: 1fr;
  }

  .fleet-featured__button {
    width: 100%;
  }

  .fleet-card {
    display: block;
    border-radius: 19px;
  }

  .fleet-card__image-wrap {
    min-height: 230px;
  }

  .home-fleet__service {
    padding: 20px;
    border-radius: 18px;
  }

  .home-fleet__service-heading {
    align-items: flex-start;
  }

  .home-fleet__service-button {
    width: 100%;
  }
}



/* =========================================================
   ВЫПОЛНЕННЫЕ РАБОТЫ
   ========================================================= */

.home-projects,
.home-projects * {
  box-sizing: border-box;
}

.home-projects {
  --projects-green: #17643c;
  --projects-green-dark: #0c3f27;
  --projects-accent: #b9ea68;
  --projects-text: #102219;
  --projects-muted: #64766c;
  --projects-border: #dce7e0;
  --projects-light: #f4f8f5;

  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background: #f4f7f5;
  color: var(--projects-text);
  font-family: var(--font-main);
}

.home-projects::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -250px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(185, 234, 104, 0.15),
      transparent 70%
    );
  pointer-events: none;
}

.home-projects__container {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
}

.home-projects__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.home-projects__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 100, 60, 0.13);
  border-radius: 999px;
  background: rgba(23, 100, 60, 0.06);
  color: var(--projects-green);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
}

.home-projects__eyebrow-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
}

.home-projects__eyebrow-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-projects__title {
  max-width: 900px;
  margin: 0;
  color: var(--projects-text);
  font-size: clamp(48px, 4.55vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.home-projects__title span {
  display: block;
  color: var(--projects-green);
}

.home-projects__intro {
  padding-bottom: 4px;
}

.home-projects__intro p {
  margin: 0;
  color: var(--projects-muted);
  font-size: 17px;
  line-height: 1.72;
}

.home-projects__intro-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--projects-green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.home-projects__intro-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.home-projects__intro-link:hover svg {
  transform: translateX(4px);
}

.home-projects__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--projects-border);
  border-radius: 23px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 66, 40, 0.055);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.project-card:hover {
  border-color: rgba(23, 100, 60, 0.24);
  box-shadow: 0 24px 54px rgba(15, 66, 40, 0.1);
  transform: translateY(-4px);
}

.project-card--featured {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(350px, 0.78fr);
}

.project-card__image-wrap {
  position: relative;
  min-height: 295px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      #dce7e0,
      #bdccc3
    );
}

.project-card--featured .project-card__image-wrap {
  min-height: 520px;
}

.project-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card__image {
  transform: scale(1.04);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 30, 17, 0.08) 0%,
      rgba(4, 30, 17, 0.03) 47%,
      rgba(4, 30, 17, 0.56) 100%
    );
  pointer-events: none;
}

.project-card__top {
  position: absolute;
  top: 17px;
  right: 17px;
  left: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.project-card__category {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 46, 29, 0.76);
  color: #ffffff;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.25;
  backdrop-filter: blur(10px);
}

.project-card__number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(8, 46, 29, 0.76);
  color: #ffffff;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.project-card__image-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(8, 46, 29, 0.78);
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  line-height: 1.4;
  backdrop-filter: blur(12px);
}

.project-card__image-caption strong {
  display: block;
  color: #ffffff;
  font-size: 11px;
}

.project-card__image-caption-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(185, 234, 104, 0.13);
  color: var(--projects-accent);
}

.project-card__image-caption-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-card__content {
  padding: 23px;
}

.project-card--featured .project-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.project-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.project-card__type {
  display: block;
  margin-bottom: 8px;
  color: var(--projects-green);
  font-size: 9px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  color: var(--projects-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.project-card--featured h3 {
  font-size: 32px;
  line-height: 1.1;
}

.project-card__status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(23, 100, 60, 0.08);
  color: var(--projects-green);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.project-card__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--projects-accent);
  box-shadow: 0 0 0 3px rgba(185, 234, 104, 0.18);
}

.project-card p,
.project-card__description {
  margin: 15px 0 0;
  color: var(--projects-muted);
  font-size: 10px;
  line-height: 1.65;
}

.project-card--featured .project-card__description {
  font-size: 12px;
}

.project-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0 0;
}

.project-card--featured .project-card__details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.project-card__details > div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--projects-border);
  border-radius: 12px;
  background: var(--projects-light);
}

.project-card__details dt {
  color: #84938b;
  font-size: 7px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-card__details dd {
  margin: 5px 0 0;
  color: var(--projects-text);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
}

.project-card--dark {
  border-color: rgba(12, 63, 39, 0.4);
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(185, 234, 104, 0.14),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      #17643c,
      #0b3b25
    );
}

.project-card--dark h3 {
  color: #ffffff;
}

.project-card--dark .project-card__type {
  color: var(--projects-accent);
}

.project-card--dark p {
  color: rgba(255, 255, 255, 0.6);
}

.project-card--dark .project-card__details > div {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.06);
}

.project-card--dark .project-card__details dt {
  color: rgba(255, 255, 255, 0.38);
}

.project-card--dark .project-card__details dd {
  color: #ffffff;
}

.home-projects__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 22px;
  padding: 25px 27px;
  border: 1px solid rgba(23, 100, 60, 0.14);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 66, 40, 0.05);
}

.home-projects__summary-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-projects__summary-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--projects-green);
  color: #ffffff;
}

.home-projects__summary-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-projects__summary-main strong {
  display: block;
  color: var(--projects-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.home-projects__summary-main p {
  max-width: 720px;
  margin: 5px 0 0;
  color: var(--projects-muted);
  font-size: 10px;
  line-height: 1.55;
}

.home-projects__summary-button {
  flex: 0 0 auto;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border-radius: 13px;
  background: var(--projects-green);
  box-shadow: 0 12px 25px rgba(12, 63, 39, 0.17);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.home-projects__summary-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.home-projects__summary-button:hover {
  background: var(--projects-green-dark);
  box-shadow: 0 16px 30px rgba(12, 63, 39, 0.23);
  transform: translateY(-2px);
}

.home-projects__summary-button:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1250px) {
  .home-projects__container {
    width: min(100% - 48px, 1160px);
  }

  .project-card--featured {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.8fr);
  }
}

@media (max-width: 980px) {
  .home-projects {
    padding: 82px 0;
  }

  .home-projects__container {
    width: min(100% - 32px, 820px);
  }

  .home-projects__header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .project-card,
  .project-card--featured {
    grid-column: span 6;
  }

  .project-card--featured {
    display: block;
  }

  .project-card--featured .project-card__image-wrap {
    min-height: 430px;
  }

  .project-card--featured .project-card__content {
    padding: 28px;
  }

  .home-projects__summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-projects__summary-button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .home-projects {
    padding: 62px 0;
  }

  .home-projects__container {
    width: min(100% - 24px, 540px);
  }

  .home-projects__eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .home-projects__title {
    font-size: clamp(39px, 11.5vw, 52px);
    line-height: 1.04;
  }

  .home-projects__intro p {
    font-size: 14px;
    line-height: 1.65;
  }

  .project-card,
  .project-card--featured {
    grid-column: 1 / -1;
    border-radius: 20px;
  }

  .project-card__image-wrap,
  .project-card--featured .project-card__image-wrap {
    min-height: 310px;
  }

  .project-card__content,
  .project-card--featured .project-card__content {
    padding: 21px;
  }

  .project-card--featured h3 {
    font-size: 27px;
  }

  .project-card__head {
    flex-direction: column;
  }

  .project-card--featured .project-card__details {
    grid-template-columns: 1fr;
  }

  .home-projects__summary {
    padding: 20px;
    border-radius: 18px;
  }

  .home-projects__summary-main {
    align-items: flex-start;
  }
}





/* =========================================================
   ГЕОГРАФИЯ РАБОТЫ
   ========================================================= */

.home-areas,
.home-areas * {
  box-sizing: border-box;
}

.home-areas {
  --areas-green: #17643c;
  --areas-green-dark: #0c3f27;
  --areas-green-deep: #082e1d;
  --areas-accent: #b9ea68;
  --areas-text: #102219;
  --areas-muted: #64766c;
  --areas-border: #dce7e0;
  --areas-light: #f4f8f5;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 115px 0;
  background: #ffffff;
  color: var(--areas-text);
  font-family: var(--font-main);
}

.home-areas__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.home-areas__background::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(
      rgba(23, 100, 60, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(23, 100, 60, 0.035) 1px,
      transparent 1px
    );
  background-size: 70px 70px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 18%,
      #000 82%,
      transparent 100%
    );
}

.home-areas__circle {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.home-areas__circle--one {
  top: -330px;
  right: -230px;
  width: 700px;
  height: 700px;
  background:
    radial-gradient(
      circle,
      rgba(185, 234, 104, 0.15),
      transparent 70%
    );
}

.home-areas__circle--two {
  bottom: -400px;
  left: -310px;
  width: 800px;
  height: 800px;
  background:
    radial-gradient(
      circle,
      rgba(23, 100, 60, 0.08),
      transparent 70%
    );
}

.home-areas__container {
  position: relative;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
}

.home-areas__header {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.62fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.home-areas__eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 100, 60, 0.13);
  border-radius: 999px;
  background: rgba(23, 100, 60, 0.06);
  color: var(--areas-green);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
}

.home-areas__eyebrow-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
}

.home-areas__eyebrow-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-areas__title {
  max-width: 970px;
  margin: 0;
  color: var(--areas-text);
  font-size: clamp(48px, 4.45vw, 74px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.home-areas__title span {
  display: block;
  color: var(--areas-green);
}

.home-areas__intro {
  padding-bottom: 4px;
}

.home-areas__intro p {
  margin: 0;
  color: var(--areas-muted);
  font-size: 17px;
  line-height: 1.72;
}

.home-areas__intro-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--areas-green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.home-areas__intro-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.home-areas__intro-link:hover svg {
  transform: translateX(4px);
}

.home-areas__layout {
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 20px;
}

.home-areas__visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 100, 60, 0.15);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      #0d4b2e,
      #17643c
    );
  box-shadow: 0 28px 70px rgba(10, 56, 35, 0.16);
}

.home-areas__map {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at center,
      rgba(185, 234, 104, 0.16),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #0d4b2e,
      #17643c
    );
}

.home-areas__map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
  mask-image:
    radial-gradient(
      circle at center,
      #000 10%,
      transparent 75%
    );
}

.home-areas__map::before,
.home-areas__map::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(185, 234, 104, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.home-areas__map::before {
  width: 360px;
  height: 360px;
}

.home-areas__map::after {
  width: 520px;
  height: 520px;
}

.home-areas__map-city {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  background: rgba(7, 43, 27, 0.88);
  box-shadow: 0 18px 45px rgba(3, 27, 16, 0.3);
  color: #ffffff;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
}

.home-areas__map-city-dot {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--areas-accent);
  box-shadow:
    0 0 0 7px rgba(185, 234, 104, 0.14),
    0 0 30px rgba(185, 234, 104, 0.35);
}

.home-areas__map-city small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.2;
}

.home-areas__map-city strong {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.home-areas__map-point {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(7, 43, 27, 0.78);
}

.home-areas__map-point i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--areas-accent);
}

.home-areas__map-point--north {
  top: 24%;
  left: 17%;
}

.home-areas__map-point--east {
  top: 25%;
  right: 14%;
}

.home-areas__map-point--south {
  right: 20%;
  bottom: 18%;
}

.home-areas__map-point--west {
  bottom: 20%;
  left: 18%;
}

.home-areas__map-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(185, 234, 104, 0.38);
  stroke-width: 1.4;
  stroke-dasharray: 8 9;
}

.home-areas__map-label {
  position: absolute;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 43, 27, 0.62);
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 750;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.home-areas__map-label--north {
  top: 17%;
  left: 21%;
}

.home-areas__map-label--east {
  top: 18%;
  right: 18%;
}

.home-areas__map-label--south {
  right: 24%;
  bottom: 11%;
}

.home-areas__map-label--west {
  bottom: 13%;
  left: 22%;
}

.home-areas__map-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(7, 43, 27, 0.82);
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  line-height: 1.4;
  backdrop-filter: blur(14px);
}

.home-areas__map-note strong {
  display: block;
  color: #ffffff;
  font-size: 11px;
}

.home-areas__map-note-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(185, 234, 104, 0.13);
  color: var(--areas-accent);
}

.home-areas__map-note-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-areas__visual-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--areas-green-deep);
}

.home-areas__visual-bottom strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.home-areas__visual-bottom p {
  max-width: 470px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.5;
}

.home-areas__visual-number {
  flex: 0 0 auto;
  color: rgba(185, 234, 104, 0.85);
  font-size: 38px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.05em;
}

.home-areas__content {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.home-areas__group {
  padding: 27px;
  border: 1px solid var(--areas-border);
  border-radius: 23px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 66, 40, 0.05);
}

.home-areas__group--region {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(185, 234, 104, 0.13),
      transparent 35%
    ),
    #f5f9f6;
}

.home-areas__group-head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.home-areas__group-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--areas-green);
  color: #ffffff;
}

.home-areas__group-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-areas__group-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--areas-green);
  font-size: 8px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-areas__group-head h3 {
  margin: 0;
  color: var(--areas-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.home-areas__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.home-areas__links a,
.home-areas__region-list a {
  color: #486055;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.home-areas__links a {
  padding: 8px 11px;
  border: 1px solid var(--areas-border);
  border-radius: 999px;
  background: var(--areas-light);
}

.home-areas__links a:hover {
  border-color: rgba(23, 100, 60, 0.24);
  background: rgba(23, 100, 60, 0.08);
  color: var(--areas-green);
  transform: translateY(-1px);
}

.home-areas__group-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--areas-border);
  color: var(--areas-muted);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.4;
}

.home-areas__group-footer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--areas-accent);
  box-shadow: 0 0 0 4px rgba(185, 234, 104, 0.17);
}

.home-areas__region-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 22px;
}

.home-areas__region-list a {
  position: relative;
  padding: 12px 35px 12px 14px;
  border: 1px solid var(--areas-border);
  border-radius: 12px;
  background: #ffffff;
}

.home-areas__region-list a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--areas-green);
  font-size: 13px;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.home-areas__region-list a:hover {
  border-color: rgba(23, 100, 60, 0.25);
  color: var(--areas-green);
  transform: translateY(-1px);
}

.home-areas__region-list a:hover::after {
  transform: translate(3px, -50%);
}

.home-areas__region-note {
  margin: 18px 0 0;
  color: var(--areas-muted);
  font-size: 9px;
  line-height: 1.55;
}

.home-areas__request {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 26px;
  border: 1px solid rgba(23, 100, 60, 0.26);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(185, 234, 104, 0.17),
      transparent 40%
    ),
    linear-gradient(
      145deg,
      #17643c,
      #0c3f27
    );
  box-shadow: 0 18px 45px rgba(12, 63, 39, 0.14);
}

.home-areas__request-label {
  display: block;
  margin-bottom: 6px;
  color: var(--areas-accent);
  font-size: 8px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-areas__request-content strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.home-areas__request-content p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  line-height: 1.5;
}

.home-areas__request-button {
  flex: 0 0 auto;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border-radius: 13px;
  background: var(--areas-accent);
  box-shadow: 0 12px 25px rgba(3, 27, 16, 0.2);
  color: var(--areas-green-deep);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.home-areas__request-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.home-areas__request-button:hover {
  background: #c8f47c;
  box-shadow: 0 16px 30px rgba(3, 27, 16, 0.28);
  transform: translateY(-2px);
}

.home-areas__request-button:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1250px) {
  .home-areas__container {
    width: min(100% - 48px, 1160px);
  }

  .home-areas__layout {
    grid-template-columns: minmax(390px, 0.8fr) minmax(0, 1.2fr);
  }

  .home-areas__map {
    min-height: 650px;
  }
}

@media (max-width: 980px) {
  .home-areas {
    padding: 82px 0;
  }

  .home-areas__container {
    width: min(100% - 32px, 820px);
  }

  .home-areas__header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .home-areas__layout {
    grid-template-columns: 1fr;
  }

  .home-areas__visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .home-areas__map {
    min-height: 590px;
  }

  .home-areas__visual-bottom {
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.11);
  }
}

@media (max-width: 700px) {
  .home-areas {
    padding: 62px 0;
  }

  .home-areas__container {
    width: min(100% - 24px, 540px);
  }

  .home-areas__eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .home-areas__title {
    font-size: clamp(38px, 10.8vw, 50px);
    line-height: 1.04;
  }

  .home-areas__intro p {
    font-size: 14px;
    line-height: 1.65;
  }

  .home-areas__visual {
    display: block;
    border-radius: 21px;
  }

  .home-areas__map {
    min-height: 520px;
  }

  .home-areas__map::before {
    width: 260px;
    height: 260px;
  }

  .home-areas__map::after {
    width: 390px;
    height: 390px;
  }

  .home-areas__map-label {
    display: none;
  }

  .home-areas__visual-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }

  .home-areas__group {
    padding: 21px;
    border-radius: 19px;
  }

  .home-areas__group-head {
    align-items: flex-start;
  }

  .home-areas__group-head h3 {
    font-size: 20px;
  }

  .home-areas__links {
    gap: 7px;
  }

  .home-areas__region-list {
    grid-template-columns: 1fr;
  }

  .home-areas__request {
    align-items: flex-start;
    flex-direction: column;
    padding: 21px;
    border-radius: 18px;
  }

  .home-areas__request-button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .home-areas__map {
    min-height: 460px;
  }

  .home-areas__map-city {
    padding: 13px 14px;
  }

  .home-areas__map-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .home-areas__map-point--north {
    top: 25%;
    left: 12%;
  }

  .home-areas__map-point--east {
    top: 26%;
    right: 10%;
  }

  .home-areas__map-point--south {
    right: 14%;
    bottom: 24%;
  }

  .home-areas__map-point--west {
    bottom: 25%;
    left: 12%;
  }
}
.home-areas__map-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-areas__map-grid,
.home-areas__map-lines,
.home-areas__map-point,
.home-areas__map-label,
.home-areas__map-city,
.home-areas__map-note {
  z-index: 2;
}



/* =========================================================
   HOME FAQ — компактная версия
   Полностью заменить старые стили FAQ в /css/20-home.css
   ========================================================= */

.home-faq {
  position: relative;
  overflow: hidden;
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 8% 12%, rgba(113, 182, 96, .10), transparent 31%),
    radial-gradient(circle at 92% 86%, rgba(113, 182, 96, .06), transparent 29%),
    #f5f7f4;
}

.home-faq::before {
  content: "";
  position: absolute;
  top: -210px;
  right: -210px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(18, 74, 45, .065);
  border-radius: 50%;
  pointer-events: none;
}

.home-faq__container {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
}

.home-faq__header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 34px;
}

.home-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #2d7a4d;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-faq__eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(45, 122, 77, .17);
  border-radius: 50%;
  background: rgba(255, 255, 255, .76);
  font-size: 11px;
  font-weight: 800;
}

.home-faq h2 {
  margin: 0;
  color: #10271b;
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.05em;
}

.home-faq h2 span {
  display: block;
  color: #187044;
}

.home-faq__intro {
  padding-bottom: 3px;
}

.home-faq__intro p {
  max-width: 510px;
  margin: 0 0 16px;
  color: #68746d;
  font-size: 14px;
  line-height: 1.57;
}

.home-faq__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #187044;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.home-faq__link span {
  transition: transform .2s ease;
}

.home-faq__link:hover span {
  transform: translateX(4px);
}

.home-faq__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.home-faq__column {
  display: grid;
  gap: 8px;
}

.home-faq__item {
  overflow: hidden;
  border: 1px solid rgba(20, 67, 43, .085);
  border-radius: 13px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 18px rgba(24, 61, 42, .03);
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}

.home-faq__item:hover {
  border-color: rgba(32, 118, 72, .16);
  box-shadow: 0 10px 24px rgba(24, 61, 42, .05);
}

.home-faq__item.is-open {
  border-color: rgba(32, 118, 72, .22);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(24, 61, 42, .065);
}

.home-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 12px 14px 12px 18px;
  border: 0;
  background: transparent;
  color: #17271f;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.home-faq__question span {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -.012em;
}

.home-faq__question i {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(35, 124, 75, .13);
  border-radius: 50%;
  background: #f2f7f3;
}

.home-faq__question i::before,
.home-faq__question i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  background: #26804f;
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.home-faq__question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq__item.is-open .home-faq__question i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.home-faq__question:focus-visible {
  outline: 3px solid rgba(55, 137, 86, .22);
  outline-offset: -3px;
}

.home-faq__answer {
  overflow: hidden;
}

.home-faq__answer p {
  margin: 0;
  padding: 0 56px 15px 18px;
  color: #66736c;
  font-size: 13.5px;
  line-height: 1.58;
}

.home-faq__answer p::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 13px;
  background: rgba(20, 67, 43, .075);
}

.home-faq__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 16px;
  padding: 15px 16px 15px 18px;
  border: 1px solid rgba(20, 67, 43, .095);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
}

.home-faq__bottom > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-faq__bottom strong {
  color: #17271f;
  font-size: 13px;
}

.home-faq__bottom span {
  color: #77817b;
  font-size: 11.5px;
  line-height: 1.4;
}

.home-faq__bottom > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: #177044;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(23, 112, 68, .14);
  transition:
    background-color .2s ease,
    transform .2s ease;
}

.home-faq__bottom > a:hover {
  background: #105d37;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .home-faq {
    padding: 72px 0 78px;
  }

  .home-faq__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .home-faq__intro p {
    margin-bottom: 13px;
  }
}

@media (max-width: 720px) {
  .home-faq {
    padding: 58px 0 62px;
  }

  .home-faq__container {
    width: min(100% - 28px, 1440px);
  }

  .home-faq h2 {
    font-size: clamp(36px, 11vw, 49px);
  }

  .home-faq__columns {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-faq__column {
    gap: 8px;
  }

  .home-faq__item {
    border-radius: 12px;
  }

  .home-faq__question {
    grid-template-columns: minmax(0, 1fr) 28px;
    min-height: 54px;
    padding: 11px 13px 11px 16px;
  }

  .home-faq__question span {
    font-size: 13.5px;
  }

  .home-faq__question i {
    width: 28px;
    height: 28px;
  }

  .home-faq__answer p {
    padding: 0 16px 14px;
    font-size: 13px;
  }

  .home-faq__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding: 15px;
  }

  .home-faq__bottom > a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-faq__item,
  .home-faq__question i::before,
  .home-faq__question i::after,
  .home-faq__link span,
  .home-faq__bottom > a {
    transition: none;
  }
}



/* =========================================================
   HOME FINAL CTA
   Полный CSS блока
   ========================================================= */

.home-final-cta {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 14% 14%, rgba(141, 220, 88, .12), transparent 31%),
    radial-gradient(circle at 88% 78%, rgba(141, 220, 88, .08), transparent 28%),
    linear-gradient(135deg, #0b3f28 0%, #0e5031 56%, #0a4028 100%);
}

.home-final-cta::before,
.home-final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  pointer-events: none;
}

.home-final-cta::before {
  top: -230px;
  left: -170px;
  width: 540px;
  height: 540px;
}

.home-final-cta::after {
  right: -240px;
  bottom: -300px;
  width: 620px;
  height: 620px;
}

.home-final-cta__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
  gap: 88px;
  align-items: center;
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
}

.home-final-cta__content {
  max-width: 680px;
}


.home-final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 4.6vw, 72px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.055em;
}

.home-final-cta h2 span {
  display: block;
  max-width: 660px;
  margin-top: 6px;
  color: #b7ed63;
}

.home-final-cta__lead {
  max-width: 620px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.65;
}

.home-final-cta__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-final-cta__benefit {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 15px;
  background: rgba(255, 255, 255, .055);
}

.home-final-cta__benefit-icon {
  display: flex;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(183, 237, 99, .1);
}

.home-final-cta__benefit-icon img {
  display: block;
  width: 52px;
  height: 52px;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.home-final-cta__benefit strong,
.home-final-cta__benefit span {
  display: block;
}

.home-final-cta__benefit strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
}

.home-final-cta__benefit div span {
  color: rgba(255, 255, 255, .5);
  font-size: 10.5px;
  line-height: 1.45;
}

.home-final-cta__note {
  margin-top: 20px;
  color: rgba(255, 255, 255, .44);
  font-size: 10.5px;
}

.home-final-cta__form-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.home-final-cta__form-accent {
  position: absolute;
  z-index: 0;
  top: -18px;
  right: -18px;
  width: calc(100% - 12px);
  height: 100%;
  border-radius: 26px;
  background: linear-gradient(135deg, #b7ed63, #6ebc62);
  transform: rotate(2.2deg);
  opacity: .78;
}

.home-final-cta__form {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 24px;
  background: #f8faf8;
  box-shadow: 0 24px 65px rgba(0, 27, 14, .27);
}

.home-final-cta__form-top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}

.home-final-cta__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #12653e;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.home-final-cta__form-badge {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  margin-bottom: 6px;
  padding: 0 9px;
  border-radius: 999px;
  background: #edf6ed;
  color: #4d7c59;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-final-cta__form h3 {
  margin: 0 0 6px;
  color: #14251c;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.home-final-cta__form-top p {
  margin: 0;
  color: #7a847e;
  font-size: 11px;
  line-height: 1.45;
}

.home-final-cta__field {
  display: block;
  margin-top: 14px;
}

.home-final-cta__field > span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 7px;
  color: #33463b;
  font-size: 10px;
  font-weight: 700;
}

.home-final-cta__field b {
  color: #187044;
}

.home-final-cta__field em {
  color: #97a09a;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
}

.home-final-cta__field input,
.home-final-cta__field textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #dfe5e0;
  border-radius: 12px;
  background: #fff;
  color: #17271f;
  font: inherit;
  outline: 0;
  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.home-final-cta__field input {
  height: 52px;
  padding: 0 14px;
  font-size: 13px;
}

.home-final-cta__field textarea {
  min-height: 82px;
  padding: 14px;
  resize: vertical;
  font-size: 12px;
  line-height: 1.45;
}

.home-final-cta__field input:focus,
.home-final-cta__field textarea:focus {
  border-color: rgba(24, 112, 68, .46);
  box-shadow: 0 0 0 4px rgba(24, 112, 68, .08);
}

.home-final-cta__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #176f43, #0d5834);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 101, 62, .2);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.home-final-cta__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 13px 28px rgba(18, 101, 62, .25);
}

.home-final-cta__consent {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  margin-top: 11px;
  color: #8a938d;
  font-size: 8.5px;
  line-height: 1.45;
}

.home-final-cta__consent input {
  margin: 1px 0 0;
}

.home-final-cta__consent a {
  color: #64746a;
}

.home-final-cta__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 17px 0 14px;
  color: #a0a8a3;
  font-size: 9px;
}

.home-final-cta__divider::before,
.home-final-cta__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e3e8e4;
}

.home-final-cta__messengers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-final-cta__messengers > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-final-cta__messengers strong {
  color: #27382f;
  font-size: 10.5px;
}

.home-final-cta__messengers span {
  color: #929b95;
  font-size: 8.5px;
}

.home-final-cta__messenger-links {
  display: flex;
  gap: 7px;
}

.home-final-cta__messenger-links a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid #dde5df;
  border-radius: 10px;
  background: #fff;
  color: #516158;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.home-final-cta__response-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 14px;
  color: #7e8982;
  font-size: 9px;
}

.home-final-cta__response-time i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8bd15f;
  box-shadow: 0 0 0 4px rgba(139, 209, 95, .12);
}

@media (max-width: 1100px) {
  .home-final-cta__container {
    grid-template-columns: 1fr 470px;
    gap: 48px;
  }

  .home-final-cta__benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-final-cta {
    padding: 74px 0;
  }

  .home-final-cta__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-final-cta__content {
    max-width: none;
  }

  .home-final-cta__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-final-cta__form-wrap {
    max-width: 610px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .home-final-cta {
    padding: 58px 0 64px;
  }

  .home-final-cta__container {
    width: min(100% - 28px, 1440px);
    gap: 38px;
  }

  .home-final-cta h2 {
    font-size: clamp(39px, 11vw, 52px);
  }

  .home-final-cta__lead {
    font-size: 14px;
  }

  .home-final-cta__benefits {
    grid-template-columns: 1fr;
  }

  .home-final-cta__form-accent {
    top: -10px;
    right: -7px;
  }

  .home-final-cta__form {
    padding: 20px 16px;
    border-radius: 19px;
  }

  .home-final-cta__messengers {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-final-cta__messenger-links {
    width: 100%;
  }

  .home-final-cta__messenger-links a {
    flex: 1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-final-cta__submit,
  .home-final-cta__field input,
  .home-final-cta__field textarea {
    transition: none;
  }
}