/* ============================================================
   ЭКОСФЕРА — элитный клининг в Гюмри
   Дизайн-система v0.1
   Тёплая, светлая, чистая палитра. Мягкие сине-зелёные пастельные тона.
   ============================================================ */

:root {
  /* Палитра — мягкие сине-зелёные пастельные тона */
  --mint-50:  #f2faf7;
  --mint-100: #e0f3ec;
  --mint-200: #c2e6d9;
  --mint-300: #9ad4c0;
  --mint-400: #6fbfa4;
  --mint-500: #4da88a;
  --mint-600: #3a8a70;
  --mint-700: #2f6f5b;
  --mint-800: #285a4b;
  --mint-900: #224a3f;

  --teal-50:  #eefbfa;
  --teal-100: #d3f2f0;
  --teal-200: #a8e4e2;
  --teal-300: #74d0cf;
  --teal-400: #47b5b5;
  --teal-500: #2e9a9b;
  --teal-600: #257c7e;
  --teal-700: #226466;
  --teal-800: #205153;
  --teal-900: #1e4446;

  --sky-50:  #f0f7fb;
  --sky-100: #dcecf5;
  --sky-200: #bcd9ea;
  --sky-300: #8fbdd8;
  --sky-400: #5c9cc2;
  --sky-500: #3b80a9;
  --sky-600: #2d678c;
  --sky-700: #275472;
  --sky-800: #24475f;
  --sky-900: #213c50;

  /* Нейтральные — тёплые, светлые */
  --sand-50:  #fbfaf7;
  --sand-100: #f5f2ea;
  --sand-200: #e9e3d5;
  --sand-300: #d8cfba;
  --ink-900:  #1c2b2a;
  --ink-700:  #3a4a48;
  --ink-500:  #5c6b69;
  --ink-300:  #8a9694;

  /* Акцент — тёплый, для CTA */
  --amber-400: #f0b45c;
  --amber-500: #e89b3c;
  --amber-600: #d9822a;

  /* Семантические */
  --white: #ffffff;
  --success: #3a8a70;
  --warning: #d9822a;
  --danger:  #c05b4d;

  /* Типографика */
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  /* Радиусы */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  /* Тени */
  --shadow-sm: 0 2px 8px rgba(34, 74, 63, 0.06);
  --shadow-md: 0 8px 24px rgba(34, 74, 63, 0.08);
  --shadow-lg: 0 16px 48px rgba(34, 74, 63, 0.12);
  --shadow-glow: 0 0 0 4px rgba(77, 168, 138, 0.12);

  /* Переходы */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.4s;
}

/* ============================================================
   Базовые стили
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--sand-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal-600);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover {
  color: var(--teal-700);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--tight {
  padding: 64px 0;
}

.section--alt {
  background: var(--white);
}

.section--mint {
  background: linear-gradient(180deg, var(--mint-50), var(--teal-50));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  background: var(--teal-50);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--ink-500);
  max-width: 640px;
  line-height: 1.6;
}

.section-head {
  width: 100%;
  margin-bottom: 56px;
  background: linear-gradient(135deg, var(--teal-600), var(--mint-500));
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-head .section-title {
  color: var(--white);
}

.section-head .section-sub {
  color: rgba(255, 255, 255, 0.85);
}

.section-head .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.section-head .eyebrow::before {
  background: var(--white);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Кнопки
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 124, 126, 0.28);
}

.btn--primary:hover {
  background: var(--teal-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 124, 126, 0.34);
}

.btn--accent {
  background: var(--amber-500);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232, 155, 60, 0.3);
}

.btn--accent:hover {
  background: var(--amber-600);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--teal-700);
  border: 2px solid var(--teal-200);
}

.btn--ghost:hover {
  border-color: var(--teal-400);
  color: var(--teal-700);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--teal-700);
  box-shadow: 0 8px 24px rgba(34, 74, 63, 0.12);
}

.btn--white:hover {
  transform: translateY(-2px);
  color: var(--teal-700);
}

.btn--lg {
  padding: 20px 36px;
  font-size: 17px;
}

.btn--block {
  width: 100%;
}

/* ============================================================
   Шапка
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34, 74, 63, 0.06);
  transition: box-shadow var(--dur) var(--ease);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-500), var(--mint-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(37, 124, 126, 0.25);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.logo__tag {
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
  transition: width var(--dur) var(--ease);
}

.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  font-weight: 700;
  color: var(--ink-900);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header__phone .phone-icon {
  color: var(--teal-600);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--sand-100);
  border-radius: var(--radius-full);
  padding: 4px;
}

.lang-switch__btn {
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-500);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.lang-switch__btn--active {
  background: var(--white);
  color: var(--teal-700);
  box-shadow: var(--shadow-sm);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger__line {
  width: 24px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

/* ============================================================
   Герой
   ============================================================ */

