:root {
  --bg: #3d3635;                       /* RAL 8019 — фирменный цвет стен мойки */
  --card: #26272c;                     /* холодно-серые карточки — выделяются на тёплом фоне (наоборот к стенам) */
  --card-2: #30323a;
  --line: rgba(255,255,255,.13);
  --text: #f4f4f6;
  --muted: #8a8a93;
  --red: #ff3b30;
  --accent: #18cf86;
  --accent-grad: linear-gradient(135deg, #2ee89a 0%, #07bd6e 100%);
  --accent-ink: #04261a;
  --ok: #2ecc71;
  --ok-soft: rgba(46,204,113,.18);
  --r: 18px;
  --r-lg: 26px;
  --pad: 22px;
  --maxw: 760px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
.is-hidden { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 8px; }
@keyframes pop { 0% { transform: scale(.96); } 55% { transform: scale(1.035); } 100% { transform: scale(1); } }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text); counter-reset: section;
  font-family: "Onest", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.55; letter-spacing: -.01em;
  overflow-x: hidden;
}
/* Атмосфера: глубина фона (тёплый верхний свет + лёгкая виньетка) */
body::before { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(130% 90% at 50% -15%, rgba(96,82,76,.5), transparent 55%),
    radial-gradient(100% 60% at 50% 115%, rgba(18,14,13,.55), transparent 60%),
    var(--bg); }
/* Атмосфера: тонкое зерно поверх всего (film grain) */
body::after { content: ""; position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
h1, h2 { font-family: "Onest", sans-serif; font-weight: 900; margin: 0; letter-spacing: -.035em; line-height: .98; }
em { font-style: normal; color: var(--red); }

/* ── Reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Header ─────────────────────────────────────────── */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad); transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
/* Бургер-меню */
.burger { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: var(--card); cursor: pointer; padding: 0; flex: none; }
.burger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav { position: fixed; inset: 0; z-index: 29; background: rgba(61,54,53,.98); backdrop-filter: blur(12px);
  display: flex; flex-direction: column; justify-content: center; padding: 72px 28px calc(40px + env(safe-area-inset-bottom));
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .25s, visibility .25s, transform .25s; }
.nav.open { opacity: 1; visibility: visible; transform: none; }
.nav a, .nav__link { font-family: "Onest"; font-weight: 700; font-size: 23px; color: var(--text); text-decoration: none; padding: 13px 0; border: 0; background: none; text-align: left; cursor: pointer; width: 100%; }
.nav a:active, .nav__link:active { color: var(--accent); }
.nav__cta { color: var(--accent) !important; margin-top: 16px; }
body.nav-open { overflow: hidden; }
body.nav-open .hdr { background: rgba(61,54,53,.98); backdrop-filter: blur(12px); border-bottom-color: var(--line); }
.hdr.scrolled { background: rgba(61,54,53,.72); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--text); }
.logo__img { height: 38px; width: auto; display: block; }
.hdr__right { display: flex; align-items: center; gap: 10px; }
.hdr__call { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); color: var(--text); }
.hdr__call:active { background: var(--card-2); }

/* Language switcher */
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 14px; border-radius: 100px;
  background: var(--card); border: 1px solid var(--line); color: var(--text); font-family: "Onest"; font-weight: 700; font-size: 13px; cursor: pointer; }
.lang__btn:active { background: var(--card-2); }
.lang__menu { position: absolute; top: 48px; right: 0; z-index: 50; min-width: 168px;
  background: rgba(70,62,60,.96); backdrop-filter: blur(16px); border: 1px solid var(--line);
  border-radius: 16px; padding: 6px; box-shadow: 0 18px 44px -12px rgba(0,0,0,.7);
  display: flex; flex-direction: column; gap: 2px; animation: fade .18s ease; }
.lang__menu button { text-align: left; background: none; border: none; color: var(--text);
  font-family: "Onest"; font-size: 15px; font-weight: 600; padding: 12px 14px; border-radius: 10px; cursor: pointer; }
.lang__menu button:hover { background: var(--card-2); }

/* ── CTA / buttons ──────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-grad); color: var(--accent-ink); font-family: "Onest"; font-weight: 700;
  font-size: 16px; letter-spacing: 0; text-decoration: none; border: none; cursor: pointer;
  padding: 16px 30px; border-radius: 100px;
  box-shadow: 0 10px 30px -8px rgba(24,207,134,.45);
  transition: transform .12s ease, box-shadow .2s, filter .2s;
}
.cta:hover { filter: brightness(1.05); }
.cta:active { transform: scale(.97); }
.cta--block { display: flex; width: 100%; padding: 17px; border-radius: var(--r); }
.cta--wa { background: #25d366; color: #fff; gap: 10px; box-shadow: 0 10px 28px -8px rgba(37,211,102,.5); }
.cta--wa:hover { background: #20bd5a; filter: none; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line); color: var(--text);
  border-radius: 100px; padding: 13px 22px; font-weight: 600; font-size: 15px; text-decoration: none; cursor: pointer;
  transition: background .15s, border-color .15s;
}
.btn-ghost:active { background: var(--card-2); }
.btn-ghost--block { display: flex; width: 100%; border-radius: var(--r); }

/* ── Hero ───────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 110px var(--pad) 90px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(8,8,10,.94) 0%, rgba(8,8,10,.72) 42%, rgba(8,8,10,.30) 100%),
    linear-gradient(to top, var(--bg) 2%, rgba(61,54,53,.1) 38%),
    var(--hero-img, url("/media/hero.webp")) center 28%/cover no-repeat;
  transform-origin: 50% 52%;
  animation: heroReveal 2.4s cubic-bezier(.2, .65, .25, 1) both;
}
@keyframes heroReveal {
  0%   { transform: scale(1); filter: brightness(.28) saturate(.8); }
  100% { transform: scale(1.1); filter: brightness(1) saturate(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}
.hero__glow { position: absolute; top: -8%; left: 50%; transform: translateX(-50%); width: 130%; height: 55%; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(255,59,48,.16), transparent 62%); filter: blur(38px); mix-blend-mode: screen; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 130px; background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none; }
.hero__in { position: relative; max-width: var(--maxw); width: 100%; margin: 0 auto; z-index: 1; }
.kicker { display: inline-block; color: var(--muted); font-weight: 600; font-size: 13px; letter-spacing: .04em; margin-bottom: 18px; }
.hero__h { font-size: clamp(52px, 16vw, 96px); }
.hero__h em { display: inline-block; text-shadow: 0 0 44px rgba(255,59,48,.38); }
.hero__p { color: var(--muted); font-size: 17px; max-width: 360px; margin: 20px 0 30px; }
.cta--hero, .hero .cta { font-size: 17px; padding: 17px 34px; }
.trust { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-top: 30px; color: var(--muted); font-size: 12.5px; font-weight: 600; }
.trust-rate, .trust .st { white-space: nowrap; }
.trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); opacity: .5; }
.trust .st { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 600; }
.trust .st::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px var(--ok-soft); }
.trust .st.closed::before { background: var(--red); box-shadow: 0 0 0 4px rgba(255,59,48,.18); }
.trust-rate { display: inline-flex; align-items: center; gap: 5px; color: var(--text); font-weight: 700; text-decoration: none; }
.trust-rate .star { color: #ffc24b; font-size: 14px; line-height: 1; }
.trust-rate b { font-weight: 800; }

/* Тизер приложения (скоро) */
.teaser-sec { max-width: var(--maxw); margin: 0 auto; padding: 34px var(--pad); }
.teaser { position: relative; overflow: hidden; border: 1px solid rgba(24,207,134,.3); border-radius: 26px; padding: 40px 26px 36px; text-align: center; background: radial-gradient(125% 150% at 50% 0%, rgba(24,207,134,.18), rgba(255,255,255,.02) 58%); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 32px 64px -34px rgba(24,207,134,.45); }
.teaser__badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 6px 14px; border-radius: 100px; margin-bottom: 18px; }
.teaser__ic { position: relative; width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: rgba(24,207,134,.14); color: var(--accent); box-shadow: inset 0 0 0 1px rgba(24,207,134,.3); }
.teaser__spark { position: absolute; top: 8px; right: 9px; color: var(--accent); animation: ph-twinkle 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.teaser__h { font-family: "Onest"; font-weight: 900; font-size: 27px; letter-spacing: -.02em; line-height: 1.12; margin: 0 0 12px; }
.teaser__p { color: var(--muted); font-size: 14.5px; line-height: 1.55; max-width: 440px; margin: 0 auto 16px; }
.teaser__hint { display: inline-block; color: var(--accent); font-weight: 700; font-size: 13px; }

/* «Что нового» (новости) */
.news-row { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.news-row:last-child { border-bottom: 0; }
.news-tag { flex: none; margin-top: 1px; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; border-radius: 100px; }
.news-tag--soon { color: var(--accent-ink); background: var(--accent); }
.news-tag--new { color: var(--accent); border: 1px solid rgba(24,207,134,.4); background: rgba(24,207,134,.08); }
.news-tx { font-size: 14px; line-height: 1.45; color: var(--text); }
.nav__link--news { color: var(--accent); }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--muted); animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }

