/* =========================================================================
   ZipProfiService — дизайн-система
   Индустриальная эстетика: графит + янтарно-оранжевый акцент + чистый белый.
   Все цвета/отступы вынесены в токены — заказчик меняет в одном месте.
   ========================================================================= */

/* ---------- Шрифты ---------- */
/* Шрифты подключены в <head> каждой страницы отдельным <link> — так браузер
   находит их сразу, а не после загрузки этого файла. */

/* ---------- Токены ---------- */
:root {
  /* Палитра бренда */
  --accent: #ff7a00;          /* основной акцент */
  --accent-600: #e96b00;      /* hover */
  --accent-300: #ffb14d;      /* светлый акцент для градиентов */
  --accent-soft: #fff3e6;     /* очень светлый фон акцента */

  --ink: #14181f;             /* основной текст */
  --ink-2: #3a4150;           /* вторичный текст */
  --muted: #6b7480;           /* приглушённый текст */

  --bg: #ffffff;              /* фон страницы */
  --bg-soft: #f5f6f8;         /* светлая секция */
  --surface: #ffffff;         /* карточки */
  --line: #e7e9ee;            /* границы */

  --dark: #0f1218;            /* тёмная секция */
  --dark-2: #171b23;          /* тёмная карточка */
  --on-dark: #e9ecf2;         /* текст на тёмном */
  --on-dark-muted: #9aa3b2;   /* приглушённый текст на тёмном */

  --success: #1fae5a;
  --danger: #e5484d;

  /* Радиусы */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Тени */
  --shadow-sm: 0 2px 8px rgba(20, 24, 31, .06);
  --shadow: 0 12px 30px rgba(20, 24, 31, .10);
  --shadow-lg: 0 30px 70px rgba(20, 24, 31, .18);
  --shadow-accent: 0 14px 30px rgba(255, 122, 0, .35);

  /* Раскладка */
  --container: 1200px;
  --gutter: 20px;
  --header-h: 76px;

  /* Типографика */
  --font-head: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Анимация */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Сброс ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
input, textarea, select, button { font: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Контейнер / секции ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); color: var(--on-dark); }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }

/* ---------- Типографика ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: inherit; overflow-wrap: break-word; hyphens: auto; }
h1 { font-size: clamp(34px, 5.2vw, 58px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
p { color: var(--ink-2); }
.section--dark p { color: var(--on-dark-muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: 14px; font-size: 18px; }
.lead { font-size: 19px; color: var(--ink-2); }

.accent { color: var(--accent); }
.text-balance { text-wrap: balance; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: var(--r-pill); border: 0;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap; text-align: center;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn--primary:hover { background: var(--accent-600); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--lg { padding: 18px 34px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Бейджи / чипы ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; font-family: var(--font-head);
  background: var(--accent-soft); color: var(--accent-600);
}
.badge--ghost { background: rgba(255,255,255,.08); color: var(--on-dark); }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  transition: border-color .2s, transform .2s;
}
.chip:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---------- Карточки ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

/* ================== ШАПКА ================== */
.topbar {
  background: var(--dark); color: var(--on-dark-muted);
  font-size: 13.5px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 40px; }
.topbar a { color: var(--on-dark-muted); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--accent); }

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark { width: 42px; height: 42px; flex: none; }
.logo__text { font-family: var(--font-head); font-weight: 800; font-size: 21px; letter-spacing: -.02em; line-height: 1; }
.logo__text b { color: var(--accent); }
.logo__text span { display: block; font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px; border-radius: var(--r-sm); font-weight: 600; font-size: 15.5px;
  color: var(--ink-2); transition: color .2s, background .2s;
}
.nav a:hover, .nav a.is-active { color: var(--ink); background: var(--bg-soft); }
.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phone { font-family: var(--font-head); font-weight: 800; font-size: 18px; white-space: nowrap; }
.header__phone small { display: block; font-size: 11px; font-weight: 600; color: var(--success); letter-spacing: .02em; }

.burger { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .3s var(--ease); }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Мобильное меню */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); z-index: 80;
  background: #fff; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .35s var(--ease), visibility .35s;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
  /* visibility убирает закрытое меню из перехода по Tab и из озвучки скринридером —
     без неё 8 ссылок за краем экрана остаются фокусируемыми */
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu a { padding: 14px 12px; border-radius: var(--r-sm); font-family: var(--font-head); font-weight: 700; font-size: 18px; border-bottom: 1px solid var(--line); }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu__cta { margin-top: 18px; display: grid; gap: 12px; }
.overlay { position: fixed; inset: 0; background: rgba(15,18,24,.5); z-index: 70; opacity: 0; visibility: hidden; transition: .3s; }
.overlay.is-open { opacity: 1; visibility: visible; }