.hero {
  position: relative;
  padding: 160px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(116, 208, 207, 0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(154, 212, 192, 0.16), transparent 55%),
    var(--sand-50);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  margin-bottom: 24px;
}

.hero__title .accent {
  color: var(--teal-600);
  position: relative;
  white-space: nowrap;
}

.hero__title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: var(--mint-200);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.6;
}

.hero__sub {
  font-size: 19px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 600;
}

.trust-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--mint-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  font-size: 17px;
}

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

.hero__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(34, 74, 63, 0.06);
  position: relative;
}

.hero__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--mint-200), var(--teal-200), var(--sky-200));
  z-index: -1;
  opacity: 0.5;
  filter: blur(20px);
}

.hero__card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.hero__card-sub {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 24px;
}

.hero__card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-700);
}

.hero__card-item .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.hero__badge {
  position: absolute;
  top: -20px;
  right: -16px;
  background: var(--amber-500);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(232, 155, 60, 0.35);
  transform: rotate(3deg);
}

/* ============================================================
   Статистика
   ============================================================ */

.stats {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: -48px;
  position: relative;
  z-index: 5;
}

.stat {
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--teal-600);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 600;
}

.stat--tooltip {
  position: relative;
  cursor: help;
}

.stat__tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 260px;
  background: var(--ink-900, #0f172a);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stat__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--ink-900, #0f172a);
}

.stat--tooltip:hover .stat__tooltip,
.stat--tooltip:focus-within .stat__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   Услуги / Пакеты
   ============================================================ */

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(34, 74, 63, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.package:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package--featured {
  border: 2px solid var(--teal-400);
  box-shadow: 0 12px 40px rgba(37, 124, 126, 0.14);
}

.package--featured::before {
  content: "Популярный";
  position: absolute;
  top: 20px;
  right: -32px;
  background: var(--teal-600);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 36px;
  transform: rotate(45deg);
}

.package__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mint-100), var(--teal-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--teal-600);
  margin-bottom: 20px;
}

.package__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.package__desc {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 20px;
  line-height: 1.55;
}

.package__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.package__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
}

.package__list .check {
  color: var(--teal-500);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.package__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.package__price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-500);
}

.package__note {
  font-size: 12px;
  color: var(--ink-300);
  margin-bottom: 20px;
}

.package__btn {
  margin-top: auto;
}

.package--disabled {
  opacity: 0.75;
}

.package--disabled .package__btn {
  background: var(--sand-200);
  color: var(--ink-500);
  box-shadow: none;
  cursor: not-allowed;
}

.package--disabled .package__btn:hover {
  transform: none;
  background: var(--sand-200);
}

.package__soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--amber-600);
  background: var(--sand-100);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

/* ============================================================
   Для кого (ЦА)
   ============================================================ */

.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(34, 74, 63, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.audience-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.audience-card--home .audience-card__icon {
  background: var(--mint-100);
  color: var(--mint-600);
}

.audience-card--biz .audience-card__icon {
  background: var(--teal-100);
  color: var(--teal-600);
}

.audience-card--gov .audience-card__icon {
  background: var(--sky-100);
  color: var(--sky-600);
}

.audience-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 12px;
}

.audience-card__desc {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.audience-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audience-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
}

.audience-card__list .check {
  color: var(--teal-500);
  flex-shrink: 0;
}

/* ============================================================
   Почему мы
   ============================================================ */

