/* ------------------ Глобальные стили ------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

/* -------------- Темная тема + переменные Apple Glass -------------- */
:root {
  /* Основные цвета - чистый темный фон */
  --bg-body: #000000;
  --bg-secondary: #0a0a0a;
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);

  /* Apple Glass - ЧИСТОЕ прозрачное стекло БЕЗ желтизны */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-hover: rgba(255, 255, 255, 0.15);

  /* Акценты - чистый белый */
  --accent-primary: #ffffff;
  --accent-secondary: rgba(255, 255, 255, 0.6);
  --nav-active-bg: rgba(255, 255, 255, 0.12);
  --nav-active-text: #ffffff;

  /* Поля ввода */
  --field-bg: rgba(255, 255, 255, 0.06);
  --field-text: #ffffff;
  --placeholder: rgba(255, 255, 255, 0.5);

  /* Layout */
  --container-max: 1200px;
  --container-padding: clamp(1rem, 1.8vw, 2rem);

  /* Тени для глубины */
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 16px 64px rgba(0, 0, 0, 0.6);
}

/* ------------------ Глобальные стили ------------------ */
body {
  background: var(--bg-body);
  /* Чистый черный фон БЕЗ градиентов для полной прозрачности стекла */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  margin: 0;
  min-height: 100vh;
  color: var(--text-color);
  transition: background 0.3s ease, color 0.3s ease;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color);
}

.container {
  width: min(100%, var(--container-max));
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.site-main {
  width: 100%;
  padding: 3rem 0;
}

body.page-home .site-main {
  padding-top: 0;
}

.breadcrumbs {
  width: min(100%, var(--container-max));
  margin: 0 auto;
  padding: 0.75rem var(--container-padding) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.9rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs a {
  color: var(--nav-active-bg);
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  text-decoration: underline;
}

.breadcrumbs .sep {
  opacity: 0.55;
}

@media (max-width: 768px) {
  .site-main {
    padding: 2.5rem 1.25rem;
  }

  body.page-home .site-main {
    padding-top: 0;
  }

  .breadcrumbs {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Фиксированный фон поверх body: одинаковое поведение ПК/мобилки */
.site-bg {
  position: fixed;
  inset: 0;
  background-color: var(--bg-body);
  background-image: url("/static/images/Background_2-w1280.jpg");
  background-image: image-set(
    url("/static/images/Background_2-w1280.jpg") 1x,
    url("/static/images/Background_2-w1536.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: transform;
}

/* Мобильный фон */
@media (max-width: 768px) {
  .site-bg {
    background-image: url("/static/images/Background_mobile-w640.jpg");
    background-image: image-set(
      url("/static/images/Background_mobile-w640.jpg") 1x,
      url("/static/images/Background_mobile-w960.jpg") 2x
    );
    background-position: top center;
    background-size: cover; /* На мобильных используем cover для лучшего заполнения */
    background-repeat: no-repeat;
    background-color: var(--bg-body);
  }

  /* Скрываем фоновые слайды hero на мобильных */
  body.page-home .home-hero__backdrop {
    display: none;
  }

  /* Скрываем фоновые media для страниц услуг и аренды */
  .services-hero__media {
    display: none;
  }

  /* Главный hero блок на мобильных */
  body.page-home .home-hero {
    padding-top: clamp(6rem, 10vw, 8rem);
    padding-bottom: 2rem;
  }

  /* Services hero на мобильных */
  .services-hero {
    padding-top: clamp(5rem, 8vw, 7rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }

  .home-hero__content {
    padding: 0 1rem;
  }
}

@media (min-width: 1400px) {
  .site-bg {
    background-image: url("/static/images/Background_2-w1536.jpg");
    background-image: image-set(
      url("/static/images/Background_2-w1536.jpg") 1x,
      url("/static/images/Background_2-w1536.jpg") 2x
    );
  }
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------- Стекло ---------- */
.glass {
  /* ЧИСТОЕ прозрачное Apple жидкое стекло БЕЗ желтизны */
  background: var(--glass-bg);
  border: 0.5px solid var(--glass-border);
  border-radius: 1.5rem;
  backdrop-filter: saturate(180%) blur(80px);
  -webkit-backdrop-filter: saturate(180%) blur(80px);
  box-shadow:
    var(--shadow-glass),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.12);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  margin: clamp(1rem, 2.4vw, 2.4rem) auto;
  max-width: 960px;
  color: var(--text-color);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

/* Декоративная линия сверху */
.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.2) 80%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Радиальное свечение при ховере */
.glass::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}

.glass:hover {
  transform: translateY(-3px);
  background: var(--glass-bg-hover);
  box-shadow:
    var(--shadow-elevated),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  border-color: var(--glass-border-hover);
}

.glass:hover::before {
  opacity: 1;
}

.glass:hover::after {
  opacity: 1;
  transform: translate(-25%, -25%);
}


/* Мобильная адаптация для стеклянных блоков */
@media (max-width: 768px) {
  .glass {
    margin: 0.75rem auto;
    padding: 1.35rem;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .glass {
    margin: 0.5rem auto;
    padding: 1.1rem;
    border-radius: 8px;
  }
}

/* Адаптация фона для мобильных устройств */
/* Удалены принудительные mobile-override для background у body, фон теперь в .site-bg */

/* Адаптация заголовков для мобильных */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
  h2 {
    font-size: 2rem !important;
    line-height: 1.3;
  }
  h3 {
    font-size: 1.5rem !important;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem !important;
  }
  h2 {
    font-size: 1.75rem !important;
  }
  h3 {
    font-size: 1.25rem !important;
  }
}

/* ---------- Поля форм ---------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="datetime-local"],
select,
textarea {
  background: var(--field-bg) !important;
  color: var(--field-text) !important;
  caret-color: var(--field-text);
  font-size: 16px; /* Предотвращает зум на iOS */
}

input::placeholder,
textarea::placeholder {
  color: var(--placeholder) !important;
}

/* Мобильная адаптация для форм */
@media (max-width: 480px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="datetime-local"],
  select,
  textarea {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
  }
}





/* ---------- Кнопки ---------- */
.btn, .btn:visited, .btn:active, .btn:focus {
  text-decoration: none !important;
}
a.btn, a.btn:visited, a.btn:active, a.btn:focus {
  text-decoration: none !important;
}

.btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #7ca982 0%, #6b9871 100%);
  color: var(--nav-active-text);
  border-radius: 14px;
  border: none;
  padding: 0.75rem 1.5rem;
  margin: 0.15rem 0;
  font-weight: 700;
  font-size: 1.04rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 14px rgba(124, 169, 130, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  outline: none;
  user-select: none;
  min-height: 44px;
  letter-spacing: 0.3px;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Контурная кнопка - ИЗНАЧАЛЬНО ПОДСВЕЧЕНА */
.btn-outline {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: saturate(180%) blur(20px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.2) !important;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: saturate(180%) blur(20px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.25) !important;
}

.btn-soft {
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: saturate(180%) blur(20px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.btn-soft:hover,
.btn-soft:focus-visible {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15) !important;
}

.btn-sm {
  padding: 0.45rem 0.9rem !important;
  min-height: 38px !important;
  font-size: 0.9rem !important;
}

/* ---------- Главная страница ---------- */
.hero {
  padding: 3.5rem 0 2.5rem;
  position: relative;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(232, 243, 229, 0.72);
}

.hero__title {
  font-size: clamp(2.45rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  color: var(--text-color);
}

.hero__lead {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.hero__highlights li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.hero__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--nav-active-bg);
  box-shadow: 0 0 0 4px rgba(124, 169, 130, 0.25);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 0.5rem;
}

.stat-card {
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(124, 169, 130, 0.4);
  background: rgba(26, 45, 35, 0.6);
  box-shadow: 0 12px 28px rgba(10, 18, 14, 0.28);
}

.stat-card__value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--nav-active-bg);
}

.stat-card__label {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero__panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  margin: 0;
  max-width: none;
  box-shadow: var(--shadow-glass);
}

.hero__panel-title {
  margin: 0;
  font-size: 1.4rem;
}

.hero__panel-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.hero__panel-contacts {
  display: grid;
  gap: 0.85rem;
}

.hero__panel-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--text-color);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(124, 169, 130, 0.25);
}

.hero__panel-link:last-of-type {
  border-bottom: none;
}

.hero__panel-link-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
}

.hero__panel-link-value {
  font-size: 1.2rem;
  font-weight: 600;
}

.hero__panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__badge {
  margin-top: auto;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  background: rgba(124, 169, 130, 0.12);
  border: 1px dashed rgba(124, 169, 130, 0.4);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 3.5rem 0;
}

.section--alt {
  background: linear-gradient(
    180deg,
    rgba(18, 28, 24, 0) 0%,
    rgba(18, 28, 24, 0.65) 15%,
    rgba(18, 28, 24, 0.78) 30%,
    rgba(18, 28, 24, 0.78) 70%,
    rgba(18, 28, 24, 0.65) 85%,
    rgba(18, 28, 24, 0) 100%
  );
  border: none;
  position: relative;
  overflow: hidden;
}

/* Декоративные элементы для премиального вида */
.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 80%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 1;
}