/* ── Sections ───────────────────────────────────────── */
.sec { max-width: var(--maxw); margin: 0 auto; padding: 82px var(--pad); counter-increment: section; }
/* запись (7-й блок): поджаты верх и низ, чтобы по клику «Reservar» блок помещался в экран
   целиком и его конец был у закреплённой нижней кнопки (без пустого зазора) */
/* запись (7-й блок): заголовок вверху, блок на высоту экрана, «без предоплаты» — у низа */
#reserva { padding-top: 40px; padding-bottom: 28px; min-height: calc(100svh - 78px); display: flex; flex-direction: column; }
#reserva .h2 { margin-bottom: 18px; }
#reserva .bk { display: flex; flex-direction: column; flex: 1; }
#reserva .reassure { margin-top: auto; padding-top: 18px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: #c9ced5; font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.eyebrow::before { content: counter(section, decimal-leading-zero); color: var(--red); font-size: 13px; font-weight: 800; letter-spacing: 0; line-height: 1; padding-right: 12px; border-right: 2px solid rgba(255,59,48,.5); flex: none; }
.h2 { font-size: clamp(34px, 9.5vw, 58px); margin-bottom: 24px; }
.h2::after { content: ""; display: block; width: 46px; height: 3px; border-radius: 3px; background: var(--red); margin-top: 16px; }

/* ── Servicios list ─────────────────────────────────── */
.slist { display: flex; flex-direction: column; }
.srow {
  display: flex; align-items: center; gap: 16px; width: 100%; text-align: left;
  background: none; border: none; border-top: 1px solid var(--line);
  padding: 22px 4px; cursor: pointer; color: var(--text); transition: padding-left .2s, background .2s;
}
.srow:last-child { border-bottom: 1px solid var(--line); }
.srow:active { background: var(--card); }
.srow:hover { padding-left: 12px; }
.srow__main { flex: 1; min-width: 0; }
.srow__name { font-family: "Onest"; font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.srow__desc { color: var(--muted); font-size: 13.5px; margin-top: 4px; line-height: 1.45; }
.srow__dur { display: inline-flex; align-items: center; gap: 5px; margin-top: 9px; padding: 4px 10px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted); font-weight: 600; font-size: 12px; }
.srow__dur svg { opacity: .6; }
.srow__price { font-family: "Onest"; font-weight: 700; font-size: 17px; white-space: nowrap; }
.srow__price small { display: block; color: var(--muted); font-family: "Onest"; font-weight: 600; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; text-align: right; }
.srow__arr { color: var(--muted); flex: none; transition: transform .2s, color .2s; }

/* Tarjetas con tarifa 3 / 5 fases */
.srow--tiered { display: block; cursor: default; }
.srow--tiered:hover { padding-left: 4px; }
.srow--tiered:active { background: none; }
.srow__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 13px; }
.srow__head .srow__dur { margin-top: 0; }
.srow__tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tierbtn { display: flex; flex-direction: column; gap: 5px; text-align: left; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 36px -22px rgba(0,0,0,.9); color: var(--text); cursor: pointer; transition: border-color .2s, background .2s, transform .08s; }
.tierbtn:active { transform: scale(.98); }
.tierbtn--star { border-color: rgba(24,207,134,.18); }
.tierbtn.is-active { border-color: var(--accent); background: rgba(24,207,134,.12); box-shadow: inset 0 0 0 1px var(--accent); }
.tierbtn__top { display: flex; align-items: baseline; justify-content: space-between; gap: 6px; }
.tierbtn__t { font-family: "Onest"; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 4px; }
.tierbtn__star { color: var(--accent); font-style: normal; font-size: 11px; }
.tierbtn__p { font-family: "Onest"; font-weight: 700; font-size: 14px; color: var(--accent); white-space: nowrap; }
.tierbtn__q { font-size: 12px; font-weight: 700; color: var(--text); opacity: .9; }
.tierbtn__d { font-size: 11.5px; color: var(--muted); line-height: 1.35; }
.chip--star { border-color: rgba(24,207,134,.45); background: rgba(24,207,134,.07); }