.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(34, 74, 63, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease);
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-item__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--teal-400);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.why-item__icon {
  font-size: 30px;
  margin-bottom: 16px;
}

.why-item__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 10px;
}

.why-item__desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ============================================================
   Калькулятор
   ============================================================ */

.calc {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: clip;
  border: 1px solid rgba(34, 74, 63, 0.08);
}

.calc__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.calc__form {
  padding: 48px;
}

.calc__result {
  background: linear-gradient(160deg, var(--teal-800), var(--teal-600));
  color: var(--white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 96px;
  align-self: start;
}

.calc__result-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.calc__result-sub {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 32px;
}

.calc__currency {
  margin-bottom: 24px;
}

.calc__currency-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 8px;
}

.calc__currency-toggle {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 4px;
}

.calc__currency-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 8px;
  border-radius: 9px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.calc__currency-btn:hover {
  color: var(--white);
}

.calc__currency-btn[aria-pressed="true"] {
  background: var(--white);
  color: var(--teal-700);
  box-shadow: var(--shadow-sm);
}

.calc__price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.calc__price small {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.8;
}

.calc__price-note {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 32px;
}

.calc__breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.calc__breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.9;
}

.calc__breakdown-row span:last-child {
  font-weight: 700;
}

.calc__breakdown-time {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 2px;
}

.calc__time {
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.calc__time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.calc__time-row span:last-child {
  font-weight: 800;
}

.calc__time-staff {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 8px;
}

.form-group .hint {
  font-size: 12px;
  color: var(--ink-300);
  font-weight: 400;
  margin-top: 6px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--sand-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-900);
  background: var(--sand-50);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-control:focus {
  outline: none;
  border-color: var(--teal-400);
  box-shadow: var(--shadow-glow);
  background: var(--white);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c6b69' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.range-wrap {
  position: relative;
}

.range-value {
  font-weight: 800;
  color: var(--teal-600);
}

input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--sand-200);
  border-radius: 6px;
  outline: none;
  margin-top: 12px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-600);
  border: 4px solid var(--white);
  box-shadow: 0 2px 8px rgba(37, 124, 126, 0.3);
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-600);
  border: 4px solid var(--white);
  box-shadow: 0 2px 8px rgba(37, 124, 126, 0.3);
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: var(--ink-700);
}

.checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--teal-600);
  cursor: pointer;
}

/* ============================================================
   Калькулятор услуг (прогрессивное раскрытие)
   ============================================================ */

.calc-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.calc-service {
  border: 1px solid rgba(34, 74, 63, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.calc-service:has(.calc-service__head input:checked) {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

.calc-service__head {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 16px;
}

.calc-service__time {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-400);
  white-space: nowrap;
}

.calc-service__options {
  display: none;
  padding: 14px 16px 16px;
  border-top: 1px dashed rgba(34, 74, 63, 0.14);
}

.calc-service__options--open {
  display: block;
}

.calc-service__field {
  margin-bottom: 12px;
}

.calc-service__field .form-control {
  max-width: 140px;
}

.calc-service__hint {
  font-size: 13px;
  color: var(--ink-400);
  margin-top: 8px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-700);
}

.radio input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal-600);
  cursor: pointer;
}

.calc-freq {
  margin-top: 8px;
}

/* Разделитель между группами опций (например, в холодильнике) */
.calc-service__group + .calc-service__group {
  border-top: 1px solid rgba(34, 74, 63, 0.12);
  padding-top: 12px;
  margin-top: 4px;
}

.calc-service__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Переключатель периодичности (на одной строке) */
.calc-freq__toggle {
  display: flex;
  gap: 6px;
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
  border-radius: 12px;
  padding: 4px;
  flex-wrap: wrap;
}

.calc-freq__btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink-600);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 8px;
  border-radius: 9px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}

.calc-freq__btn:hover {
  color: var(--teal-700);
}

.calc-freq__btn[aria-pressed="true"] {
  background: var(--white);
  color: var(--teal-700);
  box-shadow: var(--shadow-sm);
}