.section--alt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 80%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 1;
}

.section__header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.section__eyebrow {
  display: inline-flex;
  justify-content: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(248, 253, 248, 0.72);
  text-shadow: 0 4px 12px rgba(6, 12, 9, 0.35);
}

.section__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  background: linear-gradient(135deg, #e8f3e5 0%, #b4e197 50%, #a8d68f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
  display: inline-block;
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(124, 169, 130, 0.6), transparent);
  border-radius: 2px;
}

.section__description {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(248, 252, 248, 0.86);
  text-shadow: 0 3px 12px rgba(6, 12, 9, 0.28);
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 1.3rem;
  background: linear-gradient(135deg, rgba(18, 28, 24, 0.8) 0%, rgba(14, 22, 19, 0.85) 100%);
  border: 1px solid rgba(124, 169, 130, 0.3);
  box-shadow:
    0 20px 40px rgba(10, 16, 14, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 169, 130, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 169, 130, 0.45);
  box-shadow:
    0 24px 50px rgba(10, 16, 14, 0.45),
    0 8px 20px rgba(124, 169, 130, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

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

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(124, 169, 130, 0.18);
  border: 1px solid rgba(124, 169, 130, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nav-active-bg);
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
  padding: 10px;
}

.feature-card__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-color);
  text-shadow: 0 4px 14px rgba(6, 12, 9, 0.4);
}

.feature-card__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
  color: rgba(232, 243, 229, 0.84);
  line-height: 1.5;
}

.feature-card__link {
  margin-top: auto;
  color: rgba(180, 225, 151, 0.95);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  transition: all 0.3s ease;
}

.feature-card__link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(180, 225, 151, 0.8), transparent);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card__link:hover::before {
  width: calc(100% - 25px);
}

.feature-card__link::after {
  content: "→";
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-card__link {
  color: rgba(180, 225, 151, 1);
}

.feature-card__link:hover::after,
.feature-card__link:focus-visible::after {
  transform: translateX(4px);
}

.feature-card--article {
  background: rgba(26, 45, 35, 0.65);
}

.feature-card__excerpt {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(124, 169, 130, 0.28);
  background: rgba(18, 28, 24, 0.7);
}

.process-step__number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--nav-active-bg);
  color: var(--nav-active-text);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.process-step__title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.process-step__text {
  margin: 0;
  color: rgba(232, 243, 229, 0.78);
  line-height: 1.55;
}

.case-highlight {
  display: grid;
  gap: 2rem;
  margin: 0;
}

.case-highlight__intro {
  display: grid;
  gap: 0.75rem;
}

.case-highlight__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.case-card {
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  border: 1px solid rgba(124, 169, 130, 0.28);
  background: rgba(18, 28, 24, 0.65);
  display: grid;
  gap: 0.6rem;
}

.case-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.case-card__meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 243, 229, 0.6);
}

.case-highlight__cta {
  justify-self: start;
}

.advantage-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.advantage-card {
  padding: 1.4rem 1.6rem;
  border-radius: 1rem;
  background: rgba(26, 45, 35, 0.7);
  border: 1px solid rgba(124, 169, 130, 0.25);
  box-shadow: 0 12px 30px rgba(10, 18, 14, 0.25);
  display: grid;
  gap: 0.6rem;
}

.advantage-card h3 {
  margin: 0;
}

.cta-banner {
  margin: 0;
  display: flex;
  justify-content: center;
  padding: clamp(1.5rem, 2vw, 2.2rem);
}

.cta-banner__content {
  display: grid;
  gap: 1rem;
}

.cta-banner__checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.82);
}

.cta-banner__checklist li {
  position: relative;
  padding-left: 1.6rem;
}

.cta-banner__checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--nav-active-bg);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 1180px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  }
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 2.5rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    order: -1;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .hero__highlights li {
    font-size: 0.95rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step__number {
    justify-self: start;
  }

  .cta-banner {
    padding: 1.4rem;
  }
}

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

  .hero__cta {
    flex-direction: column;
  }

  .case-highlight__grid,
  .feature-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Страница услуг ---------- */
.services-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.services-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
  --services-hero-gradient: linear-gradient(160deg, rgba(18, 28, 24, 0.82), rgba(18, 28, 24, 0.55));
}

.services-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--services-hero-gradient);
  z-index: 1;
}

.services-hero__media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.9);
  z-index: 0;
}

.services-hero__media--land {
  --services-hero-gradient: linear-gradient(155deg, rgba(18, 28, 24, 0.85), rgba(18, 28, 24, 0.45));
}

.services-hero__media--rental {
  --services-hero-gradient: linear-gradient(160deg, rgba(18, 28, 24, 0.86), rgba(18, 28, 24, 0.5));
}

body.page-rental .services-hero__media--rental {
  --services-hero-gradient: linear-gradient(160deg, rgba(18, 28, 24, 0.86), rgba(18, 28, 24, 0.5));
}

.services-hero__media--home {
  --services-hero-gradient: linear-gradient(160deg, rgba(12, 20, 17, 0.88), rgba(26, 45, 35, 0.55));
}

.services-hero__media--delivery {
  --services-hero-gradient: linear-gradient(155deg, rgba(18, 28, 24, 0.82), rgba(18, 28, 24, 0.5));
}

.services-hero__media--disposal {
  --services-hero-gradient: linear-gradient(150deg, rgba(18, 28, 24, 0.84), rgba(18, 28, 24, 0.45));
}

.services-hero__media--water {
  --services-hero-gradient: linear-gradient(155deg, rgba(18, 28, 24, 0.82), rgba(18, 28, 24, 0.45));
}

.services-hero__media--snow {
  --services-hero-gradient: linear-gradient(160deg, rgba(18, 28, 24, 0.85), rgba(18, 28, 24, 0.48));
}


.services-hero__media--green {
  --services-hero-gradient: linear-gradient(150deg, rgba(18, 28, 24, 0.8), rgba(18, 28, 24, 0.42));
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 28, 24, 0.82) 0%, rgba(18, 28, 24, 0.2) 45%);
  z-index: -1;
}

.services-hero__layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: space-between;
}

.services-hero__layout--with-illustration {
  align-items: center;
}


.services-hero__content {
  width: min(640px, 100%);
  display: grid;
  gap: 1.25rem;
}

.services-hero__illustration {
  flex: 0 1 clamp(260px, 32vw, 420px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  max-width: 420px;
}

@media (min-width: 901px) {
  body[class*="page-service-"] .home-hero .services-hero__layout {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }

  body[class*="page-service-"] .home-hero .services-hero__layout .services-hero__illustration {
    order: 2;
    flex: 0 0 100%;
    max-width: none;
    width: min(520px, 100%);
    margin: clamp(1.75rem, 4vw, 3.25rem) auto 0;
    justify-content: center;
    align-items: center;
  }
}

.services-hero__illustration--below {
  width: min(520px, 100%);
  margin: clamp(1.75rem, 4vw, 3.25rem) auto 0;
  align-items: center;
}

.services-hero-illustration {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 0;
}

.services-hero-illustration .services-hero__illustration--below {
  margin-top: 0;
}

.services-hero__illustration--slider {
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
}

.hero-slider__viewport {
  position: relative;
  flex: 1 1 auto;
  display: grid;
  min-height: clamp(240px, 32vw, 360px);
}

.hero-slider__item {
  grid-area: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.hero-slider__item.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slider__image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 40px rgba(6, 12, 9, 0.55));
  transform: translateY(0) scale(1.12);
  transform-origin: bottom center;
}