/* Комплексная — спокойная карточка (цена сверху, чтобы не пряталась под FAB) */
.srow--card { display: block; border: 1px solid var(--line); border-radius: 18px; padding: 16px 16px 17px; margin-top: 18px; background: var(--card); box-shadow: 0 18px 36px -24px rgba(0,0,0,.95); }
.srow--card:hover { padding-left: 16px; }
.srow--card:active { background: var(--card-2); }
.srow--card.is-active { border-color: var(--accent); background: rgba(24,207,134,.1); box-shadow: inset 0 0 0 1px var(--accent); }
.srow__rec { font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--accent); background: rgba(24,207,134,.14); border: 1px solid rgba(24,207,134,.3); padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.srow__cardrow { display: flex; align-items: center; gap: 14px; }
.srow__main { flex: 1; min-width: 0; }
/* квадрат-выбор (как у доп-услуг внизу) — чтобы было видно, что услугу нужно выбрать */
.srow__check { flex: none; width: 24px; height: 24px; border-radius: 7px; border: 2px solid var(--line); position: relative; transition: border-color .15s, background .15s; }
.srow--card.is-active .srow__check { background: var(--accent); border-color: var(--accent); }
.srow--card.is-active .srow__check::after { content: ""; position: absolute; left: 7px; top: 3px; width: 6px; height: 11px; border: solid var(--accent-ink); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.srow__cardprice { font-family: "Onest"; font-weight: 700; font-size: 17px; color: var(--accent); white-space: nowrap; }
.srow--card .srow__desc { margin-top: 7px; }
.srow--card .srow__dur { margin-top: 11px; }
.srow:hover .srow__arr { transform: translateX(4px); color: var(--accent); }
.note { color: var(--muted); font-size: 12.5px; margin-top: 22px; max-width: 480px; }
.note--info { display: flex; align-items: flex-start; gap: 8px; }
.note--info .note__ic { flex: none; color: var(--accent); margin-top: 1px; }

/* Фазы мойки — визуальные stepper'ы (под карточкой кузова / салона) */
/* Стэппер фаз — спокойный премиум-таймлайн (без неона/свечения/мерцания) */
.phases { margin: 12px 0 2px; padding: 18px 16px 15px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); }
.phases__hd { font-family: "Onest"; font-weight: 700; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.phases__track { display: flex; gap: 4px; position: relative; }
/* тонкая линия-связка процесса (за кружками) */
.phases__track::before { content: ""; position: absolute; top: 19px; left: 13%; right: 13%; height: 1px; background: var(--line); z-index: 0; }
.phase { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; position: relative; z-index: 1; }
.phase__dot { position: relative; width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--card); border: 1px solid var(--line); color: var(--text); }
.phase__ic { opacity: .92; }
/* номер фазы — аккуратный бейдж в углу иконки (нейтральный, без зелёного) */
.phase__n { position: absolute; top: -6px; right: -5px; min-width: 17px; height: 17px; padding: 0 3px; box-sizing: border-box; border-radius: 9px; background: var(--card-2); border: 1px solid var(--line); color: var(--text); font: 700 10px/15px "Onest", system-ui, sans-serif; font-style: normal; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,.28); }
.phase__lbl { font-size: 11px; line-height: 1.25; color: rgba(244,244,246,.82); letter-spacing: -.01em; }
.phase__shine { display: none; }
.phases__legend { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.ph-tag { font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 100px; border: 1px solid var(--line); color: var(--muted); }
.ph-tag--base { color: var(--muted); }
.ph-tag--deep { color: var(--muted); }
.ph-tag--deep i { font-style: normal; font-size: 10px; }
.ph-tag--deep .ph-rec { color: var(--accent); font-size: 10.5px; font-weight: 800; letter-spacing: .01em; }
@keyframes ph-draw { 0% { stroke-dashoffset: 1; } 45% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; } }
@keyframes ph-twinkle { 0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); } 50% { opacity: 1; transform: scale(1) rotate(90deg); } }

/* Galería */
.feed { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; margin: 0 calc(-1 * var(--pad)); padding: 0 var(--pad) 8px; scrollbar-width: none; }
.feed::-webkit-scrollbar { display: none; }
.feed__item { flex: none; width: 84%; max-width: 360px; aspect-ratio: 9 / 16; scroll-snap-align: center; position: relative; border-radius: 22px; overflow: hidden; background: #000; border: 1px solid var(--line); box-shadow: 0 16px 44px -18px rgba(0,0,0,.7); cursor: pointer; padding: 0;
  transform: scale(.87); filter: brightness(.45) saturate(.9); opacity: .85;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), filter .4s, opacity .4s; }
.feed__item.is-active { transform: scale(1); filter: none; opacity: 1; box-shadow: 0 22px 54px -18px rgba(0,0,0,.8); }
.feed__item video, .feed__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feed__badge { position: absolute; left: 14px; bottom: 14px; pointer-events: none; display: inline-flex; align-items: center; gap: 7px;
  background: rgba(61,54,53,.7); backdrop-filter: blur(6px); border: 1px solid var(--line); color: #fff; font-size: 12px; font-weight: 600; padding: 7px 12px; border-radius: 100px; }
.ig-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 13px 22px; border-radius: 100px;
  background: var(--card); border: 1px solid var(--line); color: var(--text); text-decoration: none; font-weight: 700; font-size: 15px; transition: border-color .15s, background .15s; }