/* Сводка заказа в модальном окне */
.order-summary {
  background: var(--mint-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.order-summary__row span:first-child {
  color: var(--ink-500);
}

.order-summary__row span:last-child {
  font-weight: 700;
  color: var(--ink-900);
  text-align: right;
}

/* ============================================================
   Цифровой договор
   ============================================================ */

.contract {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(34, 74, 63, 0.08);
}

.contract__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--sand-200);
}

.contract__step {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}

.contract__step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  bottom: 30%;
  width: 1px;
  background: var(--sand-200);
}

.contract__step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--teal-600);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.contract__step-title {
  font-weight: 800;
  font-size: 15px;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.contract__step-desc {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.5;
}

.contract__body {
  padding: 48px;
}

.contract__note {
  background: var(--mint-50);
  border: 1px solid var(--mint-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}

.contract__note-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.contract__note-text {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.6;
}

.contract__note-text strong {
  color: var(--teal-700);
}

/* ============================================================
   Документы
   ============================================================ */

.docs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.doc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(34, 74, 63, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.doc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-100);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.doc-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.doc-card__desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* ============================================================
   Преимущества для предприятий (в блоке «Прозрачные условия»)
   ============================================================ */

.docs-advantages {
  margin-top: 48px;
}

.docs-advantages__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 24px;
  text-align: center;
  background-color: rgba(34, 139, 34, 0.08);
  padding: 8px 16px;
  border-radius: 8px;
}

.docs-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.adv-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(34, 74, 63, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.adv-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-100);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.adv-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.adv-card__desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* Tooltip со способами оплаты (появляется при наведении) */
.adv-card--pay {
  cursor: help;
}

.adv-card__tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(6px);
  width: 260px;
  background: var(--ink-900);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  z-index: 20;
  pointer-events: none;
}

.adv-card__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--ink-900);
}

.adv-card__tooltip strong {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.adv-card__tooltip ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.adv-card__tooltip li {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.92;
  padding-left: 16px;
  position: relative;
}

.adv-card__tooltip li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint-300);
  font-weight: 700;
}

.adv-card--pay:hover .adv-card__tooltip,
.adv-card--pay:focus-within .adv-card__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.docs-advantages__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-400);
}

/* ============================================================
   О владельце
   ============================================================ */

.owner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.owner__photo {
  position: relative;
}

.owner__photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--mint-100), var(--teal-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.owner__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner__photo-placeholder {
  text-align: center;
  color: var(--teal-500);
  padding: 40px;
}

.owner__photo-placeholder .icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.owner__photo-placeholder p {
  font-size: 14px;
  font-weight: 600;
}

.owner__photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}

.owner__photo-badge strong {
  display: block;
  font-size: 15px;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.owner__photo-badge span {
  font-size: 13px;
  color: var(--ink-500);
}

.owner__content .eyebrow {
  margin-bottom: 16px;
}

.owner__name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.owner__role {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-600);
  margin-bottom: 24px;
}

.owner__text {
  font-size: 16px;
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.owner__text strong {
  color: var(--ink-900);
}

.owner__sign {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--sand-200);
  font-style: italic;
  color: var(--ink-700);
  font-size: 15px;
}

/* ============================================================
   Отзывы
   ============================================================ */

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(34, 74, 63, 0.08);
  box-shadow: var(--shadow-sm);
}

.review__stars {
  color: var(--amber-500);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review__text {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

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

.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.review__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
}

.review__meta {
  font-size: 13px;
  color: var(--ink-300);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(34, 74, 63, 0.08);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}

.faq-item--open {
  box-shadow: var(--shadow-md);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  text-align: left;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}

.faq-item__a-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.65;
}

/* ============================================================
   Контакты / Заявка
   ============================================================ */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--mint-100);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact__item-label {
  font-size: 13px;
  color: var(--ink-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact__item-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
}

.contact__item-value a {
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact__item-value a:hover {
  color: var(--teal-600);
}

.contact__item-value .phone-icon {
  color: var(--teal-600);
}

.contact__item-value--stacked {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  line-height: 1.4;
}

.contact__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--sand-200);
  background: var(--white);
  color: var(--ink-700);
  transition: all var(--dur) var(--ease);
  text-decoration: none;
}