.hero-slider__control {
  pointer-events: auto;
  border: none;
  background: rgba(17, 30, 24, 0.75);
  color: rgba(255, 255, 255, 0.92);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider__control:hover,
.hero-slider__control:focus-visible {
  background: rgba(124, 169, 130, 0.85);
  color: var(--bg-body);
  outline: none;
  transform: translateY(-2px);
}

.hero-slider__control:active {
  transform: translateY(0);
}

.hero-slider__control[disabled] {
  opacity: 0.4;
  cursor: default;
  transform: none;
  background: rgba(17, 30, 24, 0.55);
}

.services-hero__illustration img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 40px rgba(6, 12, 9, 0.55));
  transform: translateY(0) scale(1.12);
  transform-origin: bottom center;
}

.services-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(124, 169, 130, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.services-hero__title {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-color);
}

.services-hero__lead {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(232, 243, 229, 0.88);
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.services-intro {
  display: grid;
  gap: 1.75rem;
}

.services-intro__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.services-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  justify-items: center;
}

.services-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.12);
  backdrop-filter: saturate(180%) blur(40px);
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  min-height: 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.services-benefit:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

.services-benefit:hover::before {
  opacity: 1;
}

.services-benefit__icon {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(124, 169, 130, 0.18);
  border: 1px solid rgba(124, 169, 130, 0.4);
  box-shadow: inset 0 0 0 1px rgba(232, 243, 229, 0.08);
}

.services-benefit__icon::before,
.services-benefit__icon::after {
  content: "";
  position: absolute;
  background: rgba(124, 169, 130, 0.75);
}

.services-benefit__icon--time::before {
  inset: 11px;
  border-radius: 50%;
  border: 2px solid rgba(232, 243, 229, 0.7);
  background: rgba(18, 28, 24, 0.55);
}

.services-benefit__icon--time::after {
  width: 2px;
  height: 14px;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.85);
  border-radius: 2px;
}

.services-benefit__icon--docs::before {
  inset: 12px;
  border-radius: 8px;
  background: rgba(232, 243, 229, 0.1);
  border: 2px solid rgba(232, 243, 229, 0.7);
}

.services-benefit__icon--docs::after {
  width: 16px;
  height: 2px;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 0 rgba(232, 243, 229, 0.6), 0 12px 0 rgba(232, 243, 229, 0.45);
  border-radius: 2px;
}

.services-benefit__icon--gear::before {
  inset: 13px;
  border-radius: 12px;
  border: 2px solid rgba(232, 243, 229, 0.72);
  transform: rotate(45deg);
  background: rgba(18, 28, 24, 0.55);
}

.services-benefit__icon--gear::after {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
}

.services-benefit__icon--crew::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
}

.services-benefit__icon--crew::after {
  width: 30px;
  height: 18px;
  border-radius: 14px 14px 8px 8px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.55);
}

.services-benefit__icon--geo::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
}

.services-benefit__icon--geo::after {
  width: 14px;
  height: 20px;
  border-radius: 10px;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -10%) rotate(45deg);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 2px rgba(232, 243, 229, 0.3);
}

.services-benefit__label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.service-groups {
  display: grid;
  gap: 2.2rem;
}

.service-group {
  display: grid;
  gap: 1.4rem;
}

.service-group__title {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding-left: 1.2rem;
}

.service-group__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 28px;
  border-radius: 6px;
  background: var(--nav-active-bg);
}

.service-group__grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  position: relative;
  padding: 1.6rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(124, 169, 130, 0.3);
  box-shadow:
    0 20px 50px rgba(8, 12, 10, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-height: clamp(220px, 30vw, 320px);
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #f6fbf0;
  overflow: hidden;
  isolation: isolate;
  background: rgba(12, 20, 17, 0.7);
  backdrop-filter: blur(8px) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  transform: translateY(0) scale(1);
  will-change: transform, box-shadow;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s ease,
    border-color 0.4s ease,
    outline-color 0.4s ease,
    filter 0.4s ease;
}

.service-card__image {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95);
  z-index: -3;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 0.85s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.45s ease,
    opacity 0.45s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10, 16, 14, 0.4), rgba(4, 8, 7, 0.15)),
    linear-gradient(180deg, rgba(8, 12, 10, 0.15), rgba(6, 10, 9, 0.85));
  z-index: -1;
  opacity: 0.85;
  transition: opacity 0.55s ease;
}

.service-card:hover::before,
.service-card:focus-visible::before {
  opacity: 0.58;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 35px 70px rgba(6, 10, 8, 0.65),
    0 12px 25px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(124, 169, 130, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(124, 169, 130, 0.6);
  filter: brightness(1.05) contrast(1.02);
}

.service-card:hover .service-card__image,
.service-card:focus-visible .service-card__image {
  transform: scale(1.12) translate3d(3%, -2%, 0) rotate(0.5deg);
  filter: saturate(1.15) brightness(1.05);
  opacity: 1;
}

/* Анимация блеска */
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 10;
}

.service-card:hover::after {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}


.service-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.55rem;
  transition: transform 0.38s ease;
}