/* ================== HERO ================== */
.hero { position: relative; background: var(--dark); color: var(--on-dark); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 82% -8%, rgba(255,122,0,.28), transparent 60%),
    radial-gradient(700px 500px at 8% 110%, rgba(255,177,77,.10), transparent 55%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(900px 600px at 70% 0%, #000, transparent 75%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding: clamp(48px, 7vw, 90px) 0 clamp(40px, 5vw, 70px); }
.hero h1 { color: #fff; }
.hero h1 mark { background: linear-gradient(180deg, transparent 62%, rgba(255,122,0,.55) 62%); color: #fff; padding: 0 4px; }
.hero h1 .grad {
  background: linear-gradient(95deg, #ff7a00 0%, #ffc24d 44%, #ff8f29 70%, #ffd98a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero h1 .grad-2 {
  background: linear-gradient(95deg, #29d4c2 0%, #38b6ea 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__lead { margin-top: 22px; font-size: 19px; color: var(--on-dark-muted); max-width: 540px; }
.hero__usp { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__usp li { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: var(--r-pill); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); font-size: 14.5px; font-weight: 600; color: var(--on-dark); }
.hero__usp svg { width: 18px; height: 18px; color: var(--accent-300); flex: none; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; align-items: center; gap: 18px; margin-top: 30px; color: var(--on-dark-muted); font-size: 14px; }
.hero__stars { color: #ffc23d; letter-spacing: 2px; font-size: 18px; }

.hero__card { position: relative; }
.hero-visual {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5;
  background:
    radial-gradient(76% 56% at 50% 40%, rgba(255,138,31,.30), rgba(255,138,31,0) 60%),
    linear-gradient(157deg, #333d4c 0%, #1b212b 58%, #141923 100%);
  border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.hero-visual::before { /* лёгкая текстурная сетка для глубины */
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px; mask-image: radial-gradient(70% 60% at 50% 45%, #000, transparent 80%);
}
.hero-visual svg { width: 78%; height: auto; }
.hero-visual img { position: relative; width: 100%; height: 100%; object-fit: contain; padding: 30px; filter: drop-shadow(0 22px 28px rgba(0,0,0,.45)); }
.hero-float {
  position: absolute; background: #fff; color: var(--ink);
  border-radius: var(--r); padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; font-weight: 600;
}
.hero-float--tl { top: 18px; left: -18px; }
.hero-float--br { bottom: 22px; right: -16px; }
.hero-float__ic { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.hero-float__ic svg { width: 22px; height: 22px; }
.hero-float small { display: block; font-size: 12px; color: var(--muted); font-weight: 500; }
.hero-float b { font-family: var(--font-head); font-size: 16px; }

/* Лента-маркер брендов под hero */
.marquee { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,.06); overflow: hidden; padding: 18px 0; }
.marquee__track { display: flex; align-items: center; width: max-content; animation: marquee 30s linear infinite; }
.marquee span { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: rgba(255,255,255,.34); letter-spacing: .01em; white-space: nowrap; margin-right: 56px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================== КАРТА ================== */
.map-wrap { position: relative; height: 100%; min-height: 420px; border-radius: var(--r-lg); overflow: hidden; }
.map-frame { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }
/* Прозрачный слой-ссылка: блокирует прокрутку карты (центр всегда = нашей точке)
   и по клику открывает полную Яндекс.Карту. Благодаря ему метка видна ВСЕГДА. */
.map-shield { position: absolute; inset: 0; z-index: 2; display: block; text-decoration: none; cursor: pointer; }
.map-pulse { position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,122,0,.5); transform: translate(-50%, -50%); animation: mappulse 2s ease-out infinite; }
@keyframes mappulse { 0% { box-shadow: 0 0 0 0 rgba(255,122,0,.5); } 70% { box-shadow: 0 0 0 20px rgba(255,122,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,122,0,0); } }
/* Пин привязан ОСТриём (низ капли) к центру карты = координатам дома, а не серединой */
.map-pin { position: absolute; left: 50%; top: 50%; width: 46px; height: 46px; transform: translate(-50%, calc(-100% + 4px)); color: var(--accent); filter: drop-shadow(0 8px 12px rgba(0,0,0,.45)); }
.map-pin svg { width: 100%; height: 100%; display: block; }
.map-badge { position: absolute; left: 16px; top: 16px; display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px; line-height: 1.2; padding: 10px 15px; border-radius: var(--r-pill); box-shadow: var(--shadow-lg); max-width: calc(100% - 32px); }
.map-badge svg { width: 18px; height: 18px; flex: none; }
.map-open { position: absolute; right: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: 13px; padding: 9px 14px; border-radius: var(--r-pill); box-shadow: var(--shadow-lg); }
.map-open svg { width: 16px; height: 16px; }
.map-shield:hover .map-open { background: var(--accent); color: #fff; }

/* Honeypot против спам-ботов — скрыт от людей, виден ботам */
.hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ================== УСЛУГИ (4 направления) ================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { position: relative; display: flex; flex-direction: column; overflow: hidden; }
.service-card__ic { width: 60px; height: 60px; border-radius: 16px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 20px; transition: background .3s, color .3s; }
.service-card__ic svg { width: 30px; height: 30px; }
.service-card:hover .service-card__ic { background: var(--accent); color: #fff; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 15.5px; flex: 1; }
.service-card__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 15px; }
.service-card__link svg { width: 18px; height: 18px; transition: transform .2s; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ================== ИКОНКИ-ФИЧИ ================== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { text-align: left; }
.feature__ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--dark-2); color: var(--accent-300); margin-bottom: 16px; }
.section:not(.section--dark) .feature__ic { background: var(--accent-soft); color: var(--accent); }
.feature__ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 19px; margin-bottom: 6px; }
.feature p { font-size: 15px; }

/* ================== БЛОК-СПЛИТ (текст + визуал) ================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split--rev .split__media { order: -1; }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media--image { aspect-ratio: 4/3; }
.split__image { display: block; width: 100%; height: 100%; object-fit: cover; }
/* Медиа-колонка, где лежит таблица + подпись: у таблицы своя рамка/тень, поэтому убираем обрезку и внешнюю тень, чтобы подпись снизу не срезалась скруглением */
.split__media--plain { overflow: visible; box-shadow: none; border-radius: 0; }
.split ul.checklist { margin-top: 22px; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--ink-2); }
.checklist li svg { width: 22px; height: 22px; color: var(--success); flex: none; margin-top: 2px; }
.split__actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Заглушка под фото */
.ph {
  position: relative; aspect-ratio: 4/3; display: grid; place-items: center;
  background: linear-gradient(135deg, #eef0f4, #e2e5ea); color: var(--muted);
  background-image: linear-gradient(135deg, #eef0f4, #e2e5ea), repeating-linear-gradient(45deg, rgba(255,122,0,.04) 0 12px, transparent 12px 24px);
}
.ph__inner { text-align: center; padding: 20px; }
.ph svg { width: 56px; height: 56px; margin: 0 auto 10px; color: #b7bdc7; }
.ph small { font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; }
.ph--dark { background: linear-gradient(160deg, #1e2430, #11151c); color: var(--on-dark-muted); }
.ph--dark svg { color: #3a4150; }

/* ================== ТАБЛИЦА ЦЕН ================== */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.price-table th, .price-table td { padding: 16px 22px; text-align: left; }
.price-table thead th { background: var(--dark); color: #fff; font-family: var(--font-head); font-size: 14px; letter-spacing: .02em; }
.price-table tbody tr { border-top: 1px solid var(--line); transition: background .2s; }
.price-table tbody tr:hover { background: var(--accent-soft); }
.price-table td:last-child { font-family: var(--font-head); font-weight: 800; white-space: nowrap; text-align: right; }
.price-table .price-from { color: var(--muted); font-weight: 500; font-size: 13px; }
.price-note { margin-top: 14px; font-size: 14px; color: var(--muted); }

/* ================== ШАГИ ================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num { font-family: var(--font-head); font-weight: 800; font-size: 15px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #fff; margin-bottom: 18px; box-shadow: var(--shadow-accent); }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 22px; left: 56px; right: -22px; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); }

/* ================== КАТАЛОГ (карточки товаров/аренды) ================== */
.catalog { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.product__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #e8ebef; }
.product__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product__tag { position: absolute; top: 12px; left: 12px; z-index: 2; }
.product__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product__brand { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.product__name { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 4px 0 12px; line-height: 1.25; }
.product__specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.product__specs span { font-size: 12.5px; padding: 5px 10px; border-radius: var(--r-pill); background: var(--bg-soft); color: var(--ink-2); }
.product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product__price { font-family: var(--font-head); font-weight: 800; font-size: 22px; }
.product__price small { display: block; font-size: 12px; font-weight: 500; color: var(--muted); }
.product .btn { padding: 11px 18px; font-size: 14px; }

/* ================== ОТЗЫВЫ ================== */
.reviews { position: relative; }
.reviews__viewport { overflow: hidden; }
.reviews__track { display: flex; gap: 22px; transition: transform .5s var(--ease); }
.review { flex: 0 0 calc((100% - 44px) / 3); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.review__stars { color: #ffb800; letter-spacing: 2px; font-size: 17px; margin-bottom: 14px; }
.review__text { color: var(--ink-2); font-size: 16px; }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; flex: none; }
.review__author b { font-family: var(--font-head); font-size: 15.5px; display: block; }
.review__author small { color: var(--muted); font-size: 13px; }
.reviews__nav { display: flex; gap: 10px; }
.reviews__btn { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; display: grid; place-items: center; transition: .2s; }
.reviews__btn:hover { border-color: var(--accent); color: var(--accent); }
.reviews__btn svg { width: 22px; height: 22px; }
.reviews__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* Сводка рейтингов */
.rating-summary { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.rating-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 22px; box-shadow: var(--shadow-sm); }
.rating-card__score { font-family: var(--font-head); font-weight: 800; font-size: 28px; }
.rating-card__src { font-size: 13px; color: var(--muted); }
.rating-card__src b { color: var(--ink); display: block; font-size: 15px; }

/* ================== FAQ ================== */
.faq { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq__item.is-open { box-shadow: var(--shadow); border-color: transparent; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); }
.faq__q svg { width: 24px; height: 24px; flex: none; color: var(--accent); transition: transform .3s var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a-inner { padding: 0 26px 24px; color: var(--ink-2); font-size: 16px; }

/* ================== CTA-БАННЕР ================== */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--dark); color: #fff; padding: clamp(36px, 5vw, 64px); }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 90% 10%, rgba(255,122,0,.35), transparent 60%); }
.cta-banner__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: var(--on-dark-muted); margin-top: 12px; }
.cta-banner__actions { display: flex; flex-direction: column; gap: 14px; }

/* ================== ФОРМЫ ================== */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field > label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,122,0,.12); }
.form__consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); }
.form__consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex: none; }
.form__consent a { color: var(--ink-2); text-decoration: underline; }
.form-note { margin-top: 4px; font-size: 13.5px; color: var(--muted); }
.form-success { display: none; padding: 22px; border-radius: var(--r); background: rgba(31,174,90,.1); border: 1px solid rgba(31,174,90,.35); color: #117a3d; font-weight: 600; }
.form-success.show { display: block; }

/* Карточка-форма поверх тёмного */
.form-card { background: #fff; border-radius: var(--r-lg); padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-lg); color: var(--ink); }
.form-card h3 { margin-bottom: 6px; }
.form-card .form-note { margin-bottom: 18px; }

/* ================== КВИЗ ================== */
.quiz { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.quiz__bar { height: 6px; background: var(--bg-soft); }
.quiz__bar span { display: block; height: 100%; width: 33%; background: var(--accent); transition: width .4s var(--ease); }
.quiz__body { padding: clamp(28px, 4vw, 46px); }
.quiz__step { display: none; }
.quiz__step.is-active { display: block; animation: fade .35s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz__count { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.quiz__q { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 3vw, 30px); margin: 8px 0 24px; }
.quiz__options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.quiz__opt { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1.5px solid var(--line); border-radius: var(--r); background: #fff; text-align: left; font-weight: 600; font-size: 16px; transition: .2s; }
.quiz__opt:hover { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }
.quiz__opt .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.quiz__opt .ic svg { width: 24px; height: 24px; }
.quiz__final { display: grid; gap: 14px; max-width: 460px; }
.quiz__nav { margin-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.quiz__back { background: none; border: 0; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.quiz__back:hover { color: var(--ink); }

/* ================== ПОДВАЛ ================== */
.footer { background: var(--dark); color: var(--on-dark-muted); padding-top: clamp(54px, 7vw, 84px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer a { color: var(--on-dark-muted); transition: color .2s; }
.footer a:hover { color: var(--accent-300); }
.footer__links { display: grid; gap: 11px; font-size: 15px; }
.footer__about p { font-size: 15px; margin: 16px 0; max-width: 320px; }
.footer__contact { display: grid; gap: 12px; font-size: 15px; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 2px; }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #fff; transition: .2s; }
.footer__socials a:hover { background: var(--accent); transform: translateY(-3px); }
.footer__socials svg { width: 22px; height: 22px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; padding: 26px 0; font-size: 13.5px; }
.footer__bottom a { text-decoration: underline; }

/* ================== ПЛАВАЮЩИЕ КНОПКИ ================== */
/* pointer-events: контейнер прозрачен для нажатий, ловят только сами кнопки —
   иначе полоса между кружками перехватывала тапы по тексту под ней */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 55; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.fab a { pointer-events: auto; }
.fab a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); transition: transform .2s; position: relative; }
.fab a:hover { transform: scale(1.08); }
.fab a svg { width: 28px; height: 28px; }
.fab__wa { background: #25D366; }
.fab__tg { background: #2AABEE; }
.fab__vk { background: #0077FF; }
.fab__call { background: var(--accent); }
.fab__pulse::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,122,0,.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 16px rgba(255,122,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,122,0,0); } }

/* Подпись «Позвонить» у кнопки звонка — только на десктопе, на мобильных места нет */
.fab__call::before { content: "Позвонить"; position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background: var(--ink); color: #fff; font-size: 13px; font-weight: 700; padding: 7px 12px; border-radius: var(--r-pill); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.fab__call:hover::before { opacity: 1; }
@media (max-width: 900px) { .fab__call::before { display: none; } }

.scroll-top { position: fixed; left: 22px; bottom: 22px; z-index: 54; width: 50px; height: 50px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; border: 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .3s; }
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }
.scroll-top svg { width: 24px; height: 24px; }

/* ================== ХЛЕБНЫЕ КРОШКИ + ШАПКА СТРАНИЦ ================== */
.page-hero { background: var(--dark); color: var(--on-dark); position: relative; overflow: hidden; padding: clamp(48px, 6vw, 86px) 0; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 85% 0%, rgba(255,122,0,.25), transparent 60%); }
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: #fff; margin: 16px 0; }
.page-hero p { color: var(--on-dark-muted); font-size: 19px; max-width: 600px; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--on-dark-muted); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { opacity: .5; }

/* Утилиты */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hide { display: none !important; }

/* ================== АНИМАЦИЯ ПОЯВЛЕНИЯ ================== */
/* Контент виден по умолчанию; прячем для анимации только если доступен JS (класс .js на <html>) */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ================== АДАПТИВ ================== */
@media (max-width: 1080px) {
  .services-grid, .feature-grid, .catalog { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav, .header__phone, .topbar { display: none; }
  .burger { display: block; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { max-width: 440px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .cta-banner__inner { grid-template-columns: 1fr; }
  .review { flex-basis: calc((100% - 22px) / 2); }
  .reviews__head { gap: 16px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { --gutter: 24px; }                       /* больше воздуха по краям на телефоне */
  .header__actions .btn { display: none; }            /* CTA уезжает в бургер-меню */
  .header__inner { gap: 12px; }
  .hero h1 { font-size: clamp(25px, 7vw, 36px); }
  .page-hero h1 { font-size: clamp(24px, 6.6vw, 34px); }
  .hero__lead { font-size: 16.5px; }
  .hero__lead { font-size: 17px; }
  .lead, .section-head p { font-size: 16.5px; }
  .services-grid, .feature-grid, .catalog, .grid-2, .quiz__options { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .review { flex-basis: 100%; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__cta .btn, .page-hero__cta .btn { width: 100%; }
  .hero-float--tl { left: 8px; top: 8px; }
  .hero-float--br { right: 8px; bottom: 8px; }
  .price-table th, .price-table td { padding: 13px 14px; font-size: 14px; }
  .fab a { width: 52px; height: 52px; }
  /* На телефоне колонка кнопок справа накрывала правую колонку прайса — суммы
     оказывались под кружками. Разворачиваем в ряд у нижнего края. */
  .fab { flex-direction: row; left: 14px; right: 14px; bottom: 10px; justify-content: flex-end; gap: 10px; }
  .scroll-top { left: 14px; bottom: 10px; }
  .footer { padding-bottom: 84px; }   /* чтобы полоса кнопок не закрывала низ подвала */
  .marquee span { font-size: 17px; margin-right: 34px; }
  .marquee { padding: 14px 0; }
  .map-badge { font-size: 12.5px; padding: 8px 12px; left: 12px; top: 12px; }
  .map-wrap, .map-frame, .split__media { min-height: 340px; }
  .split__media--image { width: 100%; min-width: 0; min-height: 0; }
  .hero__trust { font-size: 13.5px; }
}
/* Очень узкие экраны (≤380px): маленькие iPhone SE / Android */
@media (max-width: 380px) {
  .logo__text { font-size: 18px; }
  .logo__text span { font-size: 10px; }
  .logo__mark { width: 38px; height: 38px; }
  .container { --gutter: 20px; }
  .hero h1 { font-size: clamp(23px, 7vw, 28px); }
  .btn { font-size: 15px; }
  .fab { right: 14px; bottom: 14px; }
  .fab a { width: 48px; height: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto; }
}


/* =====================================================================
   ФИНАЛЬНЫЙ БЛОК: Аренда (.rent-*), Магазин (.shop-*), WOW-hero (.phero-*)
   Направление «Динамика и глубина» + графты. Только дизайн-токены, без URL.
   ===================================================================== */

/* ===================== АРЕНДА / прокат ===================== */
.rent-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(20px,2.4vw,30px); align-items:start; }

/* -- WOW: суточный цикл проката -- */
.rent-cycle{
  position:relative; aspect-ratio:6/5; overflow:hidden; isolation:isolate;
  border-radius:var(--r-lg); border:1px solid rgba(255,255,255,.06); box-shadow:var(--shadow-lg);
  background:
    radial-gradient(120% 100% at 80% -10%, rgba(255,122,0,.35), transparent 55%),
    radial-gradient(90% 90% at 15% 110%, rgba(255,177,77,.18), transparent 55%),
    linear-gradient(160deg,var(--dark-2),var(--dark));
}
.rent-cycle__ghost{ position:absolute; left:50%; top:50%; width:78%; height:78%; transform:translate(-50%,-50%); color:var(--accent); opacity:.06; z-index:0; }
.rent-cycle__ring{ position:absolute; left:50%; top:50%; width:70%; aspect-ratio:1; transform:translate(-50%,-50%); border:2px dashed rgba(255,122,0,.32); border-radius:50%; animation:rent-spin 26s linear infinite; }
@keyframes rent-spin{ to{ transform:translate(-50%,-50%) rotate(360deg); } }
.rent-cycle__core{
  position:absolute; left:50%; top:50%; z-index:2; width:clamp(96px,13vw,124px); aspect-ratio:1;
  transform:translate(-50%,-50%); display:grid; place-content:center; text-align:center; gap:2px;
  border-radius:50%; color:#fff;
  background:linear-gradient(150deg,var(--accent-300),var(--accent) 60%,var(--accent-600));
  box-shadow:0 18px 40px rgba(255,122,0,.4), inset 0 1px 0 rgba(255,255,255,.35);
}
.rent-cycle__num{ font-family:var(--font-head); font-weight:800; font-size:clamp(26px,3.4vw,34px); line-height:1; letter-spacing:-.02em; }
.rent-cycle__num i{ font-style:normal; font-size:.5em; font-weight:700; margin-left:2px; opacity:.9; }
.rent-cycle__label{ font-size:11px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; opacity:.95; }
.rent-node{ position:absolute; z-index:2; transform:translate(-50%,-50%); display:flex; flex-direction:column; align-items:center; gap:6px; }
.rent-node__ic{
  width:clamp(42px,5.4vw,54px); aspect-ratio:1; display:grid; place-content:center; border-radius:14px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 24px rgba(0,0,0,.35); -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px);
  animation:rent-float 6s var(--ease) infinite;
}
.rent-node__ic svg{ width:24px; height:24px; color:var(--accent-300); }
.rent-node b{ font-family:var(--font-head); font-size:12.5px; font-weight:700; color:var(--on-dark); white-space:nowrap; }
.rent-node--1{ top:11%; left:50%; }
.rent-node--2{ top:38%; left:85%; }
.rent-node--3{ top:81%; left:72%; }
.rent-node--4{ top:81%; left:28%; }
.rent-node--5{ top:38%; left:15%; }
.rent-node--2 .rent-node__ic{ animation-delay:-1.2s; }
.rent-node--3 .rent-node__ic{ animation-delay:-2.4s; }
.rent-node--4 .rent-node__ic{ animation-delay:-3.6s; }
.rent-node--5 .rent-node__ic{ animation-delay:-4.8s; }
@keyframes rent-float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-7px); } }

/* -- панель: звонок + факты -- */
.rent-panel{ position:relative; overflow:hidden; display:flex; flex-direction:column; padding:clamp(22px,2.4vw,30px); background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); box-shadow:var(--shadow); }
.rent-panel::before{ content:""; position:absolute; right:-40px; top:-40px; width:200px; height:200px; border-radius:50%; background:radial-gradient(circle at 30% 30%, rgba(255,122,0,.18), transparent 70%); pointer-events:none; }
.rent-panel__eyebrow{ display:inline-flex; align-items:center; gap:8px; align-self:flex-start; padding:7px 14px; border-radius:var(--r-pill); background:var(--accent-soft); color:var(--accent-600); font-family:var(--font-head); font-weight:700; font-size:13px; }
.rent-panel__eyebrow svg{ width:16px; height:16px; }
.rent-panel__title{ font-family:var(--font-head); font-weight:800; font-size:clamp(21px,2.5vw,26px); line-height:1.16; letter-spacing:-.02em; margin:16px 0 10px; }
.rent-grad{ background:linear-gradient(100deg,var(--accent),var(--accent-300)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.rent-panel__note{ color:var(--ink-2); font-size:15.5px; margin-bottom:20px; }
.rent-phone{ display:flex; align-items:center; gap:14px; padding:14px 18px; border-radius:var(--r); color:#fff; background:linear-gradient(135deg,var(--ink),var(--dark-2)); box-shadow:var(--shadow); transition:transform .2s var(--ease), box-shadow .25s var(--ease); }
.rent-phone:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.rent-phone__ic{ width:46px; height:46px; flex:none; display:grid; place-content:center; border-radius:12px; background:var(--accent); box-shadow:var(--shadow-accent); }
.rent-phone__ic svg{ width:22px; height:22px; color:#fff; }
.rent-phone__txt{ display:flex; flex-direction:column; }
.rent-phone__txt small{ font-size:12px; color:var(--on-dark-muted); }
.rent-phone__txt b{ font-family:var(--font-head); font-size:clamp(19px,2.4vw,23px); font-weight:800; letter-spacing:-.01em; }
.rent-facts{ list-style:none; margin:18px 0 0; padding:0; display:flex; flex-wrap:wrap; gap:8px; }
.rent-facts li{ display:inline-flex; align-items:center; gap:7px; padding:8px 13px; border-radius:var(--r-pill); background:var(--bg-soft); border:1px solid var(--line); font-size:13px; font-weight:600; color:var(--ink-2); }
.rent-facts li svg{ width:16px; height:16px; color:var(--accent); flex:none; }

/* -- категории проката: карточки со смещением + графт «и многое другое» -- */
.rent-cats{ margin-top:clamp(26px,3vw,38px); }
.rent-cats__head{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:20px; }
.rent-cats__head h3{ font-family:var(--font-head); font-weight:800; font-size:clamp(18px,2.2vw,22px); }
.rent-cats__head .chip b{ color:var(--accent-600); }
.rent-cats__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.rent-cat{ position:relative; overflow:hidden; padding:22px 22px 20px; background:var(--surface); border:1px solid var(--line); border-radius:var(--r); box-shadow:var(--shadow-sm); transition:transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s; }
.rent-cat::after{ content:""; position:absolute; right:-10px; bottom:-16px; width:96px; height:96px; border-radius:50%; background:radial-gradient(circle, rgba(255,122,0,.10), transparent 70%); }
.rent-cat:nth-child(3n+2){ transform:translateY(16px); }
.rent-cat:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--accent-300); }
.rent-cat:nth-child(3n+2):hover{ transform:translateY(10px); }
.rent-cat__ic{ display:grid; place-content:center; width:50px; height:50px; border-radius:14px; background:var(--accent-soft); margin-bottom:14px; flex:none; }
.rent-cat__ic svg{ width:26px; height:26px; color:var(--accent-600); }
.rent-cat h4{ font-family:var(--font-head); font-weight:700; font-size:16.5px; margin-bottom:6px; }
.rent-cat p{ font-size:13.5px; color:var(--muted); line-height:1.45; }
/* графт: пунктирная accent-soft ячейка на всю ширину */
.rent-cat--more{ grid-column:1 / -1; display:flex; flex-direction:row; align-items:center; gap:16px; background:var(--accent-soft); border:1.5px dashed var(--accent-300); box-shadow:none; }
.rent-cat--more::after{ display:none; }
.rent-cat--more .rent-cat__ic{ background:var(--accent); margin-bottom:0; }
.rent-cat--more .rent-cat__ic svg{ color:#fff; }
.rent-cat--more h4{ margin-bottom:4px; }
.rent-cat--more:hover,
.rent-cat--more:nth-child(3n+2):hover{ transform:none; box-shadow:none; border-color:var(--accent); }

/* ===================== МАГАЗИН / витрина ===================== */
.shop-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,64px); align-items:center; }

/* -- WOW: витрина -- */
.shop-window{
  position:relative; overflow:hidden; isolation:isolate; min-height:380px;
  display:flex; flex-direction:column; gap:clamp(14px,1.8vw,20px);
  padding:clamp(20px,2.6vw,32px); border-radius:var(--r-lg);
  border:1px solid var(--line); box-shadow:var(--shadow-lg);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(255,122,0,.16), transparent 55%),
    linear-gradient(165deg,#fff, var(--bg-soft));
}
.shop-window__ghost{ position:absolute; right:-30px; bottom:-30px; width:230px; height:230px; color:var(--accent); opacity:.05; z-index:0; }
.shop-window__glow{ position:absolute; left:-60px; top:-60px; width:220px; height:220px; border-radius:50%; background:radial-gradient(circle, rgba(255,177,77,.22), transparent 70%); z-index:0; }

/* графт: «вывеска» витрины (шапка с точками + подпись + бейдж) */
.shop-window__head{ position:relative; z-index:2; display:flex; align-items:center; gap:12px; }
.shop-window__dots{ display:inline-flex; gap:6px; }
.shop-window__dots i{ width:9px; height:9px; border-radius:50%; background:var(--line); }
.shop-window__dots i:first-child{ background:var(--accent); }
.shop-window__sign{ display:inline-flex; align-items:center; gap:8px; font-family:var(--font-head); font-weight:700; font-size:13px; color:var(--ink); }
.shop-window__sign svg{ width:16px; height:16px; color:var(--accent-600); }
.shop-badge{ display:inline-flex; align-items:center; gap:6px; padding:7px 13px; border-radius:var(--r-pill); font-family:var(--font-head); font-weight:700; font-size:12.5px; box-shadow:var(--shadow-sm); }
.shop-badge svg{ width:15px; height:15px; }
.shop-badge--guard{ margin-left:auto; background:#fff; color:var(--success); border:1px solid var(--line); }
.shop-badge--guard svg{ color:var(--success); }

.shop-shelf{ position:relative; z-index:1; display:grid; grid-template-columns:repeat(3,1fr); gap:12px; padding-bottom:14px; border-bottom:3px solid var(--line); }
.shop-shelf::after{ content:""; position:absolute; left:4%; right:4%; bottom:-3px; height:10px; background:radial-gradient(ellipse at center, rgba(20,24,31,.12), transparent 70%); }
.shop-good{ display:flex; flex-direction:column; align-items:center; gap:8px; }
.shop-good__ic{ width:100%; aspect-ratio:1 / 0.78; display:grid; place-content:center; border-radius:var(--r-sm); background:var(--surface); border:1px solid var(--line); box-shadow:var(--shadow-sm); transition:transform .25s var(--ease); }
.shop-good__ic svg{ width:30px; height:30px; color:var(--ink-2); }
.shop-window:hover .shop-good__ic{ transform:translateY(-3px); }
.shop-tag{ display:inline-flex; align-items:center; line-height:1; padding:5px 12px; border-radius:var(--r-pill); background:var(--accent-soft); border:1px dashed var(--accent-300); color:var(--accent-600); font-family:var(--font-head); font-size:12px; font-weight:800; white-space:nowrap; }
.shop-tag--warr{ background:rgba(31,174,90,.10); border-color:var(--success); color:var(--success); }

/* графт: CSS-ценник без цифр (clip-path + «пробитая дырка») */
.shop-window__foot{ position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:14px; margin-top:auto; }
.shop-cart{ position:relative; width:52px; height:52px; flex:none; display:grid; place-items:center; border-radius:50%; color:#fff; background:linear-gradient(135deg,var(--accent),var(--accent-600)); box-shadow:var(--shadow-accent); animation:shop-bob 5s var(--ease) infinite; }
@keyframes shop-bob{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-6px); } }
.shop-cart svg{ width:24px; height:24px; color:#fff; }
.shop-cart__badge{ position:absolute; top:-4px; right:-4px; min-width:20px; height:20px; padding:0 5px; border-radius:var(--r-pill); display:grid; place-items:center; background:#fff; color:var(--accent-600); font-family:var(--font-head); font-weight:800; font-size:13px; font-style:normal; line-height:1; box-shadow:var(--shadow-sm); }
.shop-pricetag{ position:relative; display:inline-flex; align-items:center; gap:6px; background:#fff; color:var(--accent-600); font-family:var(--font-head); font-weight:800; font-size:19px; white-space:nowrap; padding:13px 22px 13px 32px; border-radius:0 12px 12px 0; clip-path:polygon(16px 0, 100% 0, 100% 100%, 16px 100%, 0 50%); box-shadow:var(--shadow); }
.shop-pricetag::before{ content:""; position:absolute; left:14px; top:50%; transform:translate(-50%,-50%); width:9px; height:9px; border-radius:50%; background:var(--accent-600); }

/* -- контент: категории + акцент на телефон -- */
.shop-cats{ display:grid; gap:10px; margin:22px 0 6px; }
.shop-cat{ display:flex; align-items:flex-start; gap:14px; padding:14px 16px; border-radius:var(--r); background:var(--surface); border:1px solid var(--line); transition:transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s; }
.shop-cat:hover{ transform:translateX(4px); box-shadow:var(--shadow-sm); border-color:var(--accent-300); }
.shop-cat__ic{ width:42px; height:42px; flex:none; display:grid; place-content:center; border-radius:11px; background:var(--accent-soft); }
.shop-cat__ic svg{ width:22px; height:22px; color:var(--accent-600); }
.shop-cat h4{ font-family:var(--font-head); font-weight:700; font-size:15.5px; margin-bottom:3px; }
.shop-cat p{ font-size:13px; color:var(--muted); line-height:1.4; }
.shop-cat--more{ background:var(--accent-soft); border:1.5px dashed var(--accent-300); }
.shop-cat--more .shop-cat__ic{ background:var(--accent); }
.shop-cat--more .shop-cat__ic svg{ color:#fff; }

.shop-phone{ display:flex; align-items:center; gap:14px; margin:8px 0 22px; padding:14px 18px; border-radius:var(--r); color:#fff; background:linear-gradient(135deg,var(--ink),var(--dark-2)); box-shadow:var(--shadow); transition:transform .2s var(--ease), box-shadow .25s var(--ease); }
.shop-phone:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.shop-phone:hover .shop-phone__arr{ transform:translateX(4px); }
.shop-phone__ic{ width:46px; height:46px; flex:none; display:grid; place-content:center; border-radius:12px; background:var(--accent); box-shadow:var(--shadow-accent); }
.shop-phone__ic svg{ width:22px; height:22px; color:#fff; }
.shop-phone__txt{ display:flex; flex-direction:column; flex:1; }
.shop-phone__txt small{ font-size:12px; color:var(--on-dark-muted); }
.shop-phone__txt b{ font-family:var(--font-head); font-size:clamp(18px,2.3vw,22px); font-weight:800; letter-spacing:-.01em; }
.shop-phone__arr{ width:22px; height:22px; color:var(--accent-300); flex:none; transition:transform .2s var(--ease); }

/* ===================== WOW-HERO подстраниц ===================== */
.phero-fx{ position:absolute; inset:0; z-index:1; overflow:hidden; pointer-events:none; }
/* дышащий мэш-градиент в фирменном оранжевом */
.phero-mesh{
  position:absolute; inset:-20%; filter:blur(6px);
  background:
    radial-gradient(38% 44% at 78% 18%, rgba(255,122,0,.42), transparent 62%),
    radial-gradient(30% 40% at 92% 62%, rgba(233,107,0,.30), transparent 60%),
    radial-gradient(34% 42% at 60% 90%, rgba(255,177,77,.18), transparent 60%);
  animation:phero-mesh 18s ease-in-out infinite alternate;
}
@keyframes phero-mesh{
  0%{ transform:translate3d(0,0,0) scale(1); }
  50%{ transform:translate3d(-3%,2%,0) scale(1.08); }
  100%{ transform:translate3d(2%,-2%,0) scale(1.04); }
}
/* тонкая сетка-паттерн для глубины */
.phero-grid{
  position:absolute; inset:0; opacity:.5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:44px 44px;
  -webkit-mask-image:radial-gradient(120% 80% at 70% 0%, #000, transparent 75%);
          mask-image:radial-gradient(120% 80% at 70% 0%, #000, transparent 75%);
}
/* призрачный силуэт-иконка направления (вотермарк) */
.phero-ghost{
  --rot:-8deg;
  position:absolute; right:-4%; top:50%; width:min(560px,52vw); height:min(560px,52vw);
  color:var(--accent); opacity:.08;
  filter:drop-shadow(0 30px 60px rgba(255,122,0,.25));
  transform:translateY(-50%) rotate(var(--rot));
  animation:phero-ghost 14s ease-in-out infinite alternate;
}
@keyframes phero-ghost{
  from{ transform:translateY(-50%) rotate(var(--rot)) scale(1); }
  to{   transform:translateY(-54%) rotate(calc(var(--rot) + 5deg)) scale(1.05); }
}
/* световые орбы */
.phero-orb{ position:absolute; border-radius:50%; filter:blur(2px); animation:phero-float 8s var(--ease) infinite; }
.phero-orb--1{ width:10px; height:10px; right:22%; top:26%; background:var(--accent-300); box-shadow:0 0 24px 6px rgba(255,177,77,.5); }
.phero-orb--2{ width:7px; height:7px; right:14%; top:62%; background:var(--accent); box-shadow:0 0 20px 5px rgba(255,122,0,.5); animation-duration:9s; animation-delay:-3s; }
/* парящие акцент-чипы с фактами (стекло + тень) */
.phero-chip{
  position:absolute; z-index:2; display:inline-flex; align-items:center; gap:8px; white-space:nowrap;
  padding:10px 16px; border-radius:var(--r-pill);
  background:rgba(23,27,35,.55); border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 40px rgba(0,0,0,.35); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  color:var(--on-dark); font-family:var(--font-head); font-weight:700; font-size:13.5px;
  animation:phero-float 8s var(--ease) infinite;
}
.phero-chip svg{ width:17px; height:17px; color:var(--accent-300); flex:none; }
.phero-chip--1{ right:8%;  top:20%; animation-delay:-.4s; }
.phero-chip--2{ right:16%; top:46%; animation-delay:-2.6s; }
.phero-chip--3{ right:5%;  top:70%; animation-delay:-4.8s; }
@keyframes phero-float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
/* модификаторы направлений: разный поворот/свечение силуэта */
.phero--arenda   .phero-ghost{ --rot:-6deg; opacity:.09; }
.phero--prodazha .phero-ghost{ --rot:5deg;  opacity:.08; }
.phero--vykup    .phero-ghost{ --rot:-3deg; opacity:.10; }
.phero--prodazha .phero-mesh{
  background:
    radial-gradient(38% 44% at 26% 18%, rgba(255,122,0,.40), transparent 62%),
    radial-gradient(32% 40% at 10% 60%, rgba(255,177,77,.24), transparent 60%),
    radial-gradient(34% 42% at 44% 90%, rgba(233,107,0,.18), transparent 60%);
}

/* ===================== АДАПТИВ ===================== */
@media (max-width:900px){
  .rent-grid{ grid-template-columns:1fr; }
  .rent-cats__grid{ grid-template-columns:repeat(2,1fr); }
  .rent-cat:nth-child(3n+2){ transform:none; }
  .rent-cat:nth-child(3n+2):hover{ transform:translateY(-6px); }
  .shop-grid{ grid-template-columns:1fr; }
  .shop-window{ order:-1; }
  .phero-chip, .phero-orb{ display:none; }
  .phero-ghost{ width:min(360px,80vw); height:min(360px,80vw); right:-16%; opacity:.06; }
}
@media (max-width:620px){
  .rent-cycle{ aspect-ratio:1/1; }
  .rent-cats__grid{ grid-template-columns:1fr; }
  .rent-node b{ font-size:11.5px; }
  .rent-cat--more{ flex-direction:row; }
  .shop-shelf{ gap:8px; }
  .shop-good__ic svg{ width:26px; height:26px; }
  .shop-window__foot{ flex-direction:column; align-items:stretch; gap:12px; }
  .shop-pricetag{ justify-content:center; }
}

/* ===================== КАРТОЧКА ЗВОНКА (замена форм) ===================== */
.call-card__badge{ display:inline-flex; align-items:center; gap:8px; padding:7px 14px; border-radius:var(--r-pill); background:var(--accent-soft); color:var(--accent-600); font-family:var(--font-head); font-weight:700; font-size:13px; margin-bottom:16px; }
.call-card__badge svg{ width:16px; height:16px; }
.call-card h3{ margin-bottom:8px; }
.call-card__phone{ display:flex; align-items:center; gap:14px; padding:16px 18px; margin:8px 0 16px; border-radius:var(--r); color:#fff; background:linear-gradient(135deg,var(--ink),var(--dark-2)); box-shadow:var(--shadow); transition:transform .2s var(--ease), box-shadow .25s var(--ease); }
.call-card__phone:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.call-card__ic{ width:50px; height:50px; flex:none; display:grid; place-content:center; border-radius:12px; background:var(--accent); box-shadow:var(--shadow-accent); }
.call-card__ic svg{ width:24px; height:24px; color:#fff; }
.call-card__txt{ display:flex; flex-direction:column; }
.call-card__txt small{ font-size:12.5px; color:var(--on-dark-muted); }
.call-card__txt b{ font-family:var(--font-head); font-size:clamp(21px,3vw,26px); font-weight:800; letter-spacing:-.01em; }
.call-card__msg{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.call-card__hours{ display:flex; align-items:center; justify-content:center; gap:7px; margin:16px 0 0; font-size:13px; color:var(--muted); }
.call-card__hours svg{ width:16px; height:16px; color:var(--accent); }

/* ===================== КВИЗ: финал — телефон ===================== */
.quiz__phone{ display:flex; align-items:center; gap:14px; padding:16px 20px; border-radius:var(--r); color:#fff; background:linear-gradient(135deg,var(--accent),var(--accent-600)); box-shadow:var(--shadow-accent); transition:transform .2s var(--ease); }
.quiz__phone:hover{ transform:translateY(-3px); }
.quiz__phone-ic{ width:50px; height:50px; flex:none; display:grid; place-content:center; border-radius:12px; background:rgba(255,255,255,.2); }
.quiz__phone-ic svg{ width:24px; height:24px; color:#fff; }
.quiz__phone-txt{ display:flex; flex-direction:column; }
.quiz__phone-txt small{ font-size:12.5px; opacity:.92; }
.quiz__phone-txt b{ font-family:var(--font-head); font-size:clamp(21px,3vw,26px); font-weight:800; letter-spacing:-.01em; }
.quiz__call-note{ margin:14px 0 0; font-size:13.5px; color:var(--muted); text-align:center; }

/* ===================== МАГАЗИН: сетка категорий на всю ширину ===================== */
.shop-cats--grid{ grid-template-columns:repeat(3,1fr); gap:14px; margin:36px 0 30px; }
.shop-cats--grid .shop-cat--more{ grid-column:1 / -1; }
.shop-cta{ max-width:680px; margin:0 auto; }
.shop-cta__btns{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-top:18px; }
@media (max-width:900px){ .shop-cats--grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .shop-cats--grid{ grid-template-columns:1fr; } .call-card__msg{ grid-template-columns:1fr; } }