.channel-btn:hover {
  border-color: var(--teal-400);
  color: var(--teal-700);
  transform: translateY(-2px);
}

.channel-btn--ig:hover {
  border-color: #e1306c;
  color: #e1306c;
}

.channel-btn--fb:hover {
  border-color: #1877f2;
  color: #1877f2;
}

.channel-btn--tg:hover {
  border-color: #229ed9;
  color: #229ed9;
}

.channel-btn--wa:hover {
  border-color: #25d366;
  color: #25d366;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(34, 74, 63, 0.08);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.contact__form-sub {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 28px;
}

/* ============================================================
   Подвал
   ============================================================ */

.footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .logo__name {
  color: var(--white);
}

.footer__brand .logo__tag {
  color: rgba(255, 255, 255, 0.5);
}

.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 300px;
}

.footer__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color var(--dur) var(--ease);
}

.footer__links a:hover {
  color: var(--mint-300);
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer__contacts a {
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__contacts a:hover {
  color: var(--mint-300);
}

.footer__contacts .phone-icon {
  color: var(--mint-300);
}

.footer__contact-icon {
  color: var(--mint-300);
  font-size: 14px;
  line-height: 1;
}

.footer__channels {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.footer__channels .channel-btn {
  padding: 6px 10px;
  font-size: 13px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__version {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-family: monospace;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

/* ============================================================
   Анимации появления
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Модальное окно
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal--open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 43, 42, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.modal--open .modal__overlay {
  opacity: 1;
}

.modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

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

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--sand-100);
  color: var(--ink-700);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}

.modal__close:hover {
  background: var(--sand-200);
  transform: rotate(90deg);
}

.modal__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.modal__sub {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 28px;
}

/* ============================================================
   Уведомление (toast)
   ============================================================ */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink-900);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.5s var(--ease);
  max-width: 90vw;
}

.toast--show {
  transform: translateX(-50%) translateY(0);
}

.toast__icon {
  font-size: 20px;
}

/* ============================================================
   Адаптивность
   ============================================================ */

@media (max-width: 1024px) {
  /* В шапке остаётся только телефон + бургер, навигация — через бургер */
  .header .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform var(--dur) var(--ease);
    z-index: 99;
  }

  .header .nav--open {
    transform: translateY(0);
  }

  .header .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .header .nav__link {
    font-size: 18px;
    padding: 8px 0;
  }

  .header .logo {
    display: none;
  }

  .header .lang-switch {
    display: none;
  }

  .header__phone {
    display: inline-flex;
  }

  .burger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    max-width: 520px;
  }

  .packages,
  .audience,
  .why,
  .docs,
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .calc__inner,
  .contact {
    grid-template-columns: 1fr;
  }

  .calc__result {
    position: static;
    align-self: auto;
  }

  .owner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform var(--dur) var(--ease);
    z-index: 99;
  }

  .nav--open {
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .nav__link {
    font-size: 18px;
    padding: 8px 0;
  }

  /* На малых экранах в шапке остаётся только телефон + бургер */
  .header .logo {
    display: none;
  }

  .header .lang-switch {
    display: none;
  }

  .header__phone {
    display: inline-flex;
    font-size: 15px;
  }

  .burger {
    display: flex;
  }

  .packages,
  .audience,
  .why,
  .docs,
  .reviews {
    grid-template-columns: 1fr;
  }

  .docs-advantages__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    padding: 28px 24px;
  }

  .hero {
    padding: 120px 0 64px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .calc__form,
  .calc__result,
  .contract__body,
  .contact__form {
    padding: 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .contract__step:not(:last-child)::after {
    display: none;
  }

  .hero__badge {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
  }

  .stat__value {
    font-size: 32px;
  }

  .stat__tooltip {
    max-width: 200px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
  }

  .stat--tooltip:hover .stat__tooltip,
  .stat--tooltip:focus-within .stat__tooltip {
    transform: translateX(-50%) translateY(0);
  }

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

  .hero__cta .btn {
    width: 100%;
  }
}

/* ============================================================
   Доступность
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

::selection {
  background: var(--mint-200);
  color: var(--ink-900);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   ЛОТЕРЕЯ (стирание билета)
   ============================================================ */

.lottery {
  background: linear-gradient(160deg, var(--teal-800), var(--teal-600));
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.lottery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.lottery__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}

.lottery__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.lottery__sub {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
}

.lottery__tickets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ticket {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--ink-900);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  position: relative;
}

.ticket__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ticket__label-text {
  font-weight: 800;
  font-size: 15px;
  color: var(--teal-700);
}

.ticket__label-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-300);
  background: var(--sand-100);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.ticket__scratch {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--mint-100);
  cursor: crosshair;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.ticket__prize {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 20px 40px;
  z-index: 1;
}