.service-card__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(12, 20, 17, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.service-card h4 {
  margin: 0;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.service-card__cta {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
  opacity: 0.95;
}

.service-card:hover .service-card__cta,
.service-card:focus-visible .service-card__cta {
  color: var(--nav-active-bg);
}

.service-card:hover .service-card__content,
.service-card:focus-visible .service-card__content {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .service-group__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 1.25rem 1.1rem;
    align-items: flex-start;
  }

  .service-card__image {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .service-card__content {
    gap: 0.45rem;
  }

  .service-card__eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .service-card h4 {
    font-size: 1.1rem;
    overflow-wrap: anywhere;
  }

  .service-card p {
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card__image,
  .service-card::before,
  .service-card::after,
  .service-card__content {
    transition: none;
  }
}

.services-process {
  display: grid;
  gap: 1.8rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.services-process__header {
  text-align: center;
  display: grid;
  gap: 0.6rem;
}

.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.process-timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem;
  border-radius: 1rem;
  background: rgba(18, 28, 24, 0.68);
  border: 1px solid rgba(124, 169, 130, 0.26);
}

.process-timeline__icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(124, 169, 130, 0.24);
  border: 1px solid rgba(124, 169, 130, 0.4);
  color: var(--nav-active-text);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(10, 18, 14, 0.35);
}

.process-timeline__icon::after {
  content: attr(data-step);
}

.process-timeline__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.process-timeline__item p {
  margin: 0;
  color: rgba(232, 243, 229, 0.78);
  line-height: 1.5;
}

.services-process__cta {
  display: flex;
  justify-content: center;
}

.services-price {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  gap: 1.5rem;
}

.services-price--grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.services-price--grid .price-group {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.services-price--grid .price-table {
  padding-bottom: 0.6rem;
}

.price-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-group {
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  backdrop-filter: saturate(200%) blur(40px);
  -webkit-backdrop-filter: saturate(200%) blur(40px);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.price-group:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-group > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.price-group > summary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.price-group > summary::-webkit-details-marker {
  display: none;
}

.price-group > summary::after {
  content: "▾";
  float: right;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.price-group[open] > summary::after {
  transform: rotate(180deg);
}

.price-table {
  display: flex;
  flex-direction: column;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.price-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.price-table .price-row:first-child {
  border-top: none;
}

.price-row .desc {
  font-weight: 600;
}

.price-row .price {
  font-weight: 800;
  white-space: nowrap;
}

.price-note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(232, 243, 229, 0.78);
}

.price-group__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 1.1rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nav-active-bg);
  text-decoration: none;
}

.price-group__link::after {
  content: "→";
  font-size: 0.9em;
}

.price-group__link:hover,
.price-group__link:focus-visible {
  color: rgba(164, 194, 171, 0.95);
}

.services-faq-placeholder {
  display: grid;
  gap: 1rem;
  text-align: center;
  padding: clamp(1.6rem, 3vw, 2.3rem);
}

.services-form {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: rgba(18, 28, 24, 0.82);
  border: 1px solid rgba(124, 169, 130, 0.28);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-glass);
}

.services-form__header {
  text-align: center;
  display: grid;
  gap: 0.6rem;
}

.services-form__note {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(232, 243, 229, 0.7);
}

.services-form__note a {
  color: var(--nav-active-bg);
}

.landing-intro {
  display: grid;
  gap: 1rem;
  text-align: center;
  padding: clamp(1.8rem, 3vw, 2.4rem);
}

.landing-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.landing-card {
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: grid;
  gap: 1rem;
}

.landing-card__title {
  margin: 0 0 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.15);
  position: relative;
  padding-bottom: 1rem;
}

/* Декоративная линия под заголовком */
.landing-card__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.landing-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.landing-columns {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.landing-checklist li {
  position: relative;
  padding: 0.8rem 1rem 0.8rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.landing-checklist li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.12);
}

.landing-checklist li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.landing-tech {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  background: rgba(18, 28, 24, 0.82);
  border-radius: 1.2rem;
  border: 1px solid rgba(124, 169, 130, 0.28);
  box-shadow: var(--shadow-glass);
}

.landing-tech__grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.landing-tech__card {
  padding: 1.2rem 1.3rem;
  border-radius: 1rem;
  background: rgba(26, 45, 35, 0.7);
  border: 1px solid rgba(124, 169, 130, 0.28);
  display: grid;
  gap: 0.4rem;
  color: rgba(232, 243, 229, 0.88);
}

.landing-tech__card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.landing-tech__note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.fleet-catalog {
  display: grid;
  gap: clamp(1.8rem, 3vw, 2.6rem);
}

.fleet-catalog__header {
  display: grid;
  gap: 0.65rem;
}

.fleet-catalog__description {
  margin: 0;
  max-width: 640px;
  color: rgba(232, 243, 229, 0.78);
}

.fleet-catalog__grid {
  display: grid;
  gap: clamp(1.2rem, 2.8vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.fleet-card {
  display: grid;
  background: var(--glass-bg);
  border: 0.5px solid var(--glass-border);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-glass), inset 0 0 0 0.5px rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(180%) blur(80px);
  -webkit-backdrop-filter: saturate(180%) blur(80px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fleet-card:hover,
.fleet-card:focus-within {
  transform: translateY(-3px);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-elevated), inset 0 0 0 0.5px rgba(255, 255, 255, 0.12);
}

.fleet-card__media {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 180px;
  border-bottom: 0.5px solid var(--glass-border);
}

.fleet-card__media img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
}

.fleet-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 1.35rem 1.4rem;
}

.fleet-card__title {
  margin: 0;
  font-size: 1.2rem;
}

.fleet-card__type {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.fleet-card__specs {
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.fleet-card__spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: baseline;
}

.fleet-card__spec dt {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.fleet-card__spec dd {
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.fleet-card__rate {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--nav-active-bg);
}

.fleet-card__note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.fleet-card__cta {
  justify-self: flex-start;
}

@media (max-width: 1024px) {
  .fleet-card__media {
    min-height: 170px;
  }
}

@media (max-width: 768px) {
  .fleet-catalog__header {
    text-align: center;
  }

  .fleet-catalog__description {
    justify-self: center;
  }

  .fleet-card__body {
    padding: 1.15rem 1.2rem 1.3rem;
  }
}

@media (max-width: 640px) {
  .fleet-card__media {
    min-height: 160px;
  }

  .fleet-card__media img {
    max-width: 200px;
  }
}

.landing-price {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.8rem, 3vw, 2.4rem);
}

.landing-price__table {
  display: grid;
  gap: 0.75rem;
}

.landing-price__table--grid {
  grid-template-columns: 60px 1fr 110px 160px;
  gap: 0.25rem;
  align-items: stretch;
}

.landing-price__header {
  padding: 0.75rem 0.9rem;
  background: rgba(26, 45, 35, 0.85);
  border: 1px solid rgba(124, 169, 130, 0.35);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 0.75rem 0.75rem 0 0;
}

.landing-price__cell {
  padding: 0.65rem 0.9rem;
  background: rgba(18, 28, 24, 0.6);
  border: 1px solid rgba(124, 169, 130, 0.22);
  color: rgba(232, 243, 229, 0.88);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
}

.landing-price__cell:nth-child(4n),
.landing-price__header:nth-child(4n) {
  justify-content: flex-end;
  color: var(--nav-active-bg);
  font-weight: 700;
}

.landing-price__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  background: rgba(18, 28, 24, 0.6);
  border: 1px solid rgba(124, 169, 130, 0.22);
}

.landing-price__row span {
  color: rgba(255, 255, 255, 0.9);
}

.landing-price__row strong {
  font-weight: 700;
  color: var(--nav-active-bg);
}

.landing-price__terms {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
  color: rgba(232, 243, 229, 0.78);
}

.landing-price__terms li {
  line-height: 1.5;
}

.landing-process {
  padding: clamp(1.8rem, 3vw, 2.4rem);
}

.landing-advantages {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.8rem, 3vw, 2.4rem);
}

.landing-advantages__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  color: #ffffff;
}

.landing-advantages__list li {
  position: relative;
  padding: 1rem 1.2rem 1rem 3.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  line-height: 1.5;
}

.landing-advantages__list li:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.12);
}

.landing-emoji {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.landing-faq {
  display: grid;
  gap: 0.6rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
}

.landing-steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  list-style: decimal;
}

.landing-faq details {
  border: 1px solid rgba(124, 169, 130, 0.3);
  border-radius: 0.9rem;
  background: rgba(18, 28, 24, 0.68);
  padding: 0.75rem 1rem;
}

.landing-faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-faq summary::after {
  content: "▾";
  font-size: 1rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.landing-faq details[open] summary::after {
  transform: rotate(180deg);
}

.landing-faq p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.landing-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  background: rgba(18, 28, 24, 0.82);
  border: 1px solid rgba(124, 169, 130, 0.28);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-glass);
}