.ig-link:active { background: var(--card-2); }
.ig-link svg { color: #e1306c; }

/* Zona / ubicación top */
.section-lead { color: var(--muted); margin: -10px 0 24px; max-width: 480px; }
.places { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; margin: 0 calc(-1 * var(--pad)); padding: 0 var(--pad) 8px; scrollbar-width: none; }
.places::-webkit-scrollbar { display: none; }
.place { flex: none; width: 240px; scroll-snap-align: start; }
.place__img { position: relative; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; background: var(--card); }
.place__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.place:hover .place__img img { transform: scale(1.05); }
.place__tag { position: absolute; left: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 5px; background: rgba(61,54,53,.78); backdrop-filter: blur(6px); border: 1px solid var(--line); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 11px 6px 9px; border-radius: 100px; }
.place__walk { color: var(--accent); flex: none; }
.place__name { font-family: "Onest"; font-weight: 700; font-size: 16px; margin-top: 12px; }
.place__desc { color: var(--muted); font-size: 13px; margin-top: 3px; }

/* Por qué nosotros */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.why-card { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 36px -22px rgba(0,0,0,.9); border: 1px solid var(--line); border-radius: 16px; padding: 16px 14px; }
.why-ic { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(140deg, rgba(24,207,134,.24), rgba(24,207,134,.06)); box-shadow: inset 0 0 0 1px rgba(24,207,134,.22), 0 6px 16px -9px rgba(24,207,134,.5); color: var(--accent); margin-bottom: 12px; transition: transform .25s ease, box-shadow .25s ease; }
.why-card:hover .why-ic { transform: translateY(-2px) scale(1.05); box-shadow: inset 0 0 0 1px rgba(24,207,134,.4), 0 11px 24px -9px rgba(24,207,134,.62); }
.why-tt { font-family: "Onest"; font-weight: 700; font-size: 15px; line-height: 1.25; }
.why-ds { color: var(--muted); font-size: 12.5px; margin-top: 5px; line-height: 1.4; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 36px -22px rgba(0,0,0,.9); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px; background: none; border: 0; color: var(--text); font-family: "Onest"; font-weight: 600; font-size: 15px; text-align: left; cursor: pointer; }
.faq-ic { flex: none; color: var(--muted); transition: transform .25s; }
.faq-item.is-open .faq-ic { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.is-open .faq-a { max-height: 320px; }
.faq-a p { margin: 0; padding: 0 16px 16px; color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.bk__step { scroll-margin-top: 112px; }

/* Reseñas */
.rev-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; flex-wrap: wrap; }
.rev-score { display: flex; align-items: baseline; gap: 10px; }
#rev-rating { font-family: "Onest"; font-weight: 800; font-size: 46px; line-height: 1; }
.rev-stars { color: #ffc107; font-size: 20px; letter-spacing: 2px; }
.rev-meta { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 600; }
.reviews { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 6px; margin: 0 calc(-1 * var(--pad)); padding-left: var(--pad); padding-right: var(--pad); scrollbar-width: none; scroll-snap-type: x proximity; }
.reviews::-webkit-scrollbar { display: none; }
.review { position: relative; flex: none; width: 280px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 36px -22px rgba(0,0,0,.9); border: 1px solid var(--line); border-radius: 18px; padding: 20px 20px 18px; scroll-snap-align: start; overflow: hidden; }
.review::before { content: "\201C"; position: absolute; top: -16px; right: 14px; font-family: Georgia, serif; font-size: 96px; line-height: 1; color: var(--accent); opacity: .13; pointer-events: none; }
.review__stars { color: #ffc107; letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.review__txt { font-size: 14.5px; line-height: 1.55; margin: 0 0 16px; color: var(--text); }
.review__foot { display: flex; align-items: center; gap: 11px; }
.review__av { width: 38px; height: 38px; flex: none; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: "Onest"; font-weight: 800; font-size: 16px; color: var(--accent-ink); background: var(--accent-grad); box-shadow: 0 4px 12px -4px rgba(24,207,134,.5); }
.review__who { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.review__name { font-family: "Onest"; font-weight: 700; font-size: 14px; }
.review__src { font-size: 11px; color: var(--muted); letter-spacing: .03em; }
#rev-link { margin-top: 18px; }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 80; background: rgba(5,5,7,.95); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; }
.lb__img { max-width: 92vw; max-height: 84vh; border-radius: 14px; object-fit: contain; box-shadow: 0 24px 70px rgba(0,0,0,.7); animation: lbin .25s cubic-bezier(.2,.7,.2,1); }
@keyframes lbin { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.lb__close { position: absolute; top: 16px; right: 16px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; color: #fff; font-size: 18px; cursor: pointer; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lb__prev { left: 14px; } .lb__next { right: 14px; }
.lb__nav:active, .lb__close:active { background: rgba(255,255,255,.22); }
.lb__count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: 13px; font-weight: 600; }

/* ── Booking ────────────────────────────────────────── */
.bk { }
.bk__step { margin-bottom: 26px; animation: fade .35s ease; }
.bk__t { display: block; color: var(--muted); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
/* Заголовок допов — заметная зелёная пилюля (это улучшения по желанию) */
#step-extras .bk__t { display: flex; width: fit-content; margin: 0 auto 16px; align-items: center; gap: 7px; color: var(--accent); font-size: 13.5px; letter-spacing: .02em; text-transform: none; background: rgba(24,207,134,.1); border: 1px solid rgba(24,207,134,.3); padding: 8px 16px; border-radius: 100px; }
#step-extras .bk__t::before { content: "✨"; font-size: 13px; }
.addons { display: flex; flex-direction: column; gap: 10px; }
.addon { display: flex; align-items: center; gap: 14px; text-align: left; width: 100%;
  background: var(--card); border: 1.5px solid transparent; border-radius: var(--r); padding: 14px 16px; cursor: pointer; color: var(--text); transition: border-color .15s, background .15s; }
.addon:active { background: var(--card-2); }
.addon.is-on { border-color: var(--accent); background: var(--card-2); }
.addon__check { flex: none; width: 24px; height: 24px; border-radius: 7px; border: 2px solid var(--line); position: relative; transition: border-color .15s, background .15s; }
.addon.is-on .addon__check { background: var(--accent); border-color: var(--accent); }
.addon.is-on .addon__check::after { content: ""; position: absolute; left: 7px; top: 3px; width: 6px; height: 11px; border: solid var(--accent-ink); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.addon__main { flex: 1; min-width: 0; }
.addon__name { font-family: "Onest"; font-weight: 700; font-size: 14px; }
.addon__desc { color: var(--muted); font-size: 12px; margin-top: 2px; }
.addon__price { font-family: "Onest"; font-weight: 700; font-size: 14px; color: var(--accent); white-space: nowrap; }

/* Выбор услуги — всегда стопкой (как доп-услуги), даже на десктопе (перебивает .chips-сетку) */
#bk-services { display: flex; flex-direction: column; gap: 10px; }
/* Выбор услуги (Completo/Exterior/Interior) — в стиле доп-услуг: квадрат-выбор, одна за раз */
.bsvc { display: flex; align-items: center; gap: 14px; text-align: left; width: 100%;
  padding: 15px 16px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line);
  color: var(--text); cursor: pointer; transition: border-color .15s, background .15s; }
.bsvc:active { background: var(--card-2); }
.bsvc.is-on { border-color: var(--accent); background: var(--card-2); }
.bsvc__check { flex: none; width: 24px; height: 24px; border-radius: 7px; border: 2px solid var(--line); position: relative; transition: border-color .15s, background .15s; }
.bsvc.is-on .bsvc__check { background: var(--accent); border-color: var(--accent); }
.bsvc.is-on .bsvc__check::after { content: ""; position: absolute; left: 7px; top: 3px; width: 6px; height: 11px; border: solid var(--accent-ink); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.bsvc__main { flex: 1; min-width: 0; }
.bsvc__name { font-family: "Onest"; font-weight: 700; font-size: 15px; }
.bsvc__desc { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.bsvc__rec { display: inline-block; vertical-align: middle; margin-left: 7px; font-family: "Onest"; font-weight: 800;
  font-size: 10px; letter-spacing: .05em; text-transform: uppercase; color: var(--accent);
  background: rgba(24,207,134,.12); border: 1px solid rgba(24,207,134,.32); border-radius: 100px; padding: 2px 8px; }
/* Подзаголовок «¿Solo una parte?» — разделяет Completo (всё) и отдельные кузов/салон */
.bk-subhd { font-family: "Onest"; font-weight: 700; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin: 4px 0 -2px; }
.srow-subhd { margin: 20px 0 2px; }

/* SEO-блок «Услуги и цены» (локальные ключи) */
.seo-services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.seo-svc { padding: 18px 18px 16px; border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--line); }
.seo-svc__t { font-family: "Onest"; font-weight: 800; font-size: 16.5px; margin: 0 0 6px; letter-spacing: -.01em; }
.seo-svc__d { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 0; }
.seo-svc__p { display: inline-block; margin-top: 10px; font-family: "Onest"; font-weight: 800; font-size: 14px; color: var(--accent); }
@media (max-width: 600px) { .seo-services { grid-template-columns: 1fr; } }

.chips { display: flex; flex-direction: column; gap: 10px; }
.chip {
  display: flex; flex-direction: column; align-items: flex-start; gap: 5px; text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 36px -22px rgba(0,0,0,.9); border: 1.5px solid var(--line); border-radius: var(--r);
  padding: 15px 16px; cursor: pointer; color: var(--text); transition: border-color .15s, background .15s;
}
.chip:active { background: var(--card-2); }
.chip.is-active { border-color: var(--accent); background: rgba(24,207,134,.12); box-shadow: inset 0 0 0 1px var(--accent); animation: pop .25s ease; }
.chip.is-active .chip__name::before { content: "✓ "; color: var(--accent); font-weight: 800; }
.chip__name { font-family: "Onest"; font-weight: 700; font-size: 15px; }
.chip__q { font-family: "Onest"; font-weight: 700; font-size: 13px; }
.chip__d { color: var(--muted); font-size: 12px; line-height: 1.3; }
.chip__star { color: var(--accent); font-style: normal; font-size: 13px; margin-left: 2px; }
.chip__price { color: var(--accent); font-weight: 700; font-size: 13px; white-space: nowrap; }
/* Группировка чипов записи: Комплексная отдельно, Кузов/Салон со своими тарифами */
.chip-group__t { font-family: "Onest"; font-weight: 700; font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin: 8px 0 -1px; }
.chip-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.chip-row .chip { padding: 15px 14px; }
.chip-row .chip--wide { grid-column: 1 / -1; }

.days { display: flex; gap: 10px; overflow-x: auto; padding-top: 5px; padding-bottom: 14px; margin: 0 calc(-1 * var(--pad)); padding-left: var(--pad); padding-right: var(--pad);
  scrollbar-width: none; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; }
.days::-webkit-scrollbar { display: none; }
.day { position: relative; flex: none; width: 66px; text-align: center; cursor: pointer; background: var(--card); border: 1.5px solid transparent; border-radius: var(--r); padding: 12px 6px; transition: border-color .15s, background .15s, opacity .15s; scroll-snap-align: start; }
.day--empty { opacity: .4; }
.day--empty.is-active { opacity: 1; }
.day__dot { position: absolute; top: 8px; right: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.swipe-hint { color: var(--muted); font-size: 12px; margin-top: 10px; opacity: .85; }

/* Подсказка «выбери день/время». Подсвечиваем не зелёной рамкой, а самими днями/слотами:
   они мягко приподнимаются и «дышат» (объём), волной слева-направо — в стиле сайта. */
.bk__need { display: block; margin-top: 4px; color: var(--accent); font-weight: 700; font-size: 13.5px; animation: fade .25s ease; }
.bk__step--nudge .bk__t { color: var(--accent); }
@keyframes pickLift {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 0 0 0 rgba(0,0,0,0); }
  45% { transform: translateY(-4px) scale(1.05); box-shadow: 0 10px 22px -8px rgba(0,0,0,.55); }
}
.picker--nudge .day, .picker--nudge .slot { animation: pickLift 1.05s cubic-bezier(.2,.8,.2,1) 2 both; will-change: transform; }
.picker--nudge .day:nth-child(2), .picker--nudge .slot:nth-child(2) { animation-delay: .06s; }
.picker--nudge .day:nth-child(3), .picker--nudge .slot:nth-child(3) { animation-delay: .12s; }
.picker--nudge .day:nth-child(4), .picker--nudge .slot:nth-child(4) { animation-delay: .18s; }
.picker--nudge .day:nth-child(5), .picker--nudge .slot:nth-child(5) { animation-delay: .24s; }
.picker--nudge .day:nth-child(6), .picker--nudge .slot:nth-child(6) { animation-delay: .3s; }
.picker--nudge .day:nth-child(n+7), .picker--nudge .slot:nth-child(n+7) { animation-delay: .36s; }
@media (prefers-reduced-motion: reduce) { .picker--nudge .day, .picker--nudge .slot { animation: none; } }
.day:active { background: var(--card-2); }
.day.is-active { border-color: var(--accent); background: var(--card-2); animation: pop .25s ease; }
.day__dow { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.day__num { font-family: "Onest"; font-size: 23px; font-weight: 700; margin: 2px 0; }
.day__mon { font-size: 11px; color: var(--muted); }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 10px; }
.slot { background: var(--card); border: 1.5px solid transparent; border-radius: 14px; padding: 14px 0; text-align: center; font-family: "Onest"; font-weight: 600; font-size: 15px; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.slot:active { background: var(--card-2); }
.slot.is-active { border-color: transparent; background: var(--accent-grad); color: var(--accent-ink); animation: pop .25s ease; box-shadow: 0 8px 22px -8px rgba(24,207,134,.5); }

.form { display: flex; flex-direction: column; gap: 12px; }
.form__row { display: flex; gap: 12px; }
.form__row > * { flex: 1; min-width: 0; }
.field { width: 100%; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--r); padding: 17px 18px; color: var(--text); font-size: 16px; font-family: inherit; resize: vertical; transition: border-color .15s; }
.field:focus { outline: none; border-color: var(--accent); }
.field::placeholder { color: var(--muted); }
.phone-field { display: flex; align-items: stretch; }
.phone-cc { display: flex; align-items: center; gap: 4px; padding: 0 16px; background: var(--card); border: 1.5px solid var(--line); border-right: none; border-radius: var(--r) 0 0 var(--r); color: var(--text); font-weight: 700; white-space: nowrap; transition: border-color .15s; }
.phone-input { border-radius: 0 var(--r) var(--r) 0; }
.phone-field:focus-within .phone-cc { border-color: var(--accent); }
.select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238a8a93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px;
}
.select:disabled { opacity: .5; cursor: not-allowed; }
.select:invalid, .select option[value=""] { color: var(--muted); }
.link-btn { align-self: flex-start; background: none; border: none; color: var(--accent); font-weight: 700; font-size: 14px; cursor: pointer; padding: 2px 0; }
.welcome { background: var(--card); border: 1.5px solid rgba(24,207,134,.4); border-radius: var(--r); padding: 14px 16px; font-size: 14px; margin-bottom: 12px; }
.welcome b { color: var(--accent); }
.reassure { color: var(--muted); font-size: 12.5px; text-align: center; margin-top: 16px; }
.reassure--info { display: flex; align-items: flex-start; justify-content: center; gap: 7px; }
.reassure--info .note__ic { flex: none; color: var(--accent); margin-top: 2px; }

/* ── Ubicación ──────────────────────────────────────── */
.loc-sub { color: var(--muted); margin: -14px 0 24px; }
.map { position: relative; display: block; height: 280px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); margin-bottom: 24px; }
.map__frame { width: 100%; height: 100%; border: 0; display: block; object-fit: cover; }
.map__open { position: absolute; right: 14px; top: 14px; pointer-events: none; background: rgba(61,54,53,.82); backdrop-filter: blur(8px); border: 1px solid var(--line); color: var(--text); font-weight: 600; font-size: 12px; padding: 7px 12px; border-radius: 100px; }
.map__pin { position: absolute; left: 14px; bottom: 14px; pointer-events: none;
  background: rgba(61,54,53,.82); backdrop-filter: blur(8px); border: 1px solid var(--line);
  color: var(--text); font-weight: 600; font-size: 13px; padding: 8px 14px; border-radius: 100px; }
.map__pin::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--red); margin-right: 8px; vertical-align: middle; box-shadow: 0 0 0 4px rgba(255,59,48,.18); }
.hours { display: flex; flex-direction: column; }
.hours div { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: 15px 0; border-top: 1px solid var(--line); }
.hours div:last-child { border-bottom: 1px solid var(--line); }
.hours span { color: var(--muted); white-space: nowrap; }
.hours b { font-weight: 700; }
.hours-prep { color: var(--accent); font-weight: 600; font-size: 13px; text-align: right; line-height: 1.4; }
.loc-actions { display: flex; gap: 12px; margin-top: 22px; }
.loc-actions .btn-ghost { flex: 1; }

/* ── Footer ─────────────────────────────────────────── */
.foot { text-align: center; color: var(--muted); font-size: 13px; padding: 36px var(--pad) 120px; border-top: 1px solid var(--line); }
.foot__b { font-family: "Onest"; font-weight: 800; letter-spacing: .12em; color: var(--text); }
.foot a { margin-left: 12px; color: var(--accent); text-decoration: none; font-weight: 600; }

/* ── Sticky ─────────────────────────────────────────── */
.sticky {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 40;
  display: flex; align-items: center; gap: 12px; width: calc(100% - 28px); max-width: 520px;
  background: rgba(20,20,24,.82); backdrop-filter: blur(16px); border: 1px solid var(--line);
  border-radius: 100px; padding: 8px 8px 8px 20px; box-shadow: 0 16px 40px -10px rgba(0,0,0,.7);
  animation: rise .35s cubic-bezier(.2,.8,.2,1);
}
.sticky__txt { flex: 1; font-size: 13px; line-height: 1.25; min-width: 0; }
.sticky__txt b { font-family: "Onest"; font-weight: 700; }
.sticky .cta { padding: 13px 22px; font-size: 15px; white-space: nowrap; }
@keyframes rise { from { opacity: 0; transform: translate(-50%, 18px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ── Loader / error ─────────────────────────────────── */
/* WhatsApp flotante */
/* Botón flotante con menú de canales (WhatsApp / Telegram / Instagram) */
.fab { position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom)); z-index: 45; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fab__btn { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; border: 0; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 10px 28px -6px rgba(24,207,134,.5); transition: transform .15s, background .2s; animation: waIn .35s cubic-bezier(.2,.8,.2,1); }
.fab__btn:active { transform: scale(.92); }
.fab__ico-close { display: none; }
.fab.open .fab__btn { background: var(--card-2); }
.fab.open .fab__ico-chat { display: none; }
.fab.open .fab__ico-close { display: block; }
.fab__menu { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; opacity: 0; visibility: hidden; transform: translateY(10px) scale(.96); transform-origin: bottom right; transition: opacity .2s, transform .2s, visibility .2s; }
.fab.open .fab__menu { opacity: 1; visibility: visible; transform: none; }
.fab__opt { display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; border-radius: 100px; color: #fff; font-weight: 700; font-size: 14px; text-decoration: none; box-shadow: 0 8px 20px -8px rgba(0,0,0,.6); transition: transform .12s; }
.fab__opt:active { transform: scale(.96); }
.fab__opt--wa { background: #25d366; }
.fab__opt--call { background: #2aabee; }
.fab__opt--tg { background: #2aabee; }
.fab__opt--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* Canales en la pantalla de éxito */
.done__ch { margin: 2px 0 6px; }
.done__chlabel { display: block; color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.done__chrow { display: flex; gap: 10px; }
.chbtn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: 14px; color: #fff; font-weight: 700; font-size: 14px; text-decoration: none; transition: transform .12s; }
.chbtn:active { transform: scale(.97); }
.chbtn--wa { background: #25d366; }
.chbtn--tg { background: #2aabee; }
.chbtn--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
/* Экран успеха: выбор канала (3 в ряд), календарь, действия, возврат */
.done__chlabel { margin-top: 6px; }
.done__chrow--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.done__chrow--3 .chbtn { flex-direction: column; gap: 6px; padding: 13px 6px; font-size: 12px; border-radius: 14px; }
.cta--cal { display: inline-flex; align-items: center; justify-content: center; gap: 9px; margin-top: 14px;
  background: var(--card-2); border: 1px solid var(--line); color: var(--text); }
.cta--cal svg { color: var(--accent); }
.cta--cal:active { background: var(--card); }
.done__acts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.done__home { margin-top: 10px; color: var(--muted); }

/* Прайс по размеру авто (модалка-шторка) */
.price-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 16px; padding: 16px; border-radius: var(--r); background: rgba(24,207,134,.09); border: 1.5px solid var(--accent); color: var(--accent); font-family: "Onest"; font-weight: 800; font-size: 15px; cursor: pointer; transition: background .15s, border-color .15s; }
.price-btn::before { color: var(--accent) !important; }
.price-btn:active { background: var(--card-2); }
/* Кнопка прайса в форме записи — наверху и нейтральная (не выглядит «выбранной») */
.price-btn--ghost { margin: 0 0 12px; background: var(--card); border: 1px solid var(--line); color: var(--text); font-weight: 700; }
.price-btn--ghost::before { color: var(--muted) !important; }
.price-btn--ghost:active { background: var(--card-2); }
.price-btn::before { content: ""; width: 17px; height: 17px; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M3 9h18M8 14h4'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M3 9h18M8 14h4'/%3E%3C/svg%3E") center/contain no-repeat; color: var(--accent); flex: none; }
/* Вкладки размера + столбец цен */
.pclass { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 18px; }
.pclass__b { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 9px 4px; border-radius: 12px; background: var(--card); border: 1px solid var(--line); color: var(--text); cursor: pointer; }
.pclass__b span { font-family: "Onest"; font-weight: 700; font-size: 13px; }
.pclass__b small { color: var(--muted); font-size: 9.5px; line-height: 1.1; text-align: center; }
.pclass__b.is-on { border-color: var(--accent); background: rgba(24,207,134,.12); box-shadow: inset 0 0 0 1px var(--accent); }
.pclass__b.is-on small { color: var(--accent); }
.pclass__car { color: var(--muted); margin-bottom: 1px; }
.pclass__b.is-on .pclass__car { color: var(--accent); }
.ptapi-note { color: var(--muted); font-size: 12px; font-style: italic; margin: -6px 0 8px; }
.plist { display: flex; flex-direction: column; }
.plist__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 14.5px; }
.plist__row > span { font-weight: 600; }
.plist__row b { color: var(--accent); font-family: "Onest"; font-weight: 700; font-size: 15px; white-space: nowrap; }
.plist__hl > span, .plist__hl b { color: var(--accent); font-weight: 800; }
.price { position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,.7); backdrop-filter: blur(6px); display: flex; align-items: flex-end; justify-content: center; }
.price__card { background: var(--bg); border: 1px solid var(--line); border-radius: 24px 24px 0 0; width: 100%; max-width: 560px; max-height: 88vh; overflow-y: auto; padding: 26px 20px calc(26px + env(safe-area-inset-bottom)); position: relative; animation: sheetUp .3s cubic-bezier(.2,.8,.2,1); }
@keyframes sheetUp { from { transform: translateY(30px); opacity: .6; } to { transform: none; opacity: 1; } }
.price__close { position: absolute; right: 16px; top: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--card); border: 1px solid var(--line); color: var(--text); font-size: 16px; cursor: pointer; }
.price__h { font-family: "Onest"; font-weight: 800; font-size: 20px; margin: 0 44px 18px 0; }
.ptab-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ptab { width: 100%; border-collapse: collapse; font-size: 13px; }
.ptab th { color: var(--muted); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .03em; padding: 8px 6px; text-align: center; border-bottom: 1px solid var(--line); }
.ptab th:first-child { text-align: left; }
.ptab td { padding: 11px 6px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.05); color: var(--text); font-weight: 600; white-space: nowrap; }
.ptab__n { text-align: left !important; font-family: "Onest"; font-weight: 700; padding-right: 12px !important; }
.ptab__star { color: var(--accent); font-style: normal; }
.ptab__hl td { color: var(--accent); }
.pextra__t { font-family: "Onest"; font-weight: 700; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin: 22px 0 10px; }
.pextra__row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 13.5px; }
.pextra__row b { color: var(--accent); white-space: nowrap; }
.price__note { color: var(--muted); font-size: 12.5px; margin: 20px 0 0; line-height: 1.5; }
/* Инфо-плашка наверху модалки прайса (цена зависит от размера/состояния — без сюрпризов) */
.price__lead { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 16px;
  padding: 12px 14px; border-radius: 12px; background: rgba(24,207,134,.08); border: 1px solid rgba(24,207,134,.28); }
.price__lead-ic { flex: none; color: var(--accent); margin-top: 1px; }
.price__lead .price__note { margin: 0; }

/* ── Матрица прайса по размеру авто (силуэты + акцент Exterior/Interior) ── */
.pmx-wrap { margin: 2px 0 4px; }
.pmx { width: 100%; border-collapse: collapse; table-layout: fixed; }
.pmx__c0 { width: 33%; }
/* Шапка: силуэт + класс + двойная подпись */
.pmx thead th { vertical-align: bottom; text-align: center; padding: 0 3px 10px; cursor: pointer; }
.pmx__corner { border: 0; }
.pmx__car { display: block; width: 100%; max-width: 52px; height: auto; margin: 0 auto 5px; fill: var(--muted); color: var(--muted); }
.pmx__cn { display: block; font-family: "Onest"; font-weight: 800; font-size: 12.5px; line-height: 1.08; color: var(--text); }
/* Второй тип (Moto / SUV / 7 pl.) — такого же размера и белым, равнозначно первому */
.pmx__alt { color: var(--text); margin-top: 1px; }
.pmx__car--flip { transform: scaleX(-1); }
/* Описание фаз строкой под рядом (что входит) */
.pmx__rn { display: block; }
.pmx__desc { color: var(--muted); font-size: 11px; line-height: 1.35; padding: 2px 8px 11px 2px; }
.pmx__descrow--hl .pmx__desc { color: var(--text); }
/* Подсветка колонки авто-класса */
.pmx__hc.is-on { background: rgba(24,207,134,.10); border-radius: 12px 12px 0 0; }
.pmx__hc.is-on .pmx__car { fill: var(--accent); }
.pmx__hc.is-on .pmx__cn { color: var(--accent); }
.pmx__p.is-on { background: rgba(24,207,134,.10); }
.pmx tbody tr:last-child .pmx__p.is-on { border-radius: 0 0 12px 12px; }
/* Заголовки групп — акцент Exterior / Interior (секция-полоса, без красного) */
.pmx__g td { padding: 16px 0 3px; }
.pmx__gl { display: flex; align-items: center; gap: 10px; width: 100%; box-sizing: border-box; font-family: "Onest"; font-weight: 800;
  font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--text);
  padding: 10px 14px; border-radius: 10px; background: rgba(255,255,255,.07); }
.pmx__gi { color: var(--accent); flex: none; width: 17px; height: 17px; }
/* Ряды услуг */
.pmx__r { text-align: left; font-weight: 600; font-size: 13.5px; color: var(--text);
  padding: 12px 8px 12px 2px; border-top: 1px solid rgba(255,255,255,.06); }
.pmx__p { text-align: center; font-family: "Onest"; font-weight: 700; font-size: 13.5px; color: var(--text);
  padding: 12px 2px; border-top: 1px solid rgba(255,255,255,.06); white-space: nowrap; }
.pmx__g + .pmx__row .pmx__r, .pmx__g + .pmx__row .pmx__p { border-top: 0; }
.pmx__row--hl .pmx__r, .pmx__row--hl .pmx__p { color: var(--accent); font-weight: 800; }
.pmx__star { color: var(--accent); font-style: normal; }
.pmx__sep td { height: 6px; padding: 0; border: 0; }
@media (max-width: 380px) {
  .pmx__r, .pmx__p { font-size: 12.5px; padding-left: 1px; padding-right: 1px; }
  .pmx__cn { font-size: 11px; }
}

/* Блоки под матрицей: химчистка (подсвечена) и доп. услуги — отделены карточками */
.pgroup { margin-top: 14px; padding: 14px 16px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); }
.pgroup--tapi { background: rgba(24,207,134,.07); border-color: rgba(24,207,134,.24); }
.pgroup__h { display: flex; align-items: center; gap: 8px; font-family: "Onest"; font-weight: 800;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin: 0 0 4px; }
.pgroup__h svg { color: var(--accent); flex: none; }
.pgroup .plist__row { padding: 11px 0; }
.pgroup .plist__row:last-child { border-bottom: 0; padding-bottom: 0; }

/* Subir arriba — mini-chevron centrado y vivo (como el del hero) */
.to-top { position: fixed; left: 50%; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 44;
  transform: translateX(-50%); background: none; border: 0; padding: 6px 16px; color: var(--text); cursor: pointer;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s, bottom .25s; filter: drop-shadow(0 2px 6px rgba(0,0,0,.6)); }
.to-top.show { opacity: 1; visibility: visible; animation: bobUp 1.8s ease-in-out infinite; }
.to-top.up { bottom: calc(86px + env(safe-area-inset-bottom)); }
@keyframes bobUp { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -6px); } }

/* Липкая кнопка «Reservar» (моб.): появляется при прокрутке, прячется в секции записи */
.sticky-cta { position: fixed; left: 50%; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 46;
  transform: translate(-50%, 26px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease; box-shadow: 0 14px 34px -8px rgba(0,0,0,.6); white-space: nowrap; }
.sticky-cta.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); pointer-events: auto; }
@media (min-width: 760px) { .sticky-cta { display: none; } }
@keyframes waIn { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }

.loader { color: var(--muted); padding: 22px 0; }
.err { color: #ff6b6b; text-align: center; margin-top: 12px; font-size: 14px; }

/* ── Done ───────────────────────────────────────────── */
.done { position: fixed; inset: 0; z-index: 60; background: var(--bg); display: flex; align-items: center; justify-content: center; padding: var(--pad); }
.done__card { text-align: center; max-width: 420px; width: 100%; display: flex; flex-direction: column; gap: 14px; }
.done__ring { width: 78px; height: 78px; border-radius: 50%; background: linear-gradient(135deg, #2ee06d, #1fa958); color: #04210f; display: flex; align-items: center; justify-content: center; margin: 0 auto 6px; box-shadow: 0 12px 36px -8px rgba(46,204,113,.45); }
.done__txt { font-family: "Onest"; font-weight: 600; font-size: 16px; margin: 0; }
.done__addr { color: var(--muted); font-size: 14px; margin: 0 0 6px; }
.done__hint { color: var(--accent); font-size: 13.5px; font-weight: 600; margin: 0 0 14px; }
.done__row { display: flex; gap: 10px; }
.done__row .cta--sm { flex: 1; min-width: 0; margin: 0; padding: 14px 12px; font-size: 14.5px; border-radius: 14px; }
.done__soon { margin: 14px 0 4px; padding: 14px 16px; border-radius: 16px; background: rgba(24,207,134,.08); border: 1px solid rgba(24,207,134,.22); text-align: center; }
.done__soon-badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: rgba(24,207,134,.14); border-radius: 100px; padding: 4px 11px; margin-bottom: 8px; }
.done__soon-txt { color: var(--text); font-size: 13.5px; line-height: 1.5; margin: 0; opacity: .9; }

@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ── Desktop refinements ────────────────────────────── */
@media (min-width: 700px) {
  .hero__p { font-size: 19px; }
  .chips { display: grid; grid-template-columns: repeat(3, 1fr); }
  .chip { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ── Микро-интеракции + усиленная глубина (2026-06-12) ───────────────────── */
.tierbtn, .chip, .srow--card, .why-card, .review {
  transition: border-color .2s, background .2s, transform .15s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
}
.tierbtn:active, .chip:active, .srow--card:active, .why-card:active, .review:active { transform: scale(.985); }
@media (hover: hover) {
  .tierbtn:hover, .chip:hover, .why-card:hover, .review:hover {
    transform: translateY(-3px); border-color: rgba(255,255,255,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 24px 46px -22px rgba(0,0,0,.95);
  }
}
/* Свечение рекомендованной (Комплексная) */
.srow--card.is-active {
  box-shadow: inset 0 0 0 1px var(--accent), 0 0 52px -14px rgba(24,207,134,.5), 0 18px 40px -22px rgba(0,0,0,.85);
}
/* Бейдж времени — лёгкое стекло */
.srow__dur, .tierbtn .srow__dur { backdrop-filter: blur(4px); }

/* ── Деталь: локация + зона (2026-06-12) ─────────────────────────────────── */
.map { box-shadow: 0 26px 54px -26px rgba(0,0,0,.95), inset 0 0 0 1px rgba(255,255,255,.06); }
.hours b { font-family: "Onest"; font-size: 15px; }
.place__img { box-shadow: 0 18px 38px -22px rgba(0,0,0,.95); }

/* Прогресс записи (шаг N из 4) */
.bk-prog { display: flex; align-items: center; gap: 12px; margin: -8px 0 24px; }
.bk-prog__bar { flex: 1; height: 6px; border-radius: 100px; background: var(--card-2); overflow: hidden; }
.bk-prog__bar i { display: block; height: 100%; width: 25%; border-radius: 100px; background: var(--accent-grad); box-shadow: 0 0 12px -2px rgba(24,207,134,.6); transition: width .45s cubic-bezier(.2,.8,.2,1); }
.bk-prog__txt { font-family: "Onest"; font-size: 12px; font-weight: 700; color: var(--muted); white-space: nowrap; }

/* ── Página /servicios ─────────────────────────────────────────────────────
   La misma index.html, pero solo el bloque de servicios es visible (body.page-servicios).
   El bloque #servicios-detalle vive en su URL propia /servicios; en la home se elimina del HTML. */
#servicios-detalle { display: none; }
body.page-servicios #servicios-detalle { display: block; opacity: 1; transform: none; padding-top: 116px; }
body.page-servicios .hero,
body.page-servicios section.sec:not(#servicios-detalle),
body.page-servicios .teaser-sec,
body.page-servicios .sticky { display: none !important; }

.seo-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.seo-cta .price-btn { margin: 0; }
.seo-cta .cta { margin: 0; }
@media (max-width: 560px) { .seo-cta { flex-direction: column; } .seo-cta .price-btn, .seo-cta .cta { width: 100%; } }

/* ── Cookie consent (GDPR/AEPD) ───────────────────────────────────────────── */
.cookie { position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 58; max-width: 470px; margin: 0 auto; background: var(--card-2); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; box-shadow: 0 18px 50px -12px rgba(0,0,0,.65); animation: fade .3s ease; }
.cookie__txt { color: var(--text); font-size: 13px; line-height: 1.5; margin: 0 0 12px; opacity: .9; }
.cookie__row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cookie__more { background: none; border: 0; color: var(--muted); font-size: 12.5px; text-decoration: underline; cursor: pointer; padding: 0; }
.cookie__btns { display: flex; gap: 8px; margin-left: auto; }
.cookie__btn { border-radius: 100px; padding: 10px 20px; font-weight: 700; font-size: 13.5px; cursor: pointer; border: 1px solid var(--line); transition: filter .15s, background .15s; }
.cookie__btn--no { background: var(--card); color: var(--text); }
.cookie__btn--no:active { background: var(--bg); }
.cookie__btn--yes { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
.cookie__btn--yes:active { filter: brightness(.95); }
.privacy__body { color: var(--muted); font-size: 13.5px; line-height: 1.6; max-height: 60vh; overflow-y: auto; }
.privacy__body p { margin: 0 0 10px; }
.privacy__body b { color: var(--text); }
@media (max-width: 420px) { .cookie__btns { width: 100%; margin-left: 0; } .cookie__btn { flex: 1; } }

/* «Сегодня» — быстрый возврат к началу календаря записи */
.bk__dayhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.bk__dayhead .bk__t { margin-bottom: 0; }
.day-today { display: inline-flex; align-items: center; gap: 5px; background: var(--card); border: 1px solid var(--line); color: var(--accent); border-radius: 100px; padding: 6px 13px; font-size: 12px; font-weight: 700; letter-spacing: .02em; cursor: pointer; transition: background .15s, transform .12s; }
.day-today:active { transform: scale(.96); }

/* ── Видео и отзывы — БЕЗ подложки (одобрено на демо 2026-06-17): чисто на общем фоне, как блок «Места» ── */
.feed__item { filter: none; transform: none; opacity: 1; background: transparent; border: none; box-shadow: none; }
.feed__item.is-active { box-shadow: none; }
.review { background: transparent; border: none; box-shadow: none; }
.review::before { display: none; }