.ticket__prize-icon {
  font-size: 79px;
  margin-bottom: 12px;
  line-height: 1;
}

.ticket__prize-value {
  font-family: var(--font-display);
  font-size: 49px;
  font-weight: 800;
  color: var(--teal-700);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ticket__prize-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-500);
  margin-top: 10px;
  position: relative;
  top: -8px;
}

.ticket__scratch-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: none;
  width: 100%;
  height: 100%;
}

.ticket__mop-cursor {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  font-size: 50px;
  line-height: 1;
  transform: translate(-50%, -50%) rotate(-30deg);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.05s linear;
  will-change: transform;
}

.ticket__hint {
  text-align: center;
  font-size: 13px;
  color: var(--ink-300);
  margin-top: 12px;
}

.ticket__claim {
  margin-top: 16px;
  animation: claimPulse 0.6s var(--ease);
}

@keyframes claimPulse {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.ticket--used {
  opacity: 0.6;
  pointer-events: none;
}

.ticket--used .ticket__scratch-canvas {
  display: none;
}

.ticket--used .ticket__prize {
  z-index: 3;
}

.ticket__used-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--sand-200);
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  z-index: 4;
}

.lottery__note {
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   КУКИ-УВЕДОМЛЕНИЕ
   ============================================================ */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c62828;
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 24px;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

.cookie-bar--show {
  transform: translateY(0);
}

.cookie-bar__text {
  font-size: 14px;
  line-height: 1.5;
  max-width: 720px;
}

.cookie-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-bar__btn {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: all var(--dur) var(--ease);
}

.cookie-bar__btn--accept {
  background: var(--teal-500);
  color: var(--white);
}

.cookie-bar__btn--accept:hover {
  background: var(--teal-600);
}

.cookie-bar__btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-bar__btn--decline:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   ВСПЛЫВАЮЩЕЕ ОКНО РЕКЛАМЫ ЛОТЕРЕИ
   ============================================================ */

.promo-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 260;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateX(120%);
  transition: transform 0.6s var(--ease);
  border: 1px solid rgba(34, 74, 63, 0.08);
}

.promo-popup--show {
  transform: translateX(0);
}

.promo-popup__top {
  background: linear-gradient(135deg, var(--teal-600), var(--mint-500));
  color: var(--white);
  padding: 20px 24px;
  position: relative;
}

.promo-popup__badge {
  display: inline-block;
  background: var(--amber-500);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.promo-popup__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.promo-popup__body {
  padding: 20px 24px;
}

.promo-popup__text {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.promo-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}

.promo-popup__close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   Адаптивность лотереи
   ============================================================ */

/* ============================================================
   Правая навигационная панель (появляется при наведении на правый край)
   ============================================================ */

.side-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  width: 200px;
  pointer-events: none;
}

.side-nav__trigger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 24px;
  pointer-events: auto;
  cursor: pointer;
  background: transparent;
}

.side-nav__marker {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--teal-600), var(--mint-500));
  color: var(--white);
  border-radius: 12px 0 0 12px;
  padding: 14px 10px 14px 14px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  pointer-events: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 5;
}

.side-nav__marker-arrow {
  font-size: 11px;
  transform: rotate(90deg);
}

.side-nav:hover .side-nav__marker,
.side-nav:focus-within .side-nav__marker {
  opacity: 0;
  transform: translateY(-50%) translateX(20px);
}