.landing-form__note {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.landing-form__note a {
  color: var(--nav-active-bg);
}

.services-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.landing-seo {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .services-hero__layout {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2.75rem);
    text-align: left;
  }

  .services-hero__content {
    text-align: left;
    justify-items: stretch;
  }

  .services-hero__actions {
    justify-content: flex-start;
    width: 100%;
  }

  .services-hero__illustration {
    order: -1;
    display: flex;
    flex: 0 0 auto;
    width: min(360px, 80vw);
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }

  .services-hero__illustration--below {
    width: min(420px, 85vw);
    margin: clamp(1.25rem, 4vw, 2.5rem) auto 0;
  }

  .services-hero__illustration img {
    max-width: min(400px, 85vw);
    transform: translateY(0) scale(1.12);
  }

  .process-timeline__item {
    grid-template-columns: 1fr;
  }

  .process-timeline__icon {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .hero-slider__viewport {
    min-height: clamp(200px, 58vw, 320px);
  }

  .hero-slider__item {
    align-items: center;
  }

  .hero-slider__image,
  .services-hero__illustration img {
    transform: translateY(0) scale(1.18);
  }
}

@media (max-width: 480px) {
  .hero-slider__image,
  .services-hero__illustration img {
    transform: translateY(0) scale(1.24);
  }
}

@media (max-width: 640px) {
  .price-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

  .landing-price {
    padding: 1.5rem 1rem;
  }

  .landing-price__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-checklist {
    grid-template-columns: 1fr;
  }

  .landing-price__table {
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .landing-price__table--grid {
    grid-template-columns: 56px minmax(220px, 1fr) minmax(90px, 110px) minmax(120px, 150px);
    width: max-content;
    min-width: 520px;
  }

  .landing-price__header,
  .landing-price__cell {
    padding: 0.6rem 0.75rem;
  }

  .section__header {
    text-align: left;
    justify-items: flex-start;
  }

  .section__header .section__eyebrow {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .services-benefits {
    grid-template-columns: 1fr;
  }

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

  .landing-tech__grid {
    grid-template-columns: 1fr;
  }

  .landing-price__table {
    margin: 0 -0.25rem;
  }

  .landing-price__table--grid {
    grid-template-columns: 52px minmax(200px, 1fr) minmax(80px, 100px) minmax(110px, 130px);
    min-width: 470px;
  }
}

/* Кнопка Telegram */
.btn-telegram {
  background: #0088cc !important;
  color: white !important;
  border: 2px solid #0088cc !important;
  box-shadow: 0 2px 10px 0 rgba(0, 136, 204, 0.3), 0 1.5px 8px rgba(0, 0, 0, 0.1) !important;
}

.btn-telegram:hover {
  background: #0077b3 !important;
  border-color: #0077b3 !important;
  transform: scale(1.051);
  box-shadow: 0 8px 26px 0 rgba(0, 136, 204, 0.4), 0 2px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Кнопка WhatsApp */
.btn-whatsapp {
  background: #25d366 !important;
  color: white !important;
  border: 2px solid #25d366 !important;
  box-shadow: 0 2px 10px 0 rgba(37, 211, 102, 0.3), 0 1.5px 8px rgba(0, 0, 0, 0.1) !important;
}

.btn-whatsapp:hover {
  background: #20ba5a !important;
  border-color: #20ba5a !important;
  transform: scale(1.051);
  box-shadow: 0 8px 26px 0 rgba(37, 211, 102, 0.4), 0 2px 12px rgba(0, 0, 0, 0.1) !important;
}

.btn::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 160%;
  height: 180%;
  background: radial-gradient(circle at 50% 30%, #b4e19766 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.32s;
  z-index: 2;
  pointer-events: none;
}

.btn:hover::before,
.btn:focus::before {
  opacity: 1;
}
.btn:hover, .btn:focus {
  background: linear-gradient(135deg, #8fba97 0%, #7ca982 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 24px rgba(124, 169, 130, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff !important;
}

.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 2px 8px rgba(124, 169, 130, 0.3),
    0 1px 4px rgba(0, 0, 0, 0.15);
}
.btn.active, .btn[aria-current="page"] {
  background: #7ca982 !important;
  color: #f1f7ed !important;
  box-shadow: 0 0 18px 0 #b4e197aa, 0 0 8px #7ca982;
  font-weight: 900;
  border-radius: 12px;
  outline: 2px solid #b4e19755;
  outline-offset: 1.5px;
  z-index: 2;
}

/* Адаптация кнопок для мобильных */
@media (max-width: 900px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    min-height: 38px;
    border-radius: 8px;
  }
}

/* ---------- Hero-section ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  padding: 2rem;
  color: #f1f7ed;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(36, 62, 54, 0.5);
  backdrop-filter: blur(4px);
  z-index: 0;
  border-radius: 12px;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  max-width: 700px;
}

/* Мобильная адаптация для hero-section */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 1.5rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
    padding: 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}


/* ---------- Contacts page styles ---------- */
.contact-page {
  background-color: #1B3A1B;
  min-height: 100vh;
  padding: 3rem 1rem;
  color: #f1f7ed;
}

.contact-form {
  background: rgba(241, 247, 237, 0.85);
  border: 1px solid rgba(124, 169, 130, 0.5);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  color: #243e36;
}

/* Мобильная адаптация для contact-page */
@media (max-width: 768px) {
  .contact-page {
    padding: 2rem 0.5rem;
  }
  .contact-form {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .contact-page {
    padding: 1.5rem 0.25rem;
  }
  .contact-form {
    padding: 1rem;
    margin: 0 0.25rem;
  }
}

/* Контактные блоки и форма обратного звонка */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appleGlassReveal {
  from {
    opacity: 0;
    transform: translateY(15px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-slide-in {
  animation: slideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Убираем все анимации появления - элементы видны сразу */
.home-fact {
  /* Анимации отключены */
}

.service-card {
  /* Анимации отключены */
}

.home-direction-card,
.feature-card,
.section__title,
.home-summary {
  /* Анимации отключены */
}

.contact-info-block {
  margin: 2.5rem auto;
  max-width: 880px;
  background: var(--glass-bg);
  border-radius: 24px;
  border: 1.5px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(36, 62, 54, 0.15);
  padding: 2.7rem 2.5rem 2.2rem 2.5rem;
  color: var(--text-color);
}

.contact-info-block h3 {
  margin: 0 0 1.7rem 0;
  font-size: 2.3rem;
  color: var(--text-color);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

.contact-info-grid > div {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.5rem 2.1rem 1.5rem 1.3rem;
  transition: background 0.18s;
  box-shadow: 0 2px 18px rgba(36, 62, 54, 0.07);
  min-width: 0;
  flex-wrap: wrap;
}

.contact-info-grid > div:hover {
  background: rgba(124, 169, 130, 0.13);
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 8px #7ca98233);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 1.17rem;
  font-weight: 600;
  min-width: 88px;
  color: var(--nav-active-bg);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.contact-info-value {
  font-size: 1.13rem;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  background: rgba(124, 169, 130, 0.1);
  padding: 0.36em 0.9em;
  border-radius: 8px;
  margin-left: 0.2em;
  transition: background 0.2s, color 0.2s;
  white-space: normal;
  flex: 1 1 auto;
  display: inline-block;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-info-value.time {
  background: rgba(231, 213, 104, 0.2);
  color: #715a00;
}

.contact-info-value:hover {
  background: var(--nav-active-bg);
  color: #fff;
  text-decoration: underline;
}

.input {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: #243e36;
}

@media (max-width: 900px) {
  .contact-info-block {
    padding: 1.4rem 0.6rem 1.4rem 0.6rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .contact-info-block h3 {
    font-size: 1.3rem;
  }

  .contact-info-icon {
    width: 29px;
    height: 29px;
  }
}

.form-icon,
.field-icon,
.btn-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.6rem;
  vertical-align: middle;
  transition: all 0.3s ease;
  opacity: 0.8;
  position: relative;
}

.form-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: pulse-subtle 3s ease-in-out infinite;
}

.field-icon:hover,
.btn-icon:hover {
  transform: scale(1.1);
  opacity: 1;
}

.icon-user::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--nav-active-bg);
  border-radius: 50%;
  top: 2px;
  left: 6px;
}

.icon-user::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  background: var(--nav-active-bg);
  border-radius: 8px 8px 0 0;
  bottom: 2px;
  left: 2px;
}

.icon-phone::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 18px;
  background: var(--nav-active-bg);
  border-radius: 3px;
  top: 1px;
  left: 4px;
}

.icon-phone::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
  top: 15px;
  left: 6px;
}

.icon-phone-callback::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--nav-active-bg), #a4c2ab);
  border-radius: 50%;
  top: 2px;
  left: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.icon-phone-callback::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  top: 6px;
  left: 6px;
}

.icon-clock::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--nav-active-bg);
  border-radius: 50%;
  top: 2px;
  left: 2px;
}

.icon-clock::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 6px;
  background: var(--nav-active-bg);
  top: 5px;
  left: 9px;
  transform-origin: bottom;
  border-radius: 1px;
  box-shadow: 4px 2px 0 0 #a4c2ab;
}

.icon-calendar::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 16px;
  background: var(--nav-active-bg);
  border-radius: 2px;
  top: 2px;
  left: 3px;
}

.icon-calendar::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  top: 8px;
  left: 5px;
  box-shadow: 0 3px 0 rgba(255, 255, 255, 0.9), 0 6px 0 rgba(255, 255, 255, 0.9);
}

.icon-shield::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 16px;
  background: linear-gradient(to bottom, var(--nav-active-bg), #a4c2ab);
  border-radius: 6px 6px 0 6px;
  top: 2px;
  left: 4px;
}

.icon-phone-call::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 18px;
  background: var(--nav-active-bg);
  border-radius: 3px;
  top: 1px;
  left: 4px;
  transform: rotate(-15deg);
}

.icon-phone-call::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid #a4c2ab;
  border-radius: 50%;
  top: 0;
  left: 14px;
  box-shadow: 4px -2px 0 -1px #a4c2ab, 6px -4px 0 -2px #a4c2ab;
}

#callback-form-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  accent-color: var(--nav-active-bg);
}

#callback-form-wrapper .btn {
  background: linear-gradient(135deg, var(--nav-active-bg), #6d9474) !important;
  border: none !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 1rem 2rem !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(139, 184, 146, 0.3) !important;
  cursor: pointer !important;
}

#callback-form-wrapper .btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(139, 184, 146, 0.4) !important;
  background: linear-gradient(135deg, #6d9474, var(--nav-active-bg)) !important;
}

#callback-form-wrapper .btn:hover .btn-icon {
  transform: scale(1.2) rotate(5deg);
}

#callback-form-wrapper .btn:active {
  transform: translateY(0) !important;
}

@keyframes pulse-subtle {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* ---------- Фиксированная панель с контактами ---------- */
.contact-static-icons {
  position: fixed;
  top: 50%;
  right: clamp(1.25rem, 4vw, 2.5rem);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  z-index: 1040;
}

.contact-static-icons a {
  position: relative;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(124, 169, 130, 0.24), rgba(76, 121, 88, 0.18));
  border: 1px solid rgba(124, 169, 130, 0.4);
  box-shadow: 0 10px 24px rgba(6, 14, 9, 0.45);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-static-icons a:hover,
.contact-static-icons a:focus-visible {
  border-color: rgba(164, 194, 171, 0.75);
  box-shadow: 0 18px 32px rgba(8, 20, 12, 0.55);
  transform: translateY(-3px);
}

.contact-static-icons a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 80% 15%, rgba(232, 243, 229, 0.32), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.contact-static-icons a:hover::before,
.contact-static-icons a:focus-visible::before {
  opacity: 0.85;
}

.contact-static-icons img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

#callback-indicator {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
}

#callback-indicator.htmx-request {
  display: flex;
}

#callback-indicator > div {
  width: 72px;
  height: 72px;
  border: 8px solid #f3f3f3;
  border-top: 8px solid #7ca982;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@media (max-width: 1080px) {
  .contact-static-icons {
    right: 1.1rem;
  }
}

@media (max-width: 768px) {
  .contact-static-icons {
    top: auto;
    bottom: calc(env(safe-area-inset-bottom) + 6rem);
    transform: none;
    right: clamp(0.75rem, 5vw, 1.5rem);
    gap: 0.75rem;
  }
}

@media (max-width: 540px) {
  .contact-static-icons {
    bottom: calc(env(safe-area-inset-bottom) + 5.5rem);
    right: clamp(0.75rem, 6vw, 1.25rem);
  }

  .contact-static-icons a {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .contact-static-icons img {
    width: 24px;
    height: 24px;
  }
}

/* Кнопка «Наверх» */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  right: auto;
  width: 3.1rem;
  height: 3.1rem;
  background: rgba(18, 28, 24, 0.82);
  border: 1px solid rgba(124, 169, 130, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease;
  z-index: 1100;
  backdrop-filter: blur(8px);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(124, 169, 130, 0.28);
  transform: translateY(-3px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 540px) {
  .back-to-top {
    bottom: 1rem;
    left: 1rem;
    right: auto;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.05rem;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 120%);
  width: min(90vw, 480px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  background: rgba(18, 28, 24, 0.85);
  border: 1px solid rgba(124, 169, 130, 0.4);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
  color: var(--text-color);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner a {
  color: var(--nav-active-bg);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.is-hidden {
  display: none;
}

@media (max-width: 520px) {
  .cookie-banner {
    bottom: 1rem;
    width: calc(100vw - 1.5rem);
    padding: 1rem 1.1rem;
  }
}

@keyframes spin{to{transform:rotate(360deg);}}
.htmx-indicator{display:none;}
.htmx-indicator.htmx-request{display:flex;}   /* HTMX сам добавляет .htmx-request */
.toast{
  position:fixed; top:50%; left:50%; transform:translate(-50%,-50%) scale(.9);
  padding:1.2rem 2rem; background:var(--glass-bg); border:1px solid var(--glass-border);
  border-radius:16px; font-size:1.15rem; color:var(--text-color); z-index:1100;
  box-shadow:0 8px 24px rgba(0,0,0,.18); opacity:0; transition:all .35s ease;
}
.toast.show{opacity:1; transform:translate(-50%,-50%) scale(1);}

/* Мобильная адаптация для toast */
@media (max-width: 480px) {
  .toast {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    margin: 0 1rem;
    max-width: calc(100vw - 2rem);
  }
}

/* Дополнительные мобильные улучшения */
@media (max-width: 768px) {
  .site-main {
    padding: 2rem 1rem !important;
  }

  /* Улучшение читаемости текста на мобильных */
  p {
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  /* Оптимизация отступов */
  section {
    margin-bottom: 2rem;
  }
  
  /* Улучшение сеток для мобильных */
  .grid-container {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

@media (max-width: 480px) {
  .site-main {
    padding: 1.5rem 0.75rem !important;
  }
  
  section {
    margin-bottom: 1.5rem;
  }
  
  /* Уменьшение отступов для очень маленьких экранов */
  .glass {
    margin: 0.25rem;
    padding: 0.75rem;
  }
}

/* Дополнительные улучшения для мобильных форм */
@media screen and (max-width: 480px) {
  /* Улучшаем доступность форм на мобильных */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="datetime-local"],
  select,
  textarea {
    font-size: 16px !important; /* Предотвращает зум на iOS */
    padding: 14px !important;
    border-radius: 8px !important;
    border: 2px solid var(--glass-border) !important;
  }
  
  /* Улучшаем фокус для форм */
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="datetime-local"]:focus,
  select:focus,
  textarea:focus {
    outline: none !important;
    border-color: var(--nav-active-bg) !important;
    box-shadow:
      0 0 0 3px rgba(124, 169, 130, 0.25) !important,
      0 4px 12px rgba(124, 169, 130, 0.15) !important,
      inset 0 1px 2px rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-1px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Улучшаем кнопки отправки форм */
  input[type="submit"],
  button[type="submit"] {
    min-height: 48px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
  }
}

         /* Улучшения для страницы "О нас" */
         @media (max-width: 768px) {
           /* Улучшаем отображение информации о компании */
           .glass h2,
           .glass h3 {
             text-align: center;
             margin-bottom: 1rem;
           }

           .glass p,
           .glass ul {
             text-align: left;
             line-height: 1.6;
           }

           .glass li {
             margin-bottom: 0.5rem;
           }

           /* Улучшаем отображение форм сотрудничества */
           #cooperation .glass > div {
             flex-direction: column;
             gap: 1rem;
           }

           #cooperation .glass > div > div {
             flex: 1 1 100% !important;
             min-width: 100% !important;
           }

           /* Улучшаем отображение карты */
           #map {
             height: 350px !important;
           }
         }



@media (max-width: 480px) {
  /* Дополнительные улучшения для очень маленьких экранов */
  .glass h2 {
    font-size: 1.25rem !important;
  }
  
  .glass h3 {
    font-size: 1.1rem !important;
  }
  
  .glass p,
  .glass li {
    font-size: 0.9rem !important;
  }
  
  #map {
    height: 300px !important;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 4rem;
  background: rgba(18, 28, 24, 0.82);
  border-top: 1px solid rgba(124, 169, 130, 0.32);
  color: var(--text-color);
}

.site-footer__content {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding: 3rem 0 2.5rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 320px;
}

.site-footer__logo {
  width: 140px;
  height: auto;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: rgba(232, 243, 229, 0.7);
}

.site-footer__column h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: var(--nav-active-bg);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact__tagline {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 243, 229, 0.68);
}

.footer-contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact__phone::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nav-active-bg);
}

.footer-contact__phone:hover,
.footer-contact__phone:focus-visible {
  color: var(--nav-active-bg);
}

.footer-contact__email {
  color: rgba(232, 243, 229, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-contact__email:hover,
.footer-contact__email:focus-visible {
  color: var(--nav-active-bg);
}

.footer-contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-contact__cta .btn {
  min-width: 130px;
}

.footer-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--nav-active-bg);
  text-decoration: none;
}

.footer-contact__link::after {
  content: "→";
  font-size: 0.9em;
}

.footer-contact__link:hover,
.footer-contact__link:focus-visible {
  color: rgba(164, 194, 171, 0.95);
}

.site-footer__legal {
  border-top: 1px solid rgba(124, 169, 130, 0.22);
  font-size: 0.85rem;
  color: rgba(232, 243, 229, 0.72);
  padding: 1.25rem 0 1.85rem;
}

.site-footer__legal p {
  margin: 0;
}

@media (max-width: 960px) {
  .site-footer__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .site-footer__brand {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .site-footer__content {
    grid-template-columns: 1fr;
  }
}

.services-hero__media--pit {
  --services-hero-gradient: linear-gradient(155deg, rgba(18, 28, 24, 0.85), rgba(18, 28, 24, 0.55));
}

.landing-checklist--bullets li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nav-active-bg);
  top: 0.4rem;
}