.side-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  background: var(--white);
  box-shadow: -8px 0 32px rgba(34, 74, 63, 0.12);
  border-left: 1px solid rgba(34, 74, 63, 0.08);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  pointer-events: auto;
}

.side-nav:hover .side-nav__panel,
.side-nav:focus-within .side-nav__panel {
  transform: translateX(0);
}

.side-nav__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sand-200);
  margin-bottom: 24px;
}

.side-nav__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-500), var(--mint-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.side-nav__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-900);
}

.side-nav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.side-nav__link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
  transition: all var(--dur) var(--ease);
}

.side-nav__link:hover {
  background: var(--mint-50);
  color: var(--teal-700);
  padding-left: 20px;
}

.side-nav__footer {
  padding-top: 24px;
  border-top: 1px solid var(--sand-200);
}

.side-nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--teal-700);
  padding: 14px;
  background: var(--mint-50);
  border-radius: var(--radius-md);
}

.side-nav__phone:hover {
  background: var(--mint-100);
  color: var(--teal-700);
}

/* Показываем боковую панель только на больших экранах */
@media (min-width: 1025px) {
  .side-nav {
    display: block;
  }
}

@media (max-width: 1024px) {
  .side-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .lottery {
    padding: 40px 24px;
  }

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

  .promo-popup {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }
}

/* ============================================================
   Дополнительные стили (ТЗ)
   ============================================================ */

/* Подсказка под полем формы */
.form-hint {
  font-size: 12px;
  color: var(--ink-300);
  margin-top: 6px;
  line-height: 1.4;
}

.field-error {
  font-size: 12px;
  color: #dc2626;
  margin-top: 6px;
  line-height: 1.4;
}

.form-control--error {
  border-color: #dc2626 !important;
}

/* Курс и минимальный заказ в калькуляторе */
.calc__rate-note {
  font-size: 12px;
  color: var(--ink-300);
  margin-top: 4px;
}

.calc__min-note {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-700, #b45309);
  margin-top: 8px;
  display: none;
}

.calc__min-note--show {
  display: block;
}

/* Кнопка «Написать Максиму» */
.owner__cta {
  margin-top: 24px;
}

/* Eyebrow на тёмном фоне (лотерея) */
.eyebrow--on-dark {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* Каналы связи в модалке — вертикально */
.contact__channels--stacked {
  flex-direction: column;
  align-items: stretch;
}

.channel-btn--center {
  justify-content: center;
}

/* Юридические ссылки в подвале */
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.footer__legal a {
  color: var(--ink-300);
  font-size: 13px;
  text-decoration: underline;
}

.footer__legal a:hover {
  color: var(--teal-700);
}

/* ============================================================
   Блок «Для командированных и новых жителей»
   ============================================================ */
.reloc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.reloc-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.reloc-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.reloc-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.reloc-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.reloc-card__desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ============================================================
   Блок «Почему нам доверяют русскоязычные клиенты»
   ============================================================ */
.trust-ru {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.trust-ru-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.trust-ru-item__icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.trust-ru-item__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.trust-ru-item__desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ============================================================
   Блок «Как мы работаем»
   ============================================================ */
.how {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.how-step {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}

.how-step__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--teal-100);
  line-height: 1;
  margin-bottom: 12px;
}

.how-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.how-step__desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.5;
}

/* ============================================================
   B2B-блок
   ============================================================ */
.b2b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.b2b-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.b2b-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 10px;
}

.b2b-card__price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--teal-700);
  margin-bottom: 10px;
}

.b2b-card__price small {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-400);
}

.b2b-card__desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ============================================================
   Юридические страницы (privacy / terms / lottery-rules)
   ============================================================ */
.legal-page {
  padding: 120px 0 80px;
  min-height: 60vh;
}

.legal-page__inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-page__back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: none;
}

.legal-page__back:hover {
  text-decoration: underline;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.legal-page__date {
  font-size: 14px;
  color: var(--ink-400);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 28px 0 12px;
}

.legal-page p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-600);
  margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
  margin: 0 0 16px 20px;
  color: var(--ink-600);
  line-height: 1.6;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--teal-700);
}