.services-hero__media--demo {
  --services-hero-gradient: linear-gradient(155deg, rgba(18, 28, 24, 0.85), rgba(18, 28, 24, 0.5));
}
.landing-checklist--bullets li {
  padding-left: 1.4rem;
}

/* ---------- About page ---------- */
.about-card {
  display: grid;
  gap: 1.75rem;
}

.about-title {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-color);
}

.about-subtitle {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.about-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.about-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(164, 194, 171, 0.9);
  font-weight: 600;
}

.about-suppliers {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-suppliers__item {
  padding: 1.2rem 1.4rem;
  border-radius: 0.9rem;
  background: rgba(26, 45, 35, 0.65);
  border: 1px solid rgba(124, 169, 130, 0.28);
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-docs {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.about-docs a {
  color: var(--nav-active-bg);
}

.about-region {
  display: grid;
  gap: 1rem;
}

.about-region__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-region__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(124, 169, 130, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.about-region__map {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(124, 169, 130, 0.3);
  box-shadow: var(--shadow-glass);
}

.about-region__map img {
  width: 100%;
  height: auto;
  display: block;
}


/* ---------- Home page redesign ---------- */
.home-hero {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  min-height: 100vh;
  min-height: min(100vh, 960px);
  isolation: isolate;
  position: relative;
  z-index: 2;
  --hero-slide-zoom-scale: 1.08;
  --hero-slide-fade-duration: 1700ms;
}

body.page-home .home-hero {
  padding-top: clamp(7rem, 10vw, 9rem);
}

.home-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

body.page-home .home-hero__backdrop,
body.page-home .services-hero__media,
body.page-home .services-hero::after {
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 90%,
    rgba(0, 0, 0, 0.8) 94%,
    rgba(0, 0, 0, 0.5) 97%,
    rgba(0, 0, 0, 0.2) 99%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 90%,
    rgba(0, 0, 0, 0.8) 94%,
    rgba(0, 0, 0, 0.5) 97%,
    rgba(0, 0, 0, 0.2) 99%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

body.page-home .home-hero__backdrop::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: clamp(1.2rem, 2.2vw, 1.8rem);
  background: linear-gradient(
    180deg,
    rgba(12, 22, 18, 0) 0%,
    rgba(12, 22, 18, 0.18) 55%,
    rgba(12, 22, 18, 0.32) 100%
  );
  filter: blur(8px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
}

.home-hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.45s ease;
  background-color: #0b1511;
  background-image: var(--home-hero-backdrop-image, var(--home-hero-first-image));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home-hero__webgl {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.home-hero__webgl canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero__slider.has-webgl .home-hero__webgl {
  opacity: 1;
}

.home-hero__slider.has-webgl .home-hero__slide {
  opacity: 0 !important;
  visibility: hidden !important;
}

.home-hero__slider::before,
.home-hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.home-hero__slider::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(circle at 80% 25%, rgba(255, 190, 120, 0.18), transparent 50%),
    linear-gradient(135deg, rgba(4, 11, 9, 0.85), rgba(10, 26, 22, 0.35));
  mix-blend-mode: screen;
}

.home-hero__slider::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' fill='rgba(0,0,0,0)'/%3E%3Cg fill='rgba(255,255,255,0.05)'%3E%3Ccircle cx='10' cy='10' r='1.2'/%3E%3Ccircle cx='80' cy='40' r='0.9'/%3E%3Ccircle cx='140' cy='120' r='0.8'/%3E%3Ccircle cx='20' cy='110' r='0.7'/%3E%3Ccircle cx='120' cy='50' r='1.1'/%3E%3Ccircle cx='60' cy='140' r='0.6'/%3C/g%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.35;
}

.home-hero__slider.is-ready::before {
  opacity: 0.8;
}

.home-hero__slider.is-ready::after {
  opacity: 0.45;
}

.home-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.24), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(255, 179, 0, 0.35), transparent 55%),
    radial-gradient(circle at 60% 80%, rgba(58, 104, 255, 0.15), transparent 60%),
    linear-gradient(135deg, rgba(6, 18, 14, 0.9), rgba(8, 12, 11, 0.4) 55%, rgba(12, 28, 24, 0.3));
  pointer-events: none;
  opacity: 0.78;
  mix-blend-mode: screen;
  filter: blur(4px);
  z-index: 2;
}

.home-hero__slider.is-ready {
  opacity: 1;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--home-hero-fade-duration, 1800ms) cubic-bezier(0.38, 0, 0.25, 1),
    visibility 0s linear var(--home-hero-fade-duration, 1800ms);
  will-change: opacity, visibility;
}

.home-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--hero-slide-zoom-scale, 1.04));
  transition: transform 28s ease-out, filter 3s ease;
  filter: saturate(0.9);
}

.home-hero__slider[data-slide-count="1"] .home-hero__slide {
  opacity: 1;
  visibility: visible;
  position: relative;
  transition: none;
}

.home-hero__slider[data-slide-count="1"] .home-hero__slide:not(:first-child) {
  display: none;
}

.home-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition:
    opacity var(--home-hero-fade-duration, 1800ms) cubic-bezier(0.38, 0, 0.25, 1),
    visibility 0s linear;
}

.home-hero__slide.is-leaving {
  opacity: 0;
  visibility: visible;
  z-index: 1;
  pointer-events: none;
}

.home-hero__slide.is-active img {
  transform: scale(1);
  filter: saturate(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__slide {
    transition-duration: 1200ms !important;
    transform: none !important;
    filter: none !important;
  }

  .home-hero__slide img {
    transform: none !important;
    transition: none !important;
    filter: none !important;
  }
}

.home-hero .services-hero__layout {
  justify-content: space-between;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}

.home-hero .services-hero__illustration {
  flex: 0 1 clamp(260px, 32vw, 420px);
  max-width: 420px;
}

.home-hero .services-hero__content {
  width: min(720px, 100%);
  display: grid;
  gap: 1.4rem;
}

.home-hero__form-pane {
  flex: 0 1 clamp(220px, 24vw, 300px);
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 5vw, 3.5rem);
  margin-left: clamp(1.25rem, 3vw, 2.5rem);
}

.home-hero__form-pane #callback-form-wrapper {
  width: 100%;
  max-width: 300px;
}

.home-hero__form-pane form {
  width: 100%;
  max-width: 300px;
  margin: 0 !important;
  padding: 0.85rem 1rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(14, 30, 25, 0.35);
  box-shadow: 0 30px 60px rgba(5, 11, 9, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(28px);
  color: #f9fffb;
}

.home-hero__form-pane .input {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
}

.home-hero__form-pane .input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Премиальный стиль для формы обратного звонка */
.callback-form--premium {
  background: linear-gradient(
    180deg,
    rgba(18, 28, 24, 0) 0%,
    rgba(18, 28, 24, 0.65) 15%,
    rgba(18, 28, 24, 0.78) 30%,
    rgba(18, 28, 24, 0.78) 70%,
    rgba(18, 28, 24, 0.65) 85%,
    rgba(18, 28, 24, 0) 100%
  ) !important;
  position: relative;
  overflow: visible;
}

/* Декоративные светящиеся линии сверху и снизу */
.callback-form--premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.2) 80%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 1;
}

.callback-form--premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.2) 80%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 1;
}

.callback-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.callback-form .form-field--dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.callback-form .form-subfield {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.home-hero__form-pane .callback-form .lbl {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 2px rgba(1, 4, 3, 0.45);
}

.home-hero__form-pane .form-note,
.home-hero__form-pane .helper-text,
.home-hero__form-pane .callback-form p {
  color: rgba(255, 255, 255, 0.75);
}

#rental-hero .services-hero__illustration {
  flex: 0 1 clamp(260px, 32vw, 420px);
  max-width: 420px;
}

body.page-rental #rental-hero {
  padding-top: clamp(8rem, 12vw, 11rem);
}

#rental-hero .services-hero__layout {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

#rental-hero .hero-slider__viewport {
  min-height: clamp(240px, 32vw, 360px);
}

#rental-hero .hero-slider__image {
  transform: translateY(0) scale(1.12);
}

#rental-hero .hero-slider__control {
  margin-top: 0;
}

.home-hero .services-hero__actions {
  gap: 0.8rem;
}

.home-hero .services-hero__lead {
  color: rgba(255, 255, 255, 0.9);
}

.home-hero__tagline {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-summary {
  display: grid;
  gap: 1.6rem;
  margin-top: -2rem;
}

.home-summary__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.home-facts {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.home-fact {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2rem 2.25rem;
  border-radius: 1.5rem;
  /* ЧИСТОЕ прозрачное Apple Glass БЕЗ желтизны */
  background: var(--glass-bg);
  border: 0.5px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    var(--shadow-glass),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.12);
  backdrop-filter: saturate(180%) blur(80px);
  -webkit-backdrop-filter: saturate(180%) blur(80px);
}

.home-fact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.home-fact:hover {
  transform: translateY(-3px);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow:
    var(--shadow-elevated),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.18);
}

.home-fact:hover::before {
  opacity: 1;
  transform: translate(-25%, -25%);
}

.home-fact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.15),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

/* Декоративное свечение в иконке */
.home-fact__icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.home-fact:hover .home-fact__icon {
  transform: scale(1.08) rotate(2deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.15);
}

.home-fact:hover .home-fact__icon::before {
  opacity: 1;
}

.home-fact__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(1.2) drop-shadow(0 2px 12px rgba(255, 255, 255, 0.3));
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.home-fact:hover .home-fact__icon img {
  filter: brightness(1.4) drop-shadow(0 4px 16px rgba(255, 255, 255, 0.4));
  transform: scale(1.05);
}

.home-fact__content {
  display: grid;
  gap: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.home-fact__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  word-wrap: break-word;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-fact__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  word-wrap: break-word;
}

.home-directions {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.home-direction-card {
  /* ЧИСТОЕ прозрачное Apple Glass для карточек услуг */
  background: var(--glass-bg);
  border: 0.5px solid var(--glass-border);
  border-radius: 1.5rem;
  padding: 2rem 2.2rem;
  display: grid;
  gap: 0.9rem;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    var(--shadow-glass),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.12);
  backdrop-filter: saturate(180%) blur(80px);
  -webkit-backdrop-filter: saturate(180%) blur(80px);
}

.home-direction-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-direction-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.home-direction-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
  box-shadow:
    var(--shadow-elevated),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.18);
}

.home-direction-card:hover::before {
  transform: scaleX(1);
}

.home-direction-card:hover::after {
  opacity: 1;
  transform: translate(-25%, -25%);
}

.home-direction-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

.home-directions__cta {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
}

.home-fleet {
  display: grid;
  gap: 1rem;
}

.home-fleet__grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  color: rgba(255, 255, 255, 0.85);
}

.home-fleet__link {
  margin-top: 1.2rem;
  align-self: start;
}

.home-equipment ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.85);
}

.home-equipment__note {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.coverage-card {
  display: grid;
  gap: 1.2rem;
}

.coverage-card__regions {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  display: grid;
  gap: 0.35rem;
  color: rgba(232, 243, 229, 0.88);
}

.coverage-card__note {
  margin: 0;
  display: grid;
  gap: 0.3rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 720px) {
  .coverage-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    align-items: start;
  }

  .coverage-card__regions {
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.2rem;
  }

  .coverage-card__note {
    grid-column: 2;
    margin-top: 0.6rem;
  }
}

.home-portfolio {
  display: grid;
  gap: 1.5rem;
}

.home-portfolio__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.home-portfolio__grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.home-portfolio__card {
  background: rgba(26, 45, 35, 0.68);
  border: 1px solid rgba(124, 169, 130, 0.26);
  border-radius: 1rem;
  overflow: hidden;
  display: grid;
  gap: 0.6rem;
}

.home-portfolio__card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.home-portfolio__card h3 {
  margin: 0 1.1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.home-portfolio__card p {
  margin: 0 1.1rem 1.2rem;
  color: rgba(232, 243, 229, 0.78);
}

.home-contact {
  display: flex;
  justify-content: center;
}

.home-contact__card {
  width: min(100%, 720px);
}

.home-contact__links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.home-contact__links a {
  color: var(--nav-active-bg);
  text-decoration: none;
}

.home-seo {
  padding-bottom: 4rem;
}

.estimate-hero__aside {
  flex: 0 1 clamp(260px, 32vw, 420px);
  display: grid;
  gap: 0.65rem;
  align-self: stretch;
  background: rgba(18, 28, 24, 0.8);
  border: 1px solid rgba(124, 169, 130, 0.35);
  box-shadow: var(--shadow-glass);
}

.estimate-hero__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 243, 229, 0.7);
}

.estimate-hero__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.estimate-hero__note {
  margin: 0.35rem 0 0;
  color: rgba(232, 243, 229, 0.76);
  font-size: 0.95rem;
}

.estimate-intro {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.estimate-intro__text {
  display: grid;
  gap: 0.6rem;
}

.estimate-highlights {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.estimate-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(18, 28, 24, 0.72);
  border: 1px solid rgba(124, 169, 130, 0.28);
}

.estimate-highlight__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(124, 169, 130, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.estimate-highlight h3 {
  margin: 0 0 0.2rem;
}

.estimate-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.estimate-form-card {
  padding: clamp(0.5rem, 1.2vw, 0.9rem);
}

.estimate-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 900px) {
  #estimate-hero .services-hero__layout {
    flex-wrap: wrap;
  }

  .estimate-hero__aside {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .home-hero .services-hero__layout {
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-hero .services-hero__content {
    text-align: center;
    justify-items: center;
  }

  .home-hero .services-hero__actions {
    justify-content: center;
  }

  .home-hero__tagline {
    text-align: center;
  }

  .home-hero .services-hero__illustration {
    margin: 1.5rem auto 0;
    max-width: 320px;
  }

  .home-hero__form-pane {
    margin: 1.5rem auto 0;
    max-width: 520px;
    margin-left: 0;
  }

  .callback-form .form-field--dual {
    grid-template-columns: 1fr;
  }

  #rental-hero .services-hero__layout {
    flex-wrap: wrap;
    justify-content: center;
  }

  #rental-hero .services-hero__illustration {
    margin: 1.5rem auto 0;
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding-bottom: 3rem;
  }

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

  .home-fact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-fact__icon {
    margin: 0 auto 0.5rem;
  }

  .home-portfolio__card img {
    height: 200px;
  }
}
